| Server IP : 82.208.35.60 / Your IP : 216.73.217.33 Web Server : Apache/2.4.55 (FreeBSD) OpenSSL/1.1.1q-freebsd PHP/7.3.31 System : FreeBSD server7.d2m.cz 12.4-RELEASE-p9 FreeBSD 12.4-RELEASE-p9 GENERIC amd64 User : studiokobylisy_cz ( 1008) PHP Version : 7.3.31 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /usr/ports/sysutils/radmind/files/ |
Upload File : |
#!/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