summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--debian/changelog7
-rw-r--r--debian/openssh-server.config8
2 files changed, 13 insertions, 2 deletions
diff --git a/debian/changelog b/debian/changelog
index 5d10b5654..c581ff0fa 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,10 @@
1openssh (1:6.6p1-2) UNRELEASED; urgency=medium
2
3 * If no root password is set, then switch to "PermitRootLogin
4 without-password" without asking (LP: #1300127).
5
6 -- Colin Watson <cjwatson@debian.org> Mon, 31 Mar 2014 11:15:02 +0100
7
1openssh (1:6.6p1-1) unstable; urgency=medium 8openssh (1:6.6p1-1) unstable; urgency=medium
2 9
3 [ Colin Watson ] 10 [ Colin Watson ]
diff --git a/debian/openssh-server.config b/debian/openssh-server.config
index 27594ad2d..883dbf41b 100644
--- a/debian/openssh-server.config
+++ b/debian/openssh-server.config
@@ -16,8 +16,12 @@ get_config_option() {
16 16
17if dpkg --compare-versions "$2" lt-nl 1:6.6p1-1 && \ 17if dpkg --compare-versions "$2" lt-nl 1:6.6p1-1 && \
18 [ "$(get_config_option PermitRootLogin)" = yes ]; then 18 [ "$(get_config_option PermitRootLogin)" = yes ]; then
19 db_input high openssh-server/permit-root-login || true 19 if [ "$(getent shadow root | cut -d: -f2)" = "!" ]; then
20 db_go 20 db_set openssh-server/permit-root-login true
21 else
22 db_input high openssh-server/permit-root-login || true
23 db_go
24 fi
21fi 25fi
22 26
23exit 0 27exit 0