-
Notifications
You must be signed in to change notification settings - Fork 148
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
91 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,91 @@ | ||
config_opts['root'] = 'centos-stream-10-x86_64' | ||
config_opts['target_arch'] = 'x86_64' | ||
config_opts['legal_host_arches'] = ('x86_64',) | ||
|
||
config_opts['chroot_setup_cmd'] = 'install bash bzip2 centos-stream-release coreutils cpio diffutils findutils gawk glibc-minimal-langpack grep gzip info patch redhat-rpm-config rpm-build sed shadow-utils tar unzip util-linux which xz' | ||
config_opts['dist'] = 'el10' # only useful for --resultdir variable subst | ||
config_opts['releasever'] = '10' | ||
config_opts['releasever_major'] = '10' | ||
config_opts['package_manager'] = 'dnf' | ||
config_opts['extra_chroot_dirs'] = [ '/run/lock', ] | ||
config_opts['description'] = 'CentOS Stream 10' | ||
|
||
config_opts['bootstrap_image'] = 'quay.io/centos/centos:stream10' | ||
config_opts['bootstrap_image_ready'] = True | ||
|
||
#config_opts['module_setup_commands'] = [ | ||
# ('enable', 'foreman-devel:el10'), | ||
#] | ||
|
||
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 | ||
best=1 | ||
install_weak_deps=0 | ||
protected_packages= | ||
skip_if_unavailable=False | ||
module_platform_id=platform:el10 | ||
[baseos] | ||
name=CentOS Stream $releasever - BaseOS | ||
#baseurl=http://mirror.stream.centos.org/$releasever-stream/BaseOS/$basearch/os/ | ||
metalink=https://mirrors.centos.org/metalink?repo=centos-baseos-$releasever-stream&arch=$basearch&protocol=https,http | ||
gpgkey=file:///usr/share/distribution-gpg-keys/centos/RPM-GPG-KEY-CentOS-Official-SHA256 | ||
gpgcheck=1 | ||
countme=1 | ||
enabled=1 | ||
[appstream] | ||
name=CentOS Stream $releasever - AppStream | ||
#baseurl=http://mirror.stream.centos.org/$releasever-stream/AppStream/$basearch/os/ | ||
metalink=https://mirrors.centos.org/metalink?repo=centos-appstream-$releasever-stream&arch=$basearch&protocol=https,http | ||
gpgkey=file:///usr/share/distribution-gpg-keys/centos/RPM-GPG-KEY-CentOS-Official-SHA256 | ||
gpgcheck=1 | ||
countme=1 | ||
enabled=1 | ||
[crb] | ||
name=CentOS Stream $releasever - CRB | ||
#baseurl=http://mirror.stream.centos.org/$releasever-stream/CRB/$basearch/os/ | ||
metalink=https://mirrors.centos.org/metalink?repo=centos-crb-$releasever-stream&arch=$basearch&protocol=https,http | ||
gpgkey=file:///usr/share/distribution-gpg-keys/centos/RPM-GPG-KEY-CentOS-Official-SHA256 | ||
gpgcheck=1 | ||
countme=1 | ||
enabled=1 | ||
[extras-common] | ||
name=CentOS Stream $releasever - Extras packages | ||
#baseurl=http://mirror.stream.centos.org/SIGs/$releasever-stream/extras/$basearch/extras-common/ | ||
metalink=https://mirrors.centos.org/metalink?repo=centos-extras-sig-extras-common-$releasever-stream&arch=$basearch&protocol=https,http | ||
gpgkey=file:///usr/share/distribution-gpg-keys/centos/RPM-GPG-KEY-CentOS-SIG-Extras-SHA512 | ||
gpgcheck=1 | ||
enabled=1 | ||
skip_if_unavailable=False | ||
#[foreman] | ||
#name=foreman | ||
#baseurl=https://yum.theforeman.org/nightly/el10/x86_64/ | ||
# | ||
#[foreman-plugins] | ||
#name=foreman-plugins | ||
#baseurl=https://yum.theforeman.org/plugins/nightly/el10/x86_64/ | ||
# | ||
#[katello] | ||
#name=katello | ||
#baseurl=https://yum.theforeman.org/katello/nightly/katello/el10/x86_64/ | ||
# | ||
#[puppet-8] | ||
#name=puppet-8 | ||
#baseurl=https://yum.puppetlabs.com/puppet8/el/10/x86_64/ | ||
""" |