2022-02-15 16:10:15 +00:00
|
|
|
#!/bin/bash
|
2020-11-30 09:37:17 +00:00
|
|
|
|
2022-11-28 09:35:12 +00:00
|
|
|
# shellcheck disable=SC2292 # allow [ test ] syntax
|
|
|
|
# shellcheck disable=SC2310 # allow "if function..." syntax with -e
|
|
|
|
|
2022-12-10 21:09:25 +00:00
|
|
|
#set -x
|
|
|
|
#export PS4='+(${BASH_SOURCE}:${LINENO}): ${FUNCNAME[0]:+${FUNCNAME[0]}(): }'
|
|
|
|
|
2022-11-28 09:35:12 +00:00
|
|
|
set -e
|
|
|
|
shopt -s inherit_errexit
|
|
|
|
|
|
|
|
#- HELPER FUNCTIONS ----------------#
|
|
|
|
|
2022-12-10 21:09:25 +00:00
|
|
|
# match true, TRUE, True, tRuE, etc.
|
2022-11-28 09:35:12 +00:00
|
|
|
istrue() {
|
|
|
|
case "$(echo "$1" | tr '[:upper:]' '[:lower:]')" in
|
|
|
|
true) return 0 ;;
|
|
|
|
*) return 1 ;;
|
|
|
|
esac
|
|
|
|
}
|
|
|
|
|
|
|
|
isfalse() {
|
|
|
|
if istrue "$1"; then
|
|
|
|
return 1
|
|
|
|
else
|
|
|
|
return 0
|
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
2022-12-10 21:09:25 +00:00
|
|
|
# csv2yaml <string>
|
2022-11-28 09:35:12 +00:00
|
|
|
# generate a yaml list from a comma-separated string of values
|
|
|
|
csv2yaml() {
|
|
|
|
[ -z "$1" ] && return
|
|
|
|
echo "$1" | sed 's/,/\n- /g;s/^/- /g'
|
|
|
|
}
|
2021-10-14 15:02:38 +00:00
|
|
|
|
2022-11-28 09:35:12 +00:00
|
|
|
# wrap cscli with the correct config file location
|
|
|
|
cscli() {
|
|
|
|
command cscli -c "$CONFIG_FILE" "$@"
|
|
|
|
}
|
2022-02-02 12:20:12 +00:00
|
|
|
|
2022-12-10 21:09:25 +00:00
|
|
|
# conf_get <key> [file_path]
|
|
|
|
# retrieve a value from a file (by default $CONFIG_FILE)
|
2022-11-28 09:35:12 +00:00
|
|
|
conf_get() {
|
|
|
|
if [ $# -ge 2 ]; then
|
|
|
|
yq e "$1" "$2"
|
|
|
|
else
|
|
|
|
yq e "$1" "$CONFIG_FILE"
|
|
|
|
fi
|
|
|
|
}
|
2022-02-15 16:10:15 +00:00
|
|
|
|
2022-12-10 21:09:25 +00:00
|
|
|
# conf_set <yq_expression> [file_path]
|
|
|
|
# evaluate a yq command (by default on $CONFIG_FILE),
|
|
|
|
# create the file if it doesn't exist
|
2022-11-28 09:35:12 +00:00
|
|
|
conf_set() {
|
|
|
|
if [ $# -ge 2 ]; then
|
2022-12-10 21:09:25 +00:00
|
|
|
YAML_FILE="$2"
|
2022-11-28 09:35:12 +00:00
|
|
|
else
|
2022-12-10 21:09:25 +00:00
|
|
|
YAML_FILE="$CONFIG_FILE"
|
2022-11-28 09:35:12 +00:00
|
|
|
fi
|
2022-12-10 21:09:25 +00:00
|
|
|
YAML_CONTENT=$(cat "$YAML_FILE" 2>/dev/null || true)
|
|
|
|
echo "$YAML_CONTENT" | yq e "$1" | install -m 0600 /dev/stdin "$YAML_FILE"
|
|
|
|
}
|
|
|
|
|
|
|
|
# register_bouncer <bouncer_name> <bouncer_key>
|
|
|
|
register_bouncer() {
|
|
|
|
if ! cscli bouncers list -o json | sed '/^ *"name"/!d;s/^ *"name": "\(.*\)",/\1/' | grep -q "^${1}$"; then
|
|
|
|
if cscli bouncers add "$1" -k "$2" > /dev/null; then
|
|
|
|
echo "Registered bouncer for $1"
|
|
|
|
else
|
|
|
|
echo "Failed to register bouncer for $1"
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
|
|
|
# Call cscli to manage objects ignoring taint errors
|
|
|
|
# $1 can be collections, parsers, etc.
|
|
|
|
# $2 can be install, remove, upgrade
|
|
|
|
# $3 is a list of object names separated by space
|
|
|
|
cscli_if_clean() {
|
|
|
|
# loop over all objects
|
|
|
|
for obj in $3; do
|
|
|
|
if cscli "$1" inspect "$obj" -o json | yq -e '.tainted // false' >/dev/null 2>&1; then
|
|
|
|
echo "Object $1/$obj is tainted, skipping"
|
|
|
|
else
|
|
|
|
cscli "$1" "$2" "$obj"
|
|
|
|
fi
|
|
|
|
done
|
2022-11-28 09:35:12 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#-----------------------------------#
|
|
|
|
|
2022-12-16 19:41:39 +00:00
|
|
|
if [ -n "$CERT_FILE" ] || [ -n "$KEY_FILE" ] || [ -n "$CACERT_FILE" ]; then
|
|
|
|
printf '%b' '\033[0;33m'
|
|
|
|
echo "Warning: the variables CERT_FILE, KEY_FILE and CACERT_FILE have been deprecated." >&2
|
|
|
|
echo "Please use LAPI_CERT_FILE, LAPI_KEY_FILE and LAPI_CACERT_FILE insted." >&2
|
|
|
|
echo "The old variables will be removed in a future release." >&2
|
|
|
|
printf '%b' '\033[0m'
|
|
|
|
LAPI_CERT_FILE=${LAPI_CERT_FILE:-$CERT_FILE}
|
|
|
|
LAPI_KEY_FILE=${LAPI_KEY_FILE:-$KEY_FILE}
|
|
|
|
LAPI_CACERT_FILE=${LAPI_CACERT_FILE:-$CACERT_FILE}
|
|
|
|
fi
|
|
|
|
|
2022-11-28 09:35:12 +00:00
|
|
|
# Check and prestage databases
|
2022-11-08 11:28:57 +00:00
|
|
|
for geodb in GeoLite2-ASN.mmdb GeoLite2-City.mmdb; do
|
2022-11-28 09:35:12 +00:00
|
|
|
# We keep the pre-populated geoip databases in /staging instead of /var,
|
2022-11-08 11:28:57 +00:00
|
|
|
# because if the data directory is bind-mounted from the host, it will be
|
|
|
|
# empty and the files will be out of reach, requiring a runtime download.
|
|
|
|
# We link to them to save about 80Mb compared to cp/mv.
|
|
|
|
if [ ! -e "/var/lib/crowdsec/data/$geodb" ] && [ -e "/staging/var/lib/crowdsec/data/$geodb" ]; then
|
|
|
|
mkdir -p /var/lib/crowdsec/data
|
|
|
|
ln -s "/staging/var/lib/crowdsec/data/$geodb" /var/lib/crowdsec/data/
|
|
|
|
fi
|
|
|
|
done
|
2022-02-01 11:35:57 +00:00
|
|
|
|
2022-11-28 09:35:12 +00:00
|
|
|
# Check and prestage /etc/crowdsec
|
2022-02-01 11:35:57 +00:00
|
|
|
if [ ! -e "/etc/crowdsec/local_api_credentials.yaml" ] && [ ! -e "/etc/crowdsec/config.yaml" ]; then
|
2022-11-28 09:35:12 +00:00
|
|
|
echo "Populating configuration directory..."
|
|
|
|
# don't overwrite existing configuration files, which may come
|
|
|
|
# from bind-mount or even be read-only (configmaps)
|
|
|
|
if [ -e /staging/etc/crowdsec ]; then
|
|
|
|
mkdir -p /etc/crowdsec/
|
|
|
|
# if you change this, check that it still works
|
|
|
|
# under alpine and k8s, with and without tls
|
|
|
|
cp -an /staging/etc/crowdsec/* /etc/crowdsec/
|
|
|
|
fi
|
2022-02-01 11:35:57 +00:00
|
|
|
fi
|
|
|
|
|
2022-11-30 13:28:33 +00:00
|
|
|
# do this as soon as we have a config.yaml, to avoid useless warnings
|
|
|
|
if istrue "$USE_WAL"; then
|
|
|
|
conf_set '.db_config.use_wal = true'
|
|
|
|
elif [ -n "$USE_WAL" ] && isfalse "$USE_WAL"; then
|
|
|
|
conf_set '.db_config.use_wal = false'
|
|
|
|
fi
|
|
|
|
|
2022-12-16 19:41:39 +00:00
|
|
|
# regenerate local agent credentials (even if agent is disabled, cscli needs a
|
|
|
|
# connection to the API)
|
|
|
|
cscli machines delete "$CUSTOM_HOSTNAME" 2>/dev/null || true
|
|
|
|
if isfalse "$DISABLE_LOCAL_API" && isfalse "$USE_TLS"; then
|
|
|
|
echo "Regenerate local agent credentials"
|
|
|
|
cscli machines add "$CUSTOM_HOSTNAME" --auto --url "$LOCAL_API_URL"
|
|
|
|
fi
|
|
|
|
|
|
|
|
lapi_credentials_path=$(conf_get '.api.client.credentials_path')
|
2022-11-28 09:35:12 +00:00
|
|
|
|
2022-12-16 19:41:39 +00:00
|
|
|
# we only use the envvars that are actually defined
|
|
|
|
# in case of persistent configuration
|
|
|
|
conf_set '
|
|
|
|
with(select(strenv(LOCAL_API_URL)!=""); .url = strenv(LOCAL_API_URL)) |
|
|
|
|
with(select(strenv(AGENT_USERNAME)!=""); .login = strenv(AGENT_USERNAME)) |
|
|
|
|
with(select(strenv(AGENT_PASSWORD)!=""); .password = strenv(AGENT_PASSWORD))
|
|
|
|
' "$lapi_credentials_path"
|
2022-11-28 09:35:12 +00:00
|
|
|
|
2022-12-16 19:41:39 +00:00
|
|
|
if istrue "$USE_TLS"; then
|
2022-12-10 21:09:25 +00:00
|
|
|
conf_set '
|
2022-12-16 19:41:39 +00:00
|
|
|
with(select(strenv(CLIENT_CACERT_FILE)!=""); .ca_cert_path = strenv(CLIENT_CACERT_FILE)) |
|
|
|
|
with(select(.ca_cert_path=="" or .ca_cert_path==null); .ca_cert_path = "/etc/ssl/crowdsec-client/ca.pem") |
|
|
|
|
with(select(strenv(CLIENT_KEY_FILE)!=""); .key_path = strenv(CLIENT_KEY_FILE)) |
|
|
|
|
with(select(.key_path=="" or .key_path==null); .key_path = "/etc/ssl/crowdsec-client/key.pem") |
|
|
|
|
with(select(strenv(CLIENT_CERT_FILE)!=""); .cert_path = strenv(CLIENT_CERT_FILE)) |
|
|
|
|
with(select(.cert_path=="" or .cert_path==null); .cert_path = "/etc/ssl/crowdsec-client/cert.pem")
|
|
|
|
' "$lapi_credentials_path"
|
|
|
|
else
|
|
|
|
conf_set '
|
|
|
|
del(.ca_cert_path) |
|
|
|
|
del(.key_path) |
|
|
|
|
del(.cert_path)
|
|
|
|
' "$lapi_credentials_path"
|
2021-09-10 12:59:22 +00:00
|
|
|
fi
|
|
|
|
|
2022-11-28 09:35:12 +00:00
|
|
|
if isfalse "$DISABLE_LOCAL_API"; then
|
|
|
|
echo "Check if lapi needs to automatically register an agent"
|
|
|
|
|
|
|
|
# pre-registration is not needed with TLS
|
|
|
|
if isfalse "$USE_TLS" && [ "$AGENT_USERNAME" != "" ] && [ "$AGENT_PASSWORD" != "" ] ; then
|
2022-12-10 21:09:25 +00:00
|
|
|
# re-register because pw may have been changed
|
|
|
|
cscli machines add "$AGENT_USERNAME" --password "$AGENT_PASSWORD" --url "$LOCAL_API_URL" --force
|
2022-11-28 09:35:12 +00:00
|
|
|
echo "Agent registered to lapi"
|
2022-02-03 11:26:20 +00:00
|
|
|
fi
|
2020-11-30 09:37:17 +00:00
|
|
|
fi
|
|
|
|
|
2021-02-10 08:29:29 +00:00
|
|
|
# registration to online API for signal push
|
2022-11-28 09:35:12 +00:00
|
|
|
if isfalse "$DISABLE_ONLINE_API" && [ "$CONFIG_FILE" == "/etc/crowdsec/config.yaml" ] ; then
|
|
|
|
config_exists=$(conf_get '.api.server.online_client | has("credentials_path")')
|
|
|
|
if isfalse "$config_exists"; then
|
|
|
|
conf_set '.api.server.online_client = {"credentials_path": "/etc/crowdsec/online_api_credentials.yaml"}'
|
|
|
|
cscli capi register > /etc/crowdsec/online_api_credentials.yaml
|
|
|
|
echo "Registration to online API done"
|
2020-11-30 09:37:17 +00:00
|
|
|
fi
|
|
|
|
fi
|
|
|
|
|
2022-11-28 09:35:12 +00:00
|
|
|
# Enroll instance if enroll key is provided
|
|
|
|
if isfalse "$DISABLE_ONLINE_API" && [ "$ENROLL_KEY" != "" ]; then
|
2022-04-20 11:35:22 +00:00
|
|
|
enroll_args=""
|
2022-11-28 09:35:12 +00:00
|
|
|
if [ "$ENROLL_INSTANCE_NAME" != "" ]; then
|
2022-04-20 11:35:22 +00:00
|
|
|
enroll_args="--name $ENROLL_INSTANCE_NAME"
|
|
|
|
fi
|
2022-11-28 09:35:12 +00:00
|
|
|
if [ "$ENROLL_TAGS" != "" ]; then
|
|
|
|
# shellcheck disable=SC2086
|
|
|
|
for tag in ${ENROLL_TAGS}; do
|
2022-04-20 11:35:22 +00:00
|
|
|
enroll_args="$enroll_args --tags $tag"
|
|
|
|
done
|
|
|
|
fi
|
2022-11-28 09:35:12 +00:00
|
|
|
# shellcheck disable=SC2086
|
2022-11-08 11:28:57 +00:00
|
|
|
cscli console enroll $enroll_args "$ENROLL_KEY"
|
2022-04-20 11:35:22 +00:00
|
|
|
fi
|
|
|
|
|
2021-02-25 10:29:39 +00:00
|
|
|
# crowdsec sqlite database permissions
|
|
|
|
if [ "$GID" != "" ]; then
|
2022-11-28 09:35:12 +00:00
|
|
|
if istrue "$(conf_get '.db_config.type == "sqlite"')"; then
|
|
|
|
chown ":$GID" "$(conf_get '.db_config.db_path')"
|
2021-09-21 08:54:05 +00:00
|
|
|
echo "sqlite database permissions updated"
|
2021-02-25 10:29:39 +00:00
|
|
|
fi
|
|
|
|
fi
|
|
|
|
|
2022-11-28 09:35:12 +00:00
|
|
|
if istrue "$USE_TLS"; then
|
|
|
|
agents_allowed_yaml=$(csv2yaml "$AGENTS_ALLOWED_OU") \
|
|
|
|
bouncers_allowed_yaml=$(csv2yaml "$BOUNCERS_ALLOWED_OU") \
|
|
|
|
conf_set '
|
2022-12-16 19:41:39 +00:00
|
|
|
with(select(strenv(LAPI_CACERT_FILE)!=""); .api.server.tls.ca_cert_path = strenv(LAPI_CACERT_FILE)) |
|
|
|
|
with(select(.api.server.tls.ca_cert_path=="" or .api.server.tls.ca_cert_path==null); .api.server.tls.ca_cert_path = "/etc/ssl/crowdsec-lapi/ca.pem") |
|
|
|
|
with(select(strenv(LAPI_CERT_FILE)!=""); .api.server.tls.cert_file = strenv(LAPI_CERT_FILE)) |
|
|
|
|
with(select(.api.server.tls.cert_file=="" or .api.server.tls.cert_file==null); .api.server.tls.cert_file = "/etc/ssl/crowdsec-lapi/cert.pem") |
|
|
|
|
with(select(strenv(LAPI_KEY_FILE)!=""); .api.server.tls.key_file = strenv(LAPI_KEY_FILE)) |
|
|
|
|
with(select(.api.server.tls.key_file=="" or .api.server.tls.key_file==null); .api.server.tls.key_file = "/etc/ssl/crowdsec-lapi/key.pem") |
|
2022-12-10 21:09:25 +00:00
|
|
|
with(select(strenv(BOUNCERS_ALLOWED_OU)!=""); .api.server.tls.bouncers_allowed_ou = env(bouncers_allowed_yaml)) |
|
|
|
|
with(select(strenv(AGENTS_ALLOWED_OU)!=""); .api.server.tls.agents_allowed_ou = env(agents_allowed_yaml)) |
|
2022-11-28 09:35:12 +00:00
|
|
|
... comments=""
|
|
|
|
'
|
2022-12-10 21:09:25 +00:00
|
|
|
else
|
|
|
|
conf_set 'del(.api.server.tls)'
|
2022-02-02 12:20:12 +00:00
|
|
|
fi
|
|
|
|
|
2022-12-10 21:09:25 +00:00
|
|
|
conf_set 'with(select(strenv(PLUGIN_DIR)!=""); .config_paths.plugin_dir = strenv(PLUGIN_DIR))'
|
2022-02-15 16:10:15 +00:00
|
|
|
|
|
|
|
## Install collections, parsers, scenarios & postoverflows
|
2022-11-28 09:35:12 +00:00
|
|
|
cscli hub update
|
2022-12-10 21:09:25 +00:00
|
|
|
|
|
|
|
cscli_if_clean collections upgrade crowdsecurity/linux
|
|
|
|
cscli_if_clean parsers upgrade crowdsecurity/whitelists
|
|
|
|
cscli_if_clean parsers install crowdsecurity/docker-logs
|
2022-11-28 09:35:12 +00:00
|
|
|
|
2020-11-30 09:37:17 +00:00
|
|
|
if [ "$COLLECTIONS" != "" ]; then
|
2022-11-28 09:35:12 +00:00
|
|
|
# shellcheck disable=SC2086
|
2022-12-10 21:09:25 +00:00
|
|
|
cscli_if_clean collections install $COLLECTIONS
|
2020-11-30 09:37:17 +00:00
|
|
|
fi
|
2022-11-28 09:35:12 +00:00
|
|
|
|
2020-11-30 09:37:17 +00:00
|
|
|
if [ "$PARSERS" != "" ]; then
|
2022-11-28 09:35:12 +00:00
|
|
|
# shellcheck disable=SC2086
|
2022-12-10 21:09:25 +00:00
|
|
|
cscli_if_clean parsers install $PARSERS
|
2020-11-30 09:37:17 +00:00
|
|
|
fi
|
2022-11-28 09:35:12 +00:00
|
|
|
|
2020-11-30 09:37:17 +00:00
|
|
|
if [ "$SCENARIOS" != "" ]; then
|
2022-11-28 09:35:12 +00:00
|
|
|
# shellcheck disable=SC2086
|
2022-12-10 21:09:25 +00:00
|
|
|
cscli_if_clean scenarios install $SCENARIOS
|
2020-11-30 09:37:17 +00:00
|
|
|
fi
|
2022-11-28 09:35:12 +00:00
|
|
|
|
2020-11-30 09:37:17 +00:00
|
|
|
if [ "$POSTOVERFLOWS" != "" ]; then
|
2022-11-28 09:35:12 +00:00
|
|
|
# shellcheck disable=SC2086
|
2022-12-10 21:09:25 +00:00
|
|
|
cscli_if_clean postoverflows install $POSTOVERFLOWS
|
2020-11-30 09:37:17 +00:00
|
|
|
fi
|
|
|
|
|
2022-02-15 16:10:15 +00:00
|
|
|
## Remove collections, parsers, scenarios & postoverflows
|
|
|
|
if [ "$DISABLE_COLLECTIONS" != "" ]; then
|
2022-11-28 09:35:12 +00:00
|
|
|
# shellcheck disable=SC2086
|
2022-12-10 21:09:25 +00:00
|
|
|
cscli_if_clean collections remove $DISABLE_COLLECTIONS
|
2022-02-15 16:10:15 +00:00
|
|
|
fi
|
2022-11-28 09:35:12 +00:00
|
|
|
|
2022-02-15 16:10:15 +00:00
|
|
|
if [ "$DISABLE_PARSERS" != "" ]; then
|
2022-11-28 09:35:12 +00:00
|
|
|
# shellcheck disable=SC2086
|
2022-12-10 21:09:25 +00:00
|
|
|
cscli_if_clean parsers remove $DISABLE_PARSERS
|
2022-02-15 16:10:15 +00:00
|
|
|
fi
|
2022-11-28 09:35:12 +00:00
|
|
|
|
2022-02-15 16:10:15 +00:00
|
|
|
if [ "$DISABLE_SCENARIOS" != "" ]; then
|
2022-11-28 09:35:12 +00:00
|
|
|
# shellcheck disable=SC2086
|
2022-12-10 21:09:25 +00:00
|
|
|
cscli_if_clean scenarios remove $DISABLE_SCENARIOS
|
2022-02-15 16:10:15 +00:00
|
|
|
fi
|
2022-11-28 09:35:12 +00:00
|
|
|
|
2022-02-15 16:10:15 +00:00
|
|
|
if [ "$DISABLE_POSTOVERFLOWS" != "" ]; then
|
2022-11-28 09:35:12 +00:00
|
|
|
# shellcheck disable=SC2086
|
2022-12-10 21:09:25 +00:00
|
|
|
cscli_if_clean postoverflows remove $DISABLE_POSTOVERFLOWS
|
2022-02-15 16:10:15 +00:00
|
|
|
fi
|
|
|
|
|
2022-04-04 08:18:44 +00:00
|
|
|
## Register bouncers via env
|
|
|
|
for BOUNCER in $(compgen -A variable | grep -i BOUNCER_KEY); do
|
|
|
|
KEY=$(printf '%s' "${!BOUNCER}")
|
2022-12-06 15:03:28 +00:00
|
|
|
NAME=$(printf '%s' "$BOUNCER" | cut -d_ -f3-)
|
2022-04-04 08:18:44 +00:00
|
|
|
if [[ -n $KEY ]] && [[ -n $NAME ]]; then
|
2022-12-10 21:09:25 +00:00
|
|
|
register_bouncer "$NAME" "$KEY"
|
2022-04-04 08:18:44 +00:00
|
|
|
fi
|
|
|
|
done
|
|
|
|
|
|
|
|
## Register bouncers via secrets
|
|
|
|
shopt -s nullglob extglob
|
|
|
|
for BOUNCER in /run/secrets/@(bouncer_key|BOUNCER_KEY)* ; do
|
|
|
|
KEY=$(cat "${BOUNCER}")
|
|
|
|
NAME=$(echo "${BOUNCER}" | awk -F "/" '{printf $NF}' | cut -d_ -f2-)
|
|
|
|
if [[ -n $KEY ]] && [[ -n $NAME ]]; then
|
2022-12-10 21:09:25 +00:00
|
|
|
register_bouncer "$NAME" "$KEY"
|
2022-04-04 08:18:44 +00:00
|
|
|
fi
|
|
|
|
done
|
|
|
|
shopt -u nullglob extglob
|
|
|
|
|
2020-11-30 09:37:17 +00:00
|
|
|
ARGS=""
|
|
|
|
if [ "$CONFIG_FILE" != "" ]; then
|
|
|
|
ARGS="-c $CONFIG_FILE"
|
|
|
|
fi
|
2022-11-28 09:35:12 +00:00
|
|
|
|
2021-06-29 16:03:45 +00:00
|
|
|
if [ "$DSN" != "" ]; then
|
|
|
|
ARGS="$ARGS -dsn ${DSN}"
|
2020-11-30 09:37:17 +00:00
|
|
|
fi
|
2021-06-29 16:03:45 +00:00
|
|
|
|
2020-11-30 09:37:17 +00:00
|
|
|
if [ "$TYPE" != "" ]; then
|
|
|
|
ARGS="$ARGS -type $TYPE"
|
|
|
|
fi
|
2022-11-28 09:35:12 +00:00
|
|
|
|
|
|
|
if istrue "$TEST_MODE"; then
|
2020-11-30 09:37:17 +00:00
|
|
|
ARGS="$ARGS -t"
|
|
|
|
fi
|
2022-11-28 09:35:12 +00:00
|
|
|
|
|
|
|
if istrue "$DISABLE_AGENT"; then
|
2020-11-30 09:37:17 +00:00
|
|
|
ARGS="$ARGS -no-cs"
|
|
|
|
fi
|
2022-11-28 09:35:12 +00:00
|
|
|
|
|
|
|
if istrue "$DISABLE_LOCAL_API"; then
|
2020-11-30 09:37:17 +00:00
|
|
|
ARGS="$ARGS -no-api"
|
|
|
|
fi
|
2022-11-28 09:35:12 +00:00
|
|
|
|
|
|
|
if istrue "$LEVEL_TRACE"; then
|
2020-11-30 09:37:17 +00:00
|
|
|
ARGS="$ARGS -trace"
|
|
|
|
fi
|
2022-11-28 09:35:12 +00:00
|
|
|
|
|
|
|
if istrue "$LEVEL_DEBUG"; then
|
2020-11-30 09:37:17 +00:00
|
|
|
ARGS="$ARGS -debug"
|
|
|
|
fi
|
2022-11-28 09:35:12 +00:00
|
|
|
|
|
|
|
if istrue "$LEVEL_INFO"; then
|
2020-11-30 09:37:17 +00:00
|
|
|
ARGS="$ARGS -info"
|
|
|
|
fi
|
|
|
|
|
2022-12-10 21:09:25 +00:00
|
|
|
conf_set 'with(select(strenv(METRICS_PORT)!=""); .prometheus.listen_port=env(METRICS_PORT))'
|
2022-11-28 09:35:12 +00:00
|
|
|
|
|
|
|
# shellcheck disable=SC2086
|
2021-11-02 08:19:22 +00:00
|
|
|
exec crowdsec $ARGS
|