This commit is contained in:
root
2026-05-10 13:15:32 +02:00
commit d14abc7041
4 changed files with 885 additions and 0 deletions

7
load-chains.sh Executable file
View File

@@ -0,0 +1,7 @@
#!/usr/bin/env bash
set -euo pipefail
for file in /opt/firewall/chains/*.sh; do
[ -e "$file" ] || continue
bash "$file"
done