mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-04-12 14:56:53 +02:00
12 lines
199 B
Bash
12 lines
199 B
Bash
#!/sbin/openrc-run
|
|
|
|
name=cloudflared
|
|
command=/usr/bin/cloudflared
|
|
command_user=cloudflared:cloudflared
|
|
command_background="yes"
|
|
pidfile=/run/${RC_SVCNAME}.pid
|
|
|
|
depend() {
|
|
need net
|
|
after firewall
|
|
}
|