#!/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