From: jhell on

The following patch "commented (#) in-line and attached" fixes the
following annoyances.

Example output that it fixes:
Checking for denied zone transfers (AXFR and IXFR):
Updating f-prot definitions: Error: Network - Could not resolve host
failed.

Everything else in periodic reports are spaced and default to off/no for
ports that are installed.

-: ${fpupdate_enable="YES"}
# Do not assume the user wants this on!.
+: ${fpupdate_enable:="NO"}

case "$fpupdate_enable" in
[Yy][Ee][Ss])
# Add to make sure we do not look like a failed zone
# transfer. This can be confusing.
+ echo
echo -n "Updating f-prot definitions: "
- /usr/local/bin/fpupdate >/dev/null
# If we are echoing our own output then we do not need any
# feedback from the program whatsoever. This causes an
# unseen line break to happen in the output above.
+ /usr/local/bin/fpupdate >>/dev/null 2>&1
if [ $? = 0 ]; then
echo "done."
rc=0


Best regards.

--

jhell