Fix lint issues to upgrade to puppet-lint 2.3

2017-07-20 14:37:44.526958 | manifests/plugins/ovs/opendaylight.pp:64:WARNING: arrow should be on the right operand's line
2017-07-20 14:37:44.527053 | manifests/plugins/ovs/opendaylight.pp:70:WARNING: arrow should be on the right operand's line

Change-Id: Icdb5c75f6f0cf741ecd65e73af2da9eb02a88c0c
This commit is contained in:
Carlos Camacho 2017-07-20 20:23:37 +02:00
parent 2bb7c50d3e
commit f8789d3e42
1 changed files with 4 additions and 4 deletions

View File

@ -61,15 +61,15 @@ class neutron::plugins::ovs::opendaylight (
tries => $retry_count,
try_sleep => $retry_interval,
path => '/usr/sbin:/usr/bin:/sbin:/bin',
} ->
}
# OVS manager
exec { 'Set OVS Manager to OpenDaylight':
-> exec { 'Set OVS Manager to OpenDaylight':
command => "ovs-vsctl set-manager ${ovsdb_server_iface} ${odl_ovsdb_iface}",
unless => "ovs-vsctl show | grep 'Manager \"${ovsdb_server_iface} ${odl_ovsdb_iface}\"'",
path => '/usr/sbin:/usr/bin:/sbin:/bin',
} ->
}
# local ip
exec { 'Set local_ip Other Option':
-> exec { 'Set local_ip Other Option':
command => "ovs-vsctl set Open_vSwitch $(ovs-vsctl get Open_vSwitch . _uuid) other_config:local_ip=${tunnel_ip}",
unless => "ovs-vsctl list Open_vSwitch | grep 'local_ip=\"${tunnel_ip}\"'",
path => '/usr/sbin:/usr/bin:/sbin:/bin',