From: Michael Shuler Date: Sat, 17 Sep 2011 22:28:26 +0000 (-0500) Subject: Import Debian version 20090709 X-Git-Url: https://git.donarmstrong.com/?p=ca-certificates.git;a=commitdiff_plain;h=b76d253d5db9a66ac369774097a04418490ed95a Import Debian version 20090709 --- diff --git a/debian/changelog b/debian/changelog index 609ddd6..575fb00 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,9 @@ +ca-certificates (20090709) unstable; urgency=low + + * Fix purge by checking for `/etc/ssl/certs' first. (Closes: #536331) + + -- Philipp Kern Thu, 09 Jul 2009 10:35:39 +0200 + ca-certificates (20090708) unstable; urgency=low * Removed CA files: diff --git a/debian/postrm b/debian/postrm index ae65ee5..a397de9 100644 --- a/debian/postrm +++ b/debian/postrm @@ -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