101 lines
3.2 KiB
Smarty
101 lines
3.2 KiB
Smarty
# This list is taken from 'epel-7-x86_64' @buildsys-build group, minus the
|
|
# 'epel-*' specific stuff.
|
|
config_opts['chroot_setup_cmd'] = 'install bash bzip2 coreutils cpio diffutils findutils gawk gcc gcc-c++ grep gzip info make patch redhat-rpm-config rpm-build sed shadow-utils tar unzip util-linux which xz'
|
|
|
|
config_opts['dist'] = 'el7' # only useful for --resultdir variable subst
|
|
config_opts['releasever'] = '7'
|
|
config_opts['bootstrap_image'] = 'quay.io/centos/centos:7'
|
|
config_opts['package_manager'] = 'yum'
|
|
|
|
config_opts['yum_install_command'] += "{% if target_arch in ['x86_64', 'ppc64le', 'aarch64'] %} --disablerepo=centos-sclo*{% endif %}"
|
|
|
|
config_opts['yum.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
|
|
protected_packages=
|
|
user_agent={{ user_agent }}
|
|
|
|
{% set centos_7_gpg_keys = 'file:///usr/share/distribution-gpg-keys/centos/RPM-GPG-KEY-CentOS-7' %}
|
|
{% if target_arch in ['ppc64le', 'ppc64'] %}
|
|
{% set centos_7_gpg_keys = centos_7_gpg_keys + ',file:///usr/share/distribution-gpg-keys/centos/RPM-GPG-KEY-CentOS-SIG-AltArch-7-' + target_arch %}
|
|
{% elif target_arch in ['aarch64'] %}
|
|
{% set centos_7_gpg_keys = centos_7_gpg_keys + ',file:///usr/share/distribution-gpg-keys/centos/RPM-GPG-KEY-CentOS-7-aarch64' %}
|
|
{% endif %}
|
|
|
|
# repos
|
|
[base]
|
|
name=CentOS-$releasever - Base
|
|
mirrorlist=http://mirrorlist.centos.org/?release=7&arch=$basearch&repo=os
|
|
failovermethod=priority
|
|
gpgkey={{ centos_7_gpg_keys }}
|
|
gpgcheck=1
|
|
skip_if_unavailable=False
|
|
|
|
[updates]
|
|
name=CentOS-$releasever - Updates
|
|
enabled=1
|
|
mirrorlist=http://mirrorlist.centos.org/?release=7&arch=$basearch&repo=updates
|
|
failovermethod=priority
|
|
gpgkey={{ centos_7_gpg_keys }}
|
|
gpgcheck=1
|
|
skip_if_unavailable=False
|
|
|
|
[extras]
|
|
name=CentOS-$releasever - Extras
|
|
mirrorlist=http://mirrorlist.centos.org/?release=7&arch=$basearch&repo=extras
|
|
#baseurl=http://mirror.centos.org/centos/$releasever/extras/$basearch/os/
|
|
failovermethod=priority
|
|
gpgkey={{ centos_7_gpg_keys }}
|
|
gpgcheck=1
|
|
skip_if_unavailable=False
|
|
|
|
[fastrack]
|
|
name=CentOS-$releasever - fasttrack
|
|
mirrorlist=http://mirrorlist.centos.org/?release=$releasever&arch=$basearch&repo=fasttrack
|
|
failovermethod=priority
|
|
gpgkey={{ centos_7_gpg_keys }}
|
|
gpgcheck=1
|
|
skip_if_unavailable=False
|
|
enabled=0
|
|
|
|
[centosplus]
|
|
name=CentOS-$releasever - Plus
|
|
mirrorlist=http://mirrorlist.centos.org/?release=$releasever&arch=$basearch&repo=centosplus
|
|
#baseurl=http://mirror.centos.org/centos/$releasever/centosplus/$basearch/
|
|
gpgkey={{ centos_7_gpg_keys }}
|
|
gpgcheck=1
|
|
enabled=0
|
|
|
|
{% if target_arch == 'x86_64' %}
|
|
[centos-sclo-sclo]
|
|
name=CentOS-$releasever - SCLo sclo
|
|
baseurl=http://mirror.centos.org/centos/7/sclo/$basearch/sclo/
|
|
gpgkey=file:///usr/share/distribution-gpg-keys/centos/RPM-GPG-KEY-CentOS-SIG-SCLo
|
|
gpgcheck=1
|
|
includepkgs=devtoolset*
|
|
skip_if_unavailable=False
|
|
{% endif %}
|
|
|
|
{% if target_arch in ['x86_64', 'ppc64le', 'aarch64'] %}
|
|
[centos-sclo-rh]
|
|
name=CentOS-$releasever - SCLo rh
|
|
mirrorlist=http://mirrorlist.centos.org/?release=7&arch=$basearch&repo=sclo-rh
|
|
gpgkey=file:///usr/share/distribution-gpg-keys/centos/RPM-GPG-KEY-CentOS-SIG-SCLo
|
|
gpgcheck=1
|
|
includepkgs=devtoolset*
|
|
skip_if_unavailable=False
|
|
{% endif %}
|
|
"""
|