#!/bin/sh
# prerm script for libreoffice-trinity-keyring

set -e

case "$1" in
    remove)
      if [ -x /usr/bin/apt-key ]; then
        # Key C72B4A743F22604B (2015.08.31)
        # Attention: apt-key does not work correctly with long key ID
        apt-key del 3F22604B 2> /dev/null || true
      fi
    ;;

    upgrade|failed-upgrade|deconfigure)
    ;;

    *)
        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
