blob: ba7959a621194b4d4223b099390339001e876948 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
geo $bans_global {
default 0;
<?py for ip in global_bans: ?>
#{ip} 1;
<?py #endfor ?>
}
<?py for board, bans in board_bans.items(): ?>
geo $bans_#{board} {
default 0;
<?py for ip in bans: ?>
#{ip} 1;
<?py #endfor ?>
}
<?py #endfor ?>
|