summaryrefslogtreecommitdiff
path: root/www/apache2/pkg-deinstall
blob: 61ed1a6c6a38f341e5479961cf88498e400b84b4 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#!/bin/sh
# $FreeBSD: /tmp/pcvs/ports/www/apache2/Attic/pkg-deinstall,v 1.3 2001-10-29 20:05:37 ache Exp $
#

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

USER=www

if pw usershow "${USER}" 2>/dev/null 1>&2; then
	if pw userdel ${USER}; then
		echo "Delete user/group \"${USER}\"."
	else
		echo "Deleting user/group \"${USER}\" failed..."
		exit 1
	fi
fi

exit 0