Merge #525 rawhide: workaround temporary volid issue

This commit is contained in:
Dennis Gilmore 2018-02-20 17:58:52 +00:00
commit 48294f4417

View File

@ -235,6 +235,8 @@ image_volid_formats = [
# No special handling for layered products, use same format as for regular images # No special handling for layered products, use same format as for regular images
image_volid_layered_product_formats = [] image_volid_layered_product_formats = []
# Replace 'Cloud' with 'C' in volume id etc. # Replace 'Cloud' with 'C' in volume id etc.
# '-Workstation-' is a temporary workaround. See
# https://pagure.io/pungi-fedora/pull-request/525
volume_id_substitutions = { volume_id_substitutions = {
'Atomic': 'AH', 'Atomic': 'AH',
'Rawhide': 'rawh', 'Rawhide': 'rawh',
@ -249,7 +251,7 @@ volume_id_substitutions = {
'Games': 'Game', 'Games': 'Game',
'Jam_KDE': 'Jam', 'Jam_KDE': 'Jam',
'WorkstationOstree': 'WS', 'WorkstationOstree': 'WS',
'Workstation': 'WS', '-Workstation-': '-WS-',
'Everything': 'E', 'Everything': 'E',
'Server': 'S', 'Server': 'S',
'Cloud': 'C', 'Cloud': 'C',