Fix the compose arguments for the Fedora version of Anaconda

This adds make_oci, and moves qcow2 to the more generic image_type
(which just uses qemu-img disk names).
This commit is contained in:
Brian C. Lane 2018-05-03 16:50:39 -07:00
parent 5e0246d4a9
commit a9b626a706

View File

@ -217,9 +217,8 @@ def start_build(cfg, dnflock, gitlock, branch, recipe_name, compose_type, test_m
"compression": "xz",
"compress_args": [],
"ks": [ks_path],
"project": "Red Hat Enterprise Linux",
"releasever": "7",
"logfile": log_dir
"logfile": log_dir,
"timeout": 60, # 60 minute timeout
})
with open(joinpaths(results_dir, "config.toml"), "w") as f:
f.write(toml.dumps(cfg_args))
@ -262,11 +261,12 @@ def compose_args(compose_type):
"make_tar": True,
"make_pxe_live": False,
"make_ostree_live": False,
"make_oci": False,
"ostree": False,
"live_rootfs_keep_size": False,
"live_rootfs_size": 0,
"qcow2": False,
"qcow2_args": [],
"image_type": False, # False instead of None because of TOML
"qemu_args": [],
"image_name": default_image_name("xz", "root.tar"),
"image_only": True,
"app_name": None,
@ -281,11 +281,12 @@ def compose_args(compose_type):
"make_tar": False,
"make_pxe_live": False,
"make_ostree_live": False,
"make_oci": False,
"ostree": False,
"live_rootfs_keep_size": False,
"live_rootfs_size": 0,
"qcow2": False,
"qcow2_args": [],
"image_type": False, # False instead of None because of TOML
"qemu_args": [],
"image_name": "live.iso",
"fs_label": "Anaconda", # Live booting may expect this to be 'Anaconda'
"image_only": False,
@ -301,11 +302,12 @@ def compose_args(compose_type):
"make_tar": False,
"make_pxe_live": False,
"make_ostree_live": False,
"make_oci": False,
"ostree": False,
"live_rootfs_keep_size": False,
"live_rootfs_size": 0,
"qcow2": False,
"qcow2_args": [],
"image_type": False, # False instead of None because of TOML
"qemu_args": [],
"image_name": "disk.img",
"fs_label": "",
"image_only": True,
@ -321,11 +323,12 @@ def compose_args(compose_type):
"make_tar": False,
"make_pxe_live": False,
"make_ostree_live": False,
"make_oci": False,
"ostree": False,
"live_rootfs_keep_size": False,
"live_rootfs_size": 0,
"qcow2": True,
"qcow2_args": [],
"image_type": "qcow2",
"qemu_args": [],
"image_name": "disk.qcow2",
"fs_label": "",
"image_only": True,
@ -341,11 +344,12 @@ def compose_args(compose_type):
"make_tar": False,
"make_pxe_live": False,
"make_ostree_live": False,
"make_oci": False,
"ostree": False,
"live_rootfs_keep_size": False,
"live_rootfs_size": 0,
"qcow2": False,
"qcow2_args": [],
"image_type": False, # False instead of None because of TOML
"qemu_args": [],
"image_name": "filesystem.img",
"fs_label": "",
"image_only": True,