mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-07-23 03:05:48 +03:00
13 lines
240 B
Text
13 lines
240 B
Text
#!/sbin/openrc-run
|
|
|
|
name=coredns
|
|
description="CoreDNS is a fast and flexible DNS server"
|
|
command=/usr/bin/coredns
|
|
command_args="$ARGS"
|
|
command_user="coredns:coredns"
|
|
supervisor="supervise-daemon"
|
|
|
|
depend() {
|
|
need net
|
|
provide dns
|
|
}
|