fix: watch logs across all jails (#4)

This commit is contained in:
2025-06-30 13:25:57 +03:00
committed by GitHub
parent b7651acd8b
commit d9a89f6c38

2
f2b
View File

@@ -755,7 +755,7 @@ if [ "$F2B_ARG1" == "logs-watch" ]; then
exit 0
fi
# loop over jails and watch logs for all of them
for JAIL in "${F2B_JAILS[@]}"; do
for JAIL in "${F2B_JAILS_ARRAY[@]}"; do
f2b_poll_jail_log_entries "$JAIL"
done
exit 0