mirror of
https://git.freebsd.org/ports.git
synced 2025-06-24 22:20:35 -04:00
- add pkg-message - add pkg-install script for user/group creation if installed from package since the installation use "chown" - bump portrevision PR: ports/150765 Submitted by: Michael Graziano <mikeg _at_ bsd-box.net> (maintainer)
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
|