blob: d782c14090b7351214faa0536e766101af3c1606 (
plain)
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
|
#!/bin/sh
set -eu
BIRD_RUN_DIR=/run/bird
. /etc/bird/envvars
mkdir --parents "$BIRD_RUN_DIR";
if [ -n "$BIRD_RUN_USER" ]; then
if ! getent passwd $BIRD_RUN_USER >/dev/null; then
echo "Configured user '$BIRD_RUN_USER' doesn't exist."
exit 1
fi
fi
if [ -n "$BIRD_RUN_GROUP" ]; then
if ! getent group $BIRD_RUN_GROUP >/dev/null; then
echo "Configured group '$BIRD_RUN_GROUP' doesn't exist."
exit 1
fi
fi
chown --silent "$BIRD_RUN_USER:$BIRD_RUN_GROUP" "$BIRD_RUN_DIR"
chmod 775 "$BIRD_RUN_DIR"
:
|