freebsd-ports/security/globalprotect-openconnect/pkg-deinstall
Jason W. Bacon a98b1edcc9 security/globalprotect-openconnect: Update to 1.4.4
New configuration interface
A few bug and security fixes
Add deinstall hook to terminate running processes that may be
incompatible with the new version

changes: https://github.com/yuezk/GlobalProtect-openconnect/releases

Reported by:    portscout
2022-05-26 07:53:26 -05:00

8 lines
157 B
Bash

#!/bin/sh
# gpclient will hang in some cases if the running gpservice is outdated
if [ x"$2" = x"DEINSTALL" ]; then
pkill gpservice gpclient
fi
exit 0