94673ed159
Change-Id: I229428feb1cb4fc7b551d2654328a8f0bb349910
13 lines
176 B
Puppet
13 lines
176 B
Puppet
#
|
|
define neutron::plugins::ovs::port {
|
|
|
|
include neutron::deps
|
|
|
|
$mapping = split($name, ':')
|
|
vs_port {$mapping[1]:
|
|
ensure => present,
|
|
bridge => $mapping[0]
|
|
}
|
|
}
|
|
|