mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-07-15 04:05:15 +03:00
15 lines
251 B
Bash
Executable file
15 lines
251 B
Bash
Executable file
#!/sbin/openrc-run
|
|
|
|
name="dmarc-metrics-exporter"
|
|
|
|
: ${command_user:="prometheus"}
|
|
|
|
command="/usr/bin/dmarc-metrics-exporter"
|
|
command_args="$command_args"
|
|
command_background="yes"
|
|
pidfile="/run/$RC_SVCNAME.pid"
|
|
|
|
depend() {
|
|
need net
|
|
after firewall
|
|
}
|