#!/bin/sh # # $FreeBSD: head/net/boinc-client/files/pkg-install.in 325489 2013-08-27 21:37:47Z rene $ # 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