mirror of
https://git.rockylinux.org/rocky/pungi-rocky.git
synced 2024-11-09 14:51:24 +00:00
34 lines
876 B
Plaintext
34 lines
876 B
Plaintext
bootable = True
|
|
buildinstall_method = "lorax"
|
|
lorax_options = [
|
|
("^.*$", {
|
|
"*": {
|
|
"noupgrade": False,
|
|
# Comment out until the pungi-buildinstall Koji plugin supports this option.
|
|
# "squashfs_only": True
|
|
}
|
|
})
|
|
]
|
|
|
|
buildinstall_skip = [
|
|
EXTRA_BUILDINSTALL_SKIP,
|
|
('^Modular$', {'*': True}),
|
|
('^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
|
|
|