#!/bin/sh - # # $FreeBSD: ports/security/prelude-manager/files/pkg-deinstall.in,v 1.1 2007/08/15 06:48:36 clsung Exp $ # PRELUDEUSER=prelude PRELUDEGROUP=prelude if [ "$2" = "POST-DEINSTALL" ]; then if /usr/sbin/pw group show "${PRELUDEGROUP}" 2>&1 >/dev/null; then echo "You should manually remove the \"${PRELUDEGROUP}\" group." fi if /usr/sbin/pw user show "${PRELUDEUSER}" 2>&1 >/dev/null; then echo "You should manually remove the \"${PRELUDEUSER}\" user." fi fi