2024-03-27 09:19:08 -04:00

17 lines
190 B
Bash
Executable File

#!/bin/sh
set -e
case "$1" in
purge|remove|upgrade)
# Remove the gpgui binary downloaded at runtime
rm -f /usr/bin/gpgui
;;
*)
;;
esac
#DEBHELPER#
exit 0