summaryrefslogblamecommitdiff
path: root/russian/apache13-modssl/pkg-deinstall
blob: d2e1679f1abd5352eb7c54384d73903cddab53d8 (plain) (tree)



















                                                                                                             
#!/bin/sh
# $FreeBSD: /tmp/pcvs/ports/russian/apache13-modssl/Attic/pkg-deinstall,v 1.1 2001-11-08 11:23:21 demon 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