1
0
mirror of git://projects.qi-hardware.com/openwrt-xburst.git synced 2024-08-19 11:55:32 +03:00
openwrt-xburst/package/openssh/files/S50sshd
wbx d1e86b499a add openssh package, sshd does not work. why?
git-svn-id: svn://svn.openwrt.org/openwrt/trunk/openwrt@1165 3c298f89-4303-0410-b956-a3cf2f4a3e73
2005-06-07 07:04:44 +00:00

16 lines
296 B
Bash
Executable File

#!/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