summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorColin Watson <cjwatson@debian.org>2013-06-06 17:03:35 +0100
committerColin Watson <cjwatson@debian.org>2013-06-06 17:03:35 +0100
commit14ea37fce18d84aed1013f0094d8878e3d0a2f27 (patch)
tree942df9c883b77ee5aefa070ef5b8e67636d0af9c
parent45630ef554d7d20601d9790bc1c0101675eb5e08 (diff)
Set SELinux context on private host keys as well as public host keys
(closes: #687436).
-rw-r--r--debian/changelog2
-rw-r--r--debian/openssh-server.postinst2
2 files changed, 3 insertions, 1 deletions
diff --git a/debian/changelog b/debian/changelog
index 099cd254b..c9b5dadc7 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -3,6 +3,8 @@ openssh (1:6.2p2-4) UNRELEASED; urgency=low
3 * Fix non-portable shell in ssh-copy-id (closes: #711162). 3 * Fix non-portable shell in ssh-copy-id (closes: #711162).
4 * Rebuild against debhelper 9.20130604 with fixed dependencies for 4 * Rebuild against debhelper 9.20130604 with fixed dependencies for
5 invoke-rc.d and Upstart jobs (closes: #711364). 5 invoke-rc.d and Upstart jobs (closes: #711364).
6 * Set SELinux context on private host keys as well as public host keys
7 (closes: #687436).
6 8
7 -- Colin Watson <cjwatson@debian.org> Fri, 31 May 2013 16:20:49 +0100 9 -- Colin Watson <cjwatson@debian.org> Fri, 31 May 2013 16:20:49 +0100
8 10
diff --git a/debian/openssh-server.postinst b/debian/openssh-server.postinst
index 087a7125e..bec99f746 100644
--- a/debian/openssh-server.postinst
+++ b/debian/openssh-server.postinst
@@ -102,7 +102,7 @@ create_key() {
102 ssh-keygen -q -f "$file" -N '' "$@" 102 ssh-keygen -q -f "$file" -N '' "$@"
103 echo 103 echo
104 if which restorecon >/dev/null 2>&1; then 104 if which restorecon >/dev/null 2>&1; then
105 restorecon "$file.pub" 105 restorecon "$file" "$file.pub"
106 fi 106 fi
107 fi 107 fi
108} 108}