<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
	<channel>
		<atom:link href="https://dev1galaxy.org/extern.php?action=feed&amp;tid=7536&amp;type=rss" rel="self" type="application/rss+xml" />
		<title><![CDATA[Dev1 Galaxy Forum / Installing openssh-client now failing in the docker container]]></title>
		<link>https://dev1galaxy.org/viewtopic.php?id=7536</link>
		<description><![CDATA[The most recent posts in Installing openssh-client now failing in the docker container.]]></description>
		<lastBuildDate>Fri, 07 Nov 2025 12:52:50 +0000</lastBuildDate>
		<generator>FluxBB</generator>
		<item>
			<title><![CDATA[Re: Installing openssh-client now failing in the docker container]]></title>
			<link>https://dev1galaxy.org/viewtopic.php?pid=59263#p59263</link>
			<description><![CDATA[<p>Going to send a bug report to <a href="https://mailinglists.dyne.org/cgi-bin/mailman/listinfo/dng" rel="nofollow">https://mailinglists.dyne.org/cgi-bin/m … stinfo/dng</a> which was mentioned on <a href="https://hub.docker.com/r/devuan/devuan" rel="nofollow">https://hub.docker.com/r/devuan/devuan</a></p>]]></description>
			<author><![CDATA[dummy@example.com (balupton)]]></author>
			<pubDate>Fri, 07 Nov 2025 12:52:50 +0000</pubDate>
			<guid>https://dev1galaxy.org/viewtopic.php?pid=59263#p59263</guid>
		</item>
		<item>
			<title><![CDATA[Re: Installing openssh-client now failing in the docker container]]></title>
			<link>https://dev1galaxy.org/viewtopic.php?pid=59262#p59262</link>
			<description><![CDATA[<p>Okay, can confirm this has nothing to do with my setup but is a bug in the container or distro release, and that the permissions of `/usr/sbin` are the issue.</p><div class="codebox"><pre class="vscroll"><code>docker run --rm -it devuan/devuan:latest bash

root@1b0eba5523a3:/# apt-get update
Get:1 http://deb.devuan.org/merged excalibur InRelease [48.0 kB]

root@1b0eba5523a3:/# apt-get install -y git
Setting up openssh-client (1:10.0p1-7) ...
Insecure directory in $ENV{PATH} while running with -T switch at /usr/share/perl5/Debian/AdduserLogging.pm line 161.
dpkg: error processing package openssh-client (--configure):
 installed openssh-client package post-installation script subprocess returned error exit status 25
Errors were encountered while processing:
 openssh-client

root@1b0eba5523a3:/# stat /usr/sbin
  File: /usr/sbin
  Size: 4096            Blocks: 8          IO Block: 4096   directory
Device: 0,128   Inode: 22663       Links: 1
Access: (0777/drwxrwxrwx)  Uid: (    0/    root)   Gid: (    0/    root)
Access: 2025-11-07 12:44:41.539765134 +0000
Modify: 2025-11-07 12:44:04.020772808 +0000
Change: 2025-11-07 12:44:04.020772808 +0000
 Birth: 2025-11-07 12:44:03.418782666 +0000

root@1b0eba5523a3:/# chmod o-w /usr/sbin

root@1b0eba5523a3:/# stat /usr/sbin
  File: /usr/sbin
  Size: 4096            Blocks: 8          IO Block: 4096   directory
Device: 0,128   Inode: 22663       Links: 1
Access: (0775/drwxrwxr-x)  Uid: (    0/    root)   Gid: (    0/    root)
Access: 2025-11-07 12:44:41.539765134 +0000
Modify: 2025-11-07 12:44:04.020772808 +0000
Change: 2025-11-07 12:44:59.292608274 +0000
 Birth: 2025-11-07 12:44:03.418782666 +0000

root@1b0eba5523a3:/# apt-get install -y git
Reading package lists... Done
Building dependency tree... Done
Reading state information... Done
git is already the newest version (1:2.47.3-0+deb13u1).
0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded.
1 not fully installed or removed.
After this operation, 0 B of additional disk space will be used.
Setting up openssh-client (1:10.0p1-7) ...</code></pre></div>]]></description>
			<author><![CDATA[dummy@example.com (balupton)]]></author>
			<pubDate>Fri, 07 Nov 2025 12:49:56 +0000</pubDate>
			<guid>https://dev1galaxy.org/viewtopic.php?pid=59262#p59262</guid>
		</item>
		<item>
			<title><![CDATA[Re: Installing openssh-client now failing in the docker container]]></title>
			<link>https://dev1galaxy.org/viewtopic.php?pid=59261#p59261</link>
			<description><![CDATA[<p>Okay, did a verbose on the chmod and got back:</p><div class="codebox"><pre><code>&#039;/github/home/.local/share/dorothy/user/commands&#039; could not be accessed
&#039;/github/home/.config/dorothy/commands&#039; could not be accessed
&#039;/github/home/.local/share/dorothy/commands&#039; could not be accessed
&#039;/github/home/.config/dorothy/commands&#039; could not be accessed
mode of &#039;/github/home/.local/bin&#039; retained as 0755 (rwxr-xr-x)
mode of &#039;/usr/local/sbin&#039; retained as 0755 (rwxr-xr-x)
mode of &#039;/usr/local/bin&#039; retained as 0755 (rwxr-xr-x)
mode of &#039;/usr/sbin&#039; changed from 0777 (rwxrwxrwx) to 0775 (rwxrwxr-x)
mode of &#039;/usr/bin&#039; retained as 0755 (rwxr-xr-x)
mode of &#039;/sbin&#039; retained as 0775 (rwxrwxr-x)
mode of &#039;/bin&#039; retained as 0755 (rwxr-xr-x)</code></pre></div><p>So the cause of the failure seems to be this item of concern:</p><div class="codebox"><pre><code>mode of &#039;/usr/sbin&#039; changed from 0777 (rwxrwxrwx) to 0775 (rwxrwxr-x)</code></pre></div>]]></description>
			<author><![CDATA[dummy@example.com (balupton)]]></author>
			<pubDate>Fri, 07 Nov 2025 12:34:37 +0000</pubDate>
			<guid>https://dev1galaxy.org/viewtopic.php?pid=59261#p59261</guid>
		</item>
		<item>
			<title><![CDATA[Re: Installing openssh-client now failing in the docker container]]></title>
			<link>https://dev1galaxy.org/viewtopic.php?pid=59260#p59260</link>
			<description><![CDATA[<p>Okay, I solved this by running `chmod -f o-w ...` on all paths in PATH. I am not yet sure which PATHs were the problem.</p>]]></description>
			<author><![CDATA[dummy@example.com (balupton)]]></author>
			<pubDate>Fri, 07 Nov 2025 12:27:47 +0000</pubDate>
			<guid>https://dev1galaxy.org/viewtopic.php?pid=59260#p59260</guid>
		</item>
		<item>
			<title><![CDATA[Installing openssh-client now failing in the docker container]]></title>
			<link>https://dev1galaxy.org/viewtopic.php?pid=59250#p59250</link>
			<description><![CDATA[<p>As of a few days ago, which attempting to install openssh-client inside the devuan docker container `devuan/devuan:latest` on github actions is resulting in the following error:</p><div class="codebox"><pre><code>...
Get:13 http://deb.devuan.org/merged excalibur/main amd64 openssh-client amd64 1:10.0p1-7 [985 kB]
...
Setting up openssh-client (1:10.0p1-7) ...
Insecure directory in $ENV{PATH} while running with -T switch at /usr/share/perl5/Debian/AdduserLogging.pm line 161.
dpkg: error processing package openssh-client (--configure):
 installed openssh-client package post-installation script subprocess returned error exit status 25
...
Errors were encountered while processing:
 openssh-client
E: Sub-process /usr/bin/dpkg returned an error code (1)</code></pre></div>]]></description>
			<author><![CDATA[dummy@example.com (balupton)]]></author>
			<pubDate>Fri, 07 Nov 2025 01:10:45 +0000</pubDate>
			<guid>https://dev1galaxy.org/viewtopic.php?pid=59250#p59250</guid>
		</item>
	</channel>
</rss>
