Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package unbound for openSUSE:Factory checked in at 2024-11-29 00:08:30 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/unbound (Old) and /work/SRC/openSUSE:Factory/.unbound.new.28523 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "unbound" Fri Nov 29 00:08:30 2024 rev:72 rq:1226894 version:1.22.0 Changes: -------- --- /work/SRC/openSUSE:Factory/unbound/unbound.changes 2024-10-20 10:08:59.039212681 +0200 +++ /work/SRC/openSUSE:Factory/.unbound.new.28523/unbound.changes 2024-11-29 00:08:39.752880711 +0100 @@ -1,0 +2,9 @@ +Wed Nov 27 11:45:12 UTC 2024 - Johannes Kastl <opensuse_buildserv...@ojkastl.de> + +- add workaround for bug + https://github.com/NLnetLabs/unbound/issues/509 + Starting up with 127.0.0.1 in the /etc/resolv.conf leads to long + delays if the anchor update is being run as ExecStartPre in the + unbound service + +------------------------------------------------------------------- ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ unbound.spec: same change ++++++ unbound.service ++++++ --- /var/tmp/diff_new_pack.8hBCCu/_old 2024-11-29 00:08:41.208941503 +0100 +++ /var/tmp/diff_new_pack.8hBCCu/_new 2024-11-29 00:08:41.212941670 +0100 @@ -13,7 +13,8 @@ Group=unbound EnvironmentFile=-/etc/sysconfig/unbound #ExecStartPre=/sbin/runuser --shell /bin/sh -c "/usr/sbin/unbound-anchor -a /var/lib/unbound/root.key -c /etc/unbound/icannbundle.pem" unbound -ExecStartPre=/usr/sbin/unbound-anchor -a /var/lib/unbound/root.key -c /etc/unbound/icannbundle.pem +# https://github.com/NLnetLabs/unbound/issues/509 +ExecStartPre=/bin/bash -c 'if [ ! "$DISABLE_UNBOUND_ANCHOR" == "yes" ]; then /usr/sbin/unbound-anchor -a /var/lib/unbound/root.key -c /etc/unbound/icannbundle.pem -R; else echo "Updates of root keys with unbound-anchor is disabled"; fi' ExecStartPre=/usr/sbin/unbound-checkconf ExecStart=!/usr/sbin/unbound -d $UNBOUND_OPTIONS ++++++ unbound.sysconfig ++++++ --- /var/tmp/diff_new_pack.8hBCCu/_old 2024-11-29 00:08:41.240942840 +0100 +++ /var/tmp/diff_new_pack.8hBCCu/_new 2024-11-29 00:08:41.240942840 +0100 @@ -2,3 +2,6 @@ UNBOUND_OPTIONS="" +# to disable the anchor update, set this to 'yes' +DISABLE_UNBOUND_ANCHOR="no" +