#!/bin/sh
# prerm script for nautilus-pastebin
#
# see: dh_installdeb(1)

set -e

case "$1" in
    remove|upgrade|deconfigure)
        rm -f /var/lib/update-notifier/user.d/nautilus-pastebin-notification
    ;;

    failed-upgrade)
    ;;

    *)
        echo "prerm called with unknown argument \`$1'" >&2
        exit 1
    ;;
esac

#DEBHELPER#

exit 0
