#!/bin/sh

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