blob: 3a95b4f50e0dfd299b38319020a07898b504709a (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
#!/bin/sh
#
# $FreeBSD$
#
PATH=/bin:/usr/bin:/usr/sbin
pkgname=$1
case $2 in
DEINSTALL)
;;
POST-DEINSTALL)
echo "===> post-deinstallation information for ${pkgname}"
echo ""
echo " Please note that ${pkgname} was not completely removed"
echo " from this system."
echo ""
echo " The cache and log directories, squid's user account,"
echo " and any modified configuration files have been preserved"
echo " in case you want to install an updated version of squid"
echo " on this system. You must remove them manually if you do"
echo " not want to use squid any longer."
echo ""
;;
*)
exit 64
;;
esac
exit 0
|