From f1de343b8c84c22858eaa1bff9a34146e889275a Mon Sep 17 00:00:00 2001 From: ache Date: Mon, 29 Oct 2001 20:05:37 +0000 Subject: Second part to fix missing x-bit on pkg*install PR: 31599 --- www/apache21/Makefile | 2 +- www/apache21/pkg-deinstall | 20 ++++++++++++++++++++ www/apache21/pkg-install | 35 +++++++++++++++++++++++++++++++++++ 3 files changed, 56 insertions(+), 1 deletion(-) create mode 100644 www/apache21/pkg-deinstall create mode 100644 www/apache21/pkg-install (limited to 'www/apache21') diff --git a/www/apache21/Makefile b/www/apache21/Makefile index ebb0a3af1369..10d7d25175d5 100644 --- a/www/apache21/Makefile +++ b/www/apache21/Makefile @@ -7,7 +7,7 @@ PORTNAME= apache PORTVERSION= 2.0.16 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= www ipv6 MASTER_SITES= http://httpd.apache.org/dist/httpd/ \ http://www.cybernic.com/mirror/dist/httpd/ \ diff --git a/www/apache21/pkg-deinstall b/www/apache21/pkg-deinstall new file mode 100644 index 000000000000..c45782a9c38c --- /dev/null +++ b/www/apache21/pkg-deinstall @@ -0,0 +1,20 @@ +#!/bin/sh +# $FreeBSD: /tmp/pcvs/ports/www/apache21/Attic/pkg-deinstall,v 1.3 2001-10-29 20:05:37 ache Exp $ +# + +if [ "$2" != "POST-DEINSTALL" ]; then + exit 0 +fi + +USER=www + +if pw usershow "${USER}" 2>/dev/null 1>&2; then + if pw userdel ${USER}; then + echo "Delete user/group \"${USER}\"." + else + echo "Deleting user/group \"${USER}\" failed..." + exit 1 + fi +fi + +exit 0 diff --git a/www/apache21/pkg-install b/www/apache21/pkg-install new file mode 100644 index 000000000000..8073016ebac9 --- /dev/null +++ b/www/apache21/pkg-install @@ -0,0 +1,35 @@ +#!/bin/sh +# $FreeBSD: /tmp/pcvs/ports/www/apache21/Attic/pkg-install,v 1.3 2001-10-29 20:05:37 ache Exp $ +# + +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 -- cgit