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
This commit is contained in:
Takashi Kajinami 2025-02-18 02:03:05 +09:00
parent 787bbd8659
commit 28ebdf6b29
3 changed files with 3 additions and 3 deletions

View File

@ -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,

View File

@ -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,

View File

@ -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,