ef9b90b1ce
This moves all the configuration variables from eln.conf to shared/*.conf files. The configuration itself remains the same, it is just stored differently. Signed-off-by: Jan Kaluza <jkaluza@redhat.com>
34 lines
803 B
Plaintext
34 lines
803 B
Plaintext
bootable = True
|
|
buildinstall_method = "lorax"
|
|
lorax_options = [
|
|
("^.*$", {
|
|
"*": {
|
|
"noupgrade": False
|
|
}
|
|
})
|
|
]
|
|
|
|
buildinstall_skip = [
|
|
EXTRA_BUILDINSTALL_SKIP,
|
|
('^Everything$', {
|
|
'i386': True,
|
|
'aarch64': True,
|
|
'ppc64le': True,
|
|
's390x': 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
|
|
|