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:34:31 -05:00
parent 3da0b3fc00
commit 35d2a0562c
No known key found for this signature in database
GPG Key ID: 060B29EB996BD9F2

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
@ -499,11 +499,11 @@ upgrade_wings(){
firewall(){
if [ "$installoption" = "2" ]; then
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