From bca0bd0bab16f721ebe97e876e939cde2624aba1 Mon Sep 17 00:00:00 2001 From: Tobias Urdin Date: Mon, 17 Jun 2019 17:54:03 +0200 Subject: [PATCH] Fix l2gw_provider unknown variable Puppet (warning): Unknown variable: 'l2gw_provider' Change-Id: I45a0b64e1a0b4baaf321c4bcbe85cbc683277c86 --- manifests/neutron.pp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/manifests/neutron.pp b/manifests/neutron.pp index bf46af14a..c4facaeb5 100644 --- a/manifests/neutron.pp +++ b/manifests/neutron.pp @@ -124,6 +124,8 @@ class openstack_integration::neutron ( } $l2gw_provider = undef } + } else { + $l2gw_provider = undef } $l2gw_plugin = $l2gw_enabled ? { true => 'networking_l2gw.services.l2gateway.plugin.L2GatewayPlugin',