summaryrefslogblamecommitdiff
path: root/www/apache13/pkg-deinstall
blob: dc23907bb76890b019d11d03742f02f3d8fbc09b (plain) (tree)



















                                                                
#!/bin/sh
# $FreeBSD$
#

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