aboutsummaryrefslogtreecommitdiffstats
path: root/net/spread/pkg-install
diff options
context:
space:
mode:
authorpetef <petef@FreeBSD.org>2002-03-04 21:50:21 +0800
committerpetef <petef@FreeBSD.org>2002-03-04 21:50:21 +0800
commitf0410bf9c83b914d8d9e8b2d6ae2c4cd198a8a74 (patch)
tree8891ea41b015826df680d9502cfc6fa6271244e6 /net/spread/pkg-install
parent59f193f5e730be88910c0605e4b25bee8b937dc8 (diff)
downloadfreebsd-ports-gnome-f0410bf9c83b914d8d9e8b2d6ae2c4cd198a8a74.tar.gz
freebsd-ports-gnome-f0410bf9c83b914d8d9e8b2d6ae2c4cd198a8a74.tar.zst
freebsd-ports-gnome-f0410bf9c83b914d8d9e8b2d6ae2c4cd198a8a74.zip
Somehow I managed to botch pkg-install so the script was in the file twice,
so remove the second instance. Also, scripts/createusergroup is replaced by pkg-install so GC that. Submitted by: maintainer
Diffstat (limited to 'net/spread/pkg-install')
-rw-r--r--net/spread/pkg-install51
1 files changed, 0 insertions, 51 deletions
diff --git a/net/spread/pkg-install b/net/spread/pkg-install
index 52ce661bb46e..fbbf68fd7932 100644
--- a/net/spread/pkg-install
+++ b/net/spread/pkg-install
@@ -49,54 +49,3 @@ POST-INSTALL)
echo 'unexpect argument to pkg-install'
;;
esac
-#!/bin/sh
-
-PATH=/sbin:/bin:/usr/sbin:/usr/bin
-USER=spread
-USER_HOMEDIR=/nonexistent
-GROUP=spread
-RUNDIR=/var/run/spread
-NOLOGIN=/sbin/nologin
-
-case $2 in
-PRE-INSTALL)
- if pw group show "${GROUP}" 2>/dev/null; then
- echo "You already have a group \"${GROUP}\", so I will use it."
- else
- if pw groupadd ${GROUP}; then
- echo "Added group \"${GROUP}\"."
- else
- echo "Adding group \"${GROUP}\" failed..."
- exit 1
- fi
- fi
-
- if pw user show "${USER}" 2>/dev/null; then
- echo "You already have a user \"${USER}\", so I will use it."
- if pw usermod ${USER} -d ${USER_HOMEDIR}
- then
- echo "Changed home directory of \"${USER}\" to \"${USER_HOMEDIR}\"."
- else
- echo "Changing home directory of \"${USER}\" to \"${USER_HOMEDIR}\" failed."
- exit 1
- fi
- else
- if pw useradd ${USER} -g ${GROUP} -h - \
- -d ${USER_HOMEDIR} -s ${NOLOGIN} -c "Spread User"
- then
- echo "Added user \"${USER}\"."
- else
- echo "Adding user \"${USER}\" failed..."
- exit 1
- fi
- fi
- ;;
-POST-INSTALL)
- if [ ! -d ${RUNDIR} ]; then
- install -d -o ${USER} -g ${GROUP} -m 0750 ${RUNDIR}
- fi
- ;;
-*)
- echo 'unexpect argument to pkg-install'
- ;;
-esac