From 5f020599de9c2d429ac0fa35e65d78a943ea6c95 Mon Sep 17 00:00:00 2001 From: Jamie Cameron Date: Fri, 18 Sep 2026 16:49:17 -0700 Subject: [PATCH] Reduce number of interations from 10 by default https://github.com/webmin/webmin/issues/2848 --- bind8/bind8-lib.pl | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/bind8/bind8-lib.pl b/bind8/bind8-lib.pl index 3559fd644..af9e9b890 100755 --- a/bind8/bind8-lib.pl +++ b/bind8/bind8-lib.pl @@ -3734,7 +3734,8 @@ while($tries++ < 10) { $out = &backquote_logged( "cd ".quotemeta($dir)." && ". "$config{'signzone'} -o ".quotemeta($dom). - ($alg =~ /^(NSEC3|RSASHA256|RSASHA512|ECCGOST|ECDSAP256SHA256|ECDSAP384SHA384|ED25519|ED448)/ ? " -3 - -u" : ""). + ($alg =~ /^(NSEC3|RSASHA256|RSASHA512|ECCGOST|ECDSAP256SHA256|ECDSAP384SHA384|ED25519|ED448)/ ? + " -3 - -H -u" : ""). " -f ".quotemeta($signed)." ". quotemeta($chrootfn)." 2>&1"); last if (!$?);