tn3399_openwrt/openwrt/package/dropbear/files/S50dropbear
2005-04-03 21:31:40 +00:00

18 lines
343 B
Bash
Executable File

#!/bin/sh
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 $0 $*
} &
exit 0
}
}; done
umask 077
/usr/sbin/dropbear