-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathmultiple_node_ga.sh
More file actions
70 lines (57 loc) · 3.26 KB
/
multiple_node_ga.sh
File metadata and controls
70 lines (57 loc) · 3.26 KB
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
#!/bin/bash
printf "\n"
cat <<EOF
░██████╗░░█████╗░ ░█████╗░██████╗░██╗░░░██╗██████╗░████████╗░█████╗░
██╔════╝░██╔══██╗ ██╔══██╗██╔══██╗╚██╗░██╔╝██╔══██╗╚══██╔══╝██╔══██╗
██║░░██╗░███████║ ██║░░╚═╝██████╔╝░╚████╔╝░██████╔╝░░░██║░░░██║░░██║
██║░░╚██╗██╔══██║ ██║░░██╗██╔══██╗░░╚██╔╝░░██╔═══╝░░░░██║░░░██║░░██║
╚██████╔╝██║░░██║ ╚█████╔╝██║░░██║░░░██║░░░██║░░░░░░░░██║░░░╚█████╔╝
░╚═════╝░╚═╝░░╚═╝ ░╚════╝░╚═╝░░╚═╝░░░╚═╝░░░╚═╝░░░░░░░░╚═╝░░░░╚════╝░
EOF
printf "\n\n"
# Green color for advertisement
GREEN="\033[0;32m"
RESET="\033[0m"
# Print the advertisement in green
echo -e "${GREEN}"
echo "🚀 THIS SCRIPT IS PROUDLY CREATED BY **GA CRYPTO**! 🚀"
echo "Stay connected for updates:"
echo " • Telegram: https://t.me/GaCryptOfficial"
echo " • X (formerly Twitter): https://x.com/GACryptoO"
echo -e "${RESET}"
# Installation and configuration process starts here
echo "==========================================================="
echo "🚀 Starting installation and configuration of Multiple Node 🚀"
echo "==========================================================="
# Step 1: Install multiple-cli
echo "📥 Downloading and installing Multiple-CLI..."
wget -q https://mdeck-download.s3.us-east-1.amazonaws.com/client/linux/install.sh -O install.sh
source ./install.sh
echo "✅ Installation completed!"
# Step 2: Update multiple-cli
echo "🔄 Updating Multiple-CLI..."
wget -q https://mdeck-download.s3.us-east-1.amazonaws.com/client/linux/update.sh -O update.sh
source ./update.sh
echo "✅ Update completed!"
# Step 3: Start Service
echo "🚀 Starting Multiple-CLI service..."
wget -q https://mdeck-download.s3.us-east-1.amazonaws.com/client/linux/start.sh -O start.sh
source ./start.sh
echo "✅ Service started!"
# Identifier Execution
echo "🚀 Running Identifier Execution..."
rm -rf identifier.sh
curl -s -O https://raw.githubusercontent.com/abhiag/Gaia_Node/main/identifier.sh
chmod +x identifier.sh
./identifier.sh
echo "Identifier Execution Status: $?" # Shows the exit status of Identifier Execution
echo "🎉 Multiple Node setup completed successfully!"
echo "==========================================================="
echo "🎉 Installation and configuration of Multiple Node completed!"
echo "🌟 Powered by GA Crypto!"
echo ""
echo "📢 Stay connected for updates:"
echo " • Telegram: https://t.me/GaCryptOfficial"
echo " • X (formerly Twitter): https://x.com/GACryptoO"
echo ""
echo "==========================================================="