summaryrefslogtreecommitdiff
path: root/debian/postrm
diff options
context:
space:
mode:
authorPhilipp Kern <pkern@debian.org>2008-03-19 14:34:16 +0100
committerPhilipp Kern <pkern@debian.org>2008-03-19 14:34:16 +0100
commit837acf438805c3ba03e4f966a3379ea5eff5cae1 (patch)
tree522c38582162a523241c329ac127423632c067c7 /debian/postrm
parentfa082eba589c88a784abe800b770c9e954bd7558 (diff)
downloadca-certificates-837acf438805c3ba03e4f966a3379ea5eff5cae1.tar.gz
Imported Debian version 20061027.2debian/20061027.2
Diffstat (limited to 'debian/postrm')
-rw-r--r--debian/postrm5
1 files changed, 2 insertions, 3 deletions
diff --git a/debian/postrm b/debian/postrm
index 41a8f2e..cc8ea21 100644
--- a/debian/postrm
+++ b/debian/postrm
@@ -18,11 +18,10 @@ set -e
case "$1" in
remove)
- cd /etc/ssl/certs
echo -n "Removing hash symlinks in /etc/ssl/certs ..."
- find . -type l -print | while read h
+ find /etc/ssl/certs -type l -print | while read h
do
- test -f $h || rm -f $h
+ test -f "$h" || rm -f "$h"
done
echo done.
;;