freebsd-ports/sysutils/boxbackup-devel/pkg-install
Sergey Matveychuk 942abc0e87 - the port tried write to pkg-message. fixed (1)
- fixed OpenSSL dependency
- fixed home dir name for user. /nonexistent is right one (2)

Reported by:	krion via pointyhat (1) and via IRC (2)
2005-02-26 06:05:28 +00:00

36 lines
804 B
Bash

#!/bin/sh
# $FreeBSD$
case $2 in
PRE-INSTALL)
USER=_bbstored
GROUP=${USER}
UID=505
GID=${UID}
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} -g ${GID}; 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} -u ${UID} -g ${GROUP} -h - \
-d /nonexistent -c "BoxBackup Store Daemon"
then
echo "Added user \"${USER}\"."
else
echo "Adding user \"${USER}\" failed..."
exit 1
fi
fi
;;
esac