This repository has been archived by the owner on Mar 13, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.sh
90 lines (74 loc) · 2.2 KB
/
setup.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
#!/usr/bin/env bash
# -*- ENCODING: UTF-8 -*-
##
## @author Raúl Caro Pastorino
## @copyright Copyright © 2018 Raúl Caro Pastorino
## @license https://wwww.gnu.org/licenses/gpl.txt
## @email [email protected]
## @web https://fryntiz.es
## @github https://github.com/fryntiz
## @gitlab https://gitlab.com/fryntiz
## @twitter https://twitter.com/fryntiz
##
## Guía de estilos aplicada:
## @style https://github.com/fryntiz/Bash_Style_Guide
############################
## INSTRUCCIONES ##
############################
## Script principal con la lógica del programa
############################
## CONSTANTES ##
############################
AM="\033[1;33m" ## Color Amarillo
AZ="\033[1;34m" ## Color Azul
RO="\033[1;31m" ## Color Rojo
VE="\033[1;32m" ## Color Verde
CL="\e[0m" ## Limpiar colores
WORKSCRIPT=$PWD ## Directorio principal del script
USER=$(whoami) ## Usuario que ejecuta el script
VERSION='0.0.1' ## Versión en desarrollo
LOGERROR="$WORKSCRIPT/errores.log" ## Archivo donde almacenar errores
## Configuraciones
DIR_APACHE='/var/www/html/Publico'
############################
## IMPORTACIONES ##
############################
source "$WORKSCRIPT/functions.sh"
###########################
## VARIABLES ##
###########################
###########################
## FUNCIONES ##
###########################
recorrerLista() {
if [[ "$1" = '' ]] || [[ "$2" = '' ]]; then
return 1
fi
## Cada iteración del bucle:
if [[ "$2" = 'general' ]]; then
repo=descargarGIT
elif [[ "$2" = 'gitlab' ]]; then
repo=descargarGitLab
elif [[ "$2" = 'github' ]]; then
repo=descargarGitHub
fi
agregarConfigApache
agregarConfigHost
agregar_DNS
}
desplegarGeneral() {
msg 'Desplegando repositorios GIT generales'
recorrerLista 'repos.list' 'general'
}
desplegarGitLab() {
msg "Desplegando repositorios desde$RO GitLab"
recorrerLista 'reposGitLab.list' 'gitlab'
}
desplegarGitHub() {
msg "Desplegando repositorios desde$RO GitHub"
recorrerLista 'reposGitHub.list' 'github'
}
desplegarGeneral
desplegarGitHub
desplegarGitLab
exit 0