From 65b9ce665108ae785967db55d0854fda207f5d3b Mon Sep 17 00:00:00 2001 From: Gui-Gos <97973228+Gui-Gos@users.noreply.github.com> Date: Sun, 4 Jan 2026 12:54:38 +0100 Subject: [PATCH] Remove confusing bug mentions from success messages MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Changed 'Bug #3 fixed' to 'persistent via symlink' when config is OK - Changed 'pthread_create fix present' to 'Configured (prevents pthread_create errors)' - Only mention bugs/fixes in error/warning states, not in success states - Makes the output clearer and less confusing for users 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Sonnet 4.5 --- apps/wazuh-runtipi/data/debug/wazuh-health-check.sh | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/apps/wazuh-runtipi/data/debug/wazuh-health-check.sh b/apps/wazuh-runtipi/data/debug/wazuh-health-check.sh index e2583b3..b310a83 100644 --- a/apps/wazuh-runtipi/data/debug/wazuh-health-check.sh +++ b/apps/wazuh-runtipi/data/debug/wazuh-health-check.sh @@ -372,9 +372,9 @@ if [ -n "$MANAGER_CONTAINER" ]; then echo -ne " Main config is symlink: " if docker exec "$MANAGER_CONTAINER" test -L "$OSSEC_CONF" 2>/dev/null; then - echo -e "${GREEN}✓ YES (Bug #3 fixed)${NC}" + echo -e "${GREEN}✓ YES (persistent via symlink)${NC}" else - echo -e "${YELLOW}⚠ NO (Bug #3 - config not persistent)${NC}" + echo -e "${YELLOW}⚠ NO (config not persistent - will be lost on restart)${NC}" fi else echo -e "${RED}✗ Manager container not running${NC}" @@ -449,11 +449,11 @@ if [ -n "$MANAGER_CONTAINER" ]; then echo -e " ${GREEN} The 4 environment variables above control SSL configuration${NC}" fi - echo -ne " Seccomp fix for pthread: " + echo -ne " Seccomp configuration: " if docker exec "$MANAGER_CONTAINER" grep -q "seccomp:" "$FILEBEAT_CONF" 2>/dev/null; then - echo -e "${GREEN}✓ YES (pthread_create fix present)${NC}" + echo -e "${GREEN}✓ Configured (prevents pthread_create errors)${NC}" else - echo -e "${YELLOW}⚠ NO (may cause pthread_create errors)${NC}" + echo -e "${YELLOW}⚠ Not configured (may cause pthread_create errors)${NC}" fi else echo -e "${RED}✗ NO${NC}"