43 lines
1.2 KiB
INI
43 lines
1.2 KiB
INI
config_opts['root'] = 'rocky-9.3-i686'
|
|
config_opts['description'] = 'Rocky Linux 9.3'
|
|
config_opts['target_arch'] = 'i686'
|
|
config_opts['legal_host_arches'] = ('i686', 'x86_64',)
|
|
config_opts['chroot_setup_cmd'] = 'install bash bzip2 coreutils cpio diffutils redhat-release findutils gawk glibc-minimal-langpack grep gzip info patch redhat-rpm-config rpm-build sed tar unzip util-linux which xz'
|
|
config_opts['dist'] = 'el9' # only useful for --resultdir variable subst
|
|
config_opts['releasever'] = '9'
|
|
config_opts['package_manager'] = 'dnf'
|
|
config_opts['extra_chroot_dirs'] = [ '/run/lock', ]
|
|
config_opts['use_bootstrap_image'] = False
|
|
|
|
|
|
config_opts['dnf.conf'] = """
|
|
[main]
|
|
keepcache=1
|
|
debuglevel=2
|
|
reposdir=/dev/null
|
|
logfile=/var/log/yum.log
|
|
retries=20
|
|
obsoletes=1
|
|
gpgcheck=0
|
|
assumeyes=1
|
|
syslog_ident=mock
|
|
syslog_device=
|
|
metadata_expire=0
|
|
mdpolicy=group:primary
|
|
best=1
|
|
install_weak_deps=0
|
|
protected_packages=
|
|
module_platform_id=platform:el9
|
|
user_agent={{ user_agent }}
|
|
|
|
|
|
[all]
|
|
name=Rocky Linux $releasever - All
|
|
baseurl=https://yumrepofs.build.resf.org/v1/projects/6202c09e-6252-4d3a-bcd3-9c7751682970/repo/all/$basearch/
|
|
gpgcheck=1
|
|
enabled=1
|
|
metadata_expire=6h
|
|
gpgkey=file:///usr/share/distribution-gpg-keys/rocky/RPM-GPG-KEY-Rocky-9
|
|
|
|
"""
|