#!/bin/sh

set -e

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