You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

42 lines
1.9 KiB
Bash

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

#!/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