-
Notifications
You must be signed in to change notification settings - Fork 18
/
install.sh
63 lines (54 loc) · 2.09 KB
/
install.sh
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
#!/bin/bash
# Vérifier si un argument a été fourni
if [ -z "$1" ]; then
echo "Aucun argument fourni. Aucun script ne sera ajouté à 1hcron.sh."
else
# Récupérer l'argument
ARGUMENT="$1"
# Initialiser la variable pour le script Python
PYTHON_SCRIPT=""
# Déterminer le script Python en fonction de l'argument
if [ "$ARGUMENT" == "trix_multi_bitmart" ]; then
PYTHON_SCRIPT="python3 Live-Tools-V2/strategies/trix/multi_bitmart.py"
elif [ "$ARGUMENT" == "trix_multi_bitmart_lite" ]; then
PYTHON_SCRIPT="python3 Live-Tools-V2/strategies/trix/multi_bitmart_lite.py"
elif [ "$ARGUMENT" == "envelopes_multi_bitget" ]; then
PYTHON_SCRIPT="python3 Live-Tools-V2/strategies/envelopes/multi_bitget.py"
else
echo "Argument non reconnu. Aucun ajout ne sera effectué."
fi
# Si un script Python a été défini, procéder à l'ajout
if [ -n "$PYTHON_SCRIPT" ]; then
# Vérifier si la ligne existe déjà dans 1hcron.sh
if grep -Fxq "$PYTHON_SCRIPT" Live-Tools-V2/1hcron.sh; then
echo "Le script $PYTHON_SCRIPT existe déjà dans 1hcron.sh"
else
# Ajouter la ligne au fichier 1hcron.sh
echo "$PYTHON_SCRIPT" >> Live-Tools-V2/1hcron.sh
echo "Le script $PYTHON_SCRIPT a été ajouté à 1hcron.sh"
fi
fi
fi
echo "Mise à jour du serveur..."
sudo apt-get update
echo "Installation de pip..."
sudo apt install pip -y
# Créer le fichier de log s'il n'existe pas
touch cronlog.log
echo "Installation des packages nécessaires..."
cd Live-Tools-V2
sudo apt-get install python3-venv -y
python3 -m venv .venv
source .venv/bin/activate
pip install -r requirements.txt
git update-index --assume-unchanged secret.py
cd ..
# Ajouter la tâche cron si elle n'existe pas déjà
crontab -l | grep -q 'bash ./Live-Tools-V2/1hcron.sh'
if [ $? -ne 0 ]; then
# Ajouter la tâche cron
(crontab -l 2>/dev/null; echo "0 * * * * /bin/bash ./Live-Tools-V2/1hcron.sh >> cronlog.log") | crontab -
echo "Tâche cron ajoutée avec succès."
else
echo "La tâche cron existe déjà."
fi