From 61bf74d401a5067cc003b3212dc0255cf199d3d7 Mon Sep 17 00:00:00 2001 From: Dennis Gilmore Date: Apr 18 2017 15:07:51 +0000 Subject: subsitute Atomic in the iso volume id As there is a hard limit for volume id's on isos to be <32 characters, we have a list of subsitutions that we maintain to make sure that isos all have volume id's under that size. with the addition of ppc64le and aarch64 for Atomic host installer the 7 character arch length pushed us over the limit using AH for Atomic seems the most logical change to make. Signed-off-by: Dennis Gilmore --- diff --git a/fedora-atomic.conf b/fedora-atomic.conf index fd02d6d..691905b 100644 --- a/fedora-atomic.conf +++ b/fedora-atomic.conf @@ -185,6 +185,7 @@ image_volid_formats = [ image_volid_layered_product_formats = [] # Replace 'Cloud' with 'C' in volume id etc. volume_id_substitutions = { + 'Atomic': 'AH', 'Rawhide': 'rawh', 'Images': 'img', 'MATE_Compiz': 'MATE', diff --git a/fedora-cloud.conf b/fedora-cloud.conf index eb1f914..0c6adde 100644 --- a/fedora-cloud.conf +++ b/fedora-cloud.conf @@ -185,6 +185,7 @@ image_volid_formats = [ image_volid_layered_product_formats = [] # Replace 'Cloud' with 'C' in volume id etc. volume_id_substitutions = { + 'Atomic': 'AH', 'Rawhide': 'rawh', 'Images': 'img', 'MATE_Compiz': 'MATE', diff --git a/fedora-docker.conf b/fedora-docker.conf index 9d3c377..e2eca2a 100644 --- a/fedora-docker.conf +++ b/fedora-docker.conf @@ -174,6 +174,7 @@ image_volid_formats = [ image_volid_layered_product_formats = [] # Replace 'Cloud' with 'C' in volume id etc. volume_id_substitutions = { + 'Atomic': 'AH', 'Rawhide': 'rawh', 'Images': 'img', 'MATE_Compiz': 'MATE', diff --git a/fedora-modular.conf b/fedora-modular.conf index ad996c8..33231f8 100644 --- a/fedora-modular.conf +++ b/fedora-modular.conf @@ -110,6 +110,7 @@ image_volid_formats = [ image_volid_layered_product_formats = [] # Replace 'Cloud' with 'C' in volume id etc. volume_id_substitutions = { + 'Atomic': 'AH', 'Rawhide': 'rawh', 'Images': 'img', 'MATE_Compiz': 'MATE', diff --git a/fedora.conf b/fedora.conf index bb63cef..0904c8f 100644 --- a/fedora.conf +++ b/fedora.conf @@ -235,6 +235,7 @@ image_volid_formats = [ image_volid_layered_product_formats = [] # Replace 'Cloud' with 'C' in volume id etc. volume_id_substitutions = { + 'Atomic': 'AH', 'Rawhide': 'rawh', 'Images': 'img', 'MATE_Compiz': 'MATE',