mirror of
https://github.com/yuezk/GlobalProtect-openconnect.git
synced 2025-04-02 18:31:50 -04:00
15 lines
177 B
Bash
Executable File
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
|