blob: 3f96b0e5ee3bf3e36f89e1b8aa5a577d076aa41e (
plain)
1
2
3
4
5
6
7
8
|
class firewall::docker(
$implementation = lookup('firewall::implementation', undef, undef, 'shorewall'),
$device = 'eth0',
) {
class { "firewall::implementations::${implementation}::docker":
device => $device,
}
}
|