blob: 58dc53b2d8f0f42f3ea6781114e082efc78d1636 (
plain)
1
2
3
4
5
6
7
8
9
10
|
define shorewall::host(
$zone,
$options = 'tcpflags,blacklist,norfc1918',
$order='100'
){
shorewall::entry{"hosts.d/${order}-${title}":
line => "${zone} ${name} ${options}"
}
}
|