Update systemd service and add EnvironmentFile

This commit is contained in:
Manuel 2021-01-24 20:55:39 +01:00
parent 46489b2f85
commit 4b7cc065d2
Signed by: Manuel
GPG key ID: 4085037435E1F07A
5 changed files with 50 additions and 28 deletions

View file

@ -2,8 +2,24 @@
Description=Prometheus exporter for PostgreSQL
After=network.target
[Service]
ExecStart=/usr/bin/prometheus_postgresql_exporter
EnvironmentFile=-/etc/conf.d/prometheus-postgresql-exporter
ExecStart=/usr/bin/prometheus_postgresql_exporter $POSTGRES_EXPORTER_ARGS
Restart=on-failure
DynamicUser=true
ProtectKernelModules=true
ProtectKernelTunables=true
LockPersonality=true
ProtectHostname=true
ProtectHome=true
ProtectClock=true
ProtectControlGroups=true
ProtectKernelLogs=true
PrivateDevices=true
PrivateUsers=true
RestrictRealtime=true
CapabilityBoundingSet=
MemoryDenyWriteExecute=true
[Install]
WantedBy=multi-user.target