mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-23 00:43:28 +00:00
967ce18b9b
Expand %%PREFIX%% in the rc script. Create the group 'xorp' when the package is installed. Fix the snmpd configure check and MIB module installation. Fix the pkg-plist. Note that as the XORP automake install target does not adhere to hier(7), it may be desirable to specify PREFIX when building and/or installing the port. PR: ports/103879 Submitted by: Benjamin Black <ben@layer8.net>
23 lines
330 B
Bash
23 lines
330 B
Bash
#!/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
|