From 16d054a501979d4f02f1b64285afdc8ee0bce62f Mon Sep 17 00:00:00 2001 From: PrincessPi3 Date: Sat, 14 Jun 2025 02:36:38 -0600 Subject: [PATCH] 1.2-dev --- installer2.sh | 4 ++-- installer3.sh | 14 +++++++------- installer_auto.sh | 2 +- 3 files changed, 10 insertions(+), 10 deletions(-) diff --git a/installer2.sh b/installer2.sh index f097b04..d6babc4 100644 --- a/installer2.sh +++ b/installer2.sh @@ -2,10 +2,10 @@ set -e echo "Fully upgrading, this may take a while..." -sudo apt dist-upgrade -y +sudo apt dist-upgrade -y > /dev/null echo "Cleaning up..." -sudo apt autoremove -y +sudo apt autoremove -y > /dev/null echo "Installer2.sh complete" >> ./status.txt diff --git a/installer3.sh b/installer3.sh index b2c134d..f84f731 100644 --- a/installer3.sh +++ b/installer3.sh @@ -28,20 +28,20 @@ fi # updoot echo "Getting new software lists..." -sudo apt update 1>/dev/null 2>/dev/null +sudo apt update > /dev/null # clean up echo "Disabling unneeded junk..." -sudo systemctl disable bluetooth 1>/dev/null 2>/dev/null -sudo update-rc.d -f fake-hwclock remove -sudo systemctl disable fake-hwclock +sudo systemctl disable bluetooth > /dev/null +sudo update-rc.d -f fake-hwclock remove > /dev/null +sudo systemctl disable fake-hwclock > /dev/null echo "Purging unneeded junk..." -sudo apt purge -y "bluetooth*" "usb*" "wireless*" "pci*" "fonts*" build-essential "bluez*" "alsa*" fake-hwclock +sudo apt purge -y "bluetooth*" "usb*" "wireless*" "pci*" "fonts*" build-essential "bluez*" "alsa*" fake-hwclock > /dev/null # install da packages echo "Installing packages, this may take a while..." -sudo apt install -y telegraf grafana influxdb pps-tools gpsd gpsd-clients chrony syslog-ng gh lynx btop htop iptraf iotop neovim netcat-traditional python3-smbus i2c-tools picocom +sudo apt install -y telegraf grafana influxdb pps-tools gpsd gpsd-clients chrony syslog-ng gh lynx btop htop iptraf iotop neovim netcat-traditional python3-smbus i2c-tools picocom > /dev/null # check if pps-gpio is in /etc/modules already grep -e "pps-gpio" /etc/modules @@ -56,7 +56,7 @@ else fi echo "Cleaning up..." -sudo apt autoremove -y # cleanup +sudo apt autoremove -y > /dev/null # cleanup if [ ! -z $SUDO_USER ]; then username=$SUDO_USER diff --git a/installer_auto.sh b/installer_auto.sh index af996b5..19f1742 100644 --- a/installer_auto.sh +++ b/installer_auto.sh @@ -10,7 +10,7 @@ else fi echo "Updating Software Lists" -sudo apt update +sudo apt update > /dev/null echo "Installing git" sudo apt install git -y