blob: 2dff218b51a6728d0e480f563b7aa8140e550000 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
define shorewall::stoppedrules(
$action = 'ACCEPT',
$source = '-',
$destination = '-',
$proto = '-',
$destinationport = '-',
$sourceport = '-',
$order = '100'
){
shorewall::entry{"stoppedrules-${order}-${name}":
line => "${action} ${source} ${destination} ${proto} ${destinationport} ${sourceport}"
}
}
|