1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-10-20 20:09:11 +00:00
freebsd-ports/net/iodine/pkg-install
Rong-En Fan a5f271600b - Add rc script for iodine server
- Add iodined manual page (links to iodine's)

PR:		ports/119452 (based on)
Submitted by:	Daniel Roethlisberger <daniel at roe.ch>
2008-01-11 15:47:23 +00:00

37 lines
736 B
Bash

#!/bin/sh
case $2 in
POST-INSTALL)
USER=_iodined
GROUP=${USER}
UID=353
GID=${UID}
PW=/usr/sbin/pw
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 "/var/empty" -s /sbin/nologin -c "OSPF Daemon"
then
echo "Added user \"${USER}\"."
else
echo "Adding user \"${USER}\" failed..."
exit 1
fi
fi
exit 0
;;
esac