mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-06-08 00:34:26 +02:00
14 lines
293 B
Bash
14 lines
293 B
Bash
#!/sbin/openrc-run
|
|
|
|
name="Hickory DNS Server"
|
|
description="A safe and secure DNS server with DNSSEC support"
|
|
|
|
command="/usr/bin/hickory-dns"
|
|
command_background=yes
|
|
command_user=hickory-dns:hickory-dns
|
|
capabilities="^cap_net_bind_service"
|
|
pidfile="/run/hickory-dns.pid"
|
|
|
|
depend() {
|
|
need net
|
|
}
|