summaryrefslogtreecommitdiff
path: root/data/_openssh/sshd-keygen-wrapper
diff options
context:
space:
mode:
Diffstat (limited to 'data/_openssh/sshd-keygen-wrapper')
-rwxr-xr-xdata/_openssh/sshd-keygen-wrapper7
1 files changed, 7 insertions, 0 deletions
diff --git a/data/_openssh/sshd-keygen-wrapper b/data/_openssh/sshd-keygen-wrapper
new file mode 100755
index 000000000..07f2631e3
--- /dev/null
+++ b/data/_openssh/sshd-keygen-wrapper
@@ -0,0 +1,7 @@
+#!/bin/sh
+
+[ ! -f /etc/ssh/ssh_host_key ] && ssh-keygen -q -t rsa1 -f /etc/ssh/ssh_host_key -N "" -C "" < /dev/null > /dev/null 2> /dev/null
+[ ! -f /etc/ssh/ssh_host_rsa_key ] && ssh-keygen -q -t rsa -f /etc/ssh/ssh_host_rsa_key -N "" -C "" < /dev/null > /dev/null 2> /dev/null
+[ ! -f /etc/ssh/ssh_host_dsa_key ] && ssh-keygen -q -t dsa -f /etc/ssh/ssh_host_dsa_key -N "" -C "" < /dev/null > /dev/null 2> /dev/null
+
+exec /usr/sbin/sshd $@