summaryrefslogtreecommitdiffstats
path: root/package/dropbear/S50dropbear
diff options
context:
space:
mode:
Diffstat (limited to 'package/dropbear/S50dropbear')
-rw-r--r--package/dropbear/S50dropbear21
1 files changed, 3 insertions, 18 deletions
diff --git a/package/dropbear/S50dropbear b/package/dropbear/S50dropbear
index 991a1219c4..d94310c04e 100644
--- a/package/dropbear/S50dropbear
+++ b/package/dropbear/S50dropbear
@@ -3,34 +3,20 @@
# Starts dropbear sshd.
#
-# Make sure the dropbearkey progam exists
-[ -f /usr/bin/dropbearkey ] || exit 0
-
start() {
echo -n "Starting dropbear sshd: "
# Make sure dropbear directory exists
if [ ! -d /etc/dropbear ] ; then
mkdir -p /etc/dropbear
fi
- # Check for the Dropbear RSA key
- if [ ! -f /etc/dropbear/dropbear_rsa_host_key ] ; then
- echo -n "generating rsa key... "
- /usr/bin/dropbearkey -t rsa -f /etc/dropbear/dropbear_rsa_host_key > /dev/null 2>&1
- fi
-
- # Check for the Dropbear DSS key
- if [ ! -f /etc/dropbear/dropbear_dss_host_key ] ; then
- echo -n "generating dsa key... "
- /usr/bin/dropbearkey -t dss -f /etc/dropbear/dropbear_dss_host_key > /dev/null 2>&1
- fi
umask 077
- start-stop-daemon -S -q -p /var/run/dropbear.pid --exec /usr/sbin/dropbear
- echo "OK"
+ start-stop-daemon -S -q -p /var/run/dropbear.pid --exec /usr/sbin/dropbear -- -R
+ [ $? == 0 ] && echo "OK" || echo "FAIL"
}
stop() {
echo -n "Stopping dropbear sshd: "
start-stop-daemon -K -q -p /var/run/dropbear.pid
- echo "OK"
+ [ $? == 0 ] && echo "OK" || echo "FAIL"
}
restart() {
stop
@@ -53,4 +39,3 @@ case "$1" in
esac
exit $?
-
OpenPOWER on IntegriCloud