mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-07-19 01:05:15 +03:00
12 lines
261 B
Text
12 lines
261 B
Text
#!/sbin/openrc-run
|
|
|
|
command=/usr/sbin/netdata
|
|
pidfile=/run/netdata.pid
|
|
command_args="-P ${pidfile}"
|
|
name="netdata"
|
|
description="Real-time performance monitoring"
|
|
|
|
depend() {
|
|
need net
|
|
after apache2 squid nginx mysql named opensips hostapd postfix lm_sensors
|
|
}
|