diff options
author | jkh <jkh@FreeBSD.org> | 2000-02-28 19:21:05 +0000 |
---|---|---|
committer | jkh <jkh@FreeBSD.org> | 2000-02-28 19:21:05 +0000 |
commit | e15679d81e80bf769a7866ccf03b346abd429e61 (patch) | |
tree | 94473f614b2e2195da6f1f78bded01e35fdcf47e /etc/rc.network | |
parent | 5dffca5013c0de6e26b8856753725a833d02a04a (diff) | |
download | FreeBSD-src-e15679d81e80bf769a7866ccf03b346abd429e61.zip FreeBSD-src-e15679d81e80bf769a7866ccf03b346abd429e61.tar.gz |
Generate new sshd host key when necessary. I'm tired of
waiting for someone to commit this. :)
Diffstat (limited to 'etc/rc.network')
-rw-r--r-- | etc/rc.network | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/etc/rc.network b/etc/rc.network index 3b0771c..a4992f1 100644 --- a/etc/rc.network +++ b/etc/rc.network @@ -605,7 +605,13 @@ network_pass3() { case ${sshd_enable} in [Yy][Ee][Ss]) - echo -n ' sshd'; + if [ ! -f /etc/ssh/ssh_host_key ]; then + echo creating ssh host key + /usr/bin/ssh-keygen -N "" -f /etc/ssh/ssh_host_key + echo now starting sshd + else + echo -n ' sshd'; + fi ${sshd_program:-/usr/sbin/sshd} ${sshd_flags} ;; esac |