summaryrefslogtreecommitdiff
path: root/data/openssh/sshd-keygen-wrapper
diff options
context:
space:
mode:
authorSam Bingner <sam@bingner.com>2021-03-02 17:31:51 -1000
committerSam Bingner <sam@bingner.com>2021-03-02 20:38:19 -1000
commit76a8eb1c6d6d806e50798d4d23c6891cf317f156 (patch)
tree12a6a9b65c393229614a3d1fbe0d41503c2dd134 /data/openssh/sshd-keygen-wrapper
parent240e5557842ae47d10b0e6fa68dfc96cb0a7eb29 (diff)
Split openssh and make listeners
Diffstat (limited to 'data/openssh/sshd-keygen-wrapper')
-rwxr-xr-xdata/openssh/sshd-keygen-wrapper7
1 files changed, 0 insertions, 7 deletions
diff --git a/data/openssh/sshd-keygen-wrapper b/data/openssh/sshd-keygen-wrapper
deleted file mode 100755
index 07f2631e3..000000000
--- a/data/openssh/sshd-keygen-wrapper
+++ /dev/null
@@ -1,7 +0,0 @@
-#!/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 $@