devuan-keyring.postrm (338B)
1 #!/bin/sh 2 set -e 3 4 case "$1" in 5 purge|remove|upgrade|failed-upgrade|abort-install|abort-upgrade|disappear) 6 TRUSTEDPARTS="/etc/apt/trusted.gpg.d" 7 eval "$(apt-config shell TRUSTEDPARTS Dir::Etc::trustedparts/d)" 8 9 rm -f "${TRUSTEDPARTS}"devuan-*.gpg 10 ;; 11 *) 12 echo "postrm called with unknown argument: $1" >&2 13 exit 1 14 ;; 15 esac 16 17 #DEBHELPER#