blob: 9c780000d18445bf449374bb41f897b2f78b1901 (
plain)
1
2
3
4
5
6
7
8
9
|
#!/bin/sh -e
case "$1" in
remove|purge)
if which apt-key >/dev/null; then
echo -n Removing keyid 0xCBBFF2FC3F8F5540 from APT keyring -" " && apt-key del CBBFF2FC3F8F5540
fi
;;
esac
|