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