aboutsummaryrefslogtreecommitdiff
path: root/www/zerowait-httpd/files/pkg-deinstall.in
blob: 90b013fc38939dc12c5cb06e36a3070a62b4ab84 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#!/bin/sh

PATH=/bin:/usr/bin:/usr/sbin
zerowait_logdir="%%LOCALBASE%%/0W-httpd/logs"

case $2 in
POST-DEINSTALL)
	if  [ -d ${zerowait_logdir} ] ; then
		echo "===> Post-deinstallation information for $1:"
		echo ""
		echo "     In order to ease updates, the log directories and"
		echo "     configuration files modified by you were preserved."
		echo ""
		echo "     Please remove them manually if you do not want to use"
		echo "     Zerowait any longer."
		echo ""
	fi
	;;
esac
exit 0