blob: 87fe58302cfe57fb024f65a9fed42eca4fec532d (
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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
|
#!/bin/sh
PATH=/bin:/usr/sbin
if [ -z "${SYSCONF_DIR}" ]; then
SYSCONF_DIR=${PKG_PREFIX}/etc/quagga
fi
if [ -z "${LOCALSTATE_DIR}" ]; then
LOCALSTATE_DIR=/var/run/quagga
fi
if [ -z "${ENABLE_USER}" ]; then
ENABLE_USER=quagga
fi
if [ -z "${ENABLE_GROUP}" ]; then
ENABLE_GROUP=quagga
fi
case $2 in
POST-INSTALL)
UID=101
GID=${UID}
if pw group show "${ENABLE_GROUP}" 2>/dev/null; then
echo "You already have a group \"${ENABLE_GROUP}\", so I will use it."
else
if pw groupadd ${ENABLE_GROUP} -g ${GID}; then
echo "Added group \"${ENABLE_GROUP}\"."
else
echo "Adding group \"${ENABLE_GROUP}\" failed."
exit 1
fi
fi
if pw user show "${ENABLE_USER}" 2>/dev/null; then
echo "You already have a user \"${ENABLE_USER}\", so I will use it."
if pw usermod ${ENABLE_USER} -d ${SYSCONF_DIR}
then
echo "Changed home directory of \"${ENABLE_USER}\" to \"${SYSCONF_DIR}\""
else
echo "Changing home directory of \"${ENABLE_USER}\" to \"${SYSCONF_DIR}\" failed..."
exit 1
fi
else
if pw useradd ${ENABLE_USER} -u ${UID} -g ${ENABLE_GROUP} -h - \
-d ${SYSCONF_DIR} -s /sbin/nologin -c "Quagga Daemon"
then
echo "Added user \"${ENABLE_USER}\"."
else
echo "Adding user \"${ENABLE_USER}\" failed..."
exit 1
fi
fi
mkdir ${LOCALSTATE_DIR}
if [ ! -d ${LOCALSTATE_DIR} ]; then
echo "Creating \"${LOCALSTATE_DIR}\" failed."
exit 1
fi
chown -R ${ENABLE_USER}:${ENABLE_GROUP} ${LOCALSTATE_DIR}
if [ ! -d ${SYSCONF_DIR} ]; then
mkdir -p ${SYSCONF_DIR}
fi
if [ ! -d ${SYSCONF_DIR} ]; then
echo "Creating \"${SYSCONF_DIR}\" failed."
exit 1
fi
chown -R ${ENABLE_USER}:${ENABLE_GROUP} ${SYSCONF_DIR}
;;
esac
|