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:
parent
581220c654
commit
deabab8363
1 changed files with 13 additions and 3 deletions
|
@ -1,9 +1,19 @@
|
|||
[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]
|
||||
User=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]
|
||||
WantedBy=multi-user.target
|
||||
WantedBy=multi-user.target
|
||||
|
|
Loading…
Reference in a new issue