summaryrefslogtreecommitdiff
path: root/manifests/host.pp
blob: 2a088ac97bf543a86c6ed7f8ecaeef8a0d1dc2dd (plain)
1
2
3
4
5
6
7
8
9
10
define shorewall::host(
    $zone,
    $options = 'tcpflags',
    $order='100'
){

    shorewall::entry{"hosts-${order}-${name}":
        line => "#${name}\n${zone} ${host} ${options}"
    }
}