From 28ebdf6b29b09d9292ccdc6e871e1e3ed0960986 Mon Sep 17 00:00:00 2001 From: Takashi Kajinami Date: Tue, 18 Feb 2025 02:03:05 +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: I92ab4dfd887b8e25f9938d2b18ef31bed069daec --- 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 60e2501f..10f614bb 100644 --- a/manifests/db/mysql.pp +++ b/manifests/db/mysql.pp @@ -47,7 +47,7 @@ class manila::db::mysql ( include manila::deps - ::openstacklib::db::mysql { 'manila': + openstacklib::db::mysql { 'manila': user => $user, password => $password, dbname => $dbname, diff --git a/manifests/db/postgresql.pp b/manifests/db/postgresql.pp index 21b7e788..b4af72b9 100644 --- a/manifests/db/postgresql.pp +++ b/manifests/db/postgresql.pp @@ -34,7 +34,7 @@ class manila::db::postgresql( include manila::deps - ::openstacklib::db::postgresql { 'manila': + openstacklib::db::postgresql { 'manila': password => $password, dbname => $dbname, user => $user, diff --git a/manifests/wsgi/apache.pp b/manifests/wsgi/apache.pp index 26f8ecb1..96e2ef57 100644 --- a/manifests/wsgi/apache.pp +++ b/manifests/wsgi/apache.pp @@ -164,7 +164,7 @@ class manila::wsgi::apache ( Anchor['manila::install::end'] -> Class['apache'] - ::openstacklib::wsgi::apache { 'manila_wsgi': + openstacklib::wsgi::apache { 'manila_wsgi': bind_host => $bind_host, bind_port => $port, group => $::manila::params::group,