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: Ibc6b0cf016c0d14b6e0aa42fa23b03db33f66920
This commit is contained in:
Takashi Kajinami 2025-02-18 02:01:50 +09:00
parent 4136436b6a
commit 46de7b4f07
3 changed files with 3 additions and 3 deletions

View File

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

View File

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

View File

@ -167,7 +167,7 @@ define heat::wsgi::apache (
Anchor['heat::install::end'] -> Class['apache']
::openstacklib::wsgi::apache { "heat_${title}_wsgi":
openstacklib::wsgi::apache { "heat_${title}_wsgi":
bind_host => $bind_host,
bind_port => $port,
group => $::heat::params::group,