Fix for EPEL repo

- Remove workaround for EPEL repo issues (bff3fe5)
- "yum makecache" may have higher disk space requirements that could
  cause issues on systems with low free disk space
This commit is contained in:
hwdsl2 2020-09-30 22:49:49 -05:00
parent 091dd4b31e
commit 4fa17ce958
2 changed files with 0 additions and 2 deletions

View File

@ -182,7 +182,6 @@ cd /opt/src || exit 1
# Add the EPEL repository
epel_url="https://dl.fedoraproject.org/pub/epel/epel-release-latest-$(rpm -E '%{rhel}').noarch.rpm"
yum -y install epel-release || yum -y install "$epel_url" || exiterr2
yum -y makecache || { yum -y clean metadata; yum -y makecache; } || { yum -y clean metadata; yum -y makecache; }
# Install necessary packages
yum -y install nss-devel nspr-devel pkgconfig pam-devel \

View File

@ -141,7 +141,6 @@ bigecho "Adding the EPEL repository..."
epel_url="https://dl.fedoraproject.org/pub/epel/epel-release-latest-$(rpm -E '%{rhel}').noarch.rpm"
yum -y install epel-release || yum -y install "$epel_url" || exiterr2
yum -y makecache || { yum -y clean metadata; yum -y makecache; } || { yum -y clean metadata; yum -y makecache; }
bigecho "Installing packages required for the VPN..."