nbd c5efcf3aa2 port the dropbear init script fix for keygen => restart to openssh (fixes #1300)
git-svn-id: svn://svn.openwrt.org/openwrt/packages@6415 3c298f89-4303-0410-b956-a3cf2f4a3e73
2007-02-27 23:55:20 +00:00

23 lines
428 B
Bash
Executable File

#!/bin/sh /etc/rc.common
# Copyright (C) 2006 OpenWrt.org
start() {
for type in rsa dsa; do {
# check for keys
key=/etc/ssh/ssh_host_${type}_key
[ ! -f $key ] && {
# generate missing keys
[ -x /usr/bin/ssh-keygen ] && {
/usr/bin/ssh-keygen -N '' -t $type -f $key 2>&- >&- && exec /etc/rc.common "$initscript" start
} &
exit 0
}
}; done
mkdir -p /var/empty
/usr/sbin/sshd
}
stop() {
killall sshd
}