]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - etc/rc.d/local_unbound
Merge xz 5.2.0.
[FreeBSD/FreeBSD.git] / etc / rc.d / local_unbound
1 #!/bin/sh
2 #
3 # $FreeBSD$
4 #
5
6 # PROVIDE: local_unbound
7 # REQUIRE: FILESYSTEMS netif resolv
8 # KEYWORD: shutdown
9
10 . /etc/rc.subr
11
12 name="local_unbound"
13 desc="local caching forwarding resolver"
14 rcvar="local_unbound_enable"
15
16 command="/usr/sbin/unbound"
17 extra_commands="anchor configtest reload setup"
18 start_precmd="local_unbound_prestart"
19 reload_precmd="local_unbound_configtest"
20 anchor_cmd="local_unbound_anchor"
21 configtest_cmd="local_unbound_configtest"
22 setup_cmd="local_unbound_setup"
23 pidfile="/var/run/${name}.pid"
24
25 : ${local_unbound_workdir:=/var/unbound}
26 : ${local_unbound_config:=${local_unbound_workdir}/unbound.conf}
27 : ${local_unbound_flags:=-c${local_unbound_config}}
28 : ${local_unbound_forwardconf:=${local_unbound_workdir}/forward.conf}
29 : ${local_unbound_controlconf:=${local_unbound_workdir}/control.conf}
30 : ${local_unbound_anchor:=${local_unbound_workdir}/root.key}
31 : ${local_unbound_forwarders:=}
32
33 load_rc_config $name
34
35 do_as_unbound()
36 {
37         echo "$@" | su -m unbound
38 }
39
40 #
41 # Retrieve or update the DNSSEC root anchor
42 #
43 local_unbound_anchor()
44 {
45         do_as_unbound /usr/sbin/unbound-anchor -a ${local_unbound_anchor}
46         # we can't trust the exit code - check if the file exists
47         [ -f ${local_unbound_anchor} ]
48 }
49
50 #
51 # Check the unbound configuration file
52 #
53 local_unbound_configtest()
54 {
55         do_as_unbound /usr/sbin/unbound-checkconf ${local_unbound_config}
56 }
57
58 #
59 # Create the unbound configuration file and update resolv.conf to
60 # point to unbound.
61 #
62 local_unbound_setup()
63 {
64         echo "Performing initial setup."
65         /usr/sbin/local-unbound-setup -n \
66             -u unbound \
67             -w ${local_unbound_workdir} \
68             -c ${local_unbound_config} \
69             -f ${local_unbound_forwardconf} \
70             -o ${local_unbound_controlconf} \
71             -a ${local_unbound_anchor} \
72             ${local_unbound_forwarders}
73 }
74
75 #
76 # Before starting, check that the configuration file and root anchor
77 # exist.  If not, attempt to generate them.
78 #
79 local_unbound_prestart()
80 {
81         # Create configuration file
82         if [ ! -f ${local_unbound_config} ] ; then
83                 run_rc_command setup
84         fi
85
86         # Retrieve DNSSEC root key
87         if [ ! -f ${local_unbound_anchor} ] ; then
88                 run_rc_command anchor
89         fi
90 }
91
92 load_rc_config $name
93 run_rc_command "$1"