Files
Precision-Timekeeping-Fuckery/installer2.sh
T
2025-06-13 17:46:34 -06:00

23 lines
448 B
Bash

#!/bin/bash
set -e
# echo "Updating this repo..."
# git pull 1>/dev/null 2>/dev/null
# updoot
echo "Updating software lists..."
sudo apt update 1>/dev/null 2>/dev/null
echo "Fully upgrading, this may take a while..."
sudo apt dist-upgrade -y
echo "Cleaning up..."
sudo apt autoremove -y
echo "Installer2.sh complete" >> ./status.txt
echo "Part 2 done!"
# echo "Rebooting now!"
# sudo reboot
echo "Rebooting in 2 minutes!!"
sudo shutdown -r +2