blob: c322d5e85470f87c50f90e938b1bf39c6e714dd7 (
plain) (
blame)
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
|
#!/bin/sh
# PROVIDE: kresd
# REQUIRE: NETWORKING
# BEFORE: SERVERS
# KEYWORD: shutdown
#
# Add the following lines to /etc/rc.conf to enable knot-resolver:
#
# kresd_enable="YES": Set to YES to enable kresd.
# Set to NO by default.
# kresd_config="": Set to %%ETCDIR%%/kresd.conf
# by default.
#
. /etc/rc.subr
name=kresd
rcvar=kresd_enable
load_rc_config ${name}
: ${kresd_enable:="NO"}
: ${kresd_svcj_options:="net_basic"}
: ${kresd_config:="%%ETCDIR%%/${name}.conf"}
: ${kresd_user:="%%USERS%%"}
: ${kresd_group:="%%GROUPS%%"}
: ${kresd_rundir:="%%RUNDIR%%"}
procname="%%PREFIX%%/sbin/${name}"
required_files="${kresd_config}"
start_cmd="${name}_start"
status_cmd="${name}_status"
stop_cmd="${name}_stop"
command="/usr/sbin/daemon"
command_args="-c -f -r -S -T ${name} -- ${procname} -c ${kresd_config} -n -q ${kresd_rundir}"
kresd_start() {
if [ ! -d /var/run/${name} ]; then
install -d -o ${kresd_user} -g ${kresd_group} -m 700 ${kresd_rundir}
fi
/bin/pgrep -f ${procname} > /dev/null && status="$?" || status="$?"
if [ "${status}" -eq 0 ]; then
echo "${name} already seems to be running."
else
echo "starting ${name}..." && \
${command} ${command_args}
echo -e "\e[1A\e[K${name} started."
fi
}
kresd_status() {
/bin/pgrep -f ${procname} > /dev/null && status="$?" || status="$?"
if [ "${status}" -eq 0 ]; then
echo "${name} is running:"
echo
/bin/ps -p $(/bin/pgrep -f ${procname})
else
echo "${name} is not running"
fi
return ${status}
}
kresd_stop() {
/bin/pgrep -f ${procname} > /dev/null && status="$?" || status="$?"
if [ "${status}" -eq 0 ]; then
echo "stopping ${name}..." && \
/bin/pkill -TERM -f ${procname}
echo -e "\e[1A\e[K${name} stopped."
else
echo "${name} is not running"
fi
return ${status}
}
run_rc_command "$1"
|