freebsd-ports/security/sancp/pkg-install
Niels Heinen 4c30e8b53d New port based on submission by Paul Schmehl
Sancp is a network security tool designed to collect
statistical information regarding network traffic, as
well as, collect the traffic itself in pcap format, all
for the purpose of: auditing, historical analysis, and
network activity discovery.

PR:		ports/77426
Submitted by:	Paul Schmehl
Approved by:	nectar (mentor)
2005-06-07 20:56:27 +00:00

43 lines
952 B
Bash

#!/bin/sh
PATH=/bin:/usr/sbin
USER=sancp
GROUP=${USER}
LOG_DIR=/var/log/sancp
if [ ! -d ${LOG_DIR} ]; then mkdir ${LOG_DIR}; fi
if pw group show "${GROUP}" 2>/dev/null; then
echo "You already have a group \"${GROUP}\", so I will use it."
else
if pw groupadd ${GROUP}; then
echo "Added group \"${GROUP}\"."
else
echo "Adding group \"${GROUP}\" failed..."
exit 1
fi
fi
if pw user show "${USER}" 2>/dev/null; then
echo "You already have a user \"${USER}\", so I will use it."
if pw usermod ${USER} -d ${LOG_DIR}
then
echo "Changed home directory of \"${USER}\" to \"${LOG_DIR}\""
else
echo "Changing home directory of \"${USER}\" to \"${LOG_DIR}\" failed..."
exit 1
fi
else
if pw useradd ${USER} -g ${GROUP} -h - \
-d ${LOG_DIR} -s /sbin/nologin -c "SANCP Daemon"
then
echo "Added user \"${USER}\"."
else
echo "Adding user \"${USER}\" failed..."
exit 1
fi
fi
chown -R ${USER}:${GROUP} ${LOG_DIR}
chmod 750 ${LOG_DIR}