Allow live_images phase to still be skipped

Without this fix existing configurations break even though they don't
use the phase.

Signed-off-by: Lubomír Sedlář <lsedlar@redhat.com>
(cherry picked from commit c59f2371a3)
This commit is contained in:
Lubomír Sedlář 2024-08-07 13:28:52 +02:00 committed by Stepan Oksanichenko
parent 33bb0ceceb
commit be4fd75a7a
Signed by: soksanichenko
GPG Key ID: AB9983172AB1E45B

View File

@ -862,7 +862,10 @@ def make_schema():
"paths_module": {"type": "string"},
"skip_phases": {
"type": "array",
"items": {"type": "string", "enum": PHASES_NAMES + ["productimg"]},
"items": {
"type": "string",
"enum": PHASES_NAMES + ["productimg", "live_images"],
},
"default": [],
},
"image_name_format": {