freebsd-ports/games/wolfpack/pkg-install
Johan van Selst c6e8abf4ed - Update to 4.2.21 (should work on ia64)
- Remove obsoleted pidfile patch
- Update rc.d script style
- Assume maintainership
2006-09-28 14:00:35 +00:00

72 lines
1.4 KiB
Bash

#! /bin/sh
# $FreeBSD#
PATH=/bin:/usr/sbin
INSTDIR=${PKG_PREFIX}/wolfpack
USER=wolfpack
GROUP=${USER}
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."
else
if pw useradd ${USER} -g ${GROUP} -h - \
-d ${INSTDIR} -c "Wolfpack Empire Server"
then
echo "Added user \"${USER}\"."
else
echo "Adding user \"${USER}\" failed..."
exit 1
fi
fi
if ! [ -x ~${USER} ] ; then
mkdir -p ${INSTDIR}
chown ${USER}:${GROUP} ${INSTDIR}
fi
;;
POST-INSTALL)
chown -R ${USER}:${GROUP} ${INSTDIR}
chmod -R u+w,o-rx ${INSTDIR}
;;
POST-DEINSTALL)
if pw group show "${GROUP}" 2>/dev/null; then
if pw groupdel ${GROUP}; then
echo "Removed group \"${GROUP}\"."
else
echo "Removing group \"${GROUP}\" failed..."
exit 1
fi
else
echo "Group \"${GROUP}\" doesn't exist!"
fi
if pw user show "${USER}" 2>/dev/null; then
if pw userdel ${USER}; then
echo "Removed user \"${USER}\"."
else
echo "Removing user \"${USER}\" failed..."
exit 1
fi
else
echo "User \"${USER}\" doesn't exist!"
fi
;;
esac