mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-07-16 04:35:13 +03:00
13 lines
304 B
Bash
13 lines
304 B
Bash
#!/sbin/openrc-run
|
|
|
|
name=$RC_SVCNAME
|
|
description="Network Time Service (ntpd-rs) metrics exporter"
|
|
supervisor="supervise-daemon"
|
|
command="/usr/bin/ntp-metrics-exporter"
|
|
supervise_daemon_args=" -e "RUST_LOG=\"info"\""
|
|
command_user="ntpd-rs-observe:ntpd-rs-observe"
|
|
|
|
depend() {
|
|
need net
|
|
after firewall
|
|
}
|