#!/bin/sh
# postinst script for siduction-archive-keyring

set -e

case "$1" in
	configure)
		TRUSTEDFILE='/etc/apt/trusted.gpg'
			if [ -e "$TRUSTEDFILE" ]; then
				apt-key --keyring "$TRUSTEDFILE" del 45C45076  2>/dev/null || :
			fi
		;;
	remove|upgrade|failed-upgrade|abort-install|abort-upgrade|disappear)
		;;
	*)
		echo "postinst called with unknown argument \'$1'" >&2
		exit 1
	;;
esac

# dh_installdeb will replace this with shell code automatically
# generated by other debhelper scripts.

#DEBHELPER#

exit 0
