mirror of
https://git.freebsd.org/ports.git
synced 2025-06-02 19:36:28 -04:00
25 lines
633 B
Bash
25 lines
633 B
Bash
#!/bin/sh
|
|
|
|
PATH=/bin:/usr/sbin:/usr/bin:/usr/sbin
|
|
|
|
user=%%BOINC_CLIENT_USER%%
|
|
group=%%BOINC_CLIENT_GROUP%%
|
|
home="%%BOINC_CLIENT_HOME%%"
|
|
option_manager=%%OPTION_MANAGER%%
|
|
option_user=%%OPTION_USER%%
|
|
|
|
case $2 in
|
|
POST-DEINSTALL)
|
|
if [ -n "${option_user}" ] ; then
|
|
if [ -n "${option_manager}" -a -e "${home}/skins" -a `readlink "${home}/skins"` = "%%PREFIX%%/share/boinc/skins" ]; then
|
|
rm -f "${home}/skins"
|
|
fi
|
|
if [ -e "${home}/ca-bundle.crt" -a `readlink "${home}/ca-bundle.crt"` = "%%LOCALBASE%%/share/certs/ca-root-nss.crt" ]; then
|
|
rm -f "${home}/ca-bundle.crt"
|
|
fi
|
|
rmdir "${home}" >/dev/null 2>&1
|
|
fi
|
|
;;
|
|
esac
|
|
|
|
exit 0
|