1
0
mirror of git://projects.qi-hardware.com/openwrt-xburst.git synced 2024-09-20 17:49:27 +03:00

oops, forgot to take out some debugging stuff

git-svn-id: svn://svn.openwrt.org/openwrt/trunk@550 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
mbm 2005-04-03 21:31:40 +00:00
parent f769262d89
commit 5beb2acad5

View File

@ -2,10 +2,10 @@
for type in rsa dss; do {
# check for keys
key=/tmp/dropbear/dropbear_${type}_host_key
key=/etc/dropbear/dropbear_${type}_host_key
[ ! -f $key ] && {
# generate missing keys
mkdir -p /tmp/dropbear
mkdir -p /etc/dropbear
[ -x /usr/bin/dropbearkey ] && {
/usr/bin/dropbearkey -t $type -f $key 2>&- >&- && exec $0 $*
} &