From: Felix Fietkau Date: Tue, 27 Feb 2007 23:55:20 +0000 (+0000) Subject: port the dropbear init script fix for keygen => restart to openssh (fixes #1300) X-Git-Url: http://git.openwrt.org/?p=openwrt%2Fsvn-archive%2Farchive.git;a=commitdiff_plain;h=577fa09cfde8ddc7038d4c5e34858e2f4dd0a50d port the dropbear init script fix for keygen => restart to openssh (fixes #1300) SVN-Revision: 6415 --- diff --git a/net/openssh/files/sshd.init b/net/openssh/files/sshd.init index c2e535d311..617d4370c1 100755 --- a/net/openssh/files/sshd.init +++ b/net/openssh/files/sshd.init @@ -8,7 +8,7 @@ start() { [ ! -f $key ] && { # generate missing keys [ -x /usr/bin/ssh-keygen ] && { - /usr/bin/ssh-keygen -N '' -t $type -f $key 2>&- >&- && exec $0 $* + /usr/bin/ssh-keygen -N '' -t $type -f $key 2>&- >&- && exec /etc/rc.common "$initscript" start } & exit 0 }