diff options
-rw-r--r-- | debian/changelog | 3 | ||||
-rwxr-xr-x | sbin/update-ca-certificates | 8 |
2 files changed, 0 insertions, 11 deletions
diff --git a/debian/changelog b/debian/changelog index 45af3cf..bec0b2d 100644 --- a/debian/changelog +++ b/debian/changelog @@ -3,9 +3,6 @@ ca-certificates (20181220) UNRELEASED; urgency=medium * debian/ca-certificates.postinst: Fix permissions on /usr/local/share/ca-certificates when using symlinks. Closes: #916833 - * sbin/update-ca-certificates: - Remove orphaned symlinks found in /etc/ssl/certs, to prevent `openssl - rehash` from exiting with an error. Closes: #895482, #895473 * mozilla/{certdata.txt,nssckbi.h}: Update Mozilla certificate authority bundle to version 2.28. The following certificate authorities were added (+): diff --git a/sbin/update-ca-certificates b/sbin/update-ca-certificates index 175035a..bdf5b27 100755 --- a/sbin/update-ca-certificates +++ b/sbin/update-ca-certificates @@ -111,14 +111,6 @@ remove() { fi } -# Remove all orphan symlinks found in ETCCERTSDIR, to prevent -# `openssl rehash` from exiting with an error. See #895482, #895473. -find $ETCCERTSDIR -type l ! -exec test -e {} \; -print | while read orphan -do - rm -f "$orphan" - echo "Removed orphan symlink $orphan" -done - cd "$ETCCERTSDIR" if [ "$fresh" = 1 ]; then echo "Clearing symlinks in $ETCCERTSDIR..." |