Merge "Add missing dependency about nova_api_paste_ini"

This commit is contained in:
Zuul 2021-10-18 09:24:28 +00:00 committed by Gerrit Code Review
commit 2e6df6200f
2 changed files with 6 additions and 2 deletions

View File

@ -22,7 +22,7 @@
#
# [*nova_api_paste_ini*]
# (optional) Allow configuration of arbitrary Nova paste api configurations.
# The value is an hash of nova_paste_api_ini resources. Example:
# The value is an hash of nova_api_paste_ini resources. Example:
# { 'DEFAULT/foo' => { value => 'fooValue'},
# 'DEFAULT/bar' => { value => 'barValue'}
# }
@ -47,7 +47,7 @@ class nova::config (
if $nova_paste_api_ini != undef {
warning('nova_paste_api_ini is deprecated and will be removed in a future
release. Use nova_api_paste_init')
release. Use nova_api_paste_ini')
$nova_api_paste_ini_real = $nova_paste_api_ini
} else {
$nova_api_paste_ini_real = $nova_api_paste_ini

View File

@ -23,6 +23,10 @@ class nova::deps {
~> anchor { 'nova::service::end': }
# paste-api.ini config should occur in the config block also.
Anchor['nova::config::begin']
-> Nova_api_paste_ini<||>
~> Anchor['nova::config::end']
Anchor['nova::config::begin']
-> Nova_paste_api_ini<||>
~> Anchor['nova::config::end']