forked from oriondesign2015/SetupOrion
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSetup
56 lines (42 loc) · 1.16 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
#!/bin/bash
# Verifica se o usuário é root
if [ "$(id -u)" -ne 0 ]; then
echo "Este script precisa ser executado como root. Executando sudo su..."
sudo su
fi
# Verifica se o usuário está no diretório /root/
if [ "$PWD" != "/root" ]; then
echo "Mudando para o diretório /root/"
cd /root || exit
fi
# Verifica se está usando Ubuntu 20.04
if ! grep -q 'Ubuntu 20.04' /etc/os-release; then
echo "Este script recomenda o uso do Ubuntu 20.04."
sleep 3
fi
# Resto do seu script
sudo apt-get install -y apt-utils
sudo apt-get install -y dialog
sudo apt-get install -y jq
sudo apt install jq -y
sudo apt update
sudo apt upgrade -y
# Verifica se o arquivo SetupOrion já existe
if [ -e "SetupOrion" ]; then
echo "O arquivo SetupOrion já existe. Removendo..."
rm SetupOrion
fi
# Baixa o script
curl -sSL https://raw.githubusercontent.com/oriondesign2015/SetupOrion/main/SetupOrion -o SetupOrion
# Verifica se o download foi bem-sucedido
if [ $? -eq 0 ]; then
# Executa o script baixado
chmod +x SetupOrion
./SetupOrion
else
echo "Falha ao baixar o script SetupOrion"
fi
sudo apt update
sudo apt upgrade -y
clear
rm SetupOrion