blob: 1069a0fd5f541b60f762b2e5b21ba611050f441e (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
|
#!/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
|