diff --git a/manifests/plugins/ml2.pp b/manifests/plugins/ml2.pp index 7ad456870..23ab2c261 100644 --- a/manifests/plugins/ml2.pp +++ b/manifests/plugins/ml2.pp @@ -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': diff --git a/manifests/plugins/ml2/cisco/nexus_creds.pp b/manifests/plugins/ml2/cisco/nexus_creds.pp index d59161852..1c6927d40 100644 --- a/manifests/plugins/ml2/cisco/nexus_creds.pp +++ b/manifests/plugins/ml2/cisco/nexus_creds.pp @@ -114,9 +114,9 @@ define neutron::plugins::ml2::cisco::nexus_creds( $username, $password, $servers, - $ssh_port = undef, # Used parameters $ip_address, + $ssh_port = undef, $nve_src_intf = undef, $physnet = undef, $vpc_pool = undef, diff --git a/manifests/plugins/ml2/cisco/nexus_switch.pp b/manifests/plugins/ml2/cisco/nexus_switch.pp index 0bd846b96..8fae9e269 100644 --- a/manifests/plugins/ml2/cisco/nexus_switch.pp +++ b/manifests/plugins/ml2/cisco/nexus_switch.pp @@ -123,7 +123,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; diff --git a/manifests/plugins/ovs/opendaylight.pp b/manifests/plugins/ovs/opendaylight.pp index 44c7ac080..ceef7cf6e 100644 --- a/manifests/plugins/ovs/opendaylight.pp +++ b/manifests/plugins/ovs/opendaylight.pp @@ -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,