The unified diff between revisions [826db75f..] and [a4cab2b4..] is displayed below. It can also be downloaded as a raw diff.
This diff has been restricted to the following files: 'debian/dropbear.init'
#
#
# patch "debian/dropbear.init"
# from [1639105b9863144cc4aea7991903b1a8d1810b1d]
# to [8a1d7d2adb4d35a13b594a0bfe8faf0f6c38a0cf]
#
============================================================
--- debian/dropbear.init 1639105b9863144cc4aea7991903b1a8d1810b1d
+++ debian/dropbear.init 8a1d7d2adb4d35a13b594a0bfe8faf0f6c38a0cf
@@ -1,25 +1,22 @@
#!/bin/sh
#
-# Do not configure this file. Edit /etc/default/dropbear instead!
+# Do not configure this file. Edit /etc/default/cokedropbear instead!
#
PATH=/usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin
-DAEMON=/usr/sbin/dropbear
-NAME=dropbear
-DESC="Dropbear SSH server"
+DAEMON=/usr/sbin/cokedropbear
+NAME=cokedropbear
+DESC="UCC Dispense Dropbear SSH server"
-DROPBEAR_PORT=22
+DROPBEAR_PORT=376
DROPBEAR_EXTRA_ARGS=
NO_START=0
set -e
-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.'
+test ! -r /etc/default/cokedropbear || . /etc/default/cokedropbear
+test "$NO_START" = "0" || exit 0
+test -x "$DAEMON" || exit 0
test -z "$DROPBEAR_BANNER" || \
DROPBEAR_EXTRA_ARGS="$DROPBEAR_EXTRA_ARGS -b $DROPBEAR_BANNER"