#!/bin/sh case $2 in POST-INSTALL) USER=avahi GROUP=${USER} UID=558 GID=${UID} PW=/usr/sbin/pw 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} -g ${GID}; 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} -u ${UID} -g ${GROUP} -h - \ -d "/nonexistent" -s /sbin/nologin -c "Avahi Daemon User" then echo "Added user \"${USER}\"." else echo "Adding user \"${USER}\" failed..." exit 1 fi fi exit 0 ;; esac 44/git/freebsd-ports-gnome' title='freebsd-ports-gnome Git repository'/>
aboutsummaryrefslogtreecommitdiffstats
path: root/www/varnish-libvmod-awsrest
Commit message (Expand)AuthorAgeFilesLines
* Update to 62.10.vanilla2019-04-012-4/+4
* Add DOCS options to ports that should have one.mat2018-09-101-0/+2
* Update to 60.9.vanilla2018-06-282-4/+4
* Reduce dependency on the python2 metaportantoine2018-02-191-1/+1
* Update to 51.8.vanilla2017-08-022-4/+4
* Update to 51.7.vanilla2017-06-306-25/+20