]> git.donarmstrong.com Git - ca-certificates.git/commitdiff
Import Debian version 20090709
authorMichael Shuler <michael@pbandjelly.org>
Sat, 17 Sep 2011 22:28:26 +0000 (17:28 -0500)
committerMichael Shuler <michael@pbandjelly.org>
Sat, 17 Sep 2011 22:28:26 +0000 (17:28 -0500)
debian/changelog
debian/postrm

index 609ddd64a98141bc4670a965ba32417cc169a6ec..575fb005b4065398a0440304aa24a40d6d1643fc 100644 (file)
@@ -1,3 +1,9 @@
+ca-certificates (20090709) unstable; urgency=low
+
+  * Fix purge by checking for `/etc/ssl/certs' first.  (Closes: #536331)
+
+ -- Philipp Kern <pkern@debian.org>  Thu, 09 Jul 2009 10:35:39 +0200
+
 ca-certificates (20090708) unstable; urgency=low
 
   * Removed CA files:
index ae65ee5fd868a2d5235f0b247ec2036ff737be41..a397de918ca61c2a85f6a1559e969526cbe653be 100644 (file)
@@ -17,6 +17,10 @@ set -e
 # for details, see /usr/share/doc/packaging-manual/
 
 remove_dangling_symlinks() {
+    if ! [ -d /etc/ssl/certs ]
+    then
+        return
+    fi
     echo -n "Removing dangling symlinks from /etc/ssl/certs... "
     find /etc/ssl/certs -type l -print | while read h
     do