#!/bin/sh

case $2 in
POST-INSTALL)
        PUSER=openfire
        PGROUP=${PUSER}
        PUID=342
        PGID=${PUID}

        if ! pw group show "${PGROUP}" > /dev/null; then
                if pw groupadd ${PGROUP} -g ${PGID}; then
                        echo "Added group \"${PGROUP}\"."
                else
                        echo "Adding group \"${PGROUP}\" failed..."
                        exit 1
                fi
        fi

        if ! pw user show "${PUSER}" > /dev/null; then
                if pw useradd ${PUSER} -u ${PUID} -g ${PGROUP} -h - \
                        -d /nonexistent -s /sbin/nologin -c "Openfire Daemon"
                then
                        echo "Added user \"${PUSER}\"."
                else
                        echo "Adding user \"${PUSER}\" failed..."
                        exit 1
                fi
        fi
        ;;
esac
