Remove the unused glance-config-file tag from deps

The glance-config-file tag is no longer used in any manifests.

Change-Id: Idea3a6b640ecc64049100128f51213fbaf7388ee
This commit is contained in:
Takashi Kajinami 2021-11-24 08:52:21 +09:00
parent 91fab28c1c
commit e90fd4423e
1 changed files with 1 additions and 10 deletions

View File

@ -14,7 +14,7 @@ class glance::deps {
-> Package<| tag == 'glance-package'|>
~> anchor { 'glance::install::end': }
-> anchor { 'glance::config::begin': }
-> File<| tag == 'glance-config-file' |>
-> Glance_api_config<||>
~> anchor { 'glance::config::end': }
-> anchor { 'glance::db::begin': }
-> anchor { 'glance::db::end': }
@ -28,21 +28,12 @@ class glance::deps {
# before dbsync starts
Oslo::Db<||> -> Anchor['glance::dbsync::begin']
# Ensure files are modified in the config block
Anchor['glance::config::begin']
-> File_line<| tag == 'glance-file-line' |>
~> Anchor['glance::config::end']
# Ensure all files are in place before modifying them
File<| tag == 'glance-config-file' |> -> File_line<| tag == 'glance-file-line' |>
# On any uwsgi config change, we must restart Glance API.
Anchor['glance::config::begin']
-> Glance_api_uwsgi_config<||>
~> Anchor['glance::config::end']
# All other inifile providers need to be processed in the config block
Anchor['glance::config::begin'] -> Glance_api_config<||> ~> Anchor['glance::config::end']
Anchor['glance::config::begin'] -> Glance_api_paste_ini<||> ~> Anchor['glance::config::end']
Anchor['glance::config::begin'] -> Glance_cache_config<||> ~> Anchor['glance::config::end']
Anchor['glance::config::begin'] -> Glance_image_import_config<||> ~> Anchor['glance::config::end']