install 18 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646
  1. #!/bin/bash
  2. #################################################################
  3. # auto-mediawiki #
  4. # Instala un servidor LAMP (Linux+Apache+MySQL+PHP) e instala #
  5. # MediaWiki y lo configura. #
  6. # #
  7. # Guzman Castanedo Villalba (guzman@castanedo.es) Junio 2018 #
  8. # GPLv3 (https://www.gnu.org/licenses/gpl.html) #
  9. #################################################################
  10. comprobarError() {
  11. # Mejora: tratar todos los mensajes de error desde aquí
  12. printf "SIN HACER...\n"
  13. }
  14. OSInfo() {
  15. #printf "Detectando SO..."
  16. OS=$(uname -s)
  17. if [ $OS = "Linux" ]; then
  18. OS="GNU/Linux"
  19. if [ -f /etc/os-release ]; then
  20. DIST=$(grep ^NAME= /etc/os-release | cut -d = -f 2 | cut -d '"' -f 2)
  21. REV=$(grep ^VERSION= /etc/os-release | cut -d = -f 2 | cut -d '"' -f 2)
  22. ID_LIKE=$(grep ^ID_LIKE= /etc/os-release | cut -d = -f 2 | cut -d '"' -f 2)
  23. for i in $ID_LIKE; do
  24. #printf "$i\n"
  25. case $i in
  26. debian|ubuntu)
  27. debianOS=true
  28. break
  29. ;;
  30. rhel|fedora)
  31. rhelOS=true
  32. break
  33. ;;
  34. *)
  35. debianOS=false
  36. rhelOS=false
  37. ;;
  38. esac
  39. done
  40. elif [ -f /etc/debian-version ]; then
  41. # Familia Debian (Debian, Ubuntu, Linux Mint, ...)
  42. DIST="Debian"
  43. REV=""
  44. ID_LIKE="debian"
  45. debianOS=true
  46. elif [ -f /etc/redhat-release ]; then
  47. # Familia Red-Hat (RHEL, Fedora, CentOS, ...)
  48. DIST="Red-Hat"
  49. REV=""
  50. ID_LIKE="rhel"
  51. rhelOS=true
  52. else
  53. # Other Linux (No Soportado)
  54. DIST=""
  55. REV=""
  56. ID_LIKE=""
  57. fi
  58. else
  59. # UNIX, OS X, ... (No Soportado)
  60. DIST=$OS
  61. REV=""
  62. fi
  63. #printf " $OS $DIST $REV\n"
  64. HDInfo=$(df -h | head -1)"\n"$(df -h | grep ^/dev/sd)"\n"$(df -h | grep ^/dev/mapper)
  65. }
  66. comprobarRoot() {
  67. if [ $(id -u) -ne 0 ]; then
  68. printf "ERROR:\tEs necesario ser root ('sudo $0').\n"
  69. exit 1
  70. fi
  71. }
  72. comprobarDependencias() {
  73. # Comprobamos whiptail
  74. which whiptail > /dev/null 2>&1
  75. if [ $? -ne 0 ];then
  76. printf "ERROR:\t'whiptail' no disponible.\n"
  77. exit 1
  78. fi
  79. # Comprobamos hostnamectl
  80. which hostnamectl > /dev/null 2>&1
  81. if [ $? -ne 0 ];then
  82. printf "ERROR:\t'hostnamectl' no disponible.\n"
  83. exit 1
  84. fi
  85. if [ $debianOS = true ];then
  86. # Comprobamos apt-get
  87. which apt-get > /dev/null 2>&1
  88. if [ $? -ne 0 ]; then
  89. printf "ERROR:\t'apt-get' no está disponible.\n"
  90. exit 1
  91. fi
  92. # Actualizamos base de datos del repositorio
  93. printf "Actualizando repositorio APT..."
  94. result=$(apt-get -q -y update)
  95. if [ $? -ne 0 ]; then
  96. printf "\nERROR:\tImposible actualizar repositorio.\n"
  97. printf "Detalles:\n$result\n"
  98. exit 1
  99. fi
  100. printf " OK.\n"
  101. # Comprobamos Firewall (ufw)
  102. which ufw > /dev/null 2>&1
  103. if [ $? -ne 0 ]; then
  104. printf "ERROR:\t'ufw' no disponible.\n"
  105. exit 1
  106. fi
  107. fi
  108. if [ $rhelOS = true ]; then
  109. # Comprobamos yum
  110. which yum > /dev/null 2>&1
  111. if [ $? -ne 0 ]; then
  112. printf "ERROR:\t'yum' no está disponible.\n"
  113. exit 1
  114. fi
  115. # Actualizamos base de datos del repositorio
  116. printf "Actualizando repositorio YUM..."
  117. result=$(yum -y makecache 2>&1)
  118. if [ $? -ne 0 ]; then
  119. printf "\nERROR:\tImposible actualizar repositorio.\n"
  120. printf "Detalles:\n$result\n"
  121. exit 1
  122. fi
  123. printf " OK.\n"
  124. # Comprobamos Firewall (firewall-cmd)
  125. which firewall-cmd > /dev/null 2>&1
  126. if [ $? -ne 0 ]; then
  127. printf "ERROR:\t'firewall-cmd' no disponible.\n"
  128. exit 1
  129. fi
  130. fi
  131. }
  132. inicializarVariables() {
  133. debianOS=false
  134. rhelOS=false
  135. apacheOn=false
  136. nginxOn=false
  137. mySQLOn=false
  138. mariaDBOn=false
  139. phpOn=false
  140. mediaWikiOn=false
  141. moodleOn=false
  142. actualizacionesOn=false
  143. }
  144. instalacionExpress() {
  145. apacheOn=true
  146. mariaDBOn=true
  147. phpOn=true
  148. mediaWikiOn=true
  149. moodleOn=true
  150. actualizacionesOn=true
  151. }
  152. mostrarBienvenida() {
  153. if [ $debianOS = false ] && [ $rhelOS = false ]; then
  154. whiptail --title "ERROR S.O. 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" 20 70 --ok-button "Salir"
  155. exit 1
  156. fi
  157. whiptail --title "INSTALACION 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" 20 70 --yes-button "Continuar" --no-button "Salir"
  158. if [ $? -ne 0 ]; then
  159. printf "ERROR:\tInstalación interrumpida por el usuario.\n"
  160. exit 2
  161. fi
  162. }
  163. mostrarExpress() {
  164. express=$(whiptail --title "INSTALACION EXPRESS" --radiolist "<ESPACIO>: seleccionar <TAB>: cambiar <FLECHAS>: moverse\n\nLa instalación express instala Apache2, MariaDB, PHP-7, Let's Encrypt, MediaWiki, Moodle y actualizaciones automáticas.\nSeleccione el tipo de instalación que desee:" 20 70 2 \
  165. "Express" "Instalación rápida" ON \
  166. "Avanzada" "Permite escoger todas las opciones disponibles" OFF \
  167. --ok-button "Continuar" --cancel-button "Salir" 3>&1 1>&2 2>&3)
  168. if [ $? -ne 0 ]; then
  169. printf "ERROR:\tInstalación interrumpida por el usuario.\n"
  170. exit 2
  171. fi
  172. case $express in
  173. Express)
  174. instalacionExpress
  175. # DECIDIR QUÉ OPCIONES SON LAS MÍNIMAS
  176. ;;
  177. Avanzada)
  178. mostrarAvanzada
  179. ;;
  180. *)
  181. printf "ERROR:\tError interno (selección express).\n"
  182. exit 1
  183. ;;
  184. esac
  185. }
  186. mostrarAvanzada() {
  187. componentes=$(whiptail --title "INSTALACION AVANZADA" --checklist "<ESPACIO>: seleccionar <TAB>: cambiar <FLECHAS>: moverse\n\nEscoge los componentes que quieres instalar:" 20 70 7 \
  188. "WebServer" "Instalar servidor web http/https" ON \
  189. "Database" "Instalar una base de datos SQL" ON \
  190. "PHP" "Instala PHP7" ON \
  191. "SSL/TLS" "Instalar certificados para activar HTTPS" ON \
  192. "MediaWiki" "Instalar wiki con MediaWiki" ON \
  193. "Moodle" "Instalar campus virtual con Moodle" ON \
  194. "Actualizaciones" "Programar actualizaciones automáticas" ON \
  195. --ok-button "Continuar" --cancel-button "Salir" 3>&1 1>&2 2>&3)
  196. if [ $? -ne 0 ]; then
  197. printf "ERROR:\tInstalación interrumpida por el usuario.\n"
  198. exit 2
  199. fi
  200. # Mejora: autodetección de componentes ya instalados
  201. for i in $componentes; do
  202. case $i in
  203. \"WebServer\")
  204. mostrarWebServer
  205. ;;
  206. \"Database\")
  207. mostrarDatabase
  208. ;;
  209. \"PHP\")
  210. phpOn=true
  211. ;;
  212. \"SSL/TLS\")
  213. # 2 Opciones: Let's Encrypt o Autofirmado
  214. ;;
  215. \"MediaWiki\")
  216. mediaWikiOn=true
  217. ;;
  218. \"Moodle\")
  219. moodleOn=true
  220. ;;
  221. \"Actualizaciones\")
  222. actualizacionesOn=true
  223. ;;
  224. *)
  225. printf "ERROR:\tError interno (selección de componentes).\n"
  226. exit 1
  227. ;;
  228. esac
  229. done
  230. }
  231. mostrarWebServer() {
  232. webServer=$(whiptail --title "SERVIDOR WEB" --radiolist "<ESPACIO>: seleccionar <TAB>: cambiar <FLECHAS>: moverse\n\nEscoge el servidor web que quieres usar:" 20 70 2 \
  233. "Apache" "Instalar el servidor web Apache2" ON \
  234. "Nginx" "Instalar el servidor web Nginx" OFF \
  235. --ok-button "Continuar" --cancel-button "Salir" 3>&1 1>&2 2>&3)
  236. if [ $? -ne 0 ]; then
  237. printf "ERROR:\tInstalación interrumpida por el usuario.\n"
  238. exit 2
  239. fi
  240. case $webServer in
  241. Apache)
  242. apacheOn=true
  243. ;;
  244. Nginx)
  245. nginxOn=true
  246. ;;
  247. *)
  248. printf "ERROR:\tError interno (selección de web server).\n"
  249. exit 1
  250. ;;
  251. esac
  252. # Otras opciones (FQDN)
  253. establecerFQDN
  254. }
  255. establecerFQDN() {
  256. while [ -z $hostname ]; do
  257. hostname=$(whiptail --title "FQDN" --inputbox "El nombre de dominio principal (FQDN) de este servidor es:\n"$(hostname)"\n\nQuieres cambiarlo por otro?" 20 70 --ok-button "Cambiar" --cancel-button "No Cambiar" 3>&1 1>&2 2>&3)
  258. if [ $? -eq 0 ] && [ ! -z $hostname ]; then
  259. hostnamectl set-hostname $hostname
  260. else
  261. hostname=$(hostname)
  262. fi
  263. done
  264. #printf "\nHostname: $hostname\n"
  265. }
  266. instalarApache() {
  267. if [ $debianOS = true ];then
  268. result=$(apt-get -q -y install apache2 2>&1)
  269. if [ $? -ne 0 ]; then
  270. printf "\nERROR:\tError al instalar Apache2.\n"
  271. printf "Detalles:\n$result\n"
  272. exit 1
  273. fi
  274. elif [ $rhelOS = true ]; then
  275. result=$(yum -y install httpd 2>&1)
  276. if [ $? -ne 0 ]; then
  277. printf "\nERROR:\tError al instalar Apache2.\n"
  278. printf "Detalles:\n$result\n"
  279. exit 1
  280. fi
  281. else
  282. printf "\nERROR:\tError interno (instalación Apache2).\n"
  283. exit 1
  284. fi
  285. }
  286. instalarNginx() {
  287. if [ $debianOS = true ];then
  288. result=$(apt-get -q -y install nginx 2>&1)
  289. if [ $? -ne 0 ]; then
  290. printf "\nERROR:\tError al instalar Nginx.\n"
  291. printf "Detalles:\n$result\n"
  292. exit 1
  293. fi
  294. elif [ $rhelOS = true ]; then
  295. # Hay que instalar primero otro repositorio
  296. result=$(yum -y install epel-release)
  297. if [ $? -ne 0 ]; then
  298. printf "\nERROR:\tError al intalar repositorio 'epel-release'.\n"
  299. printf "Detalles:\n$result\n"
  300. exit 1
  301. fi
  302. result=$(yum -y install nginx 2>&1)
  303. if [ $? -ne 0 ]; then
  304. printf "\nERROR:\tError al instalar Nginx.\n"
  305. printf "Detalles:\n$result\n"
  306. exit 1
  307. fi
  308. else
  309. printf "\nERROR:\tError interno (instalación Nginx).\n"
  310. exit 1
  311. fi
  312. }
  313. mostrarDatabase() {
  314. if [ $debianOS = true ]; then
  315. database=$(whiptail --title "BASE DE DATOS" --radiolist "<ESPACIO>: seleccionar <TAB>: cambiar <FLECHAS>: moverse\n\nEscoge la base de datos que quieres usar:" 20 70 2 \
  316. "MySQL" "Instalar la base de datos MySQL (no uso comercial)" ON \
  317. "MariaDB" "Instalar la base de datos MariaDB (fork de MySQL)" OFF \
  318. --ok-button "Continuar" --cancel-button "Salir" 3>&1 1>&2 2>&3)
  319. if [ $? -ne 0 ]; then
  320. printf "ERROR:\tInstalación interrumpida por el usuario.\n"
  321. exit 2
  322. fi
  323. case $database in
  324. MySQL)
  325. mySQLOn=true
  326. ;;
  327. MariaDB)
  328. mariaDBOn=true
  329. ;;
  330. *)
  331. printf "ERROR:\tError interno (selección de base de datos).\n"
  332. exit 1
  333. ;;
  334. esac
  335. elif [ $rhelOS = true ]; then
  336. whiptail --title "BASE DE DATOS" --yesno "Para su distribucion $OS $DIST $REV, sólo está disponible la base de datos MariaDB." 20 70 --yes-button "Continuar" --no-button "Salir"
  337. if [ $? -ne 0 ]; then
  338. printf "ERROR:\tInstalación interrumpida por el usuario.\n"
  339. exit 2
  340. fi
  341. mariaDBOn=true
  342. else
  343. printf "ERROR:\tError interno (instalación Base de Datos).\n"
  344. exit 1
  345. fi
  346. # Otras opciones (contraseña)
  347. leerSQLPasswd
  348. }
  349. leerSQLPasswd() {
  350. control=false
  351. error=""
  352. # Leemos la contreseña (stdin) y confirmamos
  353. while [ $control = false ]; do
  354. sqlPasswd=$(whiptail --title "CONTRASEÑA SQL" --passwordbox "$error""Introduzca la contraseña para el usuario 'root' de la base de datos:" 20 70 --ok-button "Continuar" --nocancel 3>&1 1>&2 2>&3)
  355. if [ $? -ne 0 ]; then
  356. printf "ERROR:\tInstalación interrumpida por el usuario.\n"
  357. exit 2
  358. fi
  359. sqlPasswd2=$(whiptail --title "CONTRASEÑA SQL" --passwordbox "Confirme la contraseña:" 20 70 --ok-button "Continuar" --nocancel 3>&1 1>&2 2>&3)
  360. if [ $? -ne 0 ];then
  361. printf "ERROR:\tInstalación interrumpida por el usuario.\n"
  362. exit 2
  363. fi
  364. #printf "SQL Password 1: $sqlPasswd\n"
  365. #printf "SQL Password 2: $sqlPasswd2\n"
  366. if [ -z $sqlPasswd ] || [ -z $sqlPasswd2 ]; then
  367. error="ERROR: LA CONTRASEÑA NO PUEDE ESTAR VACIA.\n"
  368. elif [ $sqlPasswd != $sqlPasswd2 ];then
  369. error="ERROR: LAS CONTRASEÑAS NO COINCIDEN.\n"
  370. else
  371. control=true
  372. fi
  373. done
  374. #printf "SQL Password: $sqlPasswd\n"
  375. unset control error sqlPasswd2
  376. }
  377. establecerSQLPasswd() {
  378. # Establecemos SQL root passwd y securizamos BD (mysql_secure_installation)
  379. # Mejora: ¿Si ya tiene una contraseña asignada?
  380. mysql -e "FLUSH PRIVILEGES" > /dev/null 2>&1
  381. if [ $? -eq 0 ];then
  382. # Establecemos contraseña del usuario root
  383. mysql -e "UPDATE mysql.user SET Password = PASSWORD('$sqlPasswd') WHERE User = 'root'" > /dev/null 2>&1
  384. if [ $? -ne 0 ];then
  385. printf "SQL ERROR:\tImposible de cambiar la contraseña de 'root'.\n"
  386. exit 3
  387. fi
  388. # Desactivamos acceso root desde el exterior (solo localhost)
  389. mysql -e "DELETE FROM mysql.user WHERE User='root' AND Host NOT IN ('localhost', '127.0.0.1', '::1')" > /dev/null 2>&1
  390. if [ $? -ne 0 ];then
  391. printf "SQL ERROR:\tImposible desactivar acceso 'root' desde el exterior.\n"
  392. exit 3
  393. fi
  394. # Eliminamos todos los usuarios anónimos
  395. mysql -e "DELETE FROM mysql.user WHERE User=''" > /dev/null 2>&1
  396. if [ $? -ne 0 ];then
  397. printf "SQL ERROR:\tImposible eliminar usuarios anónimos.\n"
  398. exit 3
  399. fi
  400. # Eliminamos bases de datos 'test'
  401. mysql -e "DROP DATABASE IF EXISTS test" > /dev/null 2>&1
  402. if [ $? -ne 0 ];then
  403. printf "SQL WARNING:\tImposible eliminar bases de datos de pruebas.\n"
  404. fi
  405. # Eliminamos privilegios de la base de datos 'test'
  406. mysql -e "DELETE FROM mysql.db WHERE Db='test' OR Db='test\\_%'" > /dev/null 2>&1
  407. if [ $? -ne 0 ];then
  408. printf "SQL WARNING:\tImposible eliminar los privilegios de la base de datos de pruebas.\n"
  409. fi
  410. # Aplicamos los cambios
  411. mysql -e "FLUSH PRIVILEGES" > /dev/null 2>&1
  412. if [ $? -ne 0 ];then
  413. printf "SQL ERROR:\tImposible recargar base de datos.\n"
  414. exit 3
  415. fi
  416. else
  417. printf "WARNING:\tUsuario 'root' ya dispone de contraseña.\n"
  418. fi
  419. }
  420. instalarMySQL() {
  421. if [ $debianOS = true ];then
  422. result=$(apt-get -q -y install mysql-server mysql-client 2>&1)
  423. if [ $? -ne 0 ]; then
  424. printf "\nERROR:\tError al instalar MySQL.\n"
  425. printf "Detalles:\n$result\n"
  426. exit 1
  427. fi
  428. elif [ $rhelOS = true ]; then
  429. # MySQL no disponible en RHEL. 2 opciones:
  430. # 1) Instalar un repositorio adicional
  431. # 2) No instalar MySQL en distribuciones RHEL
  432. printf "\nERROR:\tRHEL no incluye MySQL en sus repositorios.\n"
  433. exit 1
  434. else
  435. printf "\nERROR:\tError interno (instalación MySQL).\n"
  436. exit 1
  437. fi
  438. }
  439. instalarMariaDB() {
  440. if [ $debianOS = true ];then
  441. result=$(apt-get -q -y install mariadb-server mariadb-client 2>&1)
  442. if [ $? -ne 0 ]; then
  443. printf "\nERROR:\tError al instalar MariaDB.\n"
  444. printf "Detalles:\n$result\n"
  445. exit 1
  446. fi
  447. elif [ $rhelOS = true ]; then
  448. result=$(yum -y install mariadb-server mariadb 2>&1)
  449. if [ $? -ne 0 ]; then
  450. printf "\nERROR:\tError al instalar MariaDB.\n"
  451. printf "Detalles:\n$result\n"
  452. exit 1
  453. fi
  454. else
  455. printf "\nERROR:\tError interno (instalación MariaDB).\n"
  456. exit 1
  457. fi
  458. }
  459. habilitarServicio() {
  460. # Arrancamos y habilitamos el servicio (con SystemD, Upstart o SystemV)
  461. # Intentamos con systemctl (SystemD)
  462. printf "Habilitando servicio $1"
  463. if [ $# -le 0 ];then
  464. printf "\nERROR:\tError interno (habilitar servicio).\n"
  465. exit 1
  466. fi
  467. which systemctl > /dev/null 2>&1
  468. if [ $? -eq 0 ]; then
  469. printf " (SystemD)..."
  470. systemctl start $1 > /dev/null 2>&1
  471. if [ $? -ne 0 ];then
  472. printf "\nERROR:\tImposible encender servicio '$1'.\n"
  473. exit 1
  474. fi
  475. systemctl enable $1 > /dev/null 2>&1
  476. if [ $? -ne 0 ];then
  477. printf "\nERROR:\tImposible habilitar servicio '$1' durante el arranque.\n"
  478. exit 1
  479. fi
  480. else
  481. # Intentamos con service (Upstart)
  482. which service > /dev/null 2>&1
  483. if [ $? -eq 0 ]; then
  484. printf " (Upstart)..."
  485. service $1 start > /dev/null 2>&1
  486. if [ $? -ne 0 ];then
  487. printf "\nERROR:\tImposible encender el servicio '$1'.\n"
  488. exit 1
  489. fi
  490. else
  491. # Intentamos con init.d (SystemV)
  492. printf " (SystemV)..."
  493. /etc/init.d/$1 start > /dev/null 2>&1
  494. if [ $? -ne 0 ]; then
  495. printf "\nERROR:\tImposible encender el servicio '$1'.\n"
  496. exit 1
  497. fi
  498. fi
  499. # Intentamos habilitar en el arranque (Upstart)
  500. which update-rc.d > /dev/null 2>&1
  501. if [ $? -eq 0 ];then
  502. update-rc.d $1 enable
  503. if [ $? -ne 0 ];then
  504. printf "\nERROR:\tImposible habilitar servicio '$1' durante el arranque.\n"
  505. exit 1
  506. fi
  507. else
  508. # Intentamos habilitar en el arranque (SystemV)
  509. which chkconfig > /dev/null 2>&1
  510. if [ $? -eq 0 ];then
  511. chkconfig $1 on
  512. if [ $? -ne 0 ];then
  513. printf "\nERROR:\tImposible habilitar servicio '$1' durante el arranque.\n"
  514. exit 1
  515. fi
  516. else
  517. # ¿Qué mas opciones nos quedan?
  518. printf "\nERROR:\tImposible habilitar servicio '$1' durante el arranque.\n"
  519. exit 1
  520. fi
  521. fi
  522. fi
  523. # Mejora: comprobar si el servicio está funcionando
  524. printf " OK.\n"
  525. }
  526. # Comprobación del sistema e inicialización
  527. comprobarRoot
  528. inicializarVariables
  529. OSInfo
  530. comprobarDependencias
  531. # Bienvenida
  532. mostrarBienvenida
  533. # Selección de componentes (express vs avanzada)
  534. mostrarExpress
  535. # Pre-configuración
  536. # Habilitar cortafuegos -> PROBLEMA: se corta la conexión ssh
  537. # Instalación
  538. # FALTA: whiptail --gauge -> Más bonito
  539. # Servidor Web
  540. if [ $apacheOn = true ]; then
  541. printf "Instalando Web Server Apache..."
  542. instalarApache
  543. printf " OK.\n"
  544. elif [ $nginxOn = true ]; then
  545. printf "Instalando Web Server Nginx..."
  546. instalarNginx
  547. printf " OK.\n"
  548. fi
  549. # Base de Datos
  550. if [ $mySQLOn = true ]; then
  551. printf "Instalando Base de Datos MySQL..."
  552. instalarMySQL
  553. printf " OK.\n"
  554. elif [ $mariaDBOn = true ]; then
  555. printf "Instalando Base de Datos MariaDB..."
  556. instalarMariaDB
  557. printf " OK.\n"
  558. fi
  559. # PHP
  560. if [ $phpOn = true ]; then
  561. printf "Instalando PHP-7..."
  562. printf " OK.\n"
  563. fi
  564. # SSL/TLS
  565. # Falta por implementar
  566. # MediaWiki
  567. if [ $mediaWikiOn = true ]; then
  568. printf "Instalando MediaWiki..."
  569. printf " OK.\n"
  570. fi
  571. # Moodle
  572. if [ $moodleOn = true ]; then
  573. printf "Instalando Moodle..."
  574. printf " OK.\n"
  575. fi
  576. # PRECAUCION!!!! Hay que habilitar algunos servicios antes de configurarlos
  577. # Por ejemplo: para cambiar la contraseña de root en mysql
  578. # Configuración
  579. # Configuración Apache
  580. # Virtual Hosts
  581. # Configuración Database
  582. # Arrancar Base de Datos, establecer contraseña y configuración segura
  583. if [ $mySQLOn = true ];then
  584. habilitarServicio mysql
  585. establecerSQLPasswd
  586. fi
  587. if [ $mariaDBOn = true ];then
  588. habilitarServicio mariadb
  589. establecerSQLPasswd
  590. fi
  591. # Configuración PHP
  592. # cgi.fix_pathinfo=0
  593. # Configurar máximo de subida de archivos
  594. # Configuración MediWiki
  595. # Configuración Moodle
  596. # Arrancar y habilitar todos los servicios (SystemD, Service o SystemV)
  597. # Añadir reglas del cortafuegos
  598. # Configuración SSL/TLS
  599. # Generar certificados
  600. # Configurar certificados
  601. # Configurar actualizaciones
  602. if [ $actualizacionesOn = true ]; then
  603. printf "Configurando actualizaciones automáticas..."
  604. # CRONTAB
  605. printf " OK.\n"
  606. fi
  607. # Autodestrucción
  608. {
  609. for i in $(seq 0 5 50); do
  610. sleep 0.1
  611. echo $i
  612. done
  613. } | whiptail --gauge "Autodestrucción..." 7 70 0
  614. {
  615. for i in $(seq 50 5 100); do
  616. sleep 0.1
  617. echo $i
  618. done
  619. } | whiptail --gauge "Autopulverización..." 7 70 50