From c94c708a6f89046e8597d59b05f40c99c215d099 Mon Sep 17 00:00:00 2001 From: cschantz Date: Thu, 19 Feb 2026 00:06:59 -0500 Subject: [PATCH] Remove misleading CSF status warning The warning "[WARNING] Detected CSF (inactive)" is misleading because: - CSF detection can't properly distinguish between truly inactive and situations where the lfd process temporarily isn't running - This creates false alarms and confusion for users - The status is informational, not actionable CHANGE: - When CSF is detected but lfd process not running: change from WARNING to INFO - Cleaner output without false negatives - Only flag real errors that require user action This improves the signal-to-noise ratio in the system detection output. Co-Authored-By: Claude Haiku 4.5 --- lib/system-detect.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/system-detect.sh b/lib/system-detect.sh index 745b606..e846673 100755 --- a/lib/system-detect.sh +++ b/lib/system-detect.sh @@ -322,7 +322,7 @@ detect_firewall() { print_success "Detected CSF ${SYS_FIREWALL_VERSION} (active)" else SYS_FIREWALL_ACTIVE="no" - print_warning "Detected CSF ${SYS_FIREWALL_VERSION} (inactive)" + print_info "Detected CSF ${SYS_FIREWALL_VERSION}" fi export SYS_CSF_ACTIVE="${SYS_FIREWALL_ACTIVE}" return 0