forked from Mstaaravin/flisol-ipxe
-
Notifications
You must be signed in to change notification settings - Fork 0
/
master.sh
executable file
·77 lines (53 loc) · 1.57 KB
/
master.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
#!/bin/sh
# Version 0.1
# sáb nov 28 19:51:54 VET 2015
# By e1th0r
if [ -f /etc/debian_version ]; then
if [ -x /usr/bin/dialog ]; then
dialog --menu "Script Maestro para configurar servidor del Flisol" 15 50 50 1 "/Una única Interfaz" 2 "/Dos Interfaces de red" 2>temp
# OK is pressed
if [ "$?" = "0" ]
then
_return=$(cat temp)
# Se seleccionó squid
if [ "$_return" = "1" ]
then
dialog --title "Una Interfaz" --infobox "Preparar equipo y copiar los archivos de configuración necesarios" 10 50
aptitude update
aptitude install -y squid3 debmirror dnsmasq nfs-kernel-server nginx squid3 tftpd
#DNSMASQ
cp dnsmasq/dnsmasq.conf /etc/dnsmasq/dnsmasq.conf_bak
cp dnsmasq/dnsmasq.conf /etc/dnsmasq/
#NSF
cp /etc/exports /etc/exports_bak
cp nfs/exports /etc/exports
#NGINX
#cp /etc /nginx
#SQUID
cp /etc/squid/squid.conf /etc/squid/squid.conf_bak
cp squid/squid.conf /etc/squid/squid.conf
#TFTP
cp /etc/tftpd/ /etc/tftpd_bak
cp -R tftp /etc/tftpd/
for i in `ls debmirror/*sh`; do
exec $i
done;
fi
# Opción 2, varias interfaces
if [ "$_return" = "2" ]
then
dialog --title "Dos interfaces" --infobox "Preparando y copiando los archivos para servidor con 2 interfaces" 10 50
#cp squid/squid.conf /etc/squid/squid.conf_bak
fi
else
dialog --title "Proceso Cancelado" --msgbox "Todo el proceso fue cancelado" 10 40
fi
# remove the temp file
rm -f temp
####################################################################
else
echo "No está instalado Dialog"
fi;
else
echo "Este script sólo funciona bajo Debian"
fi;