summaryrefslogtreecommitdiff
path: root/manifests/rules/libvirt/host/from_vmz.pp
blob: f25c333e2a4b43d5586f147776b2e5ec012c8234 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
define shorewall::rules::libvirt::host::from_vmz (
  $proto           = '-',
  $destinationport = '-',
  $action          = 'ACCEPT'
) {
  shorewall::rule { $name:
    source          => $shorewall::rules::libvirt::host::vmz,
    destination     => '$FW',
    order           => 300,
    proto           => $proto,
    destinationport => $destinationport,
    action          => $action;
  }
}