chore: update example systemd file (!115)

- Update the example systemd file to be more complete
- Added description, documentation link, and some improved service settings

https://gitlab.com/hectorjsmith/fail2ban-prometheus-exporter/-/merge_requests/115
This commit is contained in:
Hector 2023-10-27 06:23:20 +00:00
parent 581220c654
commit deabab8363

View file

@ -1,9 +1,19 @@
[Unit] [Unit]
Description=Fail2Ban Exporter Description=Fail2ban metric exporter for Prometheus
Documentation=https://gitlab.com/hectorjsmith/fail2ban-prometheus-exporter/-/blob/main/README.md
Requires=network-online.target
After=network-online.target
[Service] [Service]
User=fail2ban_exporter
ExecStart=/usr/sbin/fail2ban_exporter ExecStart=/usr/sbin/fail2ban_exporter
Restart=on-failure
RestartSec=5s
NoNewPrivileges=true
# Currently need to run the exporter as root to ensure it has read/write access to the
# fail2ban socket file.
User=root
Group=root
[Install] [Install]
WantedBy=multi-user.target WantedBy=multi-user.target