-
Notifications
You must be signed in to change notification settings - Fork 0
/
defs.py
258 lines (220 loc) · 9.97 KB
/
defs.py
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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
from imports import *
from files import *
from constants import *
from directory import *
from defs import *
def download_iso():
if not os.path.exists(ISO_PATH):
print(f"{COLOR_YELLOW}Descargando ISO...{COLOR_RESET}")
subprocess.run(["wget", "-O", ISO_PATH, ISO_URL], check=True)
print(f"{COLOR_GREEN}ISO descargado y almacenado en {ISO_PATH}.{COLOR_RESET}")
else:
print(f"{COLOR_GREEN}ISO ya descargado previamente en {ISO_PATH}.{COLOR_RESET}")
def check_7z_installed():
try:
subprocess.run(["7z"], stdout=subprocess.PIPE, stderr=subprocess.PIPE)
print(f"{COLOR_GREEN}7z está instalado.{COLOR_RESET}")
except FileNotFoundError:
print(f"{COLOR_YELLOW}7z no está instalado. Instálalo e inténtalo de nuevo.{COLOR_RESET}")
sys.exit(1)
def extract_iso(version_dir):
source_files_dir = os.path.join(version_dir, "source-files")
os.makedirs(source_files_dir)
print(f"{COLOR_YELLOW}Extrayendo ISO en '{source_files_dir}'...{COLOR_RESET}")
subprocess.run(["7z", "x", ISO_PATH, f"-o{source_files_dir}", "-y"], check=True)
print(f"{COLOR_GREEN}ISO extraído en '{source_files_dir}'.{COLOR_RESET}")
def create_auto_install_file(server_dir):
config_content = """#cloud-config
autoinstall:
version: 1
identity:
hostname: doncom
username: admin
password: $6$A8TPSoM/hhcc6jkv$5WAmDVk6JP0xj76DmeO711VC2grPZJAXmS88tiG13kowziCM1U0zZKNPkMhPv3HiSNV6c2JslSpsfA.UbmlQV1
storage:
layout:
name: direct
ssh:
install-server: yes
locale: es_ES.UTF-8
keyboard: {layout: es, variant: ''}
packages:
- ubuntu-desktop
user-data:
packages:
- dbus-x11
runcmd:
- wget https://github.com/DonComProject/arenita/raw/main/src/deb-files/veyon_4.8.3.0-ubuntu.jammy_amd64.deb -O /tmp/veyon.deb
- dpkg -i /tmp/veyon.deb
- apt-get install -f -y
- wget https://raw.githubusercontent.com/DonComProject/arenita/main/img/doncom_banner.jpg -O /usr/share/backgrounds/doncom_banner.jpg
- sudo -u admin dbus-launch gsettings set org.gnome.desktop.background picture-uri 'file:///usr/share/backgrounds/doncom_banner.jpg'
"""
with open(os.path.join(server_dir, "user-data"), 'w') as file:
file.write(config_content)
print(f"{COLOR_GREEN}Archivo de configuración 'user-data' creado automáticamente.{COLOR_RESET}")
def create_personalized_install_file(server_dir):
hostname = input("Introduce el hostname: ")
username = input("Introduce el nombre de usuario: ")
password = input("Introduce la contraseña: ")
encrypted_password = subprocess.run(
["openssl", "passwd", "-6", password], capture_output=True, text=True).stdout.strip()
config_content = f"""#cloud-config
autoinstall:
version: 1
identity:
hostname: {hostname}
username: {username}
password: {encrypted_password}
storage:
layout:
name: direct
ssh:
install-server: yes
locale: es_ES.UTF-8
keyboard: {{layout: es, variant: ''}}
packages:
- ubuntu-desktop
"""
with open(os.path.join(server_dir, "user-data"), 'w') as file:
file.write(config_content)
print(f"{COLOR_GREEN}Archivo de configuración 'user-data' personalizado creado.{COLOR_RESET}")
"""def build_iso(version_dir, iso_name):
source_files_dir = os.path.join(version_dir, "source-files")
iso_output_path = os.path.join(version_dir, f"{iso_name}.iso")
os.chdir(source_files_dir)
subprocess.run([
"xorriso", "-as", "mkisofs", "-r",
"-V", "'Ubuntu 22.04 LTS AUTO (EFIBIOS)'",
"-o", iso_output_path,
"--grub2-mbr", "../BOOT/1-Boot-NoEmul.img",
"-partition_offset", "16",
"--mbr-force-bootable",
"-append_partition", "2", "28732ac11ff8d211ba4b00a0c93ec93b", "../BOOT/2-Boot-NoEmul.img",
"-appended_part_as_gpt",
"-iso_mbr_part_type", "a2a0d0ebe5b9334487c068b6b72699c7",
"-c", "/boot.catalog",
"-b", "/boot/grub/i386-pc/eltorito.img",
"-no-emul-boot", "-boot-load-size", "4", "-boot-info-table",
"--grub2-boot-info",
"-eltorito-alt-boot",
"-e", "--interval:appended_partition_2:::",
"-no-emul-boot", "."
], check=True)
print(f"{COLOR_GREEN}ISO creada en '{iso_output_path}'.{COLOR_RESET}")"""
"""def create_meta_data_file(server_dir):
# URL base para los archivos meta-data
base_url = "https://raw.githubusercontent.com/DonComProject/arenita/main/src/iso-conf/meta-data"
# Obtener la lista de versiones disponibles
meta_data_list_url = f"{base_url}/000"
try:
response = requests.get(meta_data_list_url)
response.raise_for_status()
versions = response.text.splitlines()
except requests.exceptions.RequestException:
print(f"{COLOR_RED}Error al obtener la lista de versiones disponibles.{COLOR_RESET}")
sys.exit(1)
# Mostrar las versiones disponibles
print("Versiones disponibles:")
for i, version in enumerate(versions, start=1):
print(f"{i}. {version}")
# Solicitar al usuario que seleccione una versión
selected_version_index = input("Selecciona el número de la versión de meta-data: ").strip()
try:
selected_version_index = int(selected_version_index)
if selected_version_index < 1 or selected_version_index > len(versions):
raise ValueError
except ValueError:
print(f"{COLOR_YELLOW}Número de versión no válido. Saliendo del programa.{COLOR_RESET}")
sys.exit(1)
selected_version = versions[selected_version_index - 1]
# Construir la URL completa para el archivo meta-data seleccionado
meta_data_url = f"{base_url}/{selected_version}"
# Ruta al archivo meta-data local
meta_data_path = os.path.join(server_dir, "meta-data")
# Descargar el archivo meta-data
print(f"{COLOR_YELLOW}Descargando 'meta-data' desde {meta_data_url}...{COLOR_RESET}")
try:
subprocess.run(["wget", "-O", meta_data_path, meta_data_url], check=True)
print(f"{COLOR_GREEN}Archivo 'meta-data' descargado y almacenado en '{meta_data_path}'.{COLOR_RESET}")
except subprocess.CalledProcessError:
print(f"{COLOR_RED}Error al descargar el archivo 'meta-data'.{COLOR_RESET}")
sys.exit(1)
"""
def create_meta_data_file(server_dir):
# URL base para los archivos meta-data
base_url = "https://raw.githubusercontent.com/DonComProject/arenita/main/src/iso-conf/meta-data"
# Obtener la lista de versiones disponibles
meta_data_list_url = f"{base_url}/000"
try:
response = requests.get(meta_data_list_url)
response.raise_for_status()
versions = response.text.splitlines()
except requests.exceptions.RequestException:
print(f"{COLOR_RED}Error al obtener la lista de versiones disponibles.{COLOR_RESET}")
sys.exit(1)
# Mostrar las versiones disponibles
print("Versiones disponibles:")
for i, version in enumerate(versions, start=1):
print(f"{i}. {version}")
# Solicitar al usuario que seleccione una versión
selected_version_index = input("Selecciona el número de la versión de meta-data: ").strip()
try:
selected_version_index = int(selected_version_index)
if selected_version_index < 1 or selected_version_index > len(versions):
raise ValueError
except ValueError:
print(f"{COLOR_YELLOW}Número de versión no válido. Saliendo del programa.{COLOR_RESET}")
sys.exit(1)
selected_version = versions[selected_version_index - 1]
# Construir la URL completa para el archivo meta-data seleccionado
meta_data_url = f"{base_url}/{selected_version}"
# Ruta al archivo meta-data local
meta_data_path = os.path.join(server_dir, "meta-data")
# Descargar el archivo meta-data
print(f"{COLOR_YELLOW}Descargando 'meta-data' desde {meta_data_url}...{COLOR_RESET}")
try:
response = requests.get(meta_data_url)
response.raise_for_status()
with open(meta_data_path, 'w') as file:
file.write(response.text)
print(f"{COLOR_GREEN}Archivo 'meta-data' descargado y almacenado en '{meta_data_path}'.{COLOR_RESET}")
except requests.exceptions.RequestException:
print(f"{COLOR_RED}Error al descargar el archivo 'meta-data'.{COLOR_RESET}")
sys.exit(1)
# Leer el contenido del archivo meta-data
with open(meta_data_path, 'r') as file:
content = file.read()
# Reemplazar las variables
content = content.replace("{hostname}", "doncom")
content = content.replace("{username}", "admin")
# Encriptar la contraseña 'davidtomas'
encrypted_password = subprocess.run(["openssl", "passwd", "-6", "davidtomas"], capture_output=True, text=True).stdout.strip()
content = content.replace("{password}", encrypted_password)
# Guardar el archivo modificado
with open(meta_data_path, 'w') as file:
file.write(content)
print(f"{COLOR_GREEN}Archivo 'meta-data' modificado y guardado en '{meta_data_path}'.{COLOR_RESET}")
def build_iso(source_files_dir, iso_name):
iso_output_path = os.path.join(os.path.dirname(source_files_dir), f"{iso_name}.iso")
boot_dir = os.path.join(os.path.dirname(source_files_dir), "BOOT")
os.chdir(source_files_dir)
subprocess.run([
"xorriso", "-as", "mkisofs", "-r",
"-V", "Ubuntu 22.04 LTS AUTO (EFIBIOS)",
"-o", iso_output_path,
"--grub2-mbr", os.path.join(boot_dir, "1-Boot-NoEmul.img"),
"-partition_offset", "16",
"--mbr-force-bootable",
"-append_partition", "2", "28732ac11ff8d211ba4b00a0c93ec93b", os.path.join(boot_dir, "2-Boot-NoEmul.img"),
"-appended_part_as_gpt",
"-iso_mbr_part_type", "a2a0d0ebe5b9334487c068b6b72699c7",
"-c", "/boot.catalog",
"-b", "/boot/grub/i386-pc/eltorito.img",
"-no-emul-boot", "-boot-load-size", "4", "-boot-info-table",
"--grub2-boot-info",
"-eltorito-alt-boot",
"-e", "--interval:appended_partition_2:::",
"-no-emul-boot", "."
], check=True)
print(f"{COLOR_GREEN}ISO creada en '{iso_output_path}'.{COLOR_RESET}")