GlobalProtect-openconnect/packaging/deb/postrm
2024-03-11 07:55:49 -04:00

15 lines
177 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
exit 0