The libraries jobs fails with:
manifests/params.pp:9:ERROR: two-space soft tabs not used

Change-Id: If031ef28276d6f52c429844156cdec3c009e033f
Closes-Bug: #1806790
This commit is contained in:
ZhongShengping 2018-12-12 08:49:20 +08:00 committed by Tobias Urdin
parent 3c61a49310
commit 61b26933f7
4 changed files with 8 additions and 2 deletions

View File

@ -6,7 +6,7 @@ class neutron::params {
include ::openstacklib::defaults
if ($::os_package_type == 'debian') or ($::os['name'] == 'Fedora') or
($::os['family'] == 'RedHat' and Integer.new($::os['release']['major']) > 7) {
($::os['family'] == 'RedHat' and Integer.new($::os['release']['major']) > 7) {
$pyvers = '3'
} else {
$pyvers = ''

View File

@ -158,9 +158,11 @@ class neutron::plugins::ml2 (
warning('Security groups will not work without properly set firewall_driver')
}
# lint:ignore:only_variable_string
if !is_service_default($overlay_ip_version) and !("${overlay_ip_version}" in ['4', '6']) {
fail('Invalid IP version for overlay_ip_version')
}
# lint:endignore
if $::operatingsystem == 'Ubuntu' {
file_line { '/etc/default/neutron-server:NEUTRON_PLUGIN_CONFIG':

View File

@ -116,7 +116,7 @@ define neutron::plugins::ml2::cisco::nexus_switch(
include ::neutron::deps
$section = "ML2_MECH_CISCO_NEXUS:${ip_address}"
$port_mappings = template("neutron/nexus_switch_port_mappings.erb")
$port_mappings = template('neutron/nexus_switch_port_mappings.erb')
neutron_plugin_ml2 {
"${section}/username": value => $username;
"${section}/password": value => $password, secret => true;

View File

@ -87,6 +87,10 @@
# (optional) CA Certificate file path to use for TLS configuration
# Defaults to False.
#
# [*enable_ipv6*]
# (optional) If we should enable ipv6.
# Defaults to False.
#
class neutron::plugins::ovs::opendaylight (
$tunnel_ip,
$odl_username,