mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-04-05 05:57:14 +02:00
18 lines
352 B
Bash
18 lines
352 B
Bash
#!/sbin/openrc-run
|
|
|
|
name="Crab-Hole DNS Server"
|
|
description="A DNS level ad and spy blocker"
|
|
|
|
command="/usr/bin/crab-hole"
|
|
command_background=yes
|
|
command_user=crab-hole:crab-hole
|
|
capabilities="^cap_net_bind_service"
|
|
pidfile="/run/crab-hole.pid"
|
|
|
|
depend() {
|
|
need net
|
|
}
|
|
|
|
start_pre() {
|
|
checkpath --directory --owner "$command_user" /var/lib/crab-hole
|
|
}
|