~ubuntu-branches/ubuntu/quantal/ca-certificates/quantal-security

« back to all changes in this revision

Viewing changes to debian/config.in

  • Committer: Bazaar Package Importer
  • Author(s): Philipp Kern
  • Date: 2009-07-09 10:35:39 UTC
  • mfrom: (9.1.4 karmic)
  • Revision ID: james.westby@ubuntu.com-20090709103539-yntccp0wqnf4a361
Tags: 20090709
Fix purge by checking for `/etc/ssl/certs' first.  (Closes: #536331)

Show diffs side-by-side

added added

removed removed

Lines of Context:
78
78
   else
79
79
     CERTS_AVAILABLE="$CERTS_AVAILABLE, $crt"
80
80
   fi
81
 
   if echo "$CERTS_DISABLED" | grep -F -q -x "$crt" > /dev/null 2>&1; then
 
81
   if (echo "$CERTS_DISABLED" | grep -F -q -x "$crt") > /dev/null 2>&1; then
82
82
     : # echo "I: ignore $crt"
83
 
   elif echo "$CERTS_TRUST" | grep -F -q -x "$crt" > /dev/null 2>&1; then
 
83
   elif (echo "$CERTS_TRUST" | grep -F -q -x "$crt") > /dev/null 2>&1; then
84
84
     # already trusted
85
85
     if test "$CERTS_ENABLED" = ""; then
86
86
       CERTS_ENABLED="$crt"