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