summaryrefslogtreecommitdiff
path: root/manifests/blacklist.pp
blob: afbe216598997bb3825949e0c15d18614dc02d8d (plain)
1
2
3
4
5
6
7
8
9
define shorewall::blacklist(
    $proto = '-',
    $port = '-',
    $order='100'
){
    shorewall::entry{"blacklist-${order}-${name}":
        line => "${name} ${proto} ${port}",
    }           
}