crowdsec/test/instance-db

19 lines
396 B
Plaintext
Raw Permalink Normal View History

#!/usr/bin/env bash
#shellcheck disable=SC1007
THIS_DIR=$(CDPATH= cd -- "$(dirname -- "$0")" && pwd)
cd "${THIS_DIR}" || exit 1
2022-10-04 13:58:10 +00:00
# shellcheck disable=SC1091
. ./.environment.sh
2022-10-04 13:58:10 +00:00
./bin/assert-crowdsec-not-running
backend_script="./lib/db/instance-${DB_BACKEND}"
if [[ ! -x "${backend_script}" ]]; then
echo "unknown database '${DB_BACKEND}'" >&2
exit 1
fi
exec "${backend_script}" "$@"