debian-garage/install_main.sh
2024-05-24 12:42:09 +02:00

42 lines
1.9 KiB
Bash
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

#!/bin/bash
echo "
███████╗ ██████╗██████╗ ██╗██████╗ ████████╗ ███╗ ███╗ █████╗ ██╗███╗ ██╗
██╔════╝██╔════╝██╔══██╗██║██╔══██╗╚══██╔══╝ ████╗ ████║██╔══██╗██║████╗ ██║
███████╗██║ ██████╔╝██║██████╔╝ ██║ ██╔████╔██║███████║██║██╔██╗ ██║
╚════██║██║ ██╔══██╗██║██╔═══╝ ██║ ██║╚██╔╝██║██╔══██║██║██║╚██╗██║
███████║╚██████╗██║ ██║██║██║ ██║ ██║ ╚═╝ ██║██║ ██║██║██║ ╚████║
╚══════╝ ╚═════╝╚═╝ ╚═╝╚═╝╚═╝ ╚═╝ ╚═╝ ╚═╝╚═╝ ╚═╝╚═╝╚═╝ ╚═══╝"
# SCRIPT IN
echo "Lancement du script in"
./install_in.sh
if [ $? -eq 0 ]; then
echo "Le script in s'est bien exécuté"
else
echo "Il y a eu une erreur lors de lexécution du script in"
exit 1
fi
# SCRIPT DEVOPS
echo "Lancement du script devops"
./install_devops.sh
if [ $? -eq 0 ]; then
echo "Le script devops s'est bien exécuté"
else
echo "Il y a eu une erreur lors de lexécution du script devops"
exit 1
fi
# SCRIPT OUT
echo "Lancement du script out"
./install_out.sh
if [ $? -eq 0 ]; then
echo "Le script in s'est bien exécuté"
else
echo "Il y a eu une erreur lors de lexécution du script out"
exit 1
fi