diff options
author | Mike Baker <mbm@openwrt.org> | 2005-01-16 11:43:02 +0000 |
---|---|---|
committer | Mike Baker <mbm@openwrt.org> | 2005-01-16 11:43:02 +0000 |
commit | 76d90c2ed2956d27e0c8af8fb0b76b3069228d5f (patch) | |
tree | 986493f1905c17f3a385831d60709492c4c5ed7a /openwrt/package/dropbear_sshd/dropbear-init.patch | |
parent | a5e92562f883bbd64e84b69bb683f42911ec7036 (diff) | |
download | mtk-20170518-76d90c2ed2956d27e0c8af8fb0b76b3069228d5f.zip mtk-20170518-76d90c2ed2956d27e0c8af8fb0b76b3069228d5f.tar.gz mtk-20170518-76d90c2ed2956d27e0c8af8fb0b76b3069228d5f.tar.bz2 |
Initial revision
SVN-Revision: 197
Diffstat (limited to 'openwrt/package/dropbear_sshd/dropbear-init.patch')
-rw-r--r-- | openwrt/package/dropbear_sshd/dropbear-init.patch | 59 |
1 files changed, 59 insertions, 0 deletions
diff --git a/openwrt/package/dropbear_sshd/dropbear-init.patch b/openwrt/package/dropbear_sshd/dropbear-init.patch new file mode 100644 index 0000000..d6bf174 --- /dev/null +++ b/openwrt/package/dropbear_sshd/dropbear-init.patch @@ -0,0 +1,59 @@ +--- dropbear-0.42/S50dropbear ++++ dropbear-0.42/S50dropbear +@@ -0,0 +1,56 @@ ++#!/bin/sh ++# ++# Starts dropbear sshd. ++# ++ ++# Make sure the dropbearkey progam exists ++[ -f /usr/bin/dropbearkey ] || exit 0 ++ ++# Check for the Dropbear RSA key ++if [ ! -f /etc/dropbear/dropbear_rsa_host_key ] ; then ++ echo Generating RSA Key... ++ mkdir -p /etc/dropbear ++ /usr/bin/dropbearkey -t rsa -f /etc/dropbear/dropbear_rsa_host_key ++fi ++ ++# Check for the Dropbear DSS key ++if [ ! -f /etc/dropbear/dropbear_dss_host_key ] ; then ++ echo Generating DSS Key... ++ mkdir -p /etc/dropbear ++ /usr/bin/dropbearkey -t dss -f /etc/dropbear/dropbear_dss_host_key ++fi ++ ++umask 077 ++ ++start() { ++ echo -n "Starting dropbear sshd: " ++ start-stop-daemon --start --quiet --pidfile /var/run/dropbear.pid --exec /usr/sbin/dropbear ++ echo "OK" ++} ++stop() { ++ echo -n "Stopping sshd: " ++ start-stop-daemon --stop --quiet --pidfile /var/run/dropbear.pid ++ echo "OK" ++} ++restart() { ++ stop ++ start ++} ++ ++case "$1" in ++ start) ++ start ++ ;; ++ stop) ++ stop ++ ;; ++ restart|reload) ++ restart ++ ;; ++ *) ++ echo $"Usage: $0 {start|stop|restart}" ++ exit 1 ++esac ++ ++exit $? ++ |