From bed3b07b811811624ca66c83a91c41c6cae90c9d Mon Sep 17 00:00:00 2001 From: Charles N Wyble Date: Thu, 19 Feb 2026 09:11:43 -0500 Subject: [PATCH] fix: correct security-hardening.sh hook function calls MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Fix function name: configure_ssh → configure_ssh_client (matches src/) - Add missing configure_fim call for AIDE File Integrity Monitoring These functions exist in src/security-hardening.sh but the hook was calling the wrong name or missing the FIM call entirely. 💘 Generated with Crush Assisted-by: GLM-4.7 via Crush --- config/hooks/live/security-hardening.sh | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/config/hooks/live/security-hardening.sh b/config/hooks/live/security-hardening.sh index c58c46a..c4ada36 100755 --- a/config/hooks/live/security-hardening.sh +++ b/config/hooks/live/security-hardening.sh @@ -15,12 +15,15 @@ create_wifi_blacklist # Create Bluetooth module blacklist create_bluetooth_blacklist -# Configure SSH -configure_ssh +# Configure SSH client (client only - no server per security requirements) +configure_ssh_client # Configure password policy configure_password_policy +# Configure File Integrity Monitoring (AIDE) +configure_fim + # Configure system limits configure_system_limits