Parcourir la source

instalarPHP() cambiar mirror

Guzmán Castanedo Villalba il y a 6 ans
Parent
commit
87b4d803ab
1 fichiers modifiés avec 8 ajouts et 2 suppressions
  1. 8 2
      install

+ 8 - 2
install

@@ -555,10 +555,16 @@ instalarPHP() {
 		comprobarError $? 103 $result
 		# Necesitamos un repositorio adicional para PHP-7 (REMI-RELEASE)
 		if [ $VERSION = "7" ];then
-			result=$(yum -y install http://rpms.remirepo.net/enterprise/remi-release-7.rpm 2>&1)
+			result=$(yum -y install http://remi.mirrors.cu.be/enterprise/remi-release-7.rpm 2>&1)
 			comprobarError $? 303 $result
 		elif [ $VERSION = "6" ];then
-			result=$(yum -y install http://rpms.remirepo.net/enterprise/remi-release-6.rpm 2>&1)
+			result=$(yum -y install http://remi.mirrors.cu.be/enterprise/remi-release-6.rpm 2>&1)
+			comprobarError $? 303 $result
+		elif [ $VERSION = "28" ];then
+			result=$(yum -y install http://remi.mirrors.cu.be/fedora/remi-release-28.rpm 2>&1)
+			comprobarError $? 303 $result
+		elif [ $VERSION = "27" ];then
+			result=$(yum -y install http://remi.mirrors.cu.be/fedora/remi-release-27.rpm 2>&1)
 			comprobarError $? 303 $result
 		else
 			comprobarError 1 304