2023-03-01 14:07:11 +00:00
|
|
|
# Import general configuration from general.conf
|
|
|
|
from general import *
|
2023-03-06 12:19:21 +00:00
|
|
|
# Import multilib configuration from multilib.conf
|
|
|
|
from multilib import *
|
2023-03-01 14:07:11 +00:00
|
|
|
|
2015-05-29 20:04:00 +00:00
|
|
|
# PRODUCT INFO
|
2016-03-12 02:08:12 +00:00
|
|
|
release_name = 'Fedora'
|
|
|
|
release_short = 'Fedora'
|
2023-08-09 00:09:31 +00:00
|
|
|
release_version = '39'
|
2015-05-29 20:04:00 +00:00
|
|
|
|
|
|
|
# GENERAL SETTINGS
|
2017-11-13 21:28:19 +00:00
|
|
|
comps_file = {
|
|
|
|
'scm': 'git',
|
|
|
|
'repo': 'https://pagure.io/fedora-comps.git',
|
2021-01-06 17:18:58 +00:00
|
|
|
'branch': 'main',
|
2023-08-08 23:27:02 +00:00
|
|
|
'file': 'comps-f39.xml',
|
|
|
|
'command': 'make comps-f39.xml'
|
2017-11-13 21:28:19 +00:00
|
|
|
}
|
2015-05-29 20:04:00 +00:00
|
|
|
|
2016-03-12 02:08:12 +00:00
|
|
|
variants_file='variants-fedora.xml'
|
2023-02-10 01:11:36 +00:00
|
|
|
sigkeys = ['18B8e74c']
|
2015-05-29 20:04:00 +00:00
|
|
|
|
|
|
|
# limit tree variants
|
|
|
|
# if undefined, all variants from variants.xml will be included
|
2016-03-12 02:08:12 +00:00
|
|
|
#tree_variants = ['Server']
|
2015-05-29 20:04:00 +00:00
|
|
|
|
|
|
|
# RUNROOT settings
|
2019-12-02 15:43:40 +00:00
|
|
|
runroot_method = 'koji'
|
2015-05-29 20:04:00 +00:00
|
|
|
|
|
|
|
# PKGSET
|
2016-03-12 02:08:12 +00:00
|
|
|
pkgset_source = 'koji' # koji, repos
|
2015-05-29 20:04:00 +00:00
|
|
|
|
|
|
|
# PKGSET - REPOS
|
|
|
|
# pkgset_repos format: {arch: [repo1_url, repo2_url, ...]}
|
|
|
|
# pkgset_repos = {}
|
|
|
|
|
|
|
|
# PKGSET - KOJI
|
2023-02-10 01:02:30 +00:00
|
|
|
pkgset_koji_tag = 'f39'
|
2015-07-07 15:14:06 +00:00
|
|
|
pkgset_koji_inherit = False
|
2015-05-29 20:04:00 +00:00
|
|
|
|
|
|
|
# GATHER
|
2018-02-06 09:56:10 +00:00
|
|
|
gather_method = {
|
|
|
|
'^.*': { # For all variants
|
|
|
|
'comps': 'deps', # resolve dependencies for packages from comps file
|
|
|
|
}
|
|
|
|
}
|
2017-08-14 18:50:08 +00:00
|
|
|
gather_backend = 'dnf'
|
2022-08-17 16:46:41 +00:00
|
|
|
gather_profiler = False
|
2015-05-29 20:04:00 +00:00
|
|
|
|
2017-09-07 06:36:14 +00:00
|
|
|
repoclosure_backend = 'dnf'
|
2017-08-14 18:50:08 +00:00
|
|
|
|
2021-09-20 14:54:11 +00:00
|
|
|
# format: [(variant_uid_regex, {arch|*: [repos]})]
|
2015-05-29 20:04:00 +00:00
|
|
|
# gather_lookaside_repos = []
|
|
|
|
|
|
|
|
# GATHER - JSON
|
|
|
|
# format: {variant_uid: {arch: package: [arch1, arch2, None (for any arch)]}}
|
2016-03-12 02:08:12 +00:00
|
|
|
#gather_source_mapping = '/path/to/mapping.json'
|
2015-05-29 20:04:00 +00:00
|
|
|
|
|
|
|
|
|
|
|
# CREATEREPO
|
2017-09-01 01:46:14 +00:00
|
|
|
createrepo_deltas = False
|
2018-10-15 22:20:31 +00:00
|
|
|
createrepo_database = True
|
|
|
|
createrepo_use_xz = True
|
2023-08-08 23:27:02 +00:00
|
|
|
createrepo_extra_args = ['--zck', '--zck-dict-dir=/usr/share/fedora-repo-zdicts/39']
|
2019-11-02 20:49:10 +00:00
|
|
|
createrepo_num_workers = 10
|
2015-05-29 20:04:00 +00:00
|
|
|
|
2015-12-01 18:03:16 +00:00
|
|
|
# CHECKSUMS
|
2023-07-19 06:21:22 +00:00
|
|
|
media_checksum_base_filename = '%(release_short)s-%(variant)s-%(dirname)s-%(version)s-%(arch)s-%(date)s%(type_suffix)s.%(respin)s'
|
2015-12-01 18:03:16 +00:00
|
|
|
|
2019-02-28 16:46:18 +00:00
|
|
|
# CREATEISO
|
|
|
|
iso_hfs_ppc64le_compatible = False
|
|
|
|
|
2022-06-16 01:33:55 +00:00
|
|
|
# use xorrisofs to make isos
|
|
|
|
createiso_use_xorrisofs = True
|
|
|
|
|
2015-05-29 20:04:00 +00:00
|
|
|
# BUILDINSTALL
|
2016-03-12 02:08:12 +00:00
|
|
|
buildinstall_method = 'lorax'
|
2018-03-14 14:11:08 +00:00
|
|
|
buildinstall_skip = [
|
2019-07-22 16:33:27 +00:00
|
|
|
('^Everything$', {
|
|
|
|
'i386': True
|
|
|
|
}),
|
2018-03-14 14:11:08 +00:00
|
|
|
]
|
2015-05-29 20:04:00 +00:00
|
|
|
|
2015-12-08 18:48:31 +00:00
|
|
|
# Enables macboot on x86_64 for all variants and disables upgrade image building
|
2019-01-17 12:48:53 +00:00
|
|
|
# everywhere.
|
2019-11-04 17:16:30 +00:00
|
|
|
# Use 3GB image size for all arches.
|
2015-12-08 18:48:31 +00:00
|
|
|
lorax_options = [
|
2016-03-12 02:08:12 +00:00
|
|
|
('^.*$', {
|
|
|
|
'x86_64': {
|
2020-10-23 10:15:15 +00:00
|
|
|
'nomacboot': False,
|
|
|
|
'squashfs_only': True
|
2017-03-28 22:11:19 +00:00
|
|
|
},
|
2016-03-12 02:08:12 +00:00
|
|
|
'*': {
|
2019-11-04 18:23:37 +00:00
|
|
|
'noupgrade': True,
|
2020-10-23 10:15:15 +00:00
|
|
|
'rootfs_size': 3,
|
|
|
|
'squashfs_only': True
|
2015-12-08 18:48:31 +00:00
|
|
|
}
|
|
|
|
})
|
2015-12-08 18:51:44 +00:00
|
|
|
]
|
2015-05-29 20:04:00 +00:00
|
|
|
|
|
|
|
#extra_packages = [
|
2016-03-12 02:08:12 +00:00
|
|
|
# '/mnt/packages/foo*',
|
2015-05-29 20:04:00 +00:00
|
|
|
#]
|
|
|
|
|
|
|
|
|
2021-09-20 14:54:11 +00:00
|
|
|
# format: [(variant_uid_regex, {arch|*: [packages]})]
|
2015-05-29 20:04:00 +00:00
|
|
|
additional_packages = [
|
2019-08-06 16:17:25 +00:00
|
|
|
('^(Server|Everything)$', {
|
2015-05-29 20:04:00 +00:00
|
|
|
'*': [
|
2016-10-17 13:41:37 +00:00
|
|
|
'kernel*',
|
2019-09-10 19:06:18 +00:00
|
|
|
'dracut.*',
|
2016-10-17 13:41:37 +00:00
|
|
|
'autocorr-*',
|
2017-04-07 13:51:41 +00:00
|
|
|
'eclipse-nls',
|
2016-10-17 13:41:37 +00:00
|
|
|
'eclipse-nls-*',
|
2020-09-04 13:23:10 +00:00
|
|
|
'glibc-langpack-*',
|
2016-10-17 13:41:37 +00:00
|
|
|
'hunspell-*',
|
|
|
|
'hyphen-*',
|
|
|
|
'kde-l10n-*',
|
2020-09-04 13:23:10 +00:00
|
|
|
'langpacks-*',
|
2016-10-17 13:41:37 +00:00
|
|
|
'man-pages-*',
|
|
|
|
'mythes-*',
|
2021-01-11 23:19:58 +00:00
|
|
|
'python3.*-debuginfo',
|
2015-05-29 20:04:00 +00:00
|
|
|
],
|
|
|
|
}),
|
|
|
|
|
2015-08-20 15:42:03 +00:00
|
|
|
('^Everything$', {
|
|
|
|
'*': [
|
|
|
|
'*',
|
|
|
|
],
|
|
|
|
}),
|
|
|
|
|
2015-05-29 20:04:00 +00:00
|
|
|
('^Server$', {
|
|
|
|
'*': [
|
2016-02-10 12:26:45 +00:00
|
|
|
|
2015-05-29 20:04:00 +00:00
|
|
|
],
|
|
|
|
}),
|
|
|
|
|
|
|
|
]
|
|
|
|
|
|
|
|
filter_packages = [
|
2021-07-15 06:29:35 +00:00
|
|
|
("^.*$", {
|
|
|
|
"*": ["glibc32", "libgcc32"],
|
2021-12-08 00:09:06 +00:00
|
|
|
"s390x": ["rust-std-static-wasm*"],
|
2021-07-15 06:29:35 +00:00
|
|
|
}),
|
2019-08-06 16:17:25 +00:00
|
|
|
('(Server)$', {
|
2015-05-29 20:04:00 +00:00
|
|
|
'*': [
|
2016-10-17 13:41:37 +00:00
|
|
|
'kernel*debug*',
|
|
|
|
'kernel-kdump*',
|
|
|
|
'kernel-tools*',
|
|
|
|
'syslog-ng*',
|
|
|
|
'astronomy-bookmarks',
|
|
|
|
'generic*',
|
|
|
|
'GConf2-dbus*',
|
|
|
|
'bluez-gnome',
|
2018-09-27 19:34:52 +00:00
|
|
|
'java-11-openjdk',
|
2016-10-17 13:41:37 +00:00
|
|
|
'community-mysql*',
|
|
|
|
'jruby*',
|
|
|
|
'gimp-help-*',
|
2015-05-29 20:04:00 +00:00
|
|
|
]
|
|
|
|
}),
|
|
|
|
]
|
|
|
|
|
2015-08-20 15:42:54 +00:00
|
|
|
createiso_skip = [
|
|
|
|
('^Server$', {
|
|
|
|
'src': True
|
|
|
|
}),
|
|
|
|
|
|
|
|
('^Everything$', {
|
|
|
|
'*': True,
|
|
|
|
'src': True
|
|
|
|
}),
|
|
|
|
]
|
2015-05-29 20:04:00 +00:00
|
|
|
|
2021-09-20 14:54:11 +00:00
|
|
|
# format: [(variant_uid_regex, {arch|*: [scm_dicts]})]
|
2015-07-22 01:35:10 +00:00
|
|
|
#extra_files = [
|
2019-08-06 16:17:25 +00:00
|
|
|
# ('^(Server)$', {
|
2015-07-22 01:35:10 +00:00
|
|
|
# '*': [
|
|
|
|
# {
|
2016-03-12 02:08:12 +00:00
|
|
|
# 'scm': 'rpm',
|
|
|
|
# 'repo': 'fedora-release-%(variant_id_lower)s',
|
|
|
|
# 'branch': None,
|
|
|
|
# 'file': [
|
|
|
|
# '/etc/pki/rpm-gpg/RPM-GPG-KEY-fedora-release',
|
2015-07-22 01:35:10 +00:00
|
|
|
# ],
|
2016-03-12 02:08:12 +00:00
|
|
|
# 'target': '',
|
2015-07-22 01:35:10 +00:00
|
|
|
# },
|
|
|
|
# ],
|
|
|
|
# }),
|
|
|
|
#]
|
2015-05-29 20:04:00 +00:00
|
|
|
|
2015-12-19 16:26:42 +00:00
|
|
|
# Image name respecting Fedora's image naming policy
|
2016-03-12 02:08:12 +00:00
|
|
|
image_name_format = '%(release_short)s-%(variant)s-%(disc_type)s-%(arch)s-%(version)s-%(date)s%(type_suffix)s.%(respin)s.iso'
|
2015-12-19 16:26:42 +00:00
|
|
|
# # Use the same format for volume id
|
|
|
|
image_volid_formats = [
|
2016-03-12 02:08:12 +00:00
|
|
|
'%(release_short)s-%(variant)s-%(disc_type)s-%(arch)s-%(version)s'
|
2015-12-19 16:26:42 +00:00
|
|
|
]
|
2016-03-08 15:04:58 +00:00
|
|
|
|
2015-12-09 16:37:14 +00:00
|
|
|
|
2016-04-14 11:57:27 +00:00
|
|
|
# These will be inherited by live_media, live_images and image_build
|
2023-08-09 00:09:31 +00:00
|
|
|
global_ksurl = 'git+https://pagure.io/fedora-kickstarts.git?#origin/f39'
|
2017-05-10 06:54:51 +00:00
|
|
|
global_release = '!RELEASE_FROM_LABEL_DATE_TYPE_RESPIN'
|
2023-08-09 00:09:31 +00:00
|
|
|
global_version = '39'
|
2016-04-14 11:57:27 +00:00
|
|
|
# live_images ignores this in favor of live_target
|
2023-02-10 01:02:30 +00:00
|
|
|
global_target = 'f39'
|
2016-04-14 11:57:27 +00:00
|
|
|
|
2016-01-12 19:33:21 +00:00
|
|
|
image_build = {
|
2017-07-25 16:05:43 +00:00
|
|
|
'^Container$': [
|
2016-02-11 14:10:14 +00:00
|
|
|
{
|
|
|
|
'image-build': {
|
2017-03-28 22:11:19 +00:00
|
|
|
'format': [('docker', 'tar.xz')],
|
2017-07-25 16:05:43 +00:00
|
|
|
'name': 'Fedora-Container-Base',
|
2019-01-03 18:10:02 +00:00
|
|
|
'kickstart': 'fedora-container-base.ks',
|
2016-06-20 08:29:37 +00:00
|
|
|
'distro': 'Fedora-22',
|
2017-03-10 23:35:09 +00:00
|
|
|
'disk_size': 5,
|
2022-02-09 11:25:49 +00:00
|
|
|
'arches': ['aarch64', 'ppc64le', 's390x', 'x86_64'],
|
2017-05-10 06:54:09 +00:00
|
|
|
'repo': 'Everything',
|
2017-03-10 23:35:09 +00:00
|
|
|
'install_tree_from': 'Everything',
|
2017-07-25 16:05:43 +00:00
|
|
|
'subvariant': 'Container_Base',
|
2016-09-22 12:37:15 +00:00
|
|
|
'failable': ['*'],
|
2017-02-23 16:32:38 +00:00
|
|
|
},
|
2017-03-28 22:11:19 +00:00
|
|
|
'factory-parameters': {
|
2017-03-30 17:11:07 +00:00
|
|
|
'dockerversion': "1.10.1",
|
2017-03-31 18:58:16 +00:00
|
|
|
'docker_cmd': '[ "/bin/bash" ]',
|
2023-02-10 01:02:30 +00:00
|
|
|
'docker_env': '[ "DISTTAG=f39container", "FGC=f39", "container=oci" ]',
|
|
|
|
'docker_label': '{ "name": "fedora", "license": "MIT", "vendor": "Fedora Project", "version": "39"}',
|
2017-03-28 22:11:19 +00:00
|
|
|
},
|
2017-03-09 21:43:43 +00:00
|
|
|
},
|
|
|
|
{
|
2017-02-23 16:32:38 +00:00
|
|
|
'image-build': {
|
2017-03-28 22:11:19 +00:00
|
|
|
'format': [('docker', 'tar.xz')],
|
2017-02-23 16:32:38 +00:00
|
|
|
'name': 'Fedora-Container-Minimal-Base',
|
2019-01-03 18:10:02 +00:00
|
|
|
'kickstart': 'fedora-container-base-minimal.ks',
|
2017-02-23 16:32:38 +00:00
|
|
|
'distro': 'Fedora-22',
|
2017-03-10 23:35:09 +00:00
|
|
|
'disk_size': 5,
|
2022-02-09 11:25:49 +00:00
|
|
|
'arches': ['aarch64', 'ppc64le', 's390x', 'x86_64'],
|
2017-05-10 06:54:09 +00:00
|
|
|
'repo': 'Everything',
|
2017-03-10 23:35:09 +00:00
|
|
|
'install_tree_from': 'Everything',
|
2017-03-28 22:11:19 +00:00
|
|
|
'subvariant': 'Container_Minimal_Base',
|
2017-02-23 16:32:38 +00:00
|
|
|
'failable': ['*'],
|
2017-03-28 22:11:19 +00:00
|
|
|
},
|
|
|
|
'factory-parameters': {
|
2017-03-30 17:11:07 +00:00
|
|
|
'dockerversion': "1.10.1",
|
2017-03-31 18:58:16 +00:00
|
|
|
'docker_cmd': '[ "/bin/bash" ]',
|
2023-02-10 01:02:30 +00:00
|
|
|
'docker_env': '[ "DISTTAG=f39container", "FGC=f39", "container=oci" ]',
|
|
|
|
'docker_label': '{ "name": "fedora", "license": "MIT", "vendor": "Fedora Project", "version": "98"}',
|
2017-03-28 22:11:19 +00:00
|
|
|
},
|
2023-06-27 13:42:12 +00:00
|
|
|
},
|
|
|
|
{
|
|
|
|
'image-build': {
|
|
|
|
'format': [('docker', 'tar.xz')],
|
|
|
|
'name': 'Fedora-Container-Toolbox',
|
|
|
|
'kickstart': 'fedora-container-toolbox.ks',
|
|
|
|
'distro': 'Fedora-22',
|
|
|
|
'disk_size': 5,
|
|
|
|
'arches': ['aarch64', 'ppc64le', 's390x', 'x86_64'],
|
2023-06-28 14:50:02 +00:00
|
|
|
'repo': 'Everything',
|
|
|
|
'install_tree_from': 'Everything',
|
2023-06-27 13:42:12 +00:00
|
|
|
'subvariant': 'Container_Toolbox',
|
2023-08-23 21:37:49 +00:00
|
|
|
'failable': [''],
|
2023-06-27 13:42:12 +00:00
|
|
|
},
|
|
|
|
'factory-parameters': {
|
|
|
|
'dockerversion': "1.10.1",
|
|
|
|
'docker_cmd': '[ "/bin/bash" ]',
|
|
|
|
'docker_env': '[ "DISTTAG=f39container", "FGC=f39", "container=oci" ]',
|
|
|
|
'docker_label': '{ "name": "fedora", "license": "MIT", "vendor": "Fedora Project", "version": "39"}',
|
|
|
|
},
|
2016-02-18 15:40:14 +00:00
|
|
|
}
|
|
|
|
],
|
2018-03-10 17:43:10 +00:00
|
|
|
'^Cloud$': [
|
2016-02-11 14:10:14 +00:00
|
|
|
{
|
|
|
|
'image-build': {
|
2020-09-17 03:31:33 +00:00
|
|
|
'format': [('qcow2','qcow2'), ('raw-xz','raw.xz')],
|
2016-02-11 14:10:14 +00:00
|
|
|
'name': 'Fedora-Cloud-Base',
|
2016-03-12 02:08:12 +00:00
|
|
|
'kickstart': 'fedora-cloud-base.ks',
|
2016-06-20 08:29:37 +00:00
|
|
|
'distro': 'Fedora-22',
|
2020-11-27 17:48:19 +00:00
|
|
|
'disk_size': 5,
|
2018-08-10 12:02:54 +00:00
|
|
|
'arches': ['aarch64', 'ppc64le', 's390x', 'x86_64'],
|
2018-03-10 17:43:10 +00:00
|
|
|
'repo': 'Everything',
|
|
|
|
'install_tree_from': 'Everything',
|
2017-03-28 22:11:19 +00:00
|
|
|
'subvariant': 'Cloud_Base',
|
2019-11-06 16:50:28 +00:00
|
|
|
'failable': ['ppc64le', 's390x'],
|
2016-02-12 08:02:16 +00:00
|
|
|
}
|
2016-02-11 14:10:14 +00:00
|
|
|
},
|
2020-09-17 03:58:40 +00:00
|
|
|
{
|
|
|
|
'image-build': {
|
2020-09-21 18:12:07 +00:00
|
|
|
'format': [('tar-gz', 'tar.gz')],
|
2020-09-17 03:58:40 +00:00
|
|
|
'name': 'Fedora-Cloud-Base-GCP',
|
|
|
|
'kickstart': 'fedora-cloud-base-gcp.ks',
|
|
|
|
# Use `Fedora-30` profile here because we need it
|
|
|
|
# to be a UEFI image and currently OZ does that if
|
|
|
|
# we use the `Fedora-30` profile.
|
|
|
|
'distro': 'Fedora-30',
|
|
|
|
# GCP engineers have told me the disk images have bad
|
|
|
|
# performance if they are anything less than 10G
|
|
|
|
'disk_size': 10,
|
|
|
|
'arches': ['x86_64'],
|
|
|
|
'repo': 'Everything',
|
|
|
|
'install_tree_from': 'Everything',
|
|
|
|
'subvariant': 'Cloud_Base',
|
|
|
|
'failable': ['x86_64'],
|
|
|
|
}
|
|
|
|
},
|
2023-04-17 19:27:36 +00:00
|
|
|
{
|
|
|
|
'image-build': {
|
2023-05-15 19:44:48 +00:00
|
|
|
'format': [('vpc','vpc')],
|
2023-04-17 19:27:36 +00:00
|
|
|
'name': 'Fedora-Cloud-Base-Azure',
|
|
|
|
'kickstart': 'fedora-cloud-base-azure.ks',
|
2023-04-19 19:31:59 +00:00
|
|
|
# Use `Fedora-30` profile here because we need it
|
|
|
|
# to be a UEFI image and currently OZ does that if
|
|
|
|
# we use the `Fedora-30` profile.
|
|
|
|
'distro': 'Fedora-30',
|
2023-04-17 19:27:36 +00:00
|
|
|
'disk_size': 5,
|
2023-04-27 15:34:37 +00:00
|
|
|
'arches': ['aarch64', 'x86_64'],
|
2023-04-17 19:27:36 +00:00
|
|
|
'repo': 'Everything',
|
|
|
|
'install_tree_from': 'Everything',
|
|
|
|
'subvariant': 'Cloud_Base',
|
2023-04-27 15:46:46 +00:00
|
|
|
'failable': ['*'],
|
2023-04-17 19:27:36 +00:00
|
|
|
}
|
|
|
|
},
|
2016-02-11 14:10:14 +00:00
|
|
|
{
|
|
|
|
'image-build': {
|
2017-03-28 22:11:19 +00:00
|
|
|
'format': [('vagrant-libvirt','vagrant-libvirt.box'), ('vagrant-virtualbox','vagrant-virtualbox.box')],
|
2016-02-11 14:10:14 +00:00
|
|
|
'name': 'Fedora-Cloud-Base-Vagrant',
|
2016-03-12 02:08:12 +00:00
|
|
|
'kickstart': 'fedora-cloud-base-vagrant.ks',
|
2016-06-20 08:29:37 +00:00
|
|
|
'distro': 'Fedora-22',
|
2016-02-11 14:10:14 +00:00
|
|
|
'disk_size': 40,
|
2016-04-11 19:10:27 +00:00
|
|
|
'arches': ['x86_64'],
|
2018-03-10 17:43:10 +00:00
|
|
|
'repo': 'Everything',
|
|
|
|
'install_tree_from': 'Everything',
|
2016-05-26 16:19:25 +00:00
|
|
|
'subvariant': 'Cloud_Base',
|
2016-09-22 12:37:15 +00:00
|
|
|
'failable': ['*'],
|
2017-03-28 22:11:19 +00:00
|
|
|
},
|
2016-04-11 19:10:27 +00:00
|
|
|
},
|
2018-03-10 17:28:33 +00:00
|
|
|
],
|
2017-02-27 20:56:00 +00:00
|
|
|
'^Labs$': [
|
|
|
|
{
|
|
|
|
'image-build': {
|
2017-03-28 22:11:19 +00:00
|
|
|
'format': [('vagrant-libvirt','vagrant-libvirt.box'), ('vagrant-virtualbox','vagrant-virtualbox.box')],
|
2017-02-27 20:56:00 +00:00
|
|
|
'name': 'Fedora-Python-Classroom-Vagrant',
|
|
|
|
'kickstart': 'fedora-python-classroom-vagrant.ks',
|
|
|
|
'distro': 'Fedora-22',
|
|
|
|
'disk_size': 40,
|
2019-07-12 16:24:15 +00:00
|
|
|
'arches': ['x86_64'],
|
2017-05-10 06:54:09 +00:00
|
|
|
'repo': 'Everything',
|
2017-03-14 14:01:05 +00:00
|
|
|
'install_tree_from': 'Everything',
|
2017-03-28 22:11:19 +00:00
|
|
|
'subvariant': 'Python_Classroom',
|
2017-02-27 20:56:00 +00:00
|
|
|
'failable': ['*'],
|
2017-03-28 22:11:19 +00:00
|
|
|
},
|
2018-06-13 14:34:33 +00:00
|
|
|
'factory-parameters': {
|
|
|
|
'ova-option': 'vagrant_sync_directory=/home/vagrant/sync'
|
|
|
|
}
|
|
|
|
},
|
|
|
|
{
|
2018-01-26 00:28:57 +00:00
|
|
|
'image-build': {
|
|
|
|
'format': [('vagrant-libvirt','vagrant-libvirt.box'), ('vagrant-virtualbox','vagrant-virtualbox.box')],
|
|
|
|
'name': 'Fedora-Scientific-Vagrant',
|
|
|
|
'kickstart': 'fedora-scientific-vagrant.ks',
|
|
|
|
'distro': 'Fedora-22',
|
|
|
|
'disk_size': 40,
|
2019-07-12 16:24:15 +00:00
|
|
|
'arches': ['x86_64'],
|
2018-01-26 00:28:57 +00:00
|
|
|
'repo': 'Everything',
|
|
|
|
'install_tree_from': 'Everything',
|
|
|
|
'subvariant': 'Scientific',
|
|
|
|
'failable': ['*'],
|
|
|
|
},
|
2017-02-27 20:56:00 +00:00
|
|
|
'factory-parameters': {
|
|
|
|
'ova-option': 'vagrant_sync_directory=/home/vagrant/sync'
|
|
|
|
}
|
2017-04-12 21:55:23 +00:00
|
|
|
},
|
2021-02-18 19:18:28 +00:00
|
|
|
{
|
|
|
|
'image-build': {
|
|
|
|
'format': [('raw-xz','raw.xz')],
|
|
|
|
'name': 'Fedora-Python-Classroom',
|
|
|
|
'kickstart': 'fedora-disk-python-classroom.ks',
|
|
|
|
'distro': 'Fedora-30',
|
2022-03-20 21:26:52 +00:00
|
|
|
'disk_size': 18,
|
2021-09-20 14:52:39 +00:00
|
|
|
'arches': ['aarch64'],
|
2021-02-18 19:18:28 +00:00
|
|
|
'repo': 'Everything',
|
|
|
|
'install_tree_from': 'Everything',
|
|
|
|
'subvariant': 'Python_Classroom',
|
|
|
|
'failable': ['*'],
|
|
|
|
}
|
|
|
|
},
|
2017-04-12 21:55:23 +00:00
|
|
|
],
|
|
|
|
'^Spins': [
|
|
|
|
{
|
|
|
|
'image-build': {
|
|
|
|
'format': [('raw-xz','raw.xz')],
|
|
|
|
'name': 'Fedora-Minimal',
|
|
|
|
'kickstart': 'fedora-disk-minimal.ks',
|
2021-02-18 19:18:28 +00:00
|
|
|
'distro': 'Fedora-30',
|
2020-12-01 18:50:36 +00:00
|
|
|
'disk_size': 6,
|
2022-02-09 11:25:49 +00:00
|
|
|
'arches': ['aarch64'],
|
2017-05-10 06:54:09 +00:00
|
|
|
'repo': 'Everything',
|
2017-04-12 21:55:23 +00:00
|
|
|
'install_tree_from': 'Everything',
|
|
|
|
'subvariant': 'Minimal',
|
|
|
|
}
|
|
|
|
},
|
2020-12-07 01:41:01 +00:00
|
|
|
{
|
|
|
|
'image-build': {
|
|
|
|
'format': [('raw-xz','raw.xz')],
|
|
|
|
'name': 'Fedora-KDE',
|
|
|
|
'kickstart': 'fedora-disk-kde.ks',
|
2021-02-18 19:18:28 +00:00
|
|
|
'distro': 'Fedora-30',
|
2023-06-10 02:40:01 +00:00
|
|
|
'disk_size': 18,
|
2022-02-09 11:25:49 +00:00
|
|
|
'arches': ['aarch64'],
|
2020-12-07 01:41:01 +00:00
|
|
|
'repo': 'Everything',
|
|
|
|
'install_tree_from': 'Everything',
|
|
|
|
'subvariant': 'KDE',
|
|
|
|
'failable': ['*'],
|
|
|
|
}
|
|
|
|
},
|
2021-02-18 19:18:28 +00:00
|
|
|
{
|
|
|
|
'image-build': {
|
|
|
|
'format': [('raw-xz','raw.xz')],
|
|
|
|
'name': 'Fedora-SoaS',
|
|
|
|
'kickstart': 'fedora-disk-soas.ks',
|
|
|
|
'distro': 'Fedora-30',
|
2021-09-20 15:37:40 +00:00
|
|
|
'disk_size': 10,
|
2022-02-09 11:25:49 +00:00
|
|
|
'arches': ['aarch64'],
|
2021-02-18 19:18:28 +00:00
|
|
|
'repo': 'Everything',
|
|
|
|
'install_tree_from': 'Everything',
|
|
|
|
'subvariant': 'SoaS',
|
|
|
|
'failable': ['*'],
|
|
|
|
}
|
|
|
|
},
|
2019-08-14 17:17:53 +00:00
|
|
|
{
|
|
|
|
'image-build': {
|
|
|
|
'format': [('raw-xz','raw.xz')],
|
|
|
|
'name': 'Fedora-Xfce',
|
|
|
|
'kickstart': 'fedora-disk-xfce.ks',
|
2021-02-18 19:18:28 +00:00
|
|
|
'distro': 'Fedora-30',
|
2023-06-10 02:40:01 +00:00
|
|
|
'disk_size': 15,
|
2022-02-09 11:25:49 +00:00
|
|
|
'arches': ['aarch64'],
|
2019-08-14 17:17:53 +00:00
|
|
|
'repo': 'Everything',
|
|
|
|
'install_tree_from': 'Everything',
|
|
|
|
'subvariant': 'Xfce',
|
|
|
|
'failable': ['*'],
|
|
|
|
}
|
|
|
|
},
|
2023-02-01 00:47:43 +00:00
|
|
|
{
|
|
|
|
'image-build': {
|
|
|
|
'format': [('raw-xz','raw.xz')],
|
|
|
|
'name': 'Fedora-Phosh',
|
|
|
|
'kickstart': 'fedora-disk-phosh.ks',
|
|
|
|
'distro': 'Fedora-30',
|
2023-02-28 23:59:09 +00:00
|
|
|
'disk_size': 12,
|
2023-02-01 00:47:43 +00:00
|
|
|
'arches': ['aarch64'],
|
|
|
|
'repo': 'Everything',
|
|
|
|
'install_tree_from': 'Everything',
|
2023-02-04 17:34:03 +00:00
|
|
|
'subvariant': 'Phosh',
|
2023-02-01 00:47:43 +00:00
|
|
|
'failable': ['*'],
|
|
|
|
}
|
|
|
|
},
|
2022-11-25 04:29:29 +00:00
|
|
|
{
|
|
|
|
'image-build': {
|
|
|
|
'format': [('raw-xz','raw.xz')],
|
|
|
|
'name': 'Fedora-LXQt',
|
|
|
|
'kickstart': 'fedora-disk-lxqt.ks',
|
|
|
|
'distro': 'Fedora-30',
|
|
|
|
'disk_size': 12,
|
|
|
|
'arches': ['aarch64'],
|
|
|
|
'repo': 'Everything',
|
|
|
|
'install_tree_from': 'Everything',
|
|
|
|
'subvariant': 'LXQt',
|
|
|
|
'failable': ['*'],
|
|
|
|
}
|
|
|
|
},
|
2017-04-12 21:55:23 +00:00
|
|
|
],
|
|
|
|
'^Workstation$': [
|
|
|
|
{
|
|
|
|
'image-build': {
|
|
|
|
'format': [('raw-xz','raw.xz')],
|
|
|
|
'name': 'Fedora-Workstation',
|
|
|
|
'kickstart': 'fedora-disk-workstation.ks',
|
2021-02-18 19:18:28 +00:00
|
|
|
'distro': 'Fedora-30',
|
2023-06-10 02:40:01 +00:00
|
|
|
'disk_size': 16,
|
2022-02-09 11:25:49 +00:00
|
|
|
'arches': ['aarch64'],
|
2019-04-30 01:19:34 +00:00
|
|
|
'repo': 'Everything',
|
|
|
|
'install_tree_from': 'Everything',
|
2017-04-12 21:55:23 +00:00
|
|
|
'subvariant': 'Workstation',
|
2020-03-17 15:25:24 +00:00
|
|
|
'failable': ['armhfp'],
|
2017-04-12 21:55:23 +00:00
|
|
|
}
|
|
|
|
},
|
|
|
|
],
|
|
|
|
'^Server$': [
|
|
|
|
{
|
|
|
|
'image-build': {
|
|
|
|
'format': [('raw-xz','raw.xz')],
|
|
|
|
'name': 'Fedora-Server',
|
|
|
|
'kickstart': 'fedora-disk-server.ks',
|
2021-02-18 19:18:28 +00:00
|
|
|
'distro': 'Fedora-30',
|
2017-04-12 21:55:23 +00:00
|
|
|
'disk_size': 7,
|
2022-02-09 11:25:49 +00:00
|
|
|
'arches': ['aarch64'],
|
2017-05-10 06:54:09 +00:00
|
|
|
'repo': 'Server',
|
2017-04-12 21:55:23 +00:00
|
|
|
'install_tree_from': 'Server',
|
|
|
|
'subvariant': 'Server',
|
|
|
|
'failable': ['*'],
|
|
|
|
}
|
2017-02-27 20:56:00 +00:00
|
|
|
},
|
2022-08-31 10:11:13 +00:00
|
|
|
{
|
|
|
|
'image-build': {
|
|
|
|
'format': [('qcow2','qcow2')],
|
|
|
|
'name': 'Fedora-Server-KVM',
|
|
|
|
'kickstart': 'fedora-server-vm-full.ks',
|
|
|
|
'distro': 'Fedora-22',
|
|
|
|
'disk_size': 7,
|
|
|
|
'arches': ['aarch64', 'ppc64le', 's390x', 'x86_64'],
|
|
|
|
'repo': 'Everything',
|
|
|
|
'install_tree_from': 'Everything',
|
|
|
|
'subvariant': 'Server_KVM',
|
|
|
|
'failable': ['*'],
|
|
|
|
}
|
|
|
|
},
|
2017-02-27 20:56:00 +00:00
|
|
|
],
|
2016-01-12 19:33:21 +00:00
|
|
|
}
|
2015-12-09 01:16:07 +00:00
|
|
|
|
2016-02-10 14:46:42 +00:00
|
|
|
live_media = {
|
2016-02-10 12:26:45 +00:00
|
|
|
'^Workstation$': [
|
|
|
|
{
|
2016-02-28 19:43:11 +00:00
|
|
|
'name': 'Fedora-Workstation-Live',
|
2016-03-12 02:08:12 +00:00
|
|
|
'kickstart': 'fedora-live-workstation.ks',
|
2020-06-30 15:25:42 +00:00
|
|
|
'arches': ['x86_64', 'ppc64le', 'aarch64'],
|
|
|
|
'failable': ['ppc64le', 'aarch64'],
|
2017-05-10 06:54:09 +00:00
|
|
|
'repo': 'Everything',
|
2019-08-09 17:00:08 +00:00
|
|
|
'install_tree_from': 'Everything',
|
2016-03-12 02:06:56 +00:00
|
|
|
'subvariant': 'Workstation'
|
|
|
|
|
2016-02-10 12:26:45 +00:00
|
|
|
}
|
|
|
|
],
|
2016-02-18 15:40:14 +00:00
|
|
|
'^Spins': [
|
2016-02-10 12:26:45 +00:00
|
|
|
{
|
2016-02-28 19:43:11 +00:00
|
|
|
'name': 'Fedora-KDE-Live',
|
2016-03-12 02:08:12 +00:00
|
|
|
'kickstart': 'fedora-live-kde.ks',
|
2020-12-07 01:41:01 +00:00
|
|
|
'arches': ['x86_64', 'aarch64'],
|
|
|
|
'failable': ['aarch64'],
|
2017-05-10 06:54:09 +00:00
|
|
|
'repo': 'Everything',
|
2016-03-12 02:06:56 +00:00
|
|
|
'install_tree_from': 'Everything',
|
|
|
|
'subvariant': 'KDE'
|
|
|
|
|
2016-02-10 12:26:45 +00:00
|
|
|
},
|
|
|
|
{
|
2016-02-28 19:43:11 +00:00
|
|
|
'name': 'Fedora-Xfce-Live',
|
2016-03-12 02:08:12 +00:00
|
|
|
'kickstart': 'fedora-live-xfce.ks',
|
2019-07-12 16:24:15 +00:00
|
|
|
'arches': ['x86_64'],
|
2016-08-11 08:04:05 +00:00
|
|
|
'failable': ['*'],
|
2017-05-10 06:54:09 +00:00
|
|
|
'repo': 'Everything',
|
2016-03-12 02:06:56 +00:00
|
|
|
'install_tree_from': 'Everything',
|
|
|
|
'subvariant': 'Xfce'
|
2016-02-10 12:26:45 +00:00
|
|
|
},
|
|
|
|
{
|
2016-02-28 19:43:11 +00:00
|
|
|
'name': 'Fedora-SoaS-Live',
|
2016-03-12 02:08:12 +00:00
|
|
|
'kickstart': 'fedora-live-soas.ks',
|
2019-07-12 16:24:15 +00:00
|
|
|
'arches': ['x86_64'],
|
2016-08-11 08:04:05 +00:00
|
|
|
'failable': ['*'],
|
2017-05-10 06:54:09 +00:00
|
|
|
'repo': 'Everything',
|
2016-03-12 02:06:56 +00:00
|
|
|
'install_tree_from': 'Everything',
|
|
|
|
'subvariant': 'SoaS'
|
2016-02-10 12:26:45 +00:00
|
|
|
},
|
|
|
|
{
|
2016-02-28 19:43:11 +00:00
|
|
|
'name': 'Fedora-Cinnamon-Live',
|
2016-03-12 02:08:12 +00:00
|
|
|
'kickstart': 'fedora-live-cinnamon.ks',
|
2019-07-12 16:24:15 +00:00
|
|
|
'arches': ['x86_64'],
|
2016-08-11 08:04:05 +00:00
|
|
|
'failable': ['*'],
|
2017-05-10 06:54:09 +00:00
|
|
|
'repo': 'Everything',
|
2016-03-12 02:06:56 +00:00
|
|
|
'install_tree_from': 'Everything',
|
|
|
|
'subvariant': 'Cinnamon'
|
2016-02-10 12:26:45 +00:00
|
|
|
},
|
|
|
|
{
|
2016-02-28 19:43:11 +00:00
|
|
|
'name': 'Fedora-LXDE-Live',
|
2016-03-12 02:08:12 +00:00
|
|
|
'kickstart': 'fedora-live-lxde.ks',
|
2019-07-12 16:24:15 +00:00
|
|
|
'arches': ['x86_64'],
|
2016-08-11 08:04:05 +00:00
|
|
|
'failable': ['*'],
|
2017-05-10 06:54:09 +00:00
|
|
|
'repo': 'Everything',
|
2016-03-12 02:06:56 +00:00
|
|
|
'install_tree_from': 'Everything',
|
|
|
|
'subvariant': 'LXDE'
|
2016-02-10 12:26:45 +00:00
|
|
|
},
|
|
|
|
{
|
2016-02-28 19:43:11 +00:00
|
|
|
'name': 'Fedora-MATE_Compiz-Live',
|
2016-03-12 02:08:12 +00:00
|
|
|
'kickstart': 'fedora-live-mate_compiz.ks',
|
2019-07-12 16:24:15 +00:00
|
|
|
'arches': ['x86_64'],
|
2016-08-11 08:04:05 +00:00
|
|
|
'failable': ['*'],
|
2017-05-10 06:54:09 +00:00
|
|
|
'repo': 'Everything',
|
2016-03-12 02:06:56 +00:00
|
|
|
'install_tree_from': 'Everything',
|
|
|
|
'subvariant': 'Mate'
|
2017-02-23 14:52:10 +00:00
|
|
|
},
|
|
|
|
{
|
|
|
|
'name': 'Fedora-LXQt-Live',
|
|
|
|
'kickstart': 'fedora-live-lxqt.ks',
|
2022-11-25 04:29:29 +00:00
|
|
|
'arches': ['x86_64', 'aarch64'],
|
2017-02-23 14:52:10 +00:00
|
|
|
'failable': ['*'],
|
2017-05-10 06:54:09 +00:00
|
|
|
'repo': 'Everything',
|
2017-02-23 14:52:10 +00:00
|
|
|
'install_tree_from': 'Everything',
|
|
|
|
'subvariant': 'LXQt'
|
2023-01-21 15:54:57 +00:00
|
|
|
},
|
|
|
|
{
|
|
|
|
'name': 'Fedora-Budgie-Live',
|
|
|
|
'kickstart': 'fedora-live-budgie.ks',
|
|
|
|
'arches': ['x86_64'],
|
|
|
|
'failable': ['*'],
|
|
|
|
'repo': 'Everything',
|
|
|
|
'install_tree_from': 'Everything',
|
|
|
|
'subvariant': 'Budgie'
|
|
|
|
},
|
2021-02-23 19:24:50 +00:00
|
|
|
{
|
|
|
|
'name': 'Fedora-i3-Live',
|
|
|
|
'kickstart': 'fedora-live-i3.ks',
|
2023-06-08 06:32:54 +00:00
|
|
|
'arches': ['x86_64', 'aarch64'],
|
2021-02-23 19:24:50 +00:00
|
|
|
'failable': ['*'],
|
|
|
|
'repo': 'Everything',
|
|
|
|
'install_tree_from': 'Everything',
|
|
|
|
'subvariant': 'i3'
|
2023-01-25 04:10:44 +00:00
|
|
|
},
|
|
|
|
{
|
|
|
|
'name': 'Fedora-Sway-Live',
|
|
|
|
'kickstart': 'fedora-live-sway.ks',
|
|
|
|
'arches': ['x86_64'],
|
|
|
|
'failable': ['*'],
|
|
|
|
'repo': 'Everything',
|
|
|
|
'install_tree_from': 'Everything',
|
|
|
|
'subvariant': 'Sway'
|
2021-02-23 19:24:50 +00:00
|
|
|
}
|
2016-02-10 12:26:45 +00:00
|
|
|
],
|
2016-02-18 15:40:14 +00:00
|
|
|
'^Labs$': [
|
2016-02-10 12:26:45 +00:00
|
|
|
{
|
2016-02-28 19:43:11 +00:00
|
|
|
'name': 'Fedora-Astronomy_KDE-Live',
|
2016-03-12 02:08:12 +00:00
|
|
|
'kickstart': 'fedora-live-astronomy_kde.ks',
|
2019-07-12 16:24:15 +00:00
|
|
|
'arches': ['x86_64'],
|
2016-08-11 08:04:05 +00:00
|
|
|
'failable': ['*'],
|
2017-05-10 06:54:09 +00:00
|
|
|
'repo': 'Everything',
|
2016-03-12 02:06:56 +00:00
|
|
|
'install_tree_from': 'Everything',
|
|
|
|
'subvariant': 'Astronomy_KDE'
|
2016-02-10 12:26:45 +00:00
|
|
|
},
|
2019-10-15 19:21:50 +00:00
|
|
|
{
|
|
|
|
'name': 'Fedora-Comp_Neuro-Live',
|
|
|
|
'kickstart': 'fedora-live-comp_neuro.ks',
|
|
|
|
'arches': ['x86_64'],
|
|
|
|
'failable': ['*'],
|
|
|
|
'repo': 'Everything',
|
|
|
|
'install_tree_from': 'Everything',
|
|
|
|
'subvariant': 'Comp_Neuro'
|
|
|
|
},
|
2016-02-10 12:26:45 +00:00
|
|
|
{
|
2016-02-28 19:43:11 +00:00
|
|
|
'name': 'Fedora-Design_suite-Live',
|
2016-03-12 02:08:12 +00:00
|
|
|
'kickstart': 'fedora-live-design_suite.ks',
|
2019-07-12 16:24:15 +00:00
|
|
|
'arches': ['x86_64'],
|
2016-08-11 08:04:05 +00:00
|
|
|
'failable': ['*'],
|
2017-05-10 06:54:09 +00:00
|
|
|
'repo': 'Everything',
|
2016-03-12 02:06:56 +00:00
|
|
|
'install_tree_from': 'Everything',
|
|
|
|
'subvariant': 'Design_suite'
|
2016-02-10 12:26:45 +00:00
|
|
|
},
|
|
|
|
{
|
2016-02-28 19:43:11 +00:00
|
|
|
'name': 'Fedora-Scientific_KDE-Live',
|
2016-03-12 02:08:12 +00:00
|
|
|
'kickstart': 'fedora-live-scientific_kde.ks',
|
2019-07-12 16:24:15 +00:00
|
|
|
'arches': ['x86_64'],
|
2016-08-11 08:04:05 +00:00
|
|
|
'failable': ['*'],
|
2017-05-10 06:54:09 +00:00
|
|
|
'repo': 'Everything',
|
2016-03-12 02:06:56 +00:00
|
|
|
'install_tree_from': 'Everything',
|
|
|
|
'subvariant': 'Scientific_KDE'
|
2016-02-10 12:26:45 +00:00
|
|
|
},
|
|
|
|
{
|
2016-02-28 19:43:11 +00:00
|
|
|
'name': 'Fedora-Games-Live',
|
2016-03-12 02:08:12 +00:00
|
|
|
'kickstart': 'fedora-live-games.ks',
|
2019-07-12 16:24:15 +00:00
|
|
|
'arches': ['x86_64'],
|
2016-08-11 08:04:05 +00:00
|
|
|
'failable': ['*'],
|
2017-05-10 06:54:09 +00:00
|
|
|
'repo': 'Everything',
|
2016-03-12 02:06:56 +00:00
|
|
|
'install_tree_from': 'Everything',
|
|
|
|
'subvariant': 'Games'
|
2016-02-10 12:26:45 +00:00
|
|
|
},
|
|
|
|
{
|
2016-02-28 19:43:11 +00:00
|
|
|
'name': 'Fedora-Security-Live',
|
2016-03-12 02:08:12 +00:00
|
|
|
'kickstart': 'fedora-live-security.ks',
|
2019-07-12 16:24:15 +00:00
|
|
|
'arches': ['x86_64'],
|
2016-08-11 08:04:05 +00:00
|
|
|
'failable': ['*'],
|
2017-05-10 06:54:09 +00:00
|
|
|
'repo': 'Everything',
|
2016-03-12 02:06:56 +00:00
|
|
|
'install_tree_from': 'Everything',
|
|
|
|
'subvariant': 'Security'
|
2016-02-10 12:26:45 +00:00
|
|
|
},
|
|
|
|
{
|
2016-02-28 19:43:11 +00:00
|
|
|
'name': 'Fedora-Jam_KDE-Live',
|
2016-03-12 02:08:12 +00:00
|
|
|
'kickstart': 'fedora-live-jam_kde.ks',
|
2019-07-12 16:24:15 +00:00
|
|
|
'arches': ['x86_64'],
|
2016-08-11 08:04:05 +00:00
|
|
|
'failable': ['*'],
|
2017-05-10 06:54:09 +00:00
|
|
|
'repo': 'Everything',
|
2016-03-12 02:06:56 +00:00
|
|
|
'install_tree_from': 'Everything',
|
|
|
|
'subvariant': 'Jam_KDE'
|
2016-02-10 12:26:45 +00:00
|
|
|
},
|
|
|
|
{
|
2016-02-28 19:43:11 +00:00
|
|
|
'name': 'Fedora-Robotics-Live',
|
2016-03-12 02:08:12 +00:00
|
|
|
'kickstart': 'fedora-live-robotics.ks',
|
2019-07-12 16:24:15 +00:00
|
|
|
'arches': ['x86_64'],
|
2016-08-11 08:04:05 +00:00
|
|
|
'failable': ['*'],
|
2017-05-10 06:54:09 +00:00
|
|
|
'repo': 'Everything',
|
2016-03-12 02:06:56 +00:00
|
|
|
'install_tree_from': 'Everything',
|
|
|
|
'subvariant': 'Robotics'
|
2017-02-27 20:56:00 +00:00
|
|
|
},
|
|
|
|
{
|
|
|
|
'name': 'Fedora-Python-Classroom-Live',
|
|
|
|
'kickstart': 'fedora-live-python-classroom.ks',
|
2019-07-12 16:24:15 +00:00
|
|
|
'arches': ['x86_64'],
|
2017-02-27 20:56:00 +00:00
|
|
|
'failable': ['*'],
|
2017-05-10 06:54:09 +00:00
|
|
|
'repo': 'Everything',
|
2017-02-27 20:56:00 +00:00
|
|
|
'install_tree_from': 'Everything',
|
|
|
|
'subvariant': 'Python_Classroom'
|
2016-02-10 12:26:45 +00:00
|
|
|
}
|
|
|
|
],
|
|
|
|
}
|
|
|
|
|
2016-01-12 19:29:29 +00:00
|
|
|
failable_deliverables = [
|
|
|
|
('^.*$', {
|
2017-05-24 01:30:30 +00:00
|
|
|
# Buildinstall is non blocking
|
2016-01-12 19:29:29 +00:00
|
|
|
'src': ['buildinstall'],
|
2018-08-10 12:02:54 +00:00
|
|
|
# Nothing on i386, ppc64le blocks the compose
|
2016-08-11 08:04:05 +00:00
|
|
|
'i386': ['buildinstall', 'iso'],
|
2017-05-24 01:30:30 +00:00
|
|
|
'ppc64le': ['buildinstall', 'iso'],
|
2017-08-14 14:13:47 +00:00
|
|
|
's390x': ['buildinstall', 'iso'],
|
2016-01-12 19:29:29 +00:00
|
|
|
})
|
|
|
|
]
|
2015-05-29 20:04:00 +00:00
|
|
|
|
2018-08-27 16:29:37 +00:00
|
|
|
ostree = {
|
|
|
|
"^Silverblue$": {
|
|
|
|
"version": "!OSTREE_VERSION_FROM_LABEL_DATE_TYPE_RESPIN",
|
2018-09-12 21:12:07 +00:00
|
|
|
"force_new_commit": True,
|
2023-07-19 16:25:18 +00:00
|
|
|
"unified_core": True,
|
2018-11-13 20:23:15 +00:00
|
|
|
"treefile": "fedora-silverblue.yaml",
|
2018-08-27 16:29:37 +00:00
|
|
|
"config_url": "https://pagure.io/workstation-ostree-config.git",
|
2023-08-08 23:45:39 +00:00
|
|
|
"config_branch": "f39",
|
2018-10-14 18:18:30 +00:00
|
|
|
"repo": "Everything",
|
2018-08-27 16:29:37 +00:00
|
|
|
"tag_ref": False,
|
2019-02-04 12:27:30 +00:00
|
|
|
"ostree_repo": "/mnt/koji/compose/ostree/repo/",
|
2023-08-08 23:27:02 +00:00
|
|
|
"ostree_ref": "fedora/39/${basearch}/silverblue",
|
2023-07-19 16:25:18 +00:00
|
|
|
"runroot_packages": ["selinux-policy-targeted"],
|
2019-05-01 16:22:08 +00:00
|
|
|
"arches": ["x86_64", "ppc64le", "aarch64"],
|
2018-08-27 16:29:37 +00:00
|
|
|
"failable": ['*'],
|
2021-02-22 19:56:15 +00:00
|
|
|
},
|
|
|
|
"^Kinoite$": {
|
|
|
|
"version": "!OSTREE_VERSION_FROM_LABEL_DATE_TYPE_RESPIN",
|
|
|
|
"force_new_commit": True,
|
2023-07-19 16:25:18 +00:00
|
|
|
"unified_core": True,
|
2021-02-22 19:56:15 +00:00
|
|
|
"treefile": "fedora-kinoite.yaml",
|
|
|
|
"config_url": "https://pagure.io/workstation-ostree-config.git",
|
2023-08-08 23:45:39 +00:00
|
|
|
"config_branch": "f39",
|
2021-02-22 19:56:15 +00:00
|
|
|
"repo": "Everything",
|
|
|
|
"tag_ref": False,
|
|
|
|
"ostree_repo": "/mnt/koji/compose/ostree/repo/",
|
2023-08-08 23:27:02 +00:00
|
|
|
"ostree_ref": "fedora/39/${basearch}/kinoite",
|
2023-07-19 16:25:18 +00:00
|
|
|
"runroot_packages": ["selinux-policy-targeted"],
|
2021-02-22 19:56:15 +00:00
|
|
|
"arches": ["x86_64", "ppc64le", "aarch64"],
|
|
|
|
"failable": ['*'],
|
2023-01-25 04:26:13 +00:00
|
|
|
},
|
|
|
|
"^Sericea$": {
|
|
|
|
"version": "!OSTREE_VERSION_FROM_LABEL_DATE_TYPE_RESPIN",
|
|
|
|
"force_new_commit": True,
|
2023-07-19 16:25:18 +00:00
|
|
|
"unified_core": True,
|
2023-01-25 04:26:13 +00:00
|
|
|
"treefile": "fedora-sericea.yaml",
|
|
|
|
"config_url": "https://pagure.io/workstation-ostree-config.git",
|
2023-08-08 23:45:39 +00:00
|
|
|
"config_branch": "f39",
|
2023-01-25 04:26:13 +00:00
|
|
|
"repo": "Everything",
|
|
|
|
"tag_ref": False,
|
|
|
|
"ostree_repo": "/mnt/koji/compose/ostree/repo/",
|
2023-08-08 23:27:02 +00:00
|
|
|
"ostree_ref": "fedora/39/${basearch}/sericea",
|
2023-07-19 16:25:18 +00:00
|
|
|
"runroot_packages": ["selinux-policy-targeted"],
|
2023-05-25 01:22:12 +00:00
|
|
|
"arches": ["x86_64", "ppc64le", "aarch64"],
|
2023-01-25 04:26:13 +00:00
|
|
|
"failable": ['*'],
|
2023-04-29 23:11:42 +00:00
|
|
|
},
|
|
|
|
"^Onyx$": {
|
|
|
|
"version": "!OSTREE_VERSION_FROM_LABEL_DATE_TYPE_RESPIN",
|
|
|
|
"force_new_commit": True,
|
2023-07-19 16:25:18 +00:00
|
|
|
"unified_core": True,
|
2023-04-29 23:11:42 +00:00
|
|
|
"treefile": "fedora-onyx.yaml",
|
|
|
|
"config_url": "https://pagure.io/workstation-ostree-config.git",
|
2023-08-08 23:45:39 +00:00
|
|
|
"config_branch": "f39",
|
2023-04-29 23:11:42 +00:00
|
|
|
"repo": "Everything",
|
|
|
|
"tag_ref": False,
|
|
|
|
"ostree_repo": "/mnt/koji/compose/ostree/repo/",
|
2023-08-08 23:27:02 +00:00
|
|
|
"ostree_ref": "fedora/39/${basearch}/onyx",
|
2023-07-19 16:25:18 +00:00
|
|
|
"runroot_packages": ["selinux-policy-targeted"],
|
2023-04-29 23:11:42 +00:00
|
|
|
"arches": ["x86_64"],
|
|
|
|
"failable": ['*'],
|
2018-08-27 16:29:37 +00:00
|
|
|
}
|
|
|
|
}
|
2016-03-31 22:30:41 +00:00
|
|
|
|
2016-04-11 19:10:27 +00:00
|
|
|
ostree_installer = [
|
2018-08-10 13:10:15 +00:00
|
|
|
("^Silverblue$", {
|
2016-05-27 16:48:49 +00:00
|
|
|
"x86_64": {
|
2017-05-10 06:54:09 +00:00
|
|
|
"repo": "Everything",
|
2016-05-27 16:48:49 +00:00
|
|
|
"release": None,
|
2017-05-18 19:41:36 +00:00
|
|
|
"rootfs_size": "8",
|
2017-06-19 16:36:41 +00:00
|
|
|
"add_template": ["ostree-based-installer/lorax-configure-repo.tmpl",
|
2019-10-09 15:07:29 +00:00
|
|
|
"ostree-based-installer/lorax-embed-repo.tmpl",
|
|
|
|
"ostree-based-installer/lorax-embed-flatpaks.tmpl"],
|
2016-05-27 16:48:49 +00:00
|
|
|
"add_template_var": [
|
2019-02-04 12:27:30 +00:00
|
|
|
"ostree_install_repo=https://kojipkgs.fedoraproject.org/compose/ostree/repo/",
|
|
|
|
"ostree_update_repo=https://ostree.fedoraproject.org",
|
2019-04-03 18:05:00 +00:00
|
|
|
"ostree_osname=fedora",
|
2023-02-10 01:02:30 +00:00
|
|
|
"ostree_oskey=fedora-39-primary",
|
2019-02-04 12:27:30 +00:00
|
|
|
"ostree_contenturl=mirrorlist=https://ostree.fedoraproject.org/mirrorlist",
|
2023-08-08 23:27:02 +00:00
|
|
|
"ostree_install_ref=fedora/39/x86_64/silverblue",
|
|
|
|
"ostree_update_ref=fedora/39/x86_64/silverblue",
|
2019-10-02 15:10:13 +00:00
|
|
|
"flatpak_remote_name=fedora",
|
2019-10-16 19:07:18 +00:00
|
|
|
# using registry-no-cdn avoids redirects to the CDN;
|
|
|
|
# needed because of network restrictions on koji runroot
|
|
|
|
"flatpak_remote_url=oci+https://registry-no-cdn.fedoraproject.org",
|
2023-04-19 15:57:53 +00:00
|
|
|
# keeping them on the stable release until the flatpak sig confirms the next update
|
2023-03-29 06:45:55 +00:00
|
|
|
"flatpak_remote_refs=runtime/org.fedoraproject.Platform/x86_64/f38 app/org.gnome.baobab/x86_64/stable app/org.gnome.Calculator/x86_64/stable app/org.gnome.Calendar/x86_64/stable app/org.gnome.Characters/x86_64/stable app/org.gnome.Cheese/x86_64/stable app/org.gnome.clocks/x86_64/stable app/org.gnome.Connections/x86_64/stable app/org.gnome.Contacts/x86_64/stable app/org.gnome.eog/x86_64/stable app/org.gnome.Evince/x86_64/stable app/org.gnome.Extensions/x86_64/stable app/org.gnome.font-viewer/x86_64/stable app/org.gnome.TextEditor/x86_64/stable app/org.gnome.Logs/x86_64/stable app/org.gnome.Maps/x86_64/stable app/org.fedoraproject.MediaWriter/x86_64/stable app/org.gnome.NautilusPreviewer/x86_64/stable app/org.gnome.Weather/x86_64/stable",
|
2017-03-28 22:11:19 +00:00
|
|
|
],
|
2016-05-27 16:50:36 +00:00
|
|
|
'template_repo': 'https://pagure.io/fedora-lorax-templates.git',
|
2021-01-06 17:18:58 +00:00
|
|
|
'template_branch': 'main',
|
2020-07-15 15:16:53 +00:00
|
|
|
# dbus-run-session is needed for Flatpak to talk to flatpak-oci-authenticator
|
|
|
|
'extra_runroot_pkgs': ['flatpak', 'dbus-daemon'],
|
2016-08-11 08:04:05 +00:00
|
|
|
'failable': ['*'],
|
2019-05-01 14:41:52 +00:00
|
|
|
},
|
|
|
|
"ppc64le": {
|
|
|
|
"repo": "Everything",
|
|
|
|
"release": None,
|
|
|
|
"rootfs_size": "8",
|
|
|
|
"add_template": ["ostree-based-installer/lorax-configure-repo.tmpl",
|
2020-03-17 15:22:48 +00:00
|
|
|
"ostree-based-installer/lorax-embed-repo.tmpl"],
|
2019-05-01 14:41:52 +00:00
|
|
|
"add_template_var": [
|
|
|
|
"ostree_install_repo=https://kojipkgs.fedoraproject.org/compose/ostree/repo/",
|
|
|
|
"ostree_update_repo=https://ostree.fedoraproject.org",
|
|
|
|
"ostree_osname=fedora",
|
2023-02-10 01:02:30 +00:00
|
|
|
"ostree_oskey=fedora-39-primary",
|
2019-05-01 14:41:52 +00:00
|
|
|
"ostree_contenturl=mirrorlist=https://ostree.fedoraproject.org/mirrorlist",
|
2023-08-08 23:27:02 +00:00
|
|
|
"ostree_install_ref=fedora/39/ppc64le/silverblue",
|
|
|
|
"ostree_update_ref=fedora/39/ppc64le/silverblue",
|
2019-10-02 15:10:13 +00:00
|
|
|
"flatpak_remote_name=fedora",
|
2019-10-16 19:07:18 +00:00
|
|
|
# using registry-no-cdn avoids redirects to the CDN;
|
|
|
|
# needed because of network restrictions on koji runroot
|
|
|
|
"flatpak_remote_url=oci+https://registry-no-cdn.fedoraproject.org",
|
2019-10-02 15:10:13 +00:00
|
|
|
"flatpak_remote_refs=",
|
2019-05-01 14:41:52 +00:00
|
|
|
],
|
|
|
|
'template_repo': 'https://pagure.io/fedora-lorax-templates.git',
|
2021-01-06 17:18:58 +00:00
|
|
|
'template_branch': 'main',
|
2020-07-15 15:16:53 +00:00
|
|
|
# dbus-run-session is needed for Flatpak to talk to flatpak-oci-authenticator
|
|
|
|
'extra_runroot_pkgs': ['flatpak', 'dbus-daemon'],
|
2019-05-01 14:41:52 +00:00
|
|
|
'failable': ['*'],
|
2019-05-01 16:22:08 +00:00
|
|
|
},
|
|
|
|
"aarch64": {
|
|
|
|
"repo": "Everything",
|
|
|
|
"release": None,
|
|
|
|
"rootfs_size": "8",
|
|
|
|
"add_template": ["ostree-based-installer/lorax-configure-repo.tmpl",
|
2022-12-08 16:20:59 +00:00
|
|
|
"ostree-based-installer/lorax-embed-repo.tmpl",
|
|
|
|
"ostree-based-installer/lorax-embed-flatpaks.tmpl"],
|
2019-05-01 16:22:08 +00:00
|
|
|
"add_template_var": [
|
|
|
|
"ostree_install_repo=https://kojipkgs.fedoraproject.org/compose/ostree/repo/",
|
|
|
|
"ostree_update_repo=https://ostree.fedoraproject.org",
|
|
|
|
"ostree_osname=fedora",
|
2023-02-10 01:02:30 +00:00
|
|
|
"ostree_oskey=fedora-39-primary",
|
2019-05-01 16:22:08 +00:00
|
|
|
"ostree_contenturl=mirrorlist=https://ostree.fedoraproject.org/mirrorlist",
|
2023-08-08 23:27:02 +00:00
|
|
|
"ostree_install_ref=fedora/39/aarch64/silverblue",
|
|
|
|
"ostree_update_ref=fedora/39/aarch64/silverblue",
|
2019-10-02 15:10:13 +00:00
|
|
|
"flatpak_remote_name=fedora",
|
2019-10-16 19:07:18 +00:00
|
|
|
# using registry-no-cdn avoids redirects to the CDN;
|
|
|
|
# needed because of network restrictions on koji runroot
|
|
|
|
"flatpak_remote_url=oci+https://registry-no-cdn.fedoraproject.org",
|
2023-04-19 15:57:53 +00:00
|
|
|
# keeping them on the stable release until the flatpak sig confirms the next update
|
2023-03-29 06:45:55 +00:00
|
|
|
"flatpak_remote_refs=runtime/org.fedoraproject.Platform/aarch64/f38 app/org.gnome.baobab/aarch64/stable app/org.gnome.Calculator/aarch64/stable app/org.gnome.Calendar/aarch64/stable app/org.gnome.Characters/aarch64/stable app/org.gnome.Cheese/aarch64/stable app/org.gnome.clocks/aarch64/stable app/org.gnome.Connections/aarch64/stable app/org.gnome.Contacts/aarch64/stable app/org.gnome.eog/aarch64/stable app/org.gnome.Evince/aarch64/stable app/org.gnome.Extensions/aarch64/stable app/org.gnome.font-viewer/aarch64/stable app/org.gnome.TextEditor/aarch64/stable app/org.gnome.Logs/aarch64/stable app/org.gnome.Maps/aarch64/stable app/org.fedoraproject.MediaWriter/aarch64/stable app/org.gnome.NautilusPreviewer/aarch64/stable app/org.gnome.Weather/aarch64/stable",
|
2019-05-01 16:22:08 +00:00
|
|
|
],
|
|
|
|
'template_repo': 'https://pagure.io/fedora-lorax-templates.git',
|
2021-01-06 17:18:58 +00:00
|
|
|
'template_branch': 'main',
|
2020-07-15 15:16:53 +00:00
|
|
|
# dbus-run-session is needed for Flatpak to talk to flatpak-oci-authenticator
|
|
|
|
'extra_runroot_pkgs': ['flatpak', 'dbus-daemon'],
|
2019-05-01 16:22:08 +00:00
|
|
|
'failable': ['*'],
|
2016-05-27 16:48:49 +00:00
|
|
|
}
|
2021-02-22 19:56:15 +00:00
|
|
|
}),
|
|
|
|
("^Kinoite$", {
|
|
|
|
"x86_64": {
|
|
|
|
"repo": "Everything",
|
|
|
|
"release": None,
|
|
|
|
"rootfs_size": "8",
|
|
|
|
"add_template": ["ostree-based-installer/lorax-configure-repo.tmpl",
|
2022-12-08 15:20:58 +00:00
|
|
|
"ostree-based-installer/lorax-embed-repo.tmpl"],
|
2021-02-22 19:56:15 +00:00
|
|
|
"add_template_var": [
|
|
|
|
"ostree_install_repo=https://kojipkgs.fedoraproject.org/compose/ostree/repo/",
|
|
|
|
"ostree_update_repo=https://ostree.fedoraproject.org",
|
|
|
|
"ostree_osname=fedora",
|
2023-02-10 01:02:30 +00:00
|
|
|
"ostree_oskey=fedora-39-primary",
|
2021-02-22 19:56:15 +00:00
|
|
|
"ostree_contenturl=mirrorlist=https://ostree.fedoraproject.org/mirrorlist",
|
2023-08-08 23:27:02 +00:00
|
|
|
"ostree_install_ref=fedora/39/x86_64/kinoite",
|
|
|
|
"ostree_update_ref=fedora/39/x86_64/kinoite",
|
2021-02-22 19:56:15 +00:00
|
|
|
"flatpak_remote_name=fedora",
|
|
|
|
# using registry-no-cdn avoids redirects to the CDN;
|
|
|
|
# needed because of network restrictions on koji runroot
|
|
|
|
"flatpak_remote_url=oci+https://registry-no-cdn.fedoraproject.org",
|
2022-12-08 15:20:58 +00:00
|
|
|
"flatpak_remote_refs=",
|
2021-02-22 19:56:15 +00:00
|
|
|
],
|
|
|
|
'template_repo': 'https://pagure.io/fedora-lorax-templates.git',
|
|
|
|
'template_branch': 'main',
|
|
|
|
# dbus-run-session is needed for Flatpak to talk to flatpak-oci-authenticator
|
|
|
|
'extra_runroot_pkgs': ['flatpak', 'dbus-daemon'],
|
|
|
|
'failable': ['*'],
|
|
|
|
},
|
|
|
|
"ppc64le": {
|
|
|
|
"repo": "Everything",
|
|
|
|
"release": None,
|
|
|
|
"rootfs_size": "8",
|
|
|
|
"add_template": ["ostree-based-installer/lorax-configure-repo.tmpl",
|
|
|
|
"ostree-based-installer/lorax-embed-repo.tmpl"],
|
|
|
|
"add_template_var": [
|
|
|
|
"ostree_install_repo=https://kojipkgs.fedoraproject.org/compose/ostree/repo/",
|
|
|
|
"ostree_update_repo=https://ostree.fedoraproject.org",
|
|
|
|
"ostree_osname=fedora",
|
2023-02-10 01:02:30 +00:00
|
|
|
"ostree_oskey=fedora-39-primary",
|
2021-02-22 19:56:15 +00:00
|
|
|
"ostree_contenturl=mirrorlist=https://ostree.fedoraproject.org/mirrorlist",
|
2023-08-08 23:27:02 +00:00
|
|
|
"ostree_install_ref=fedora/39/ppc64le/kinoite",
|
|
|
|
"ostree_update_ref=fedora/39/ppc64le/kinoite",
|
2021-02-22 19:56:15 +00:00
|
|
|
"flatpak_remote_name=fedora",
|
|
|
|
# using registry-no-cdn avoids redirects to the CDN;
|
|
|
|
# needed because of network restrictions on koji runroot
|
|
|
|
"flatpak_remote_url=oci+https://registry-no-cdn.fedoraproject.org",
|
|
|
|
"flatpak_remote_refs=",
|
|
|
|
],
|
|
|
|
'template_repo': 'https://pagure.io/fedora-lorax-templates.git',
|
|
|
|
'template_branch': 'main',
|
|
|
|
# dbus-run-session is needed for Flatpak to talk to flatpak-oci-authenticator
|
|
|
|
'extra_runroot_pkgs': ['flatpak', 'dbus-daemon'],
|
|
|
|
'failable': ['*'],
|
|
|
|
},
|
|
|
|
"aarch64": {
|
|
|
|
"repo": "Everything",
|
|
|
|
"release": None,
|
|
|
|
"rootfs_size": "8",
|
|
|
|
"add_template": ["ostree-based-installer/lorax-configure-repo.tmpl",
|
|
|
|
"ostree-based-installer/lorax-embed-repo.tmpl"],
|
|
|
|
"add_template_var": [
|
|
|
|
"ostree_install_repo=https://kojipkgs.fedoraproject.org/compose/ostree/repo/",
|
|
|
|
"ostree_update_repo=https://ostree.fedoraproject.org",
|
|
|
|
"ostree_osname=fedora",
|
2023-02-10 01:02:30 +00:00
|
|
|
"ostree_oskey=fedora-39-primary",
|
2021-02-22 19:56:15 +00:00
|
|
|
"ostree_contenturl=mirrorlist=https://ostree.fedoraproject.org/mirrorlist",
|
2023-08-08 23:27:02 +00:00
|
|
|
"ostree_install_ref=fedora/39/aarch64/kinoite",
|
|
|
|
"ostree_update_ref=fedora/39/aarch64/kinoite",
|
2021-02-22 19:56:15 +00:00
|
|
|
"flatpak_remote_name=fedora",
|
|
|
|
# using registry-no-cdn avoids redirects to the CDN;
|
|
|
|
# needed because of network restrictions on koji runroot
|
|
|
|
"flatpak_remote_url=oci+https://registry-no-cdn.fedoraproject.org",
|
2022-12-08 15:20:58 +00:00
|
|
|
"flatpak_remote_refs=",
|
2021-02-22 19:56:15 +00:00
|
|
|
],
|
|
|
|
'template_repo': 'https://pagure.io/fedora-lorax-templates.git',
|
|
|
|
'template_branch': 'main',
|
|
|
|
# dbus-run-session is needed for Flatpak to talk to flatpak-oci-authenticator
|
|
|
|
'extra_runroot_pkgs': ['flatpak', 'dbus-daemon'],
|
|
|
|
'failable': ['*'],
|
|
|
|
}
|
2023-01-25 04:26:13 +00:00
|
|
|
}),
|
|
|
|
("^Sericea$", {
|
|
|
|
"x86_64": {
|
|
|
|
"repo": "Everything",
|
|
|
|
"release": None,
|
|
|
|
"rootfs_size": "8",
|
|
|
|
"add_template": ["ostree-based-installer/lorax-configure-repo.tmpl",
|
|
|
|
"ostree-based-installer/lorax-embed-repo.tmpl"],
|
|
|
|
"add_template_var": [
|
|
|
|
"ostree_install_repo=https://kojipkgs.fedoraproject.org/compose/ostree/repo/",
|
|
|
|
"ostree_update_repo=https://ostree.fedoraproject.org",
|
|
|
|
"ostree_osname=fedora",
|
2023-02-10 01:02:30 +00:00
|
|
|
"ostree_oskey=fedora-39-primary",
|
2023-01-25 04:26:13 +00:00
|
|
|
"ostree_contenturl=mirrorlist=https://ostree.fedoraproject.org/mirrorlist",
|
2023-08-08 23:27:02 +00:00
|
|
|
"ostree_install_ref=fedora/39/x86_64/sericea",
|
|
|
|
"ostree_update_ref=fedora/39/x86_64/sericea",
|
2023-01-25 04:26:13 +00:00
|
|
|
"flatpak_remote_name=fedora",
|
|
|
|
# using registry-no-cdn avoids redirects to the CDN;
|
|
|
|
# needed because of network restrictions on koji runroot
|
|
|
|
"flatpak_remote_url=oci+https://registry-no-cdn.fedoraproject.org",
|
|
|
|
"flatpak_remote_refs=",
|
|
|
|
],
|
|
|
|
'template_repo': 'https://pagure.io/fedora-lorax-templates.git',
|
|
|
|
'template_branch': 'main',
|
|
|
|
# dbus-run-session is needed for Flatpak to talk to flatpak-oci-authenticator
|
|
|
|
'extra_runroot_pkgs': ['flatpak', 'dbus-daemon'],
|
|
|
|
'failable': ['*'],
|
|
|
|
}
|
2023-04-29 23:11:42 +00:00
|
|
|
}),
|
|
|
|
("^Onyx$", {
|
|
|
|
"x86_64": {
|
|
|
|
"repo": "Everything",
|
|
|
|
"release": None,
|
|
|
|
"rootfs_size": "8",
|
|
|
|
"add_template": ["ostree-based-installer/lorax-configure-repo.tmpl",
|
|
|
|
"ostree-based-installer/lorax-embed-repo.tmpl"],
|
|
|
|
"add_template_var": [
|
|
|
|
"ostree_install_repo=https://kojipkgs.fedoraproject.org/compose/ostree/repo/",
|
|
|
|
"ostree_update_repo=https://ostree.fedoraproject.org",
|
|
|
|
"ostree_osname=fedora",
|
|
|
|
"ostree_oskey=fedora-39-primary",
|
|
|
|
"ostree_contenturl=mirrorlist=https://ostree.fedoraproject.org/mirrorlist",
|
2023-08-08 23:27:02 +00:00
|
|
|
"ostree_install_ref=fedora/39/x86_64/onyx",
|
|
|
|
"ostree_update_ref=fedora/39/x86_64/onyx",
|
2023-04-29 23:11:42 +00:00
|
|
|
"flatpak_remote_name=fedora",
|
|
|
|
# using registry-no-cdn avoids redirects to the CDN;
|
|
|
|
# needed because of network restrictions on koji runroot
|
|
|
|
"flatpak_remote_url=oci+https://registry-no-cdn.fedoraproject.org",
|
|
|
|
"flatpak_remote_refs=",
|
|
|
|
],
|
|
|
|
'template_repo': 'https://pagure.io/fedora-lorax-templates.git',
|
|
|
|
'template_branch': 'main',
|
|
|
|
# dbus-run-session is needed for Flatpak to talk to flatpak-oci-authenticator
|
|
|
|
'extra_runroot_pkgs': ['flatpak', 'dbus-daemon'],
|
|
|
|
'failable': ['*'],
|
|
|
|
}
|
2016-04-11 19:10:27 +00:00
|
|
|
})
|
|
|
|
]
|
2016-03-31 22:55:32 +00:00
|
|
|
|
2016-12-14 13:18:03 +00:00
|
|
|
koji_profile = 'compose_koji'
|