#!/bin/bash # Security hardening hook for live system set -euo pipefail echo "Applying security hardening..." # Apply security hardening from source script /usr/local/bin/security-hardening.sh # Configure auditd systemctl enable auditd echo "Security hardening completed."