diff options
author | Florian Obser <florian@cvs.openbsd.org> | 2019-02-07 17:54:02 +0000 |
---|---|---|
committer | Florian Obser <florian@cvs.openbsd.org> | 2019-02-07 17:54:02 +0000 |
commit | c0047dca5ef53ac5e0eb8b499655c871b1c4ac6f (patch) | |
tree | 56a0df1589d3bdd8d09c7b7daf70b02b160fdaba /etc/rc.d | |
parent | 5d9974cd143e70d683c9ca6ba60503c6fd4fcf55 (diff) |
No need to run unbound-anchor anymore. Unwind(8) handles the bootstrap
correctly itself now. At leat considering the end of life times of
OpenBSD releases and the speed at which the root key signing key (KSK)
rolls.
On the other hand, unbound-anchor assumes a certain network quality
which we cannot guarantee in places where we want to run unwind(8).
This in turn can lead to unbound-anchor stalling the boot process.
Diffstat (limited to 'etc/rc.d')
-rw-r--r-- | etc/rc.d/unwind | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/etc/rc.d/unwind b/etc/rc.d/unwind index eea9ef5cbab..4de08a712e2 100644 --- a/etc/rc.d/unwind +++ b/etc/rc.d/unwind @@ -1,13 +1,9 @@ #!/bin/ksh # -# $OpenBSD: unwind,v 1.1 2019/01/26 10:59:07 florian Exp $ +# $OpenBSD: unwind,v 1.2 2019/02/07 17:54:01 florian Exp $ daemon="/sbin/unwind" . /etc/rc.d/rc.subr -rc_pre() { - /usr/sbin/unbound-anchor -a /etc/unwind/trustanchor/root.key || true -} - rc_cmd $1 |