Subversion Repositories lsh

Compare Revisions

Ignore whitespace Rev 73 → Rev 74

/trunk/debian/changelog
6,8 → 6,11
AF_INET6 sockets; since lshd by default enumerates available address
families and calls bind() once for each, conflicts will occur
otherwise.
* lsh-server.postinst: If openssh-server is installed and lsh-server is
configured to use port 22, shut down sshd in addition to disabling it
(Closes: #567945).
 
-- Magnus Holmgren <holmgren@debian.org> Tue, 27 Jul 2010 03:15:38 +0200
-- Magnus Holmgren <holmgren@debian.org> Sun, 01 Aug 2010 20:05:52 +0200
 
lsh-utils (2.0.4-dfsg-6) unstable; urgency=low
 
/trunk/debian/lsh-server.postinst
133,6 → 133,14
# Please don't remove this file unless you have first disabled lsh, and don't
# change the first line ... otherwise lsh-server won't recognise it!!!
EOF
 
if [ -x "/etc/init.d/ssh" ]; then
if [ -x "`which invoke-rc.d 2>/dev/null`" ]; then
invoke-rc.d ssh stop || true
else
/etc/init.d/ssh stop || true
fi
fi
fi
fi