diff options
Diffstat (limited to 'net-mgmt/nagios12/files/pkg-deinstall.in')
-rw-r--r-- | net-mgmt/nagios12/files/pkg-deinstall.in | 23 |
1 files changed, 0 insertions, 23 deletions
diff --git a/net-mgmt/nagios12/files/pkg-deinstall.in b/net-mgmt/nagios12/files/pkg-deinstall.in deleted file mode 100644 index fad8fb86716e..000000000000 --- a/net-mgmt/nagios12/files/pkg-deinstall.in +++ /dev/null @@ -1,23 +0,0 @@ -#!/bin/sh -# -# $FreeBSD: /tmp/pcvs/ports/net-mgmt/nagios12/files/Attic/pkg-deinstall.in,v 1.1 2008-09-03 00:30:56 pgollucci Exp $ -# - -USER=%%NAGIOSUSER%% -GROUP=%%NAGIOSGROUP%% -DIR=%%NAGIOSDIR%% - -if [ "$2" = "POST-DEINSTALL" ]; then - - if /usr/sbin/pw group show "${GROUP}" 2>&1 >/dev/null; then - echo "You should manually remove the \"${GROUP}\" group." - fi - - if /usr/sbin/pw user show "${USER}" 2>&1 >/dev/null; then - echo "You should manually remove the \"${USER}\" user." - fi - - if [ -e ${DIR} ]; then - echo "You should manually remove the \"${DIR}\" directory." - fi -fi |