1
0
mirror of synced 2025-03-03 11:23:15 +03:00

Fix for EPEL repo

- Add workaround for EPEL repo issues
This commit is contained in:
hwdsl2 2020-07-06 23:03:13 -05:00
parent 71dc5bab01
commit bff3fe5a4b
2 changed files with 2 additions and 0 deletions

View File

@ -182,6 +182,7 @@ 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

@ -144,6 +144,7 @@ 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..."