mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-07-13 19:29:53 +03:00
11 lines
228 B
Bash
Executable file
11 lines
228 B
Bash
Executable file
#!/sbin/openrc-run
|
|
name="DigitalOcean Monitoring Agent"
|
|
command=/usr/sbin/do-agent
|
|
command_user=do-agent
|
|
command_background=true
|
|
pidfile="/run/$RC_SVCNAME.pid"
|
|
start_stop_daemon_args="--exec $RC_SVCNAME"
|
|
|
|
depend() {
|
|
need net
|
|
}
|