before_script:
- ls -lA --color=always /etc/yum.repos.d
- |
- echo "Manipulating repo files in CentOS 8 ..."
- if [[ "${EL_MAJOR_VERSION}" -ge "7" ]] ; then
+ if [[ "${EL_MAJOR_VERSION}" -ge "8" ]] ; then
+ echo "Manipulating repo files in CentOS 8 ..."
for repo_file in /etc/yum.repos.d/CentOS-Linux*.repo ; do
- echo
- echo "Changing ${repo_file} ..."
- sed -i -e 's/^mirrorlist/# mirrorlist/' -e 's/^#[ ]*baseurl/baseurl/' "${repo_file}"
- cat "${repo_file}"
+ if [[ -f "${repo_file}" ]] ; then
+ echo -e "\nChanging ${repo_file} ..."
+ sed -i -e 's/^mirrorlist/# mirrorlist/' -e 's/^#[ ]*baseurl[ ]*=/baseurl=/' "${repo_file}"
+ cat "${repo_file}"
+ fi
done
fi
- ${YUM} clean all