blob: 435303b24203195b4673b4407ff3c47fefd93ae9 (
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
25
26
27
28
29
30
31
32
33
34
35
|
#!/bin/sh
#
# $FreeBSD$
#
# PROVIDE: krescachegc
# REQUIRE: SERVERS cleanvar
# KEYWORD: shutdown
#
# Add the following lines to /etc/rc.conf to enable knot-resolver:
#
# krescachegc_enable="YES": Set to YES to enable krescachegc.
# Set to NO by default.
# krescachegc_millis="1000": Set to garbage collect interval in milliseconds
# Set to 1000 by default.
#
. /etc/rc.subr
name=krescachegc
rcvar=krescachegc_enable
load_rc_config ${name}
# set defaults
krescachegc_enable=${krescachegc_enable:-"NO"}
krescachegc_millis=${krescachegc_millis:-"1000"}
pidfile="%%RUNDIR%%/${name}.pid"
procname="%%PREFIX%%/sbin/kres-cache-gc"
command=/usr/sbin/daemon
command_args="-c -f -r -P ${pidfile} -u %%USERS%% -- ${procname} -c %%RUNDIR%% -d ${krescachegc_millis}"
run_rc_command "$1"
|