0235b45982
The HieraPuppet.lookup() function malfunctions when hiera v5 is used. In order to have Hiera v5 working, the function was replaced by the 'puppet lookup' command. Hiera v5 should be used instead of Hiera v3 to avoid the following warning during bootstrap: "/etc/puppet/hiera.yaml: Use of 'hiera.yaml' version 3 is deprecated. It should be converted to version 5" Also replaced the default path in which keystone.rb looks for openstacklib since a custom installation directory is being used. Debian Bullseye tests: PASS: Build & install PASS: Successful Bootstrap Story: 2009964 Task: 45008 Signed-off-by: Matheus Machado Guilhermino <Matheus.MachadoGuilhermino@windriver.com> Change-Id: I570aa6e06448e00b96882629b54882a1467740c5
32 lines
1.3 KiB
Diff
32 lines
1.3 KiB
Diff
From 781294eab3bb437195d479054777ffdc300dd243 Mon Sep 17 00:00:00 2001
|
|
From: Matheus Machado Guilhermino <matheus.machadoguilhermino@windriver.com>
|
|
Date: Thu, 21 Apr 2022 19:50:20 +0000
|
|
Subject: [PATCH] fix paths for openstack libs
|
|
|
|
openstacklib is not installed to the default directory.
|
|
This patch replaces the default path with the custom path.
|
|
|
|
Signed-off-by: Matheus Machado Guilhermino <matheus.machadoguilhermino@windriver.com>
|
|
---
|
|
lib/puppet/provider/keystone.rb | 6 +++---
|
|
1 file changed, 3 insertions(+), 3 deletions(-)
|
|
|
|
diff --git a/lib/puppet/provider/keystone.rb b/lib/puppet/provider/keystone.rb
|
|
index b0756fd..6809f7b 100644
|
|
--- a/lib/puppet/provider/keystone.rb
|
|
+++ b/lib/puppet/provider/keystone.rb
|
|
@@ -1,7 +1,7 @@
|
|
require 'puppet/util/inifile'
|
|
-require 'puppet/provider/openstack'
|
|
-require 'puppet/provider/openstack/auth'
|
|
-require 'puppet/provider/openstack/credentials'
|
|
+require File.join(File.dirname(__FILE__), '..','..','..','..', 'openstacklib/lib/puppet/provider/openstack')
|
|
+require File.join(File.dirname(__FILE__), '..','..','..','..', 'openstacklib/lib/puppet/provider/openstack/auth')
|
|
+require File.join(File.dirname(__FILE__), '..','..','..','..', 'openstacklib/lib/puppet/provider/openstack/credentials')
|
|
require File.join(File.dirname(__FILE__), '..','..', 'puppet/provider/keystone/util')
|
|
require 'hiera_puppet'
|
|
|
|
--
|
|
2.30.2
|
|
|