20 lines
637 B
Plaintext
20 lines
637 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.
|
|
#
|
|
# Fore certs configuration details see: 06-intel-certs.in
|
|
#
|
|
# Following certs configuration, the 'sslverify=0' can be removed from
|
|
# the repository definition below.
|
|
|
|
RUN { \
|
|
echo "[intel-graphics]" ; \
|
|
echo "name=Intel Graphics Drivers Repository" ; \
|
|
echo "baseurl=${PACKAGE_REPOSITORY}/${OS_DISTRO}/${PACKAGE_STREAM}/" ; \
|
|
echo "sslverify=0" ; \
|
|
echo "enabled=1" ; \
|
|
echo "gpgcheck=0" ; \
|
|
} > /etc/zypp/repos.d/intel-graphics.repo
|