
Fix new lint errors detected when full of the voxpupili lint plugins are enabled. Change-Id: Ie866db54a2c8f1f7b2bfa67077934118cdf7ffa3 Signed-off-by: Takashi Kajinami <kajinamit@oss.nttdata.com>
10 lines
174 B
Puppet
10 lines
174 B
Puppet
define neutron::plugins::ovs::port {
|
|
include neutron::deps
|
|
|
|
$mapping = split($name, ':')
|
|
vs_port { $mapping[1]:
|
|
ensure => present,
|
|
bridge => $mapping[0],
|
|
}
|
|
}
|