freebsd-ports/databases/dbXML/pkg-deinstall
Ernst de Haan 7f019c034b Correcting some problems in the control script
and adding a pkg-deinstall and another patch.

Submitted by:	maintainer
2002-03-30 11:48:54 +00:00

20 lines
372 B
Bash

#!/bin/sh
# $FreeBSD: /tmp/pcvs/ports/databases/dbXML/pkg-deinstall,v 1.1 2002-03-30 11:48:53 znerd Exp $
#
if [ "$2" != "POST-DEINSTALL" ]; then
exit 0
fi
USER=dbxml
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