commit 6c5e0f4b4318bd5717c7566ff44ddf445c54de4f Author: Matt Housh <jaeger@crux.ninja> Date: Mon Aug 17 13:59:24 2015 -0500 openssh: removed RSA1 key generation from init script diff --git a/openssh/.md5sum b/openssh/.md5sum index 564dcb1..467e5bf 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 57189a6..9041f7e 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