summaryrefslogtreecommitdiff
path: root/etc/rc.d/unbound
blob: 977525ca75d7c89d7eab2809de3ffb8dc079a96e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#!/bin/ksh
#
# $OpenBSD: unbound,v 1.6 2022/05/17 07:02:40 ajacoutot Exp $

daemon="/usr/sbin/unbound"
daemon_flags="-c /var/unbound/etc/unbound.conf"

. /etc/rc.d/rc.subr

rc_pre() {
	if grep '^[[:space:]]*auto-trust-anchor-file:' \
            /var/unbound/etc/unbound.conf > /dev/null 2>&1; then
		/usr/sbin/unbound-anchor -v || true
	fi
	/usr/sbin/unbound-checkconf || return 1
}

rc_cmd $1