Explorar el Código

* Cambios en las cadenas de texto

Guzmán Castanedo Villalba hace 6 años
padre
commit
c3fb80c77f
Se han modificado 1 ficheros con 5 adiciones y 5 borrados
  1. 5 5
      install

+ 5 - 5
install

@@ -716,7 +716,7 @@ instalarPHPInfo() {
 habilitarServicio() {
 	# Arrancamos y habilitamos el servicio (con SystemD, Upstart o SystemV)
 	# Intentamos con systemctl (SystemD)
-	echo -en "Habilitando servicio $1" | tee -a $logFile
+	echo -en "Habilitando Servicio '$1'" | tee -a $logFile
 	if [ $# -le 0 ];then
 		comprobarError 1 900
 	fi
@@ -764,7 +764,7 @@ habilitarServicio() {
 deshabilitarServicio() {
 	# Paramos y deshabilitamos el servicio (con SystemD, Upstart o SystemV)
 	# Intentamos con systemctl (SystemD)
-	echo -en "Deshabilitando servicio $1" | tee -a $logFile
+	echo -en "Deshabilitando Servicio '$1'" | tee -a $logFile
 	if [ $# -le 0 ];then
 		comprobarError 1 903
 	fi
@@ -870,7 +870,7 @@ mostrarExpress
 	
 # Instalación Servidor Web
 	if [ $apacheOn = true ]; then
-		echo -en "Instalando Web Server Apache..." | tee -a $logFile
+		echo -en "Instalando Servidor Web Apache..." | tee -a $logFile
 #		{
 #			echo -en "%s\n" $((100 * progreso / progresoTotal))
 			instalarApache
@@ -878,7 +878,7 @@ mostrarExpress
 #		} > >(whiptail --gauge "Instalando Web Server Apache..." $((ALTO * 4 / 10)) $((ANCHO * 9 / 10)) $((100 * progreso / progresoTotal)))
 		echo -en " OK.\n" | tee -a $logFile
 	elif [ $nginxOn = true ]; then
-		echo -en "Instalando Web Server Nginx..." | tee -a $logFile
+		echo -en "Instalando Servidor Web Nginx..." | tee -a $logFile
 #		{
 #			echo -en "%s\n" $((100 * progreso / progresoTotal))
 			instalarNginx
@@ -1060,7 +1060,7 @@ mostrarExpress
 	echo -en " OK.\n" | tee -a $logFile
 # Configurar actualizaciones
 	if [ $actualizacionesOn = true ]; then
-		echo -en "Configurando actualizaciones automáticas..." | tee -a $logFile
+		echo -en "Configurando Actualizaciones Automáticas..." | tee -a $logFile
 #		{
 #			echo -en "%s\n" $((100 * progreso / progresoTotal))
 			sleep 2