mirror of
https://git.rockylinux.org/rocky/pungi-rocky.git
synced 2024-10-31 18:31:24 +00:00
40 lines
874 B
Plaintext
40 lines
874 B
Plaintext
# This files overrides default variables defined in the configs in
|
|
# the ../shared directory.
|
|
|
|
from images import *
|
|
|
|
# Unsigned builds for now
|
|
sigkeys = [None]
|
|
|
|
tree_arches = ['aarch64', 'ppc64le', 's390x', 'x86_64']
|
|
|
|
lorax_use_koji_plugin = False
|
|
|
|
lorax_options = [
|
|
("^.*$", {
|
|
'x86_64': {
|
|
'nomacboot': True
|
|
},
|
|
"*": {
|
|
"noupgrade": False,
|
|
"squashfs_only": True,
|
|
'rootfs_size': 3
|
|
}
|
|
})
|
|
]
|
|
|
|
translate_paths = [ # required by image-build
|
|
("/mnt/koji", "https://koji.rockylinux.org/kojifiles")
|
|
]
|
|
|
|
extra_isos = {
|
|
"BaseOS": [{
|
|
"include_variants": ["AppStream"],
|
|
"filename": "{compose_id}-{arch}-{disc_type}{disc_num}{suffix}",
|
|
"skip_src": True,
|
|
"extra_files": EXTRA_FILES,
|
|
"arches": EXTRA_ISOS_ARCHES,
|
|
"failable_arches": ['i386']
|
|
}]
|
|
}
|