diff --git a/installer1.sh b/installer1.sh index 2ac1d23..1f5f54a 100644 --- a/installer1.sh +++ b/installer1.sh @@ -1,11 +1,11 @@ #!/bin/bash # updoot this echo "Updating this repo" -git pull +git pull 2>/dev/null 1>/dev/null # run da raspberry pi config script sudo raspi-config -echo "Rebooting in 5 minutes" +echo "Rebooting now!" sudo reboot # sudo shutdown -r +5 \ No newline at end of file diff --git a/installer2.sh b/installer2.sh index d842ba7..5ba7c22 100644 --- a/installer2.sh +++ b/installer2.sh @@ -2,15 +2,15 @@ set -e # updoot -echo "Updating software lists" -sudo apt update +echo "Updating software lists..." +sudo apt update 2>/dev/null 1>/dev/null -echo "Fully upgrading" -sudo apt dist-upgrade -y +echo "Fully upgrading, this may take a while..." +sudo apt dist-upgrade -y 2>/dev/null 1>/dev/null -echo "Cleaning up" -sudo apt autoremove +echo "Cleaning up..." +sudo apt autoremove -y 2>/dev/null 1>/dev/null -echo "Rebooting in 5 minutes" +echo "Rebooting now!" sudo reboot # sudo shutdown -r +5 \ No newline at end of file diff --git a/installer3.sh b/installer3.sh index fe1927c..3b4fd67 100644 --- a/installer3.sh +++ b/installer3.sh @@ -27,10 +27,10 @@ else fi # install em -echo "Getting new software lists" -sudo apt update +echo "Getting new software lists..." +sudo apt update 2>/dev/null 1>/dev/null -echo "Installing packages" +echo "Installing packages, this may take a while..." sudo apt install telegraf grafana influxdb pps-tools gpsd gpsd-clients chrony syslog-ng gh lynx btop htop iptraf iotop neovim netcat-traditional -y 2>/dev/null 1>/dev/null # check if /boot/firmware/config.txt is configured yet @@ -61,8 +61,8 @@ else fi echo "Cleaning up" -sudo apt autoremove # cleanup +sudo apt autoremove 2>/dev/null 1>/dev/null # cleanup -echo "Rebooting in 5 minutes" +echo "Rebooting now!" sudo reboot # sudo shutdown -r +5 \ No newline at end of file diff --git a/installer4.sh b/installer4.sh index 8c68e73..d65a209 100644 --- a/installer4.sh +++ b/installer4.sh @@ -29,6 +29,6 @@ sudo systemctl enable grafana-server sudo systemctl enable syslog-ng # reboot rq -echo "Rebooting in 5 minutes" +echo "Rebooting now!" sudo reboot # sudo shutdown -r +5 \ No newline at end of file