summaryrefslogtreecommitdiffstats
path: root/ubuntu/_base/metapackages/trinity-keyring/debian/prerm
blob: 4af539bb33642b91bf6459cb8c7be72e4e63e89f (plain)
1
2
3
4
5
6
7
8
9
#!/bin/sh

case "$1" in
    remove|purge)
	if [ -x /usr/bin/apt-key ]; then
		/usr/bin/apt-key del 2B8638D0
	fi
	;;
esac