updated updater fix

This commit is contained in:
naturallaw77 2023-12-04 19:24:29 -08:00
parent f15f60a81d
commit bd3a3eb705

View File

@ -1,7 +1,5 @@
#!/usr/bin/env bash #!/usr/bin/env bash
set -o nounset
curl "https://git.sovransystems.com/Sovran_Systems/Software/raw/branch/main/Sovran_SystemsOS_Updater/Updater%20Source%20Files/Intro.md" | curl "https://git.sovransystems.com/Sovran_Systems/Software/raw/branch/main/Sovran_SystemsOS_Updater/Updater%20Source%20Files/Intro.md" |
zenity --text-info \ zenity --text-info \
@ -15,12 +13,78 @@ curl "https://git.sovransystems.com/Sovran_Systems/Software/raw/branch/main/Sovr
else else
xterm -fa 'Noto Mono' -fs 15 -fg white -bg black -e bash -c "ssh root@localhost 'flatpak update -y && cd /etc/nixos && nix flake update && nixos-rebuild switch --impure'" ssh root@localhost 'flatpak update -y' |
zenity --progress \
--no-cancel \
--auto-close \
--pulsate \
--width=500 \
--text="Updating Flatpaks" \
--title="Sovran_SystemsOS Updater"
if [[ $? -ne 0 ]]; then
echo "Could Not Update Flatpaks -- Exiting" |
zenity --text-info \
--width=500 \
--title="Sovran_SystemsOS Updater" \
exit 1
fi
ssh root@localhost 'cd /etc/nixos; nix flake update' |
zenity --progress \
--no-cancel \
--auto-close \
--pulsate \
--width=500 \
--text="Moving Files Into Place..." \
--title="Sovran_SystemsOS Updater"
if [[ $? -ne 0 ]]; then
echo "Could Not Update Flake -- Exiting" |
zenity --text-info \
--title="Sovran_SystemsOS Updater" \
--width=500 \
exit 1
fi
ssh root@localhost 'nixos-rebuild switch --impure' |
zenity --progress \
--no-cancel \
--auto-close \
--pulsate \
--width=500 \
--text="Updating, In Rare Cases, It Could Take Up To 3 Hours, Please Be Patient..." \
--title="Sovran_SystemsOS Updater"
if [[ $? -ne 0 ]]; then
echo "Could Not Update Sovran_SystemsOS -- Exiting" |
zenity --text-info \
--width=500 \
--title="Sovran_SystemsOS Updater"
exit 1
fi
zenity --info \ zenity --info \
--ellipsize \ --ellipsize \
--no-wrap \ --no-wrap \
--width=400 \ --width=500 \
--title="Sovran_SystemsOS Updater" \ --title="Sovran_SystemsOS Updater" \
--text="Yay Complete! Please Reboot When You Are Ready." --text="Yay Complete! Please Reboot When You Are Ready."