#!/bin/sh
#
# $FreeBSD: tags/RELEASE_11_0_0/www/p5-FCGI-Spawn/pkg-deinstall 340719 2014-01-22 15:52:06Z mat $
#

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

USER=fcgi

if pw usershow "${USER}" 2>/dev/null 1>&2; then
	echo "To delete user permanently, use 'pw userdel ${USER}'. Also, unused groups of that user should be deleted, too"
fi

exit 0
