
These files are needed to setup the cgcs-centos-repo, in a first approach both were planned to be created in the fly by the generator- cgcs-centos-repo script, however having them in a location and copied by the script seems to be a better solution. Story: 2002936 Task: 23033 Change-Id: I301925434e005461fe39f4bfcbf0ee9bc936ef7c Signed-off-by: Erich Cordoba <erich.cordoba.malibran@intel.com>
53 lines
1.1 KiB
Protocol Buffer
53 lines
1.1 KiB
Protocol Buffer
config_opts['root'] = 'BUILD_ENV/mock'
|
|
config_opts['target_arch'] = 'x86_64'
|
|
config_opts['legal_host_arches'] = ('x86_64',)
|
|
config_opts['chroot_setup_cmd'] = 'install @buildsys-build'
|
|
config_opts['dist'] = 'el7' # only useful for --resultdir variable subst
|
|
config_opts['releasever'] = '7'
|
|
config_opts['rpmbuild_networking'] = False
|
|
|
|
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=
|
|
|
|
# repos
|
|
[local-std]
|
|
name=local-std
|
|
baseurl=LOCAL_BASE/MY_BUILD_DIR/std/rpmbuild/RPMS
|
|
enabled=1
|
|
skip_if_unavailable=1
|
|
metadata_expire=0
|
|
|
|
[local-rt]
|
|
name=local-rt
|
|
baseurl=LOCAL_BASE/MY_BUILD_DIR/rt/rpmbuild/RPMS
|
|
enabled=1
|
|
skip_if_unavailable=1
|
|
metadata_expire=0
|
|
|
|
[local-installer]
|
|
name=local-installer
|
|
baseurl=LOCAL_BASE/MY_BUILD_DIR/installer/rpmbuild/RPMS
|
|
enabled=1
|
|
skip_if_unavailable=1
|
|
metadata_expire=0
|
|
|
|
[TisCentos7Distro]
|
|
name=Tis-Centos-7-Distro
|
|
enabled=1
|
|
baseurl=LOCAL_BASE/MY_REPO_DIR/cgcs-centos-repo/Binary
|
|
failovermethod=priority
|
|
exclude=kernel-devel libvirt-devel
|
|
|
|
|
|
"""
|