summaryrefslogtreecommitdiff
path: root/www/apache20/pkg-install
diff options
context:
space:
mode:
authorAndrey A. Chernov <ache@FreeBSD.org>2001-10-24 16:03:38 +0000
committerAndrey A. Chernov <ache@FreeBSD.org>2001-10-24 16:03:38 +0000
commit14850c029aa7188d804fcb596f784265cc388475 (patch)
tree48e69f36ec0ece2e6c1e2d1fe8863725d5ace142 /www/apache20/pkg-install
parentUpdate for acpica-unix-20011018. (diff)
Sync with main Apache
Submitted by: MAINTAINER
Notes
Notes: svn path=/head/; revision=49176
Diffstat (limited to 'www/apache20/pkg-install')
-rw-r--r--www/apache20/pkg-install34
1 files changed, 34 insertions, 0 deletions
diff --git a/www/apache20/pkg-install b/www/apache20/pkg-install
new file mode 100644
index 000000000000..cbeae9665004
--- /dev/null
+++ b/www/apache20/pkg-install
@@ -0,0 +1,34 @@
+#!/bin/sh
+# $FreeBSD$
+#
+
+if [ "$2" != "PRE-INSTALL" ]; then
+ exit 0
+fi
+
+USER=www
+GROUP=${USER}
+UID=80
+GID=${UID}
+
+if ! pw groupshow "${GROUP}" 2>/dev/null 1>&2; then
+ if pw groupadd ${GROUP} -g ${GID}; 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} -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