diff options
Diffstat (limited to 'debian')
-rw-r--r-- | debian/changelog | 1 | ||||
-rw-r--r-- | debian/openssh-client.postrm | 2 |
2 files changed, 2 insertions, 1 deletions
diff --git a/debian/changelog b/debian/changelog index ca43c3762..c908bc162 100644 --- a/debian/changelog +++ b/debian/changelog | |||
@@ -4,6 +4,7 @@ openssh (1:6.5p1-3) UNRELEASED; urgency=medium | |||
4 | Urpala. | 4 | Urpala. |
5 | * Stop claiming that "Protocol 2" is a Debian-specific default; this has | 5 | * Stop claiming that "Protocol 2" is a Debian-specific default; this has |
6 | been upstream's default since 5.4p1. | 6 | been upstream's default since 5.4p1. |
7 | * Avoid stdout noise from which(1) on purge of openssh-client. | ||
7 | 8 | ||
8 | -- Colin Watson <cjwatson@debian.org> Tue, 11 Feb 2014 21:36:14 +0000 | 9 | -- Colin Watson <cjwatson@debian.org> Tue, 11 Feb 2014 21:36:14 +0000 |
9 | 10 | ||
diff --git a/debian/openssh-client.postrm b/debian/openssh-client.postrm index a3b610ed1..68c354481 100644 --- a/debian/openssh-client.postrm +++ b/debian/openssh-client.postrm | |||
@@ -13,7 +13,7 @@ case $1 in | |||
13 | rm -f /etc/ssh/ssh_known_hosts /etc/ssh/ssh_known_hosts2 | 13 | rm -f /etc/ssh/ssh_known_hosts /etc/ssh/ssh_known_hosts2 |
14 | rmdir --ignore-fail-on-non-empty /etc/ssh | 14 | rmdir --ignore-fail-on-non-empty /etc/ssh |
15 | 15 | ||
16 | if which delgroup; then | 16 | if which delgroup >/dev/null 2>&1; then |
17 | delgroup --quiet ssh > /dev/null || true | 17 | delgroup --quiet ssh > /dev/null || true |
18 | fi | 18 | fi |
19 | ;; | 19 | ;; |