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: I437dd1325c20af7f87a584b9c16eb50722de81bf
This commit is contained in:
Takashi Kajinami 2025-02-18 01:56:37 +09:00
parent ef9eb05596
commit ca3058e49c
3 changed files with 3 additions and 3 deletions

View File

@ -44,7 +44,7 @@ class cinder::db::mysql (
include cinder::deps
::openstacklib::db::mysql { 'cinder':
openstacklib::db::mysql { 'cinder':
user => $user,
password => $password,
dbname => $dbname,

View File

@ -34,7 +34,7 @@ class cinder::db::postgresql(
include cinder::deps
::openstacklib::db::postgresql { 'cinder':
openstacklib::db::postgresql { 'cinder':
password => $password,
dbname => $dbname,
user => $user,

View File

@ -168,7 +168,7 @@ class cinder::wsgi::apache (
Anchor['cinder::install::end'] -> Class['apache']
::openstacklib::wsgi::apache { 'cinder_wsgi':
openstacklib::wsgi::apache { 'cinder_wsgi':
bind_host => $bind_host,
bind_port => $port,
group => $::cinder::params::group,