diff options
author | jjakob <jernej.jakob@gmail.com> | 2019-10-19 03:19:54 +0200 |
---|---|---|
committer | jjakob <jernej.jakob@gmail.com> | 2019-10-19 03:19:54 +0200 |
commit | 9f1cc848d194d9b85d839ef847df5062d56941c2 (patch) | |
tree | c26230dd68d7a50870e13a997234c951a373223e /scripts/rl-system.init | |
parent | 001239d85271401c2ae33c6a6cbe4df7b93b5009 (diff) | |
download | vyatta-cfg-system-9f1cc848d194d9b85d839ef847df5062d56941c2.tar.gz vyatta-cfg-system-9f1cc848d194d9b85d839ef847df5062d56941c2.zip |
T1743: do not generate ssh rsa1 host keys
Diffstat (limited to 'scripts/rl-system.init')
-rwxr-xr-x | scripts/rl-system.init | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/scripts/rl-system.init b/scripts/rl-system.init index 62eac9e7..0af72cd9 100755 --- a/scripts/rl-system.init +++ b/scripts/rl-system.init @@ -112,10 +112,6 @@ create_ssh_host_keys () { syslog "Creating ssh v2 dsa host key." ssh-keygen -q -N '' -t dsa -f /etc/ssh/ssh_host_dsa_key fi; - if [ ! -f "/etc/ssh/ssh_host_key" ]; then - syslog "Creating ssh v1 host key." - ssh-keygen -q -N '' -t rsa1 -f /etc/ssh/ssh_host_key - fi; if [ ! -f "/etc/ssh/ssh_host_ed25519_key" ]; then syslog "Creating ssh ed25519 host key." ssh-keygen -q -N '' -t ed25519 -f /etc/ssh/ssh_host_ed25519_key |