a9f8d67da8
or not and for LDAP support. Sample blacklists are now installed in a *.sample hierarchy and copied other to the working one only if not present. This fixes a problem with user blacklists being removed/overwritten on port deinstall and update. Patched the configure to correctly detect ldap library. This was requested by many. Many thanks to Gianni Doe <gdoe6545@yahoo.it> who tested the patch and reported back ldap support is working properly. PR: ports/136628 Submitted by: Guido Falsi <mad@madpilot.net> (maintainer)
11 lines
207 B
Bash
11 lines
207 B
Bash
#!/bin/sh
|
|
# $FreeBSD$
|
|
|
|
if [ "$2" != "POST-DEINSTALL" ]; then
|
|
exit 0
|
|
fi
|
|
|
|
echo "If you are completely removing squidguard you may want to also"
|
|
echo "manually delete the blacklists in %%DATADIR%%"
|
|
|
|
exit 0
|