1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-12-27 05:10:36 +00:00
freebsd-ports/net-mgmt/netmond/pkg-install
Sergey Matveychuk b4dd05271c Netmond - IP network monitoring daemon.
PR:		ports/65033
Submitted by:	Viktor Fomichev <vfom@narod.ru>
2004-08-18 17:08:08 +00:00

32 lines
580 B
Bash

#!/bin/sh
#
PKGNAME=$1
DATADIR=/var/netmon
#
case $2 in
PRE-INSTALL)
if pw user show netmon 2>/dev/null ; then
echo "User 'netmon' exists." ;
else
pw useradd -n netmon -g wheel -c 'Network monitor account' -m ;
fi
if pw group show netmon 2>/dev/null ; then
echo "Group 'netmon' exists." ;
else
pw groupadd netmon -M root,netmon ;
fi
if [ ! -d ${DATADIR} ] ; then
mkdir ${DATADIR}
chown root:netmon ${DATADIR}
chmod 750 ${DATADIR}
fi
;;
POST-INSTALL)
;;
*)
echo "Unexpected Argument $2!!!"
exit 1
;;
esac
exit 0