mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-04 01:48:54 +00:00
23 lines
330 B
Plaintext
23 lines
330 B
Plaintext
|
#!/bin/sh
|
||
|
#
|
||
|
# $FreeBSD$
|
||
|
#
|
||
|
|
||
|
PATH=/bin:/usr/sbin
|
||
|
|
||
|
if [ -z "${XORP_GROUP}" ]; then
|
||
|
XORP_GROUP=xorp
|
||
|
fi
|
||
|
|
||
|
case $2 in
|
||
|
POST-DEINSTALL)
|
||
|
if pw group show ${XORP_GROUP} 2>/dev/null
|
||
|
then
|
||
|
echo "Deleting group ${XORP_GROUP}..."
|
||
|
pw groupdel -n ${XORP_GROUP} 2>/dev/null
|
||
|
else
|
||
|
echo "Group ${XORP_GROUP} not found!"
|
||
|
fi
|
||
|
;;
|
||
|
esac
|