mirror of
https://git.rockylinux.org/rocky/pungi-rocky.git
synced 2024-10-31 18:31:24 +00:00
33 lines
766 B
Plaintext
33 lines
766 B
Plaintext
from shared/variables import *
|
|
from rocky/variables import *
|
|
# override lookahead here
|
|
from rocky/beta_variables import *
|
|
# continue
|
|
from shared/all import *
|
|
from rocky/override import *
|
|
|
|
koji_profile = "koji"
|
|
filter_system_release_packages = False
|
|
createiso_break_hardlinks = True
|
|
pkgset_koji_inherit = True
|
|
|
|
# GATHER
|
|
gather_prepopulate = "prepopulate.json"
|
|
|
|
greedy_method = "none"
|
|
|
|
# CHECKSUMS
|
|
media_checksums = ['sha256']
|
|
media_checksum_one_file = True
|
|
create_jigdo = False
|
|
|
|
image_name_format = {
|
|
"^BaseOS$": "{compose_id}-{arch}-{disc_type}{disc_num}{suffix}",
|
|
"^Minimal$": "{compose_id}-{arch}-minimal{suffix}",
|
|
".*": "{compose_id}-{arch}-{disc_type}{disc_num}{suffix}",
|
|
}
|
|
|
|
image_volid_formats = [ '{release_short}-8.9-BETA-{arch}-{disc_type}', ]
|
|
|
|
|