mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-08-05 21:37:15 +02:00
12 lines
228 B
Bash
Executable File
12 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
|
|
}
|