X-Git-Url: https://git.saurik.com/apt.git/blobdiff_plain/5cb3acda9e97a13e669746b9e772350c7938e731..66706285737a895d0baf64c2387c58d5211be4f9:/debian/apt.postinst diff --git a/debian/apt.postinst b/debian/apt.postinst index 88fb932df..bd814e1af 100644 --- a/debian/apt.postinst +++ b/debian/apt.postinst @@ -15,13 +15,19 @@ set -e case "$1" in configure) + SECRING='/etc/apt/secring.gpg' + # test if secring is an empty normal file + if test -f $SECRING -a ! -s $SECRING; then + rm -f $SECRING + fi + apt-key update - if ! test -f /etc/apt/trusted.gpg; then - cp /usr/share/apt/debian-archive.gpg /etc/apt/trusted.gpg + # ensure tighter permissons on the logs, see LP: #975199 + if dpkg --compare-versions "$2" lt-nl 0.9.7.7; then + # ensure permissions are right + chmod -f 0640 /var/log/apt/term.log* || true fi - apt-key update - ;; abort-upgrade|abort-remove|abort-deconfigure)