1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-29 01:13:08 +00:00
freebsd-ports/www/abyssws/pkg-install
Pav Lucistnik b6347add1f - Correctly define dependency
- For FreeBSD 6.X and later
- Correctly preserve index.html
- Remove user and group left behind at deinstall

PR:		ports/117003
Submitted by:	Dan Voisine <voisined@wit.edu> (maintainer)
2007-12-14 20:37:54 +00:00

79 lines
1.5 KiB
Bash

#! /bin/sh
# $FreeBSD$
PATH=/bin:/usr/sbin
WSHOME=${PKG_PREFIX}/lib/abyssws
USER=abyssws
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 ${WSHOME} -c "Abyss Web Server"
then
echo "Added user \"${USER}\"."
else
echo "Adding user \"${USER}\" failed..."
exit 1
fi
fi
if ! [ -x ~${USER} ] ; then
mkdir -p ${WSHOME}
chown ${USER}:${GROUP} ${WSHOME}
fi
;;
POST-INSTALL)
chown -R ${USER}:${GROUP} ${WSHOME}
chmod -R u+w,o-rx ${WSHOME}
chmod u+s ${WSHOME}/abyssws
;;
POST-DEINSTALL)
if ! [ -x ${WSHOME} ] ; then
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
fi
;;
esac