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

set -e

case "$1" in
    configure)
      if [ -x /usr/bin/apt-key ]; then
        # Key C72B4A743F22604B (2015.08.31)
        apt-key add /usr/share/keyrings/libreoffice-trinity-keyring.gpg > /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
