From d96d48c21fd0357845d7780084766a60e32c0e5a Mon Sep 17 00:00:00 2001 From: Takashi Kajinami Date: Tue, 18 Feb 2025 02:03:30 +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: Ic70ab3b52fe987189452b6068540e98e74861b41 --- 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 cc6c1db..c419224 100644 --- a/manifests/db/mysql.pp +++ b/manifests/db/mysql.pp @@ -45,7 +45,7 @@ class mistral::db::mysql( include mistral::deps - ::openstacklib::db::mysql { 'mistral': + openstacklib::db::mysql { 'mistral': user => $user, password => $password, dbname => $dbname, diff --git a/manifests/db/postgresql.pp b/manifests/db/postgresql.pp index f72032d..a3552ce 100644 --- a/manifests/db/postgresql.pp +++ b/manifests/db/postgresql.pp @@ -34,7 +34,7 @@ class mistral::db::postgresql( include mistral::deps - ::openstacklib::db::postgresql { 'mistral': + openstacklib::db::postgresql { 'mistral': password => $password, dbname => $dbname, user => $user, diff --git a/manifests/wsgi/apache.pp b/manifests/wsgi/apache.pp index 19b04aa..c7404fa 100644 --- a/manifests/wsgi/apache.pp +++ b/manifests/wsgi/apache.pp @@ -166,7 +166,7 @@ class mistral::wsgi::apache ( Anchor['mistral::install::end'] -> Class['apache'] - ::openstacklib::wsgi::apache { 'mistral_wsgi': + openstacklib::wsgi::apache { 'mistral_wsgi': bind_host => $bind_host, bind_port => $port, group => $::mistral::params::group,