28 lines
1.1 KiB
Bash
Executable file
28 lines
1.1 KiB
Bash
Executable file
#!/bin/bash -eu
|
|
|
|
ALL_PCP_SERVICES='pmcd,pmie,pmlogger,pmproxy'
|
|
|
|
export PCP_SERVICES=${PCP_SERVICES:-${ALL_PCP_SERVICES}}
|
|
export HOST_MOUNT=${HOST_MOUNT:-''}
|
|
export REDIS_SERVERS=${REDIS_SERVERS:-'localhost:6379'}
|
|
|
|
mkdir -p /etc/systemd/system/pmcd.service.d
|
|
# shellcheck disable=SC2016
|
|
envsubst '$HOST_MOUNT' < /usr/share/container-scripts/pcp/10-host_mount.conf.template > /etc/systemd/system/pmcd.service.d/10-host_mount.conf
|
|
# shellcheck disable=SC2016
|
|
envsubst '$REDIS_SERVERS' < /usr/share/container-scripts/pcp/pmproxy.conf.template > /etc/pcp/pmproxy/pmproxy.conf
|
|
|
|
echo "Enabling PCP services: ${PCP_SERVICES}"
|
|
for service in ${ALL_PCP_SERVICES//,/ }; do
|
|
if [[ ",${PCP_SERVICES}," = *",${service},"* ]]; then
|
|
systemctl enable "${service}" 2> /dev/null
|
|
else
|
|
# pcp-zeroconf enables some PCP services already -> disable them if not requested
|
|
systemctl disable "${service}" 2> /dev/null
|
|
# prevent other services from starting (due to systemd dependencies) by masking them
|
|
systemctl mask "${service}" 2> /dev/null
|
|
fi
|
|
done
|
|
|
|
echo Starting systemd...
|
|
exec "$@"
|