diff options
Diffstat (limited to 'apks/prometheus-postgres-exporter/postgres-exporter.initd')
-rwxr-xr-x | apks/prometheus-postgres-exporter/postgres-exporter.initd | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/apks/prometheus-postgres-exporter/postgres-exporter.initd b/apks/prometheus-postgres-exporter/postgres-exporter.initd new file mode 100755 index 0000000..8955c15 --- /dev/null +++ b/apks/prometheus-postgres-exporter/postgres-exporter.initd @@ -0,0 +1,22 @@ +#!/sbin/openrc-run +supervisor=supervise-daemon + +command="/usr/bin/postgres_exporter" +command_args="$ARGS" +command_background="yes" +command_user="prometheus:prometheus" + +export DATA_SOURCE_NAME +logdir="/var/log/prometheus" +error_log="$logdir/${SVCNAME}.log" +pidfile="/var/run/${SVCNAME}.pid" + +depend() { + need net + after firewall +} + +start_pre() { + checkpath -d -o $command_user -m755 $logdir + checkpath -f -o $command_user -m644 $error_log +} |