mirror of https://github.com/hak5/openwrt-owl.git
sync dropbear init script with whiterussian, fix locking and add config integration by Carlos Sobrinho
SVN-Revision: 5331owl
parent
12ccb1ed73
commit
fda36c539a
|
@ -106,6 +106,8 @@ define Package/dropbear/install
|
||||||
ln -sf ../sbin/dropbear $(1)/usr/bin/ssh
|
ln -sf ../sbin/dropbear $(1)/usr/bin/ssh
|
||||||
ln -sf ../sbin/dropbear $(1)/usr/bin/dbclient
|
ln -sf ../sbin/dropbear $(1)/usr/bin/dbclient
|
||||||
ln -sf ../sbin/dropbear $(1)/usr/bin/dropbearkey
|
ln -sf ../sbin/dropbear $(1)/usr/bin/dropbearkey
|
||||||
|
install -d -m0755 $(1)/etc/config
|
||||||
|
install -m0755 ./files/dropbear.config $(1)/etc/config/dropbear
|
||||||
install -d -m0755 $(1)/etc/init.d
|
install -d -m0755 $(1)/etc/init.d
|
||||||
install -m0755 ./files/dropbear.init $(1)/etc/init.d/dropbear
|
install -m0755 ./files/dropbear.init $(1)/etc/init.d/dropbear
|
||||||
endef
|
endef
|
||||||
|
|
|
@ -0,0 +1,3 @@
|
||||||
|
config dropbear
|
||||||
|
option PasswordAuth 'on'
|
||||||
|
option Port '22'
|
|
@ -1,21 +1,49 @@
|
||||||
#!/bin/sh /etc/rc.common
|
#!/bin/sh /etc/rc.common
|
||||||
# Copyright (C) 2006 OpenWrt.org
|
# 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() {
|
start() {
|
||||||
for type in rsa dss; do {
|
for keytype in rsa dss; do
|
||||||
# check for keys
|
# check for keys
|
||||||
key=/etc/dropbear/dropbear_${type}_host_key
|
key=/tmp/dropbear/dropbear_${keytype}_host_key
|
||||||
[ ! -f $key ] && {
|
[ ! -f $key ] && {
|
||||||
# generate missing keys
|
# generate missing keys
|
||||||
mkdir -p /etc/dropbear
|
mkdir -p /tmp/dropbear
|
||||||
[ -x /usr/bin/dropbearkey ] && {
|
[ -x /usr/bin/dropbearkey ] && {
|
||||||
/usr/bin/dropbearkey -t $type -f $key 2>&- >&- && exec /etc/rc.common "$initscript" start
|
/usr/bin/dropbearkey -t $keytype -f $key 2>&- >&- && exec /etc/rc.common "$initscript" start
|
||||||
} &
|
} &
|
||||||
exit 0
|
exit 0
|
||||||
}
|
}
|
||||||
}; done
|
done
|
||||||
|
|
||||||
/usr/sbin/dropbear
|
lock /tmp/.switch2jffs
|
||||||
|
mkdir -p /etc/dropbear
|
||||||
|
mv /tmp/dropbear/dropbear_* /etc/dropbear/
|
||||||
|
lock -u /tmp/.switch2jffs
|
||||||
|
|
||||||
|
chown root /etc/dropbear
|
||||||
|
chmod 0700 /etc/dropbear
|
||||||
|
config_load dropbear
|
||||||
|
/usr/sbin/dropbear $DROPBEAR_ARGS
|
||||||
}
|
}
|
||||||
|
|
||||||
stop() {
|
stop() {
|
||||||
|
|
Loading…
Reference in New Issue