1
0
mirror of https://github.com/tommytran732/Pterodactyl-Script synced 2024-09-07 18:23:30 -04:00

Fix EPEL installation

Signed-off-by: Tommy <contact@tommytran.io>
This commit is contained in:
Tommy 2022-12-18 03:28:00 -05:00 committed by GitHub
parent 8627d65ac1
commit 3da0b3fc00
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -132,11 +132,11 @@ required_infos() {
install_dependencies(){
output "Installing dependencies..."
if [ "$lsb_dist" != "rhel" ]; then
if [ "$lsb_dist" == "rhel" ]; then
subscription-manager repos --enable codeready-builder-for-rhel-9-$(arch)-rpms
rpm --import https://raw.githubusercontent.com/tommytran732/Pterodactyl-Script/master/epel9.asc
dnf install -y https://dl.fedoraproject.org/pub/epel/epel-release-latest-9.noarch.rpm
elif [ "$lsb_dist" != "centos" ]; then
elif [ "$lsb_dist" == "centos" ]; then
dnf config-manager --set-enabled crb
dnf install -y epel-release epel-next-release
else