freebsd-ports/mail/postfix-policyd-weight/pkg-install
Marcus Alves Grando 063aa614e8 Update to 0.1.12
Update MASTER_SITES and WWW
Add SHA256

PR:		90018
Submitted by:	maintainer
2005-12-06 16:12:44 +00:00

34 lines
571 B
Bash

#!/bin/sh
#
# $FreeBSD$
#
if [ "$2" != "PRE-INSTALL" ]; then
exit 0
fi
USER=polw
GROUP=${USER}
if ! pw groupshow "${GROUP}" 2>/dev/null 1>&2; then
if pw groupadd ${GROUP} ; 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} -g ${GROUP} -h - \
-s "/sbin/nologin" -d "/nonexistent" \
-c "Policyd-weight Cache Owner"; \
then
echo "Added user \"${USER}\"."
else
echo "Adding user \"${USER}\" failed..."
exit 1
fi
fi
exit 0