mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-16 03:24:07 +00:00
b0fe9e8706
- consistently use "Squid" when referring to the software's name - define COMMENT a bit less chatty - replace the progeny.com mirror with the one hosted by Vistech - fix a wrong path in pkg-message.in (thanks to "Tuc at the Beach House") - pass ${squid_flags} when stopping or reconfiguring Squid (ports/100510) PR: ports/105023 Submitted by: Thomas-Martin Seck <tmseck@netcologne.de> (maintainer) Sponsored by: FreeBSD Bug-a-thon #2
41 lines
1009 B
Bash
41 lines
1009 B
Bash
#!/bin/sh
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PATH=/bin:/usr/bin:/usr/sbin
|
|
|
|
case $2 in
|
|
DEINSTALL)
|
|
cd ${PKG_PREFIX}/etc/squid || exit 1
|
|
for f in cachemgr.conf mime.conf msntauth.conf squid.conf; do
|
|
cmp -s -z ${f} ${f}.default && rm ${f}
|
|
done
|
|
;;
|
|
POST-DEINSTALL)
|
|
echo "===> post-deinstallation information for $1:"
|
|
echo ""
|
|
echo " Note:"
|
|
echo " Squid related user accounts and groups were not removed."
|
|
echo ""
|
|
echo " To remove the '%%SQUID_UID%%' user and the '%%SQUID_GID%%' group which were"
|
|
echo " created by a default installation of this package, run"
|
|
echo ""
|
|
echo " pw userdel -r -n %%SQUID_UID%% -u 100"
|
|
echo ""
|
|
if [ -d ${PKG_PREFIX}/squid -o -d ${PKG_PREFIX}/etc/squid ] ; then
|
|
echo ""
|
|
echo " To ease updates, the cache and log directories and"
|
|
echo " all configuration files modified by you were preserved."
|
|
echo ""
|
|
echo " Please remove them manually if you do not want to use"
|
|
echo " Squid any longer."
|
|
fi
|
|
echo ""
|
|
;;
|
|
*)
|
|
exit 64
|
|
;;
|
|
esac
|
|
exit 0
|