]> git.donarmstrong.com Git - ca-certificates.git/commitdiff
Imported Debian version 20061027.2
authorPhilipp Kern <pkern@debian.org>
Wed, 19 Mar 2008 13:34:16 +0000 (14:34 +0100)
committerPhilipp Kern <pkern@debian.org>
Wed, 19 Mar 2008 13:34:16 +0000 (14:34 +0100)
debian/changelog
debian/postrm

index 27d6625089d9c57f0e8bd00d7713c70151b27751..42cb7af13ba28e73b4be6a15a5b011f4b3bd1f1c 100644 (file)
@@ -1,3 +1,11 @@
+ca-certificates (20061027.2) unstable; urgency=low
+
+  * Non-maintainer upload to fix an RC issue revealed by the last NMU.
+  * Avoid cd to /etc/ssl/certs to removing hash symlinks
+    Closes: #408469
+
+ -- Christian Perrier <bubulle@debian.org>  Fri,  2 Feb 2007 07:23:27 +0100
+
 ca-certificates (20061027.1) unstable; urgency=low
 
   * Non-maintainer upload to fix remaining l10n issues
index 41a8f2e4587d5dc20c788fb6a9e27cbd914da145..cc8ea2189b5f53182626ebb77d0c54fd332af6a5 100644 (file)
@@ -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.
        ;;