aboutsummaryrefslogtreecommitdiffstats
path: root/testing/knot-resolver4/knot-resolver4.initd
blob: 80f227d79ec67cdc89675289796edff5f741cba5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
#!/sbin/openrc-run

: ${config:="/etc/knot-resolver/kresd.conf"}
: ${cachedir:="/var/cache/knot-resolver"}
: ${logfile:="/var/log/knot-resolver4.log"}

command="/usr/sbin/kresd"
# Note: Do not change forks=1, it's buggy.
command_args="--config=$config --forks=1 $cachedir"
command_background="yes"
pidfile="/run/$RC_SVCNAME.pid"
start_stop_daemon_args="
	--chdir=$cachedir
	--stdout=$logfile
	--stderr=$logfile"
required_files="$config"

depend() {
	need net
}

start_pre() {
	checkpath -d -m 750 -o kresd:kresd "$cachedir"
}