# HG changeset patch # User Matt Johnston # Date 1134029862 0 # Node ID c66797d973ffccd14c2f217410b8e2e6aaaa5358 # Parent a3a68c25035e356ba37539d592a39eafe3f16cc9 * Update to debian 0.46-2 diff -r a3a68c25035e -r c66797d973ff debian/changelog --- a/debian/changelog Tue Dec 06 17:49:59 2005 +0000 +++ b/debian/changelog Thu Dec 08 08:17:42 2005 +0000 @@ -1,6 +1,18 @@ -dropbear (0.46-0.1) unstable; urgency=medium +dropbear (0.46-2) unstable; urgency=low + + * debian/control: Standards-Version: 3.6.2.1; update descriptions to + mention included server and client (thx Tino Keitel). + * debian/dropbear.init: allow '/etc/init.d/dropbear stop' even though + 'NO_START is not set to zero.' (closes: #336723). + + -- Gerrit Pape Tue, 6 Dec 2005 13:30:49 +0000 + +dropbear (0.46-1) unstable; urgency=medium * New upstream release, various fixes. + * debian/diff/dbclient-usage-typo.diff, debian/diff/manpages.diff: remove; + obsolete. + * debian/dbclient.1: move to ./dbclient.1. -- Matt Johnston Fri, 8 July 2005 21:32:55 +0800 diff -r a3a68c25035e -r c66797d973ff debian/control --- a/debian/control Tue Dec 06 17:49:59 2005 +0000 +++ b/debian/control Thu Dec 08 08:17:42 2005 +0000 @@ -3,16 +3,16 @@ Priority: optional Maintainer: Gerrit Pape Build-Depends: libz-dev -Standards-Version: 3.6.1.0 +Standards-Version: 3.6.2.1 Package: dropbear Architecture: any Depends: ${shlibs:Depends} Suggests: ssh, runit -Description: lightweight SSH2 server - dropbear is a SSH 2 server designed to be small enough to be used in small - memory environments, while still being functional and secure enough for - general use. +Description: lightweight SSH2 server and client + dropbear is a SSH 2 server and client designed to be small enough to + be used in small memory environments, while still being functional and + secure enough for general use. . It implements most required features of the SSH 2 protocol, and other features such as X11 and authentication agent forwarding. diff -r a3a68c25035e -r c66797d973ff debian/dropbear.init --- a/debian/dropbear.init Tue Dec 06 17:49:59 2005 +0000 +++ b/debian/dropbear.init Thu Dec 08 08:17:42 2005 +0000 @@ -16,7 +16,6 @@ cancel() { echo "$1" >&2; exit 0; }; test ! -r /etc/default/dropbear || . /etc/default/dropbear -test "$NO_START" = "0" || cancel 'NO_START is not set to zero.' test -x "$DAEMON" || cancel "$DAEMON does not exist or is not executable." test ! -h /var/service/dropbear || \ cancel '/var/service/dropbear exists, service is controlled through runit.' @@ -30,6 +29,7 @@ case "$1" in start) + test "$NO_START" = "0" || cancel 'NO_START is not set to zero.' echo -n "Starting $DESC: " start-stop-daemon --start --quiet --pidfile /var/run/"$NAME".pid \ --exec "$DAEMON" -- -d "$DROPBEAR_DSSKEY" -r "$DROPBEAR_RSAKEY" \ @@ -42,6 +42,7 @@ echo "$NAME." ;; restart|force-reload) + test "$NO_START" = "0" || cancel 'NO_START is not set to zero.' echo -n "Restarting $DESC: " start-stop-daemon --stop --quiet --oknodo --pidfile /var/run/"$NAME".pid sleep 1