Files
bsdports/net/squid/files/pkg-deinstall.in
2019-12-26 07:26:06 +00:00

20 lines
279 B
Bash

#!/bin/sh
set -x
SQUID_LOGDIR="%%SQUID_LOGDIR%%"
SQUID_SWAPDIR="%%SQUID_SWAPDIR%%"
SQUID_RUNDIR="%%SQUID_RUNDIR%%"
case $2 in
DEINSTALL)
;;
POST-DEINSTALL)
for dir in ${SQUID_SWAPDIR} ${SQUID_LOGDIR} ${SQUID_RUNDIR}; do
rmdir ${dir}
done
;;
esac
exit 0
#EOF