#!/bin/sh LOGDIR=/var/log/gini case $2 in PRE-INSTALL) USER=gini GROUP=${USER} 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." else if pw useradd ${USER} -g ${GROUP} -h - \ -s /sbin/nologin -d /nonexistent -c 'GINI streaming server' then echo "Added user \"${USER}\"." else echo "Adding user \"${USER}\" failed..." exit 1 fi fi mkdir -p ${LOGDIR} chown -R gini:gini ${LOGDIR} ;; esac
aboutsummaryrefslogtreecommitdiffstats
path: root/sysutils/pdixtract
Commit message (Expand)AuthorAgeFilesLines
* . add LICENSE=GPLv2;bsam2013-05-281-6/+5
* - Reassign to the heaptabthorpe2011-07-051-1/+1
* - Get Rid MD5 supportmiwi2011-03-191-1/+0
* - Make the distfile fetchable againmarkus2008-06-261-1/+2
* Add patch in order to fix the build with gcc 4.1 and set WRKSRC accordinglymarkus2006-12-142-0/+29
* SHA256ifyedwin2006-01-241-0/+1