From b9d35ff6b495465413a81622e849076a9e1fa690 Mon Sep 17 00:00:00 2001 From: Stijn Tintel Date: Mon, 13 Jun 2022 11:05:10 +0300 Subject: [PATCH] fw4.uc: don't skip zone for unavailable helper Skipping a zone because a configured helper is not available is a bigger security risk than not setting up the helper, as a zone might have stricter settings than the defaults Signed-off-by: Stijn Tintel --- root/usr/share/ucode/fw4.uc | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/root/usr/share/ucode/fw4.uc b/root/usr/share/ucode/fw4.uc index a338446..0200758 100644 --- a/root/usr/share/ucode/fw4.uc +++ b/root/usr/share/ucode/fw4.uc @@ -1884,8 +1884,7 @@ return { for (let helper in zone.helper) { if (!helper.available) { - this.warn_section(data, `uses unavailable ct helper '${zone.helper.name}', ignoring section`); - return; + this.warn_section(data, `uses unavailable ct helper '${zone.helper.name}'`); } } -- 2.30.2