diff options
author | Matt Housh <jaeger@crux.ninja> | 2015-08-17 13:59:24 -0500 |
---|---|---|
committer | Matt Housh <jaeger@crux.ninja> | 2015-08-17 13:59:24 -0500 |
commit | 6c5e0f4b4318bd5717c7566ff44ddf445c54de4f (patch) | |
tree | 42bdec6f2db25a914eb98af762feb92d1538a324 /openssh | |
parent | e8d11eb1be345c1c1771df5b47eeb5e5acb4fec8 (diff) | |
download | core-6c5e0f4b4318bd5717c7566ff44ddf445c54de4f.tar.gz core-6c5e0f4b4318bd5717c7566ff44ddf445c54de4f.tar.xz |
openssh: removed RSA1 key generation from init script
Diffstat (limited to 'openssh')
-rw-r--r-- | openssh/.md5sum | 2 | ||||
-rwxr-xr-x | openssh/sshd | 3 |
2 files changed, 1 insertions, 4 deletions
diff --git a/openssh/.md5sum b/openssh/.md5sum index 564dcb18..467e5bf3 100644 --- a/openssh/.md5sum +++ b/openssh/.md5sum @@ -1,2 +1,2 @@ 831883f251ac34f0ab9c812acc24ee69 openssh-7.0p1.tar.gz -569e2757f9a1fcee7869c986b4c90fdd sshd +91563fb9164139051248cf3bbb9b00d7 sshd diff --git a/openssh/sshd b/openssh/sshd index 57189a66..9041f7ec 100755 --- a/openssh/sshd +++ b/openssh/sshd @@ -5,9 +5,6 @@ case $1 in start) - if [ ! -f /etc/ssh/ssh_host_key ]; then - /usr/bin/ssh-keygen -t rsa1 -N "" -f /etc/ssh/ssh_host_key > /dev/null - fi if [ ! -f /etc/ssh/ssh_host_rsa_key ]; then /usr/bin/ssh-keygen -t rsa -N "" -f /etc/ssh/ssh_host_rsa_key > /dev/null fi |