opnsense-ports/audio/umurmur/pkg-install
Franco Fichtner 8cb1a96ede ports: pull in a snapshot of the FreeBSD ports tree
Taken from:	https://github.com/freebsd/freebsd-ports.git
Commit id:	5070672073b68be364139bc6b3a89100bd17d331
2014-11-09 14:03:21 +01:00

38 lines
670 B
Bash

#!/bin/sh
# $FreeBSD$
PATH=/bin:/usr/sbin
USER=umurmur
GROUP=umurmur
HOME=/nonexistent
RUNDIR=/var/run/umurmur
case $2 in
PRE-INSTALL)
if pw group show ${GROUP} 2> /dev/null; then
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
else
if pw useradd ${USER} -g ${GROUP} -h - \
-d ${HOME} -c "uMurmur"
then
echo "Added user \"${USER}\"."
else
echo "Adding user \"${USER}\" failed..."
exit 1
fi
fi
mkdir -m 750 ${RUNDIR} 2> /dev/null
chown -R ${USER}:${GROUP} ${RUNDIR}
;;
esac