-
Notifications
You must be signed in to change notification settings - Fork 0
/
Instalar_HMCC_Server.bash
executable file
·98 lines (73 loc) · 2.38 KB
/
Instalar_HMCC_Server.bash
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
#!/bin/bash
# Executa instalação como root
function run_as_root() {
# Instala o script Wait-ForPidToShutdown.bash
function instalar_script_wait_for_pid_to_shutdown() {
file_name="Wait-ForPidToShutdown.bash"
destination="/bin/$file_name"
cp "./$file_name" "$destination"
chmod +x "$destination"
}
# Instala o script Update-All.bash
function instalar_script_update_all() {
file_name="Update-All.bash"
destination="/bin/$file_name"
cp "./$file_name" "$destination"
chmod +x "$destination"
}
# Instala pacotes dnf
function instalar_pacotes_dnf() {
# Habilitando RPM Fusion
bash ./Enable-RpmFusion.bash
# Instalando os Sistemas de arquivos não nativos do linux
dnf install --assumeyes ntfs-3g
dnf install --assumeyes exfat-utils
dnf install --assumeyes fuse
dnf install --assumeyes fuse-exfat
# Instalando os programas para sincronização
dnf install --assumeyes rsync
dnf install --assumeyes git
dnf install --assumeyes git-lfs
}
# Carregando dados do arquivo .env
source .env
# Configurando o sshd_config
bash ./ConfigurarSshdConfig.bash
# Configurando DNF
bash ./ConfigurarDnfPackageManager.bash
# Desabilitando o Cockpit
bash ./Disable-Cockpit.bash
# Alterando o nome do computador
hostnamectl set-hostname --static "$hostname_hmcc_server"
# Habilitando o RPM Fusion
bash ./Enable-RpmFusion.bash
# Configurando o NTP
bash ./ConfigurarNtp.bash
# Configurando DNF Automatic
bash ./ConfigurarAtualizacoesAutomaticasDnfAutomatic.bash
# Instalando pacotes dnf
instalar_pacotes_dnf
# Instalando o Flatpak
bash ./Install-Flatpak.bash
# Instalando o Snap
bash ./Install-Snapd.bash
# Instalando Java
bash ./Install-Java_8_Headless.bash
bash ./Install-Java_21_Headless.bash
# Instalando o Docker
bash ./Install-DockerEngine.bash
# Instalando o Dynamic DNS Update Client
bash ./Install-Dynamic_Dns_Update_Client.bash
# Atualizando todos os pacotes instalados
bash ./Update-All.bash
# Instalando o script Update-All.bash
instalar_script_update_all
# Instalando o script Wait-ForPidToShutdown.bash
instalar_script_wait_for_pid_to_shutdown
}
# Instalando programas como root
if [ "$(whoami)" == "root" ]; then
bash -c "$(declare -f run_as_root); run_as_root"
else
sudo bash -c "$(declare -f run_as_root); run_as_root"
fi