diff options
author | Sergei Kolobov <sergei@FreeBSD.org> | 2004-01-16 21:18:20 +0000 |
---|---|---|
committer | Sergei Kolobov <sergei@FreeBSD.org> | 2004-01-16 21:18:20 +0000 |
commit | 07a7de4337c11b7457da3c03b0586e8b300fffeb (patch) | |
tree | 8e40c8b62d7b5bf08fbf0f01cee14ea2809827f9 /www/squid30/pkg-deinstall | |
parent | 51bb88223c9b028608721237c99936bb9280edf3 (diff) | |
download | ports-07a7de4337c11b7457da3c03b0586e8b300fffeb.tar.gz ports-07a7de4337c11b7457da3c03b0586e8b300fffeb.zip |
Notes
Diffstat (limited to 'www/squid30/pkg-deinstall')
-rw-r--r-- | www/squid30/pkg-deinstall | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/www/squid30/pkg-deinstall b/www/squid30/pkg-deinstall new file mode 100644 index 000000000000..3a95b4f50e0d --- /dev/null +++ b/www/squid30/pkg-deinstall @@ -0,0 +1,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 |