]> git.donarmstrong.com Git - dsa-puppet.git/blob - 3rdparty/modules/neutron/manifests/plugins/ovs/bridge.pp
try again, with puppetforge modules, correctly included now
[dsa-puppet.git] / 3rdparty / modules / neutron / manifests / plugins / ovs / bridge.pp
1 #
2 define neutron::plugins::ovs::bridge {
3   $mapping = split($name, ':')
4   $bridge = $mapping[1]
5
6   vs_bridge {$bridge:
7     ensure       => present,
8     external_ids => "bridge-id=${bridge}"
9   }
10 }
11