From feec56d0c8e9f9a4b2ad52fe649ade5e814bc13c Mon Sep 17 00:00:00 2001 From: Takashi Kajinami Date: Wed, 15 Jan 2025 12:30:32 +0900 Subject: [PATCH] Fix undefined variable Make sure that auth_type variable is always defined to avoid PreformattedError in Puppet 8. Change-Id: Ia8d2a850987bec95ac646ae0a7cd579c37fe08f7 --- manifests/proxy.pp | 1 + 1 file changed, 1 insertion(+) diff --git a/manifests/proxy.pp b/manifests/proxy.pp index af7c6ffa..6382ef57 100644 --- a/manifests/proxy.pp +++ b/manifests/proxy.pp @@ -253,6 +253,7 @@ $auth_type = 'keystone' } else { warning('no auth type provided in the pipeline') + $auth_type = undef } if $pipeline[-1] != 'proxy-server' {