summaryrefslogtreecommitdiff
path: root/debian/openssh-client.postrm
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/openssh-client.postrm
parente7cf31b81380f497e29bb9dbafd5a526a66310ba (diff)
Avoid stdout noise from which(1) on purge of openssh-client.
Diffstat (limited to 'debian/openssh-client.postrm')
-rw-r--r--debian/openssh-client.postrm2
1 files changed, 1 insertions, 1 deletions
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 ;;