mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-07-16 04:35:13 +03:00
15 lines
301 B
Bash
15 lines
301 B
Bash
#!/sbin/openrc-run
|
|
|
|
name="Stubby DNS Privacy stub resolver"
|
|
|
|
command="/usr/bin/stubby"
|
|
command_args="$command_args -C /etc/stubby/stubby.yml"
|
|
command_background=true
|
|
pidfile="/run/${RC_SVCNAME}"
|
|
command_user="stubby:stubby"
|
|
capabilities="^cap_net_bind_service"
|
|
|
|
depend() {
|
|
need net
|
|
after firewall
|
|
}
|