Actualiser install_deps.sh

This commit is contained in:
the_booth 2024-08-26 23:23:15 +02:00
parent 477884f330
commit 51ae501dd9

View File

@ -1,11 +1,5 @@
#!/bin/bash
# Fonction pour afficher un message d'erreur et quitter le script
function error_exit() {
echo "$1" >&2
exit 1
}
# Fonction pour Debian/Ubuntu
function install_debian() {
echo "Installation sur Debian/Ubuntu..."
@ -29,7 +23,7 @@ case "$OS" in
DISTRO=$(lsb_release -i | awk '{print tolower($3)}')
case "$DISTRO" in
debian|ubuntu)
install_htop_debian
install_debian
;;
fedora)
install_fedora
@ -39,7 +33,6 @@ case "$OS" in
;;
*)
echo "Distribution non supportée : $DISTRO"
error_exit "Installation de htop non supportée pour cette distribution."
;;
esac
;;
@ -51,4 +44,4 @@ case "$OS" in
;;
esac
echo "Installation de htop terminée avec succès."
echo "Installation terminée avec succès."