forked from Lainports/opnsense-ports
Taken from: https://github.com/freebsd/freebsd-ports.git Commit id: 5070672073b68be364139bc6b3a89100bd17d331
43 lines
1.3 KiB
Bash
43 lines
1.3 KiB
Bash
#!/bin/sh
|
|
|
|
# This script is only needed if we install from package since the creation
|
|
# of groups/users are to late executed! The script can be removed if this
|
|
# issue is solved in bsd.port.mk.
|
|
|
|
USER=%%RADMINUSER%%
|
|
GROUP=%%RADMINUSER%%
|
|
UID=506
|
|
GID=506
|
|
RADMIND_BASE_DIR=%%RADMIND_BASE_DIR%%
|
|
|
|
|
|
if [ "$2" = "PRE-INSTALL" ]; then
|
|
if /usr/sbin/pw groupshow "${GROUP}" >/dev/null 2>&1; then
|
|
echo "Using existing group \"${GROUP}\"."
|
|
else
|
|
if /usr/sbin/pw groupadd ${GROUP} -g ${GID}; then
|
|
echo "Added group \"${GROUP}\"."
|
|
else
|
|
echo "Adding group \"${GROUP}\" failed..."
|
|
echo "Please create it, and try again."
|
|
exit 1
|
|
fi
|
|
fi
|
|
|
|
if /usr/sbin/pw user show "${USER}" >/dev/null 2>&1; then
|
|
echo "Using existing user \"${USER}\"."
|
|
else
|
|
if /usr/sbin/pw useradd ${USER} -u ${UID} -g ${GROUP} -c "radmind User" -h - -d ${RADMIND_BASE_DIR} -s /usr/sbin/nologin ; then
|
|
install -Cp -d -g ${GID} -o ${UID} ${RADMIND_BASE_DIR}
|
|
echo "Added user \"${USER}\"."
|
|
else
|
|
echo "Adding user \"${USER}\" failed..."
|
|
echo "Please create it, and try again."
|
|
exit 1
|
|
fi
|
|
fi
|
|
fi
|
|
|
|
if [ "$2" = "POST-INSTALL" ]; then
|
|
chown -R ${USER}:${GROUP} ${RADMIND_BASE_DIR}
|
|
fi
|