b7e317edbc
Replace CLI parsing functionality with the `kingpin` library to better support configuring the tool with environment variables. Add new environment variables to configure the tool. BREAKING CHANGE: CLI params now require two dashes instead of one (e.g. `--socket`)
21 lines
636 B
Bash
21 lines
636 B
Bash
#/bin/sh
|
|
|
|
# Print version to logs for debugging purposes
|
|
/app/fail2ban-prometheus-exporter -version
|
|
|
|
socket_path=/var/run/fail2ban/fail2ban.sock
|
|
textfile_dir=/app/textfile/
|
|
textfile_enabled=false
|
|
|
|
# Enable textfile metrics if the folder exists (i.e. was mounted by docker)
|
|
if [ -d $textfile_dir ]; then
|
|
textfile_enabled=true
|
|
fi
|
|
|
|
# Start the exporter (use exec to support graceful shutdown)
|
|
# Inspired by: https://akomljen.com/stopping-docker-containers-gracefully/
|
|
exec /app/fail2ban-prometheus-exporter \
|
|
--socket "$socket_path" \
|
|
--collector.textfile=$textfile_enabled \
|
|
--collector.textfile.directory="$textfile_dir"
|