diff options
author | Jay Jahns <jjahns@vmware.com> | 2017-08-25 20:24:43 -0700 |
---|---|---|
committer | Emilien Macchi <emilien@redhat.com> | 2017-09-06 06:47:35 +0000 |
commit | 6c9e3f3c29b4ec1b72c6a3c7314d727495d2ddae (patch) | |
tree | 18b92a9d9f2bf7cf7f97dc0d60084682e87df7c6 | |
parent | a3f44bb6af9acc64569391dca8e85b854ae37072 (diff) |
Change references from nsx_v3 to nsx
This patch changes references from nsx_v3 to nsx since the nsx_v3 functionality
is the only one supported at this time.
Change-Id: Id73f675844b0df2eafa45507d1c28f16cd0b15b2
Closes-Bug: #1713191
(cherry picked from commit f27c45a0925546f3b9627fce7d223a1bba140ce0)
-rw-r--r-- | manifests/profile/base/neutron/plugins/nsx.pp (renamed from manifests/profile/base/neutron/plugins/nsx_v3.pp) | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/manifests/profile/base/neutron/plugins/nsx_v3.pp b/manifests/profile/base/neutron/plugins/nsx.pp index b534a2f..d8a6189 100644 --- a/manifests/profile/base/neutron/plugins/nsx_v3.pp +++ b/manifests/profile/base/neutron/plugins/nsx.pp @@ -12,7 +12,7 @@ # License for the specific language governing permissions and limitations # under the License. # -# == Class: tripleo::profile::base::neutron::plugins::nsx_v3 +# == Class: tripleo::profile::base::neutron::plugins::nsx # # VMware NSXv3 Neutron profile for tripleo # @@ -27,7 +27,7 @@ # for more details. # Defaults to hiera('step') # -class tripleo::profile::base::neutron::plugins::nsx_v3 ( +class tripleo::profile::base::neutron::plugins::nsx ( $bootstrap_node = hiera('bootstrap_nodeid', undef), $step = Integer(hiera('step')), ) { @@ -40,6 +40,6 @@ class tripleo::profile::base::neutron::plugins::nsx_v3 ( include ::tripleo::profile::base::neutron if $step >= 4 or ( $step >= 3 and $sync_db ) { - include ::neutron::plugins::nsx_v3 + include ::neutron::plugins::nsx } } |