25 lines
737 B
Plaintext
25 lines
737 B
Plaintext
# repositories.intel.com content begins here
|
|
#
|
|
# Intel certificates which would allow internal signed certs to be
|
|
# used are not being installed, so turn sslverify=0 on the
|
|
# repository.
|
|
#
|
|
# To install the certs would be something like:
|
|
#
|
|
# A. Copy ca certs to /etc/pki/ca-trust/source/anchors/
|
|
# B. run update-ca-trust
|
|
#
|
|
# Once that is done, the 'sslverify=0' can be removed from
|
|
# the repository definition below.
|
|
#
|
|
# Add Intel Graphics repository
|
|
#
|
|
RUN { \
|
|
echo "[intel-graphics]" ; \
|
|
echo "name=Intel Graphics Drivers Repository" ; \
|
|
echo "baseurl=${PACKAGE_REPOSITORY}/${PACKAGE_DISTRO}/${PACKAGE_STREAM}/" ; \
|
|
echo "sslverify=0" ; \
|
|
echo "enabled=1" ; \
|
|
echo "gpgcheck=0" ; \
|
|
} > /etc/yum.repos.d/intel-graphics.repo
|