summaryrefslogtreecommitdiff
path: root/www/zope213/pkg-deinstall
blob: af2091a5b2275fa337db8d6f8e6e3bca631ab071 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#!/bin/sh
# $FreeBSD$
#

if [ "$2" != "POST-DEINSTALL" ]; then
    exit 0
fi

USER=www

if pw usershow "${USER}" 2>/dev/null 1>&2; then
	echo "To delete WWW (Zope or Apache and so on) user permanently, use 'pw userdel ${USER}'"
fi

exit 0