From 291131b5d4c677f13d1d14604da56eb248ae4afb Mon Sep 17 00:00:00 2001 From: Takashi Kajinami Date: Tue, 18 Feb 2025 02:06:24 +0900 Subject: [PATCH] Stop using absolute names for defined resource types Since Puppet 4, names are always absolute. We already replaced usage of absolute names for class inclusion, so can do the same for defined resource types. Change-Id: Idd351e0fee0e025b2da33685e952f4fa2604ca00 --- manifests/db/mysql.pp | 2 +- manifests/db/postgresql.pp | 2 +- manifests/wsgi/apache.pp | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/manifests/db/mysql.pp b/manifests/db/mysql.pp index 368b988..c9e4b5c 100644 --- a/manifests/db/mysql.pp +++ b/manifests/db/mysql.pp @@ -45,7 +45,7 @@ class zaqar::db::mysql( include zaqar::deps - ::openstacklib::db::mysql { 'zaqar': + openstacklib::db::mysql { 'zaqar': user => $user, password => $password, dbname => $dbname, diff --git a/manifests/db/postgresql.pp b/manifests/db/postgresql.pp index eef2b6c..147ae35 100644 --- a/manifests/db/postgresql.pp +++ b/manifests/db/postgresql.pp @@ -34,7 +34,7 @@ class zaqar::db::postgresql( include zaqar::deps - ::openstacklib::db::postgresql { 'zaqar': + openstacklib::db::postgresql { 'zaqar': password => $password, dbname => $dbname, user => $user, diff --git a/manifests/wsgi/apache.pp b/manifests/wsgi/apache.pp index cefff72..7eccc2c 100644 --- a/manifests/wsgi/apache.pp +++ b/manifests/wsgi/apache.pp @@ -156,7 +156,7 @@ class zaqar::wsgi::apache ( Anchor['zaqar::install::end'] -> Class['apache'] - ::openstacklib::wsgi::apache { 'zaqar_wsgi': + openstacklib::wsgi::apache { 'zaqar_wsgi': bind_host => $bind_host, bind_port => $port, group => $::zaqar::params::group,