blob: 64687e885ade28779f4f8954fdd05eab5a36d4d6 (
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.iteritems(): ?>
geo $bans_#{board} {
default 0;
<?py for ip in bans: ?>
#{ip} 1;
<?py #endfor ?>
}
<?py #endfor ?>
|