summaryrefslogtreecommitdiff
path: root/debian/prerm
blob: 17de1b06f2480cec99c0d242968344ede78f6786 (plain)
1
2
3
4
5
6
7
8
9
10
11
#!/bin/sh

set -e

case "$1" in
    remove|purge)
	if which apt-key > /dev/null; then
		apt-key del 0x1E34A1828E207901
	fi
	;;
esac