aboutsummaryrefslogtreecommitdiffstats
path: root/package/dropbear/files
diff options
context:
space:
mode:
authorFelix Fietkau <nbd@openwrt.org>2006-10-29 05:53:13 +0000
committerFelix Fietkau <nbd@openwrt.org>2006-10-29 05:53:13 +0000
commitfda36c539acf3e0161e576baf18a5c7b9e686b21 (patch)
treef6ce38d9490f54fa776f8fa059390a0262172e92 /package/dropbear/files
parent12ccb1ed734641f5a31c992a4cded3c7016f96fd (diff)
downloadupstream-fda36c539acf3e0161e576baf18a5c7b9e686b21.tar.gz
upstream-fda36c539acf3e0161e576baf18a5c7b9e686b21.tar.bz2
upstream-fda36c539acf3e0161e576baf18a5c7b9e686b21.zip
sync dropbear init script with whiterussian, fix locking and add config integration by Carlos Sobrinho
SVN-Revision: 5331
Diffstat (limited to 'package/dropbear/files')
-rw-r--r--package/dropbear/files/dropbear.config3
-rwxr-xr-xpackage/dropbear/files/dropbear.init54
2 files changed, 44 insertions, 13 deletions
diff --git a/package/dropbear/files/dropbear.config b/package/dropbear/files/dropbear.config
new file mode 100644
index 0000000000..e660ac7356
--- /dev/null
+++ b/package/dropbear/files/dropbear.config
@@ -0,0 +1,3 @@
+config dropbear
+ option PasswordAuth 'on'
+ option Port '22'
diff --git a/package/dropbear/files/dropbear.init b/package/dropbear/files/dropbear.init
index b928af65cc..6f35672d54 100755
--- a/package/dropbear/files/dropbear.init
+++ b/package/dropbear/files/dropbear.init
@@ -1,21 +1,49 @@
#!/bin/sh /etc/rc.common
# Copyright (C) 2006 OpenWrt.org
+# Copyright (C) 2006 Carlos Sobrinho
+
+config_cb() {
+ local cfg="$CONFIG_SECTION"
+ local nopasswd
+ local type
+ config_get cfgtype "$cfg" TYPE
+
+ case "$cfgtype" in
+ dropbear)
+ config_get passauth $cfg PasswordAuth
+ config_get port $cfg Port
+
+ case "$passauth" in
+ no|off|disabled|0) nopasswd=1;;
+ esac
+ DROPBEAR_ARGS="${port:+-p $port} ${nopasswd:+-s}"
+ ;;
+ esac
+}
start() {
- for type in rsa dss; do {
- # check for keys
- key=/etc/dropbear/dropbear_${type}_host_key
- [ ! -f $key ] && {
- # generate missing keys
- mkdir -p /etc/dropbear
- [ -x /usr/bin/dropbearkey ] && {
- /usr/bin/dropbearkey -t $type -f $key 2>&- >&- && exec /etc/rc.common "$initscript" start
- } &
- exit 0
- }
- }; done
+ for keytype in rsa dss; do
+ # check for keys
+ key=/tmp/dropbear/dropbear_${keytype}_host_key
+ [ ! -f $key ] && {
+ # generate missing keys
+ mkdir -p /tmp/dropbear
+ [ -x /usr/bin/dropbearkey ] && {
+ /usr/bin/dropbearkey -t $keytype -f $key 2>&- >&- && exec /etc/rc.common "$initscript" start
+ } &
+ exit 0
+ }
+ done
+
+ lock /tmp/.switch2jffs
+ mkdir -p /etc/dropbear
+ mv /tmp/dropbear/dropbear_* /etc/dropbear/
+ lock -u /tmp/.switch2jffs
- /usr/sbin/dropbear
+ chown root /etc/dropbear
+ chmod 0700 /etc/dropbear
+ config_load dropbear
+ /usr/sbin/dropbear $DROPBEAR_ARGS
}
stop() {