Software/Sovran_SystemsOS_Updater/Updater Source Files/Update_Sovran_SystemsOS.sh

68 lines
1.4 KiB
Bash
Raw Normal View History

#!/usr/bin/env bash
2023-12-05 16:56:37 -08:00
FLATPAK () {
2024-03-13 20:01:59 -07:00
if ! ssh root@localhost 'flatpak update -y' ; then
zenity --error \
--title="Sovran_SystemsOS Updater" \
--text="Could Not Update Flatpaks."
exit 1
2023-12-06 10:43:02 -08:00
fi
}
2023-12-06 10:08:06 -08:00
SPICE () {
time_stamp=$(date +%Y-%m-%d-%T)
mkdir -p /home/free/Documents/Updater_App_Logs
2024-03-13 20:01:59 -07:00
if ! ssh root@localhost 'cd /etc/nixos && nix flake update && nixos-rebuild switch --impure' ; then
zenity --error \
--width=400 \
--title="Sovran_SystemsOS Updater" \
--text="Could not complete the Sovran_SystemsOS update."
2024-03-13 16:58:38 -07:00
exit 1
else
zenity --info \
--ellipsize \
--no-wrap \
--width=500 \
--title="Sovran_SystemsOS Updater" \
--text="Yay complete! Please reboot when you are ready."
2023-12-06 10:43:02 -08:00
fi
2023-12-05 16:56:37 -08:00
2023-12-06 10:43:02 -08:00
}
2023-12-06 10:08:06 -08:00
#########
curl "https://git.sovransystems.com/Sovran_Systems/Software/raw/branch/main/Sovran_SystemsOS_Updater/Updater%20Source%20Files/Intro.md" |
zenity --text-info \
--width=1000 \
2023-12-11 15:28:04 -08:00
--height=750 \
--title="Sovran_SystemsOS Updater"
2023-12-06 09:14:02 -08:00
2023-12-06 10:08:06 -08:00
if [[ $? -eq 1 ]]; then
2023-12-06 09:14:02 -08:00
exit 1
2023-12-06 09:14:02 -08:00
else
FLATPAK | zenity --progress --no-cancel --auto-close --width=460 --pulsate --text="Updating Flatpaks now..." --title="Sovran_SystemsOS Updater"
2024-03-13 17:47:38 -07:00
SPICE | zenity --progress --no-cancel --auto-close --width=850 --pulsate --text="Updating now. In rare cases, it could take up to 3 hours. Go have some herbal tea and relax while the update is in progress." --title="Sovran_SystemsOS Updater"
2024-03-13 18:14:07 -07:00
find /home/free/Documents/Updater_App_Logs -name "*.txt" -type f -mtime +5 -delete
2023-12-06 10:08:06 -08:00
fi
2023-12-06 09:15:50 -08:00
exit 0