diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2019-02-08 20:51:15 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2019-02-08 20:51:15 +0000 |
commit | 1fe331430c9f2a0dcfa5fa32734ab203a49dd89c (patch) | |
tree | aac5fd04ff15470c6f22b3175e97b0bcfe25bd6f | |
parent | Releasing debian version 20190101-1. (diff) | |
download | progress-linux-1fe331430c9f2a0dcfa5fa32734ab203a49dd89c.tar.xz progress-linux-1fe331430c9f2a0dcfa5fa32734ab203a49dd89c.zip |
Silencing rmdir in postrm.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
-rwxr-xr-x | debian/progress-linux.postrm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/debian/progress-linux.postrm b/debian/progress-linux.postrm index c5a43d7..086b5ff 100755 --- a/debian/progress-linux.postrm +++ b/debian/progress-linux.postrm @@ -33,7 +33,7 @@ Remove_ssh_known_hosts () rm -f /etc/ssh/ssh_known_hosts.tmp rm -f /etc/ssh/ssh_known_hosts - rmdir /etc/ssh 2>&1 || true + rmdir /etc/ssh > /dev/null 2>&1 || true else mv -f /etc/ssh/ssh_known_hosts.tmp /etc/ssh/ssh_known_hosts fi |