Commit message (Expand) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Convert u* and v* to USES=zip | bapt | 2014-03-11 | 1 | -1/+1 |
* | - Use single space after WWW: | sunpoet | 2013-11-18 | 1 | -1/+1 |
* | Support stage, use bsdtar to extract | bapt | 2013-11-04 | 1 | -4/+3 |
#!/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 t repository'/>
index : freebsd-ports-gnome | ||
FreeBSD GNOME current development ports (https://github.com/freebsd/freebsd-ports-gnome) |
aboutsummaryrefslogtreecommitdiffstats |
Commit message (Expand) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Convert u* and v* to USES=zip | bapt | 2014-03-11 | 1 | -1/+1 |
* | - Use single space after WWW: | sunpoet | 2013-11-18 | 1 | -1/+1 |
* | Support stage, use bsdtar to extract | bapt | 2013-11-04 | 1 | -4/+3 |