summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--debian/changelog2
-rw-r--r--debian/openssh-server.postinst2
2 files changed, 2 insertions, 2 deletions
diff --git a/debian/changelog b/debian/changelog
index b2e6d64de..cd3c85f47 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -18,6 +18,8 @@ openssh (1:7.2p2-6) UNRELEASED; urgency=medium
18 which serves to terminate SSH sessions cleanly if systemd doesn't do 18 which serves to terminate SSH sessions cleanly if systemd doesn't do
19 that itself, often because libpam-systemd is not installed (thanks, 19 that itself, often because libpam-systemd is not installed (thanks,
20 Vivek Das Mohapatra, Tom Hutter, and others; closes: #751636). 20 Vivek Das Mohapatra, Tom Hutter, and others; closes: #751636).
21 * Stop generating DSA host keys by default (thanks, Santiago Vila; closes:
22 #823827).
21 23
22 -- Colin Watson <cjwatson@debian.org> Sat, 30 Apr 2016 11:29:20 +0100 24 -- Colin Watson <cjwatson@debian.org> Sat, 30 Apr 2016 11:29:20 +0100
23 25
diff --git a/debian/openssh-server.postinst b/debian/openssh-server.postinst
index 45121534d..ff61c4f1b 100644
--- a/debian/openssh-server.postinst
+++ b/debian/openssh-server.postinst
@@ -81,7 +81,6 @@ host_keys_required() {
81 # No HostKey directives at all, so the server picks some 81 # No HostKey directives at all, so the server picks some
82 # defaults. 82 # defaults.
83 echo /etc/ssh/ssh_host_rsa_key 83 echo /etc/ssh/ssh_host_rsa_key
84 echo /etc/ssh/ssh_host_dsa_key
85 echo /etc/ssh/ssh_host_ecdsa_key 84 echo /etc/ssh/ssh_host_ecdsa_key
86 echo /etc/ssh/ssh_host_ed25519_key 85 echo /etc/ssh/ssh_host_ed25519_key
87 fi 86 fi
@@ -173,7 +172,6 @@ Port 22
173Protocol 2 172Protocol 2
174# HostKeys for protocol version 2 173# HostKeys for protocol version 2
175HostKey /etc/ssh/ssh_host_rsa_key 174HostKey /etc/ssh/ssh_host_rsa_key
176HostKey /etc/ssh/ssh_host_dsa_key
177HostKey /etc/ssh/ssh_host_ecdsa_key 175HostKey /etc/ssh/ssh_host_ecdsa_key
178HostKey /etc/ssh/ssh_host_ed25519_key 176HostKey /etc/ssh/ssh_host_ed25519_key
179#Privilege Separation is turned on for security 177#Privilege Separation is turned on for security