Fix dependency to purge default vhost config

It turned out defining dependency for openstacklib::wsgi::apache
doesn't properly enforce resource order and the default vhost file
is not purged properly.
This change adds the more explicit dependency to enforce the order
properly.

Change-Id: Ifb8df042e06a275ca4dd44342d3c32af65f7d209
This commit is contained in:
Takashi Kajinami 2022-01-11 18:40:32 +09:00
parent 701e66b4ca
commit 5fd6e02e24
1 changed files with 2 additions and 1 deletions

View File

@ -137,6 +137,8 @@ class gnocchi::wsgi::apache (
include gnocchi::deps
include gnocchi::params
Anchor['gnocchi::install::end'] -> Class['apache']
::openstacklib::wsgi::apache { 'gnocchi_wsgi':
bind_host => $bind_host,
bind_port => $port,
@ -166,6 +168,5 @@ class gnocchi::wsgi::apache (
access_log_format => $access_log_format,
error_log_file => $error_log_file,
custom_wsgi_process_options => $custom_wsgi_process_options,
require => Anchor['gnocchi::install::end'],
}
}