#!/bin/sh if [ "$2" != "PRE-INSTALL" ]; then exit 0 fi PW=/usr/sbin/pw ECHO=echo USER=noip GROUP=${USER} if ! ${PW} groupshow "${GROUP}" 2>/dev/null 1>&2; then if ${PW} groupadd ${GROUP}; then ${ECHO} "Added group \"${GROUP}\"." else ${ECHO} "Adding group \"${GROUP}\" failed..." exit 1 fi fi if ! ${PW} usershow "${USER}" 2>/dev/null 1>&2; then if ${PW} useradd ${USER} -g ${GROUP} -h - \ -s "/sbin/nologin" -d "/nonexistent" \ -c "noip pseudo-user"; \ then ${ECHO} "Added user \"${USER}\"." else ${ECHO} "Adding user \"${USER}\" failed..." exit 1 fi fi exit 0 rts-graphics Git repository'/>
aboutsummaryrefslogtreecommitdiffstats
path: root/devel/libffi
Commit message (Collapse)AuthorAgeFilesLines
* De-pkg-comment.knu2003-02-212-1/+1
|
* Update MASTER_SITES and add WWW.kevlo2002-10-242-1/+3
| | | | | PR: 44427 Submitted by: MAINTAINER
* Rename INSTALLS_SHLIBS to INSTALLS_SHLIB. (There was a typo in theasami2000-06-171-1/+1
| | | | | | | | | previous commit message to bsd.port.mk, which said INSTALL_SHLIBS. Boo.) Line up the rhs of variable assignments nicely. Remove a couple of extra whitespaces while I'm here. Suggested by: sobomax
* Fourth round of INSTALLS_SHLIBS conversion.sobomax2000-06-162-5/+1
|
* PORTNAME/PORTVERSION updatemharo2000-04-121-2/+2
|
* Update MASTER_SITES and fix a few whitespace nits.steve1999-11-271-4/+4
| | | | | PR: 15039 Submitted by: maintainer
* Change Id->FreeBSD.obrien1999-08-25