From 26ef871f2e30baef5c6bef77b9215c3957d50921 Mon Sep 17 00:00:00 2001 From: Tobias Urdin Date: Mon, 13 Jul 2020 21:22:06 +0200 Subject: [PATCH] Change to relative include Change-Id: Id65e7e3269f513c3917113b34184b7423779b0a7 --- examples/cisco_ml2.pp | 6 +++--- manifests/client.pp | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/examples/cisco_ml2.pp b/examples/cisco_ml2.pp index 23b6c9636..80e75d545 100644 --- a/examples/cisco_ml2.pp +++ b/examples/cisco_ml2.pp @@ -17,14 +17,14 @@ class { 'neutron::plugins::ml2': mechanism_drivers => ['openvswitch', 'cisco_ucsm', 'cisco_nexus'], } -class {'::neutron::plugins::ml2::cisco::ucsm': +class {'neutron::plugins::ml2::cisco::ucsm': ucsm_ip => '127.0.0.1', ucsm_username => 'admin', ucsm_password => 'password', ucsm_host_list => 'host1:profile1, host2:profile2', } -class {'::neutron::plugins::ml2::cisco::nexus': +class {'neutron::plugins::ml2::cisco::nexus': managed_physical_network => 'physnet', nexus_config => { 'n9372-1' => { @@ -60,7 +60,7 @@ class {'::neutron::plugins::ml2::cisco::nexus': }, } -class {'::neutron::plugins::ml2::cisco::type_nexus_vxlan': +class {'neutron::plugins::ml2::cisco::type_nexus_vxlan': vni_ranges => '20000:22000', mcast_ranges => '224.0.0.1:224.0.0.4', } diff --git a/manifests/client.pp b/manifests/client.pp index b51ad5745..71fc5e7b3 100644 --- a/manifests/client.pp +++ b/manifests/client.pp @@ -21,6 +21,6 @@ class neutron::client ( tag => ['neutron-support-package', 'openstack'], } - include '::openstacklib::openstackclient' + include openstacklib::openstackclient }