32 lines
1.4 KiB
Bash
32 lines
1.4 KiB
Bash
|
#!/usr/bin/env bash
|
||
|
#
|
||
|
# Entry point script for netdata
|
||
|
#
|
||
|
# Copyright: 2018 and later Netdata Inc.
|
||
|
# SPDX-License-Identifier: GPL-3.0-or-later
|
||
|
#
|
||
|
# Author : Pavlos Emm. Katsoulakis <paul@netdata.cloud>
|
||
|
# Author : Austin S. Hemmelgarn <austin@netdata.cloud>
|
||
|
set -e
|
||
|
|
||
|
if [ ! "${DO_NOT_TRACK:-0}" -eq 0 ] || [ -n "$DO_NOT_TRACK" ]; then
|
||
|
touch /etc/netdata/.opt-out-from-anonymous-statistics
|
||
|
fi
|
||
|
|
||
|
if [ -n "${PGID}" ]; then
|
||
|
echo "Creating docker group ${PGID}"
|
||
|
addgroup -g "${PGID}" "docker" || echo >&2 "Could not add group docker with ID ${PGID}, its already there probably"
|
||
|
echo "Assign netdata user to docker group ${PGID}"
|
||
|
usermod -a -G "${PGID}" "${DOCKER_USR}" || echo >&2 "Could not add netdata user to group docker with ID ${PGID}"
|
||
|
fi
|
||
|
|
||
|
if [ -n "${NETDATA_CLAIM_URL}" ] && [ -n "${NETDATA_CLAIM_TOKEN}" ] && [ ! -f /var/lib/netdata/cloud.d/claimed_id ]; then
|
||
|
/usr/sbin/netdata-claim.sh -token="${NETDATA_CLAIM_TOKEN}" \
|
||
|
-url="${NETDATA_CLAIM_URL}" \
|
||
|
${NETDATA_CLAIM_ROOMS:+-rooms="${NETDATA_CLAIM_ROOMS}"} \
|
||
|
${NETDATA_CLAIM_PROXY:+-proxy="${NETDATA_CLAIM_PROXY}"} \
|
||
|
-daemon-not-running
|
||
|
fi
|
||
|
|
||
|
exec /usr/sbin/netdata -u "${DOCKER_USR}" -D -s /host -p "${NETDATA_LISTENER_PORT}" -c /netdata.conf -W set web "web files group" root -W set web "web files owner" root "$@"
|