-
Notifications
You must be signed in to change notification settings - Fork 14
/
setup
executable file
·305 lines (268 loc) · 10.1 KB
/
setup
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
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
#!/bin/bash
# Proxmox Setup v1.0.1
# by: Matheew Alves
cd /Proxmox-Debian12 && clear
# Load configs files // Carregar os arquivos de configuração
source ./configs/*
# Function to display the language choice menu // Função para exibir o menu de escolha de linguagem
show_language_menu()
{
whiptail --title "Language Selection" --menu "Select your preferred language:" 15 40 2 \
1 "Português Brasileiro" \
2 "English" 2>tempfile
choice=$(cat tempfile)
rm -f tempfile
# Ask user for language preference // Perguntar ao usuário a preferência de linguagem
case $choice in
1)
language="pt-br"
;;
2)
language="en"
;;
*)
echo -e "${red}Canceling the installation...${default}"
exit 1
;;
esac
# Save the language choice in the setup_language.conf file // Salvar a escolha da linguagem no arquivo setup_language.conf
echo "LANGUAGE=$language" > ./configs/language.conf
echo -e "\nLanguage preference set to $language."
}
# Prerequisites // Pré-Requisitos
super_user()
{
# Becoming root // Tornando-se root
if [ "$(whoami)" != "root" ]; then
echo -e "${ciano}Log in as superuser...${default}"
sudo -E bash "$0" "$@" # Run the script as root // Executa o script como root
exit $?
fi
chmod +x scripts/*
chmod +rw configs/*
}
# Welcome
welcome()
{
# Welcome with Style
echo -e "${cyan} Script developed by: \e[1;92mhttps://github.com/mathewalves${normal}." && sleep 0.5
echo ""
echo ""
echo -e "${cyan} --> Welcome to the Proxmox Installation Script on Debian 12 ~~${default}" && sleep 0.5
echo -e "${blue} This script will install Proxmox on your Debian 12 and provide the option to install some additional packages...${default}" && sleep 0.5
echo ""
# Adding reboot message
echo -e "${yellow}WARNING: During the installation, the system may reboot several times. Avoid closing the script during installation!"
echo -e "Please be aware of this. Press 'Enter' to continue...${default}"
read ok
}
bem_vindo()
{
# Bem-vindo com estilo
echo -e "${cyan} Script desenvolvido por: \e[1;92mhttps://github.com/mathewalves${default}." && sleep 0.5
echo ""
echo ""
echo -e "${cyan} --> Bem-vindo ao Script de Instalação do Proxmox no Debian 12 ~~${default}" && sleep 0.5
echo -e "${blue} Este script instalará o Proxmox no seu Debian 12 e oferecerá a opção de instalar alguns pacotes adicionais...${default}" && sleep 0.5
echo ""
# Adicionando mensagem sobre reinicialização
echo -e "${yellow}AVISO: Durante a instalação, o sistema pode reiniciar várias vezes. Evite Fechar o Script durante a instalação!"
echo -e "Por favor, esteja ciente disso. Aperte 'Enter' para continuar...${default}"
read ok
}
additional_packages()
{
# Ask the user if they want to install additional packages
if whiptail --title "Installation of Additional Packages" --yesno "Do you want to install the additional packages?" 10 50; then
clear
# Installation of Additional Packages
install_nala
install_sudo
install_neofetch
install_network_tools
# Update system
update_system
# Install Proxmox part 1
./scripts/install_proxmox-1.sh
else
# If the answer is not 'Yes', assume it's 'No'
echo -e "${cyan}Skipping installation of additional packages...${default}"
./scripts/install_proxmox-1.sh
fi
}
pacotes_adicionais()
{
# Perguntar ao usuário se deseja instalar pacotes adicionais
if whiptail --title "Instalação de Pacotes Adicionais" --yesno "Deseja instalar os pacotes adicionais?" 10 50; then
clear
# Instalação de Pacotes adicionais
install_nala
instalar_sudo
install_neofetch
install_network_tools
# Atualizar sistema
update_system
# Install proxmox parte 1
./scripts/install_proxmox-1.sh
else
# Se a resposta não for 'Sim', então assume que é 'Não'
echo -e "${cyan}Pulando instalação dos pacotes adicionais...${default}"
./scripts/install_proxmox-1.sh
fi
}
# (en) Function to install sudo
install_sudo()
{
echo -e "${cyan}Starting sudo installation...${default}"
nala install -y sudo
echo -e "${blue}Looking for users to grant sudo permissions...${default}"
# List all users in the system with sudo permissions
all_sudo_users=$(grep -E '^[^:]+:[^:]+:[0-9]{4,}' /etc/passwd | cut -d: -f1)
# Build an array for use with whiptail
user_array=()
for user in $all_sudo_users; do
user_array+=("$user" "")
done
# Loop to allow the user to select or skip
while true; do
selected_user=$(whiptail --title "User Selection" --menu "Select a user to grant sudo permissions:" 15 60 6 "${user_array[@]}" 3>&1 1>&2 2>&3)
# Check the user's choice
if [ $? -eq 0 ]; then
# Check if the selected user already has sudo permissions
if id "$selected_user" &>/dev/null && groups "$selected_user" | grep -qw sudo; then
clear
echo -e "${blue}User ${cyan}$selected_user${blue} already has sudo permissions. No action needed.${default}"
else
clear
sed -i "/^sudo/s/$/$selected_user/" /etc/group
echo -e "${green}Sudo permissions updated for user:${cyan} $selected_user${default}."
fi
break
else
clear
echo -e "${yellow}Sudo permissions were not changed.${default}"
break
fi
done
}
# (pt-br) Função para instalar o sudo
instalar_sudo()
{
echo -e "${cyan}Iniciando instalação do sudo...${default}"
nala install -y sudo
echo -e "${blue}Procurando usuários para adicionar permissões sudo...${default}"
# Lista todos os usuários do sistema com permissões de sudo
all_sudo_users=$(grep -E '^[^:]+:[^:]+:[0-9]{4,}' /etc/passwd | cut -d: -f1)
# Constrói um array para usar com o whiptail
user_array=()
for user in $all_sudo_users; do
user_array+=("$user" "")
done
# Loop para permitir que o usuário selecione ou pule
while true; do
selected_user=$(whiptail --title "Seleção de Usuário" --menu "Selecione um usuário para adicionar permissões de sudo:" 15 60 6 "${user_array[@]}" 3>&1 1>&2 2>&3)
# Verifica a escolha do usuário
if [ $? -eq 0 ]; then
# Verifica se o usuário selecionado já tem permissões de sudo
if id "$selected_user" &>/dev/null && groups "$selected_user" | grep -qw sudo; then
clear
echo -e "${blue}O usuário ${cyan}$selected_user${blue} já possui permissões de sudo. Nenhuma ação necessária.${default}"
else
clear
sed -i "/^sudo/s/$/$selected_user/" /etc/group
echo -e "${green}Permissões de sudo atualizadas para o usuário:${cyan} $selected_user${default}."
fi
break
else
clear
echo "${yellow}Permissões de sudo não foram alteradas.${default}"
break
fi
done
}
# Function to install nala
install_nala()
{
if [ "$language" == "en" ]; then
echo -e "${cyan}Starting the installation of 'nala'...${default}"
else
echo -e "${cyan}Iniciando a instalação do 'nala'...${default}"
fi
apt install -y nala
if [ "$language" == "en" ]; then
echo -e "${green}'nala' installed successfully!${default}"
else
echo -e "${green}'nala' instalado com sucesso!${default}"
fi
}
# Function to install neofetch
install_neofetch()
{
if [ "$language" == "en" ]; then
echo -e "${cyan}Starting the installation of 'neofetch' with nala...${default}"
else
echo -e "${cyan}Iniciando a instalação do 'neofetch' com 'nala'...${default}"
fi
nala install -y neofetch
if [ "$language" == "en" ]; then
echo -e "${green}'neofetch' installed successfully!${default}"
else
echo -e "${green}'neofetch' instalado com sucesso!${default}"
fi
}
# Function to install network tools
install_network_tools()
{
if [ "$language" == "en" ]; then
echo -e "${cyan}Starting the installation of 'net-tools' & 'nmap' with nala...${default}"
else
echo -e "${cyan}Iniciando a instalação de 'net-tools' e 'nmap' com nala...${default}"
fi
nala install -y nmap && nala install -y net-tools
if [ "$language" == "en" ]; then
echo -e "${green}Packages installed successfully!${default}"
else
echo -e "${green}Pacotes instalados com sucesso!${default}"
fi
}
# Function to update the system
update_system()
{
if [ "$language" == "en" ]; then
echo -e "${cyan}Updating the system...${default}"
else
echo -e "${cyan}Atualizando o sistema...${default}"
fi
nala update -y && nala upgrade -y
if [ "$language" == "en" ]; then
echo -e "${green}Update successful!${default}"
else
echo -e "${green}Atualização bem-sucedida!${default}"
fi
}
main()
{
super_user
show_language_menu
clear
# Emoji ASCII
echo -e "${red} _ "
echo -e "${red} _ __ _ __ _____ ___ __ ___ _____ __ ___ ___| |_ _ _ _ __ "
echo -e "${red} | '_ \| '__/ _ \ \/ / '_ \` _ \ / _ \ \/ / / __|/ _ \ __| | | | _ \\"
echo -e "${red} | |_) | | | (_) > <| | | | | | (_) > < \__ \ __/ |_| |_| | |_) |"
echo -e "${red} | .__/|_| \___/_/\_\_| |_| |_|\___/_/\_\ _____ |___/\___|\__|\__,_| .__/"
echo -e "${red} |_| |_____| |_| ${yellow}v1.0.1${default}"
echo -e "\e[0m"
sleep 0.5
if [ "$language" == "en" ]; then
welcome
else
bem_vindo
fi
if [ "$language" == "en" ]; then
additional_packages
else
pacotes_adicionais
fi
}
main