1
0
mirror of git://projects.qi-hardware.com/openwrt-xburst.git synced 2024-09-12 06:26:47 +03:00
openwrt-xburst/package/openssh/files/S50sshd

16 lines
296 B
Plaintext
Raw Normal View History

#!/bin/sh
for type in rsa dsa; do {
# check for keys
key=/etc/ssh/ssh_${type}_host_key
[ ! -f $key ] && {
# generate missing keys
[ -x /usr/bin/ssh-keygen ] && {
/usr/bin/ssh-keygen -N '' -t $type -f $key 2>&- >&- && exec $0 $*
} &
exit 0
}
}; done
/usr/sbin/sshd