From ab4387010f2571a4928f17f70b7aabf24f5c971f Mon Sep 17 00:00:00 2001 From: Tiago Date: Sat, 14 Feb 2026 19:48:31 +0000 Subject: [PATCH] Update debian/setup_raspberry.sh --- debian/setup_raspberry.sh | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/debian/setup_raspberry.sh b/debian/setup_raspberry.sh index 658700a..6fb5398 100644 --- a/debian/setup_raspberry.sh +++ b/debian/setup_raspberry.sh @@ -280,9 +280,12 @@ install_dependencies() { fi # Install required dependencies - if ask_confirmation "Do you want to install the required dependencies (figlet, bc, lsof, net-tools, macchanger)?" "n"; then - log "Installing required dependencies (figlet, bc, lsof, net-tools, macchanger)..." - if apt install -y figlet bc lsof net-tools macchanger; then + # if ask_confirmation "Do you want to install the required dependencies (figlet, bc, lsof, net-tools, macchanger)?" "n"; then + # log "Installing required dependencies (figlet, bc, lsof, net-tools, macchanger)..." + # if apt install -y figlet bc lsof net-tools macchanger; then + if ask_confirmation "Do you want to install the required dependencies (figlet, bc, lsof, net-tools)?" "n"; then + log "Installing required dependencies (figlet, bc, lsof, net-tools)..." + if apt install -y figlet bc lsof net-tools; then log "${GREEN}Dependencies installed successfully${NC}" return 0 else