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 <stijn@linux-ipv6.be>
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}'`);
}
}