Fix lint issues to upgrade to puppet-lint 2.3

2017-07-20 14:42:54.791002 | manifests/murano.pp - WARNING: arrow should be on the right operand's line on line 80
2017-07-20 14:42:54.791214 | manifests/neutron.pp - WARNING: arrow should be on the right operand's line on line 58
2017-07-20 14:42:54.791272 | manifests/vitrage.pp - WARNING: arrow should be on the right operand's line on line 41
2017-07-20 14:42:54.791321 | manifests/vitrage.pp - WARNING: arrow should be on the right operand's line on line 49

Change-Id: If27084c1093be0c83a7b776c12a81dcbfc1a7946
This commit is contained in:
Carlos Camacho 2017-07-20 20:39:08 +02:00
parent d40188dfba
commit bb9ae79849
3 changed files with 8 additions and 9 deletions

View File

@ -77,7 +77,6 @@ class openstack_integration::murano {
public_url => "${::openstack_integration::config::base_url}:8082",
internal_url => "${::openstack_integration::config::base_url}:8082",
admin_url => "${::openstack_integration::config::base_url}:8082",
} ->
murano::application { 'io.murano': }
}
-> murano::application { 'io.murano': }
}

View File

@ -55,8 +55,8 @@ class openstack_integration::neutron (
provider => shell,
command => 'ip link add name loop1 type dummy && ip addr add 127.2.0.1/24 dev loop1',
refreshonly => true,
} ->
vs_port { 'loop1':
}
-> vs_port { 'loop1':
ensure => present,
bridge => 'br-ex',
notify => Exec['create_br-ex_vif'],

View File

@ -38,19 +38,19 @@ class openstack_integration::vitrage {
debug => true,
snapshots_interval => 120,
types => 'nova.host,nova.instance,nova.zone,cinder.volume,neutron.port,neutron.network,doctor'
} ->
}
# Make sure tempest can read the configuration files
# default installation has a 640 premission
file { '/etc/vitrage':
-> file { '/etc/vitrage':
ensure => directory,
recurse => true,
mode => '0644',
} ->
}
# Make sure tempest can write to the log directory
# default installation has a 755 premission
file { '/var/log/vitrage':
-> file { '/var/log/vitrage':
ensure => directory,
mode => '0766',
}