2023-09-21 16:42:43 +00:00
|
|
|
bootable = True
|
|
|
|
buildinstall_method = "lorax"
|
|
|
|
lorax_options = [
|
|
|
|
("^.*$", {
|
|
|
|
"*": {
|
|
|
|
"noupgrade": False,
|
|
|
|
# Comment out until the pungi-buildinstall Koji plugin supports this option.
|
2024-04-23 16:07:37 +00:00
|
|
|
"squashfs_only": True
|
2023-09-21 16:42:43 +00:00
|
|
|
}
|
|
|
|
})
|
|
|
|
]
|
|
|
|
|
|
|
|
buildinstall_skip = [
|
|
|
|
EXTRA_BUILDINSTALL_SKIP,
|
2023-09-22 20:10:08 +00:00
|
|
|
('^Modular$', {'*': True}),
|
2023-09-21 16:42:43 +00:00
|
|
|
('^Everything$', {
|
|
|
|
'i386': True,
|
|
|
|
}),
|
|
|
|
("^(AppStream|CRB|ResilientStorage|HighAvailability|SAP|SAPHANA|RT|NFV)$", {
|
|
|
|
'*': True
|
|
|
|
}),
|
|
|
|
]
|
|
|
|
|
|
|
|
image_name_format = {
|
|
|
|
# BaseOS ISO filename should not mention BaseOS, it also contains AppStream
|
|
|
|
# content. Addons should have the addon name though.
|
|
|
|
"^BaseOS$": "{compose_id}-{arch}-{disc_type}{disc_num}{suffix}",
|
|
|
|
".*": "{compose_id}-{variant}-{arch}-{disc_type}{disc_num}{suffix}",
|
|
|
|
}
|
|
|
|
|
|
|
|
buildinstall_use_guestmount = True
|
|
|
|
buildinstall_allow_reuse = True
|
|
|
|
|