28 lines
913 B
Cheetah
28 lines
913 B
Cheetah
|
#!/usr/bin/env bash
|
||
|
# Source: https://www.linuxcapable.com/how-to-install-epel-on-centos-stream/
|
||
|
|
||
|
{{ includeTemplate "universal/logg-before" }}
|
||
|
|
||
|
### Upgrade system
|
||
|
logg info 'Upgrade system'
|
||
|
sudo dnf upgrade --refresh
|
||
|
|
||
|
### Enable CRB
|
||
|
logg info 'Ensure the CRB repository is activated'
|
||
|
sudo dnf config-manager --set-enabled crb
|
||
|
|
||
|
### Add EPEL
|
||
|
if ! dnf repolist | grep 'epel ' > /dev/null; then
|
||
|
logg info 'Adding the EPEL repository'
|
||
|
. /etc/os-release
|
||
|
sudo dnf install -y "https://dl.fedoraproject.org/pub/epel/epel-release-latest-${VERSION}.noarch.rpm"
|
||
|
fi
|
||
|
|
||
|
### Add EPEL Next
|
||
|
if ! dnf repolist | grep 'epel-next' > /dev/null; then
|
||
|
logg info 'Adding the EPEL Next repository'
|
||
|
. /etc/os-release
|
||
|
sudo dnf install -y "https://dl.fedoraproject.org/pub/epel/epel-next-release-latest-${VERSION}.noarch.rpm"
|
||
|
else
|
||
|
logg info 'EPEL Next repository already enabled (EPEL compatibility for CentOS)'
|
||
|
fi
|