diff options
author | Baptiste Daroussin <bapt@FreeBSD.org> | 2014-09-01 16:48:53 +0000 |
---|---|---|
committer | Baptiste Daroussin <bapt@FreeBSD.org> | 2014-09-01 16:48:53 +0000 |
commit | 8a2ac20b3416bb80f06c95f516989794723d11a8 (patch) | |
tree | 847476a3e4b2e087c417ce68287b963678d09294 /java/jboss5/files/pkg-install.in | |
parent | Fix build on 8 and 9. (diff) |
Remove non staged ports without pending PR from j*
Notes
Notes:
svn path=/head/; revision=366899
Diffstat (limited to 'java/jboss5/files/pkg-install.in')
-rw-r--r-- | java/jboss5/files/pkg-install.in | 46 |
1 files changed, 0 insertions, 46 deletions
diff --git a/java/jboss5/files/pkg-install.in b/java/jboss5/files/pkg-install.in deleted file mode 100644 index 687ec3fc1f9e..000000000000 --- a/java/jboss5/files/pkg-install.in +++ /dev/null @@ -1,46 +0,0 @@ -#!/bin/sh -# -# Checks if the 'www' user and group exist. If they don't, then -# an attempt is made to create both. -# -# $FreeBSD$ -# - -# Make sure we're called during the 'make install' process -if [ "$2" != "PRE-INSTALL" ]; then - exit 0 -fi - -# Set some constants -USER=www -GROUP=${USER} -UID=80 -GID=${UID} - -# See if the group already exists -if ! pw groupshow "${GROUP}" 2>/dev/null 1>&2; then - - # If not, try to create it - if pw groupadd ${GROUP} -g ${GID}; then - echo "Added group \"${GROUP}\"." - else - echo "Adding group \"${GROUP}\" failed..." - exit 1 - fi -fi - -# See if the user already exists -if ! pw usershow "${USER}" 2>/dev/null 1>&2; then - - # If not, try to create it - if pw useradd ${USER} -u ${UID} -g ${GROUP} -h - \ - -s "/sbin/nologin" -d "/nonexistent" \ - -c "World Wide Web Owner"; \ - then - echo "Added user \"${USER}\"." - else - echo "Adding user \"${USER}\" failed..." - exit 1 - fi -fi -exit 0 |