openwrtv4/openwrt/package/openssh/files/S50sshd
Waldemar Brodkorb e8eb7ef34e add openssh package, sshd does not work. why?
SVN-Revision: 1165
2005-06-07 07:04:44 +00:00

15 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