mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-29 01:13:08 +00:00
cebdb0c2fc
- Use fixed uid and gid - Rewrite the rc script to use the new rc.d style and split into two scripts: hts (for server) and htc (for client) - Bump PORTREVISION for this PR: ports/125714 (based on) Submitted by: G.V. Tjong A Hung <gvtjongahung at users.sourceforge.net> (based on)
37 lines
738 B
Bash
37 lines
738 B
Bash
#!/bin/sh
|
|
|
|
case $2 in
|
|
POST-INSTALL)
|
|
USER=httptunnel
|
|
GROUP=${USER}
|
|
UID=361
|
|
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
|