summaryrefslogtreecommitdiff
path: root/debian
diff options
context:
space:
mode:
authorColin Watson <cjwatson@debian.org>2014-02-12 11:50:05 +0000
committerColin Watson <cjwatson@debian.org>2014-02-12 11:50:05 +0000
commit01b5815d0ef4be4f74e2e152156f53dde4bc20c7 (patch)
tree475b10a3227899a2260eae32ea0b7f70da161000 /debian
parente7cf31b81380f497e29bb9dbafd5a526a66310ba (diff)
Avoid stdout noise from which(1) on purge of openssh-client.
Diffstat (limited to 'debian')
-rw-r--r--debian/changelog1
-rw-r--r--debian/openssh-client.postrm2
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 ;;