9 lines
175 B
Plaintext
9 lines
175 B
Plaintext
|
#!/bin/sh
|
||
|
#!/bin/bash
|
||
|
|
||
|
JAILS=`fail2ban-client status | grep "Jail list" | sed -E 's/^[^:]+:[ \t]+//' | sed 's/,//g'`
|
||
|
for JAIL in $JAILS
|
||
|
do
|
||
|
fail2ban-client status $JAIL
|
||
|
done
|