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
This commit is contained in:
@@ -45,7 +45,7 @@ class mistral::db::mysql(
|
|||||||
|
|
||||||
include mistral::deps
|
include mistral::deps
|
||||||
|
|
||||||
::openstacklib::db::mysql { 'mistral':
|
openstacklib::db::mysql { 'mistral':
|
||||||
user => $user,
|
user => $user,
|
||||||
password => $password,
|
password => $password,
|
||||||
dbname => $dbname,
|
dbname => $dbname,
|
||||||
|
|||||||
@@ -34,7 +34,7 @@ class mistral::db::postgresql(
|
|||||||
|
|
||||||
include mistral::deps
|
include mistral::deps
|
||||||
|
|
||||||
::openstacklib::db::postgresql { 'mistral':
|
openstacklib::db::postgresql { 'mistral':
|
||||||
password => $password,
|
password => $password,
|
||||||
dbname => $dbname,
|
dbname => $dbname,
|
||||||
user => $user,
|
user => $user,
|
||||||
|
|||||||
@@ -166,7 +166,7 @@ class mistral::wsgi::apache (
|
|||||||
|
|
||||||
Anchor['mistral::install::end'] -> Class['apache']
|
Anchor['mistral::install::end'] -> Class['apache']
|
||||||
|
|
||||||
::openstacklib::wsgi::apache { 'mistral_wsgi':
|
openstacklib::wsgi::apache { 'mistral_wsgi':
|
||||||
bind_host => $bind_host,
|
bind_host => $bind_host,
|
||||||
bind_port => $port,
|
bind_port => $port,
|
||||||
group => $::mistral::params::group,
|
group => $::mistral::params::group,
|
||||||
|
|||||||
Reference in New Issue
Block a user