| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256 | 
							- #!/bin/bash
 
- #################################################################
 
- # auto-mediawiki												#
 
- # Instala un servidor LAMP (Linux+Apache+MySQL+PHP) e instala	#
 
- # MediaWiki y lo configura.										#
 
- #																#
 
- # Guzman Castanedo Villalba (guzman@castanedo.es) Junio 2018	#
 
- # GPLv3 (https://www.gnu.org/licenses/gpl.html)					#
 
- #################################################################
 
- OSInfo() {
 
- 	#printf "Detectando SO..."
 
- 	debianOS=false
 
- 	rhelOS=false
 
- 	OS=$(uname -s)
 
- 	if [ $OS = "Linux" ]; then
 
- 		OS="GNU/Linux"
 
- 		if [ -f /etc/os-release ]; then
 
- 			DIST=$(grep ^NAME= /etc/os-release | cut -d = -f 2 | cut -d '"' -f 2)
 
- 			REV=$(grep ^VERSION= /etc/os-release | cut -d = -f 2 | cut -d '"' -f 2)
 
- 			ID_LIKE=$(grep ^ID_LIKE= /etc/os-release | cut -d = -f 2 | cut -d '"' -f 2)
 
- 			for i in $ID_LIKE; do
 
- 				#printf "$i\n"
 
- 				case $i in
 
- 					debian|ubuntu)
 
- 						debianOS=true
 
- 						break
 
- 						;;
 
- 					rhel|fedora)
 
- 						rhelOS=true
 
- 						break
 
- 						;;
 
- 					*)
 
- 						debianOS=false
 
- 						rhelOS=false
 
- 						;;
 
- 				esac
 
- 			done
 
- 		elif [ -f /etc/debian-version ]; then
 
- 			# Familia Debian (Debian, Ubuntu, Linux Mint, ...)
 
- 			DIST="Debian"
 
- 			REV=""
 
- 			ID_LIKE="debian"
 
- 			debianOS=true
 
- 		elif [ -f /etc/redhat-release ]; then
 
- 			# Familia Red-Hat (RHEL, Fedora, CentOS, ...)
 
- 			DIST="Red-Hat"
 
- 			REV=""
 
- 			ID_LIKE="rhel"
 
- 			rhelOS=true
 
- 		else
 
- 			# Other Linux (No Soportado)
 
- 			DIST=""
 
- 			REV=""
 
- 			ID_LIKE=""
 
- 		fi
 
- 	else
 
- 		#UNIX, OS X, ... (No Soportado)
 
- 		DIST=$OS
 
- 		REV=""
 
- 	fi
 
- 	#printf " $DIST $REV\n"
 
- 	HDInfo=$(df -h | head -1)"\n"$(df -h | grep ^/dev/sd)"\n"$(df -h | grep ^/dev/mapper)
 
- }
 
- comprobarRoot() {
 
- 	if [ $(id -u) -ne 0 ]; then
 
- 		printf "ERROR:\tEs necesario ser root ('sudo $0').\n"
 
- 		exit 1
 
- 	fi
 
- }
 
- comprobarDependencias() {
 
- 	if [ ! -x $(which whiptail) ];then
 
- 		printf "ERROR:\twhiptail no disponible.\n"
 
- 		exit 1
 
- 	fi
 
- 	if [ $debianOS = true ];then
 
- 		which apt-get > /dev/null 2>&1
 
- 		if [ $? -ne 0 ]; then
 
- 			printf "ERROR:\t'apt-get' no está disponible.\n"
 
- 			exit 1
 
- 		fi
 
- 		#Actualizamos base de datos del repositorio
 
- 		printf "Actualizando repositorio APT..."
 
- 		result=$(apt-get -q -y update)
 
- 		if [ $? -ne 0 ]; then
 
- 			printf "\nERROR:\tImposible actualizar repositorio.\n"
 
- 			printf "Detalles:\n$result\n"
 
- 			exit 1
 
- 		fi
 
- 		printf " OK.\n"
 
- 	fi
 
- 	if [ $rhelOS = true ]; then
 
- 		which yum > /dev/null 2>&1
 
- 		if [ $? -ne 0 ]; then
 
- 			printf "ERROR:\t'yum' no está disponible.\n"
 
- 			exit 1
 
- 		fi
 
- 		printf "Actualizando repositorio YUM..."
 
- 		result=$(yum -y makecache 2>&1)
 
- 		if [ $? -ne 0 ]; then
 
- 			printf "\nERROR:\tImposible actualizar repositorio.\n"
 
- 			printf "Detalles:\n$result\n"
 
- 			exit 1
 
- 		fi
 
- 		printf " OK.\n"
 
- 	fi
 
- }
 
- mostrarBienvenida() {
 
- 	if [ $debianOS = false ] && [ $rhelOS = false ]; then
 
- 		whiptail --title "ERROR OS NO SOPORTADO" --msgbox "Este script automatiza la creación de una web MediaWiki SOLO para distribuciones Linux de la familia Debian (Ubuntu, Linux Mint, ...) y de la familia Red-Hat (CentOS, Fedora, ...).\n\nInformación del sistema:\nOS: $OS $DIST $REV\n$HDInfo" --ok-button "Salir" 20 70
 
- 		exit 1
 
- 	fi
 
- 	whiptail --title "Instalación MediaWiki" --yesno "Este script automatiza completamente la instalación de una wiki.\nPara ello instala un servidor LAMP, el software MediaWiki y lo configura todo.\n\nInformación del sistema:\nOS: $OS $DIST $REV\n$HDInfo" --yes-button "Continuar" --no-button "Salir" 20 70
 
- 	if [ $? -ne 0 ]; then
 
- 		printf "ERROR:\tInstalación interrumpida por el usuario.\n"
 
- 		exit 2
 
- 	fi
 
- }
 
- mostrarComponentes() {
 
- 	componentes=$(whiptail --title "Instalación" --checklist "<ESPACIO>: seleccionar   <TAB>: cambiar   <FLECHAS>: moverse\n\nEscoge los componentes que quieres instalar:" 20 70 5 \
 
- 	"WebServer" "Instalar servidor web http/https" ON \
 
- 	"Database" "Instalar una base de datos SQL" ON \
 
- 	"PHP" "Instala PHP7" ON \
 
- 	"SSL/TLS" "Instala certificados para activar HTTPS" ON \
 
- 	"MediaWiki" "Instala la última versión de MediaWiki" ON \
 
- 	--ok-button "Continuar" --cancel-button "Salir" 3>&1 1>&2 2>&3)
 
- 	if [ $? -ne 0 ]; then
 
- 		printf "ERROR:\tInstalación interrumpida por el usuario.\n"
 
- 		exit 2
 
- 	fi
 
- 	# Mejora: autodetección de componentes ya instalados
 
- 	for i in $componentes; do
 
- 		case $i in
 
- 			\"WebServer\")
 
- 				printf "Instalando Servidor Web"
 
- 				instalarWebServer
 
- 				printf " OK.\n"
 
- 				;;
 
- 			\"Database\")
 
- 				printf "Instalando Servidor Database..."
 
- 				printf " OK.\n"
 
- 				;;
 
- 			\"PHP\")
 
- 				printf "Instalando PHP..."
 
- 				printf " OK.\n"
 
- 				;;
 
- 			\"SSL/TLS\")
 
- 				printf "Instalando SSL/TLS..."
 
- 				printf " OK.\n"
 
- 				;;
 
- 			\"MediaWiki\")
 
- 				printf "Instalando MediaWiki..."
 
- 				printf " OK.\n"
 
- 				;;
 
- 			*)
 
- 				printf "ERROR:\tError interno (selección de componentes).\n"
 
- 				exit 1
 
- 				;;
 
- 		esac
 
- 	done
 
- }
 
- instalarWebServer() {
 
- 	webServer=$(whiptail --title "Servidor Web" --radiolist "" 20 70 2 \
 
- 	"Apache" "Instalar el servidor web Apache2" ON \
 
- 	"Nginx" "Instalar el servidor web Nginx" OFF \
 
- 	--ok-button "Continuar" --cancel-button "Salir" 3>&1 1>&2 2>&3)
 
- 	# Preguntar otras opciones de configuración
 
- 	case $webServer in
 
- 		Apache)
 
- 			printf " Apache..."
 
- 			instalarApache
 
- 			;;
 
- 		Nginx)
 
- 			printf " Nginx..."
 
- 			instalarNginx
 
- 			;;
 
- 		*)
 
- 			printf "\nERROR:\tError interno (selección de web server).\n"
 
- 			exit 1
 
- 			;;
 
- 	esac
 
- }
 
- instalarApache() {
 
- 	if [ $debianOS = true ];then
 
- 		result=$(apt-get -q -y install apache2 2>&1)
 
- 		if [ $? -ne 0 ]; then
 
- 			printf "\nERROR:\tError al instalar apache2.\n"
 
- 			printf "Detalles:\n$result\n"
 
- 			exit 1
 
- 		fi
 
- 	elif [ $rhelOS = true ]; then
 
- 		result=$(yum -y install httpd 2>&1)
 
- 		if [ $? -ne 0 ]; then
 
- 			printf "\nERROR:\tError al instalar apache2.\n"
 
- 			printf "Detalles:\n$result\n"
 
- 			exit 1
 
- 		fi
 
- 	else
 
- 		printf "\nERROR:\tError interno (instalación apache).\n"
 
- 		exit 1
 
- 	fi
 
- }
 
- instalarNginx() {
 
- 	if [ $debianOS = true ];then
 
- 		result=$(apt-get -q -y install nginx 2>&1)
 
- 		if [ $? -ne 0 ]; then
 
- 			printf "\nERROR:\tError al instalar apache2.\n"
 
- 			printf "Detalles:\n$result\n"
 
- 			exit 1
 
- 		fi
 
- 	elif [ $rhelOS = true ]; then
 
- 		# Hay que instalar primero otro repositorio
 
- 		result=$(yum -y install nginx 2>&1)
 
- 		if [ $? -ne 0 ]; then
 
- 			printf "\nERROR:\tError al instalar apache2.\n"
 
- 			printf "Detalles:\n$result\n"
 
- 			exit 1
 
- 		fi
 
- 	else
 
- 		printf "\nERROR:\tError interno (instalación apache).\n"
 
- 		exit 1
 
- 	fi
 
- }
 
- # Comprobamos
 
- comprobarRoot
 
- OSInfo
 
- comprobarDependencias
 
- # Bienvenida
 
- mostrarBienvenida
 
- # Mejora: instalación express vs instalación avanzada
 
- # Selección de componentes
 
- mostrarComponentes
 
- # Autodestrucción
 
- {
 
- 	for i in $(seq 0 5 50); do
 
- 		sleep 0.1
 
- 		echo $i
 
- 	done
 
- } | whiptail --gauge "Autodestrucción..." 7 70 0
 
- {
 
- 	for i in $(seq 50 5 100); do
 
- 		sleep 0.1
 
- 		echo $i
 
- 	done
 
- } | whiptail --gauge "Autopulverización..." 7 70 50
 
 
  |