summaryrefslogtreecommitdiff
path: root/openwrt/package/dropbear/files
diff options
context:
space:
mode:
authorMike Baker <mbm@openwrt.org>2005-03-06 03:53:29 +0000
committerMike Baker <mbm@openwrt.org>2005-03-06 03:53:29 +0000
commitb3be5eeb3e588bcba2191bd04504a68aeba9e834 (patch)
tree274deffea4eff7519a6519e05cc459c11ce3b514 /openwrt/package/dropbear/files
parent6b93231c4f64a61103dfc16acebedd18b4c25171 (diff)
downloadmtk-20170518-b3be5eeb3e588bcba2191bd04504a68aeba9e834.zip
mtk-20170518-b3be5eeb3e588bcba2191bd04504a68aeba9e834.tar.gz
mtk-20170518-b3be5eeb3e588bcba2191bd04504a68aeba9e834.tar.bz2
bring up to date with nbd's br2_test20.tar.bz2
SVN-Revision: 308
Diffstat (limited to 'openwrt/package/dropbear/files')
-rwxr-xr-xopenwrt/package/dropbear/files/S50dropbear64
1 files changed, 64 insertions, 0 deletions
diff --git a/openwrt/package/dropbear/files/S50dropbear b/openwrt/package/dropbear/files/S50dropbear
new file mode 100755
index 0000000..c7ae0af
--- /dev/null
+++ b/openwrt/package/dropbear/files/S50dropbear
@@ -0,0 +1,64 @@
+#!/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
+ [ -f /etc/dropbear/dropbear_rsa_host_key ] && exec $0 $*
+ ) > /dev/null 2> /dev/null &
+ exit 0
+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
+ [ -f /etc/dropbear/dropbear_dss_host_key ] && exec $0 $*
+ ) > /dev/null 2> /dev/null &
+ exit 0
+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 dropbear 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 $?
+