a98b1edcc9
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
8 lines
157 B
Bash
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
|