Software/Sovran_SystemsOS_Updater/Updater Source Files/Update_Sovran_SystemsOS.sh
2023-12-01 17:13:42 -08:00

104 lines
2.0 KiB
Bash
Executable File

#!/usr/bin/env bash
set -o nounset
Domain=$(echo | cat /var/lib/domains/wordpress)
ID=$(timeout S2 dig $Domain A +short)
ID6=$(timeout 2 dig $Domain AAAA +short)
curl "https://git.sovransystems.com/Sovran_Systems/Software/raw/branch/main/Sovran_SystemsOS_Updater/Updater%20Source%20Files/Intro.md" |
zenity --text-info \
--title="Sovran_SystemsOS Updater" \
--width=1000 \
--height=700
if [[ $? -eq 1 ]]; then
exit 1
else
ssh root@${ID} 'flatpak update -y' || ssh root@${ID6} 'flatpak update -y' |
zenity --progress \
--no-cancel \
--auto-close \
--pulsate \
--width=500 \
--text="Updating Flatpaks" \
--title="Sovran_SystemsOS Updater"
if [[ $? != 0 ]]; then
echo "Could Not Update Flatpaks -- Exiting" |
zenity --text-info \
--title="Sovran_SystemsOS Updater" \
--width=500 \
exit 1
fi
ssh root@${ID} 'cd /etc/nixos; nix flake update' || ssh root@${ID6} '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 [[ $? != 0 ]]; then
echo "Could Not Update Flake -- Exiting" |
zenity --text-info \
--title="Sovran_SystemsOS Updater" \
--width=500 \
exit 1
fi
ssh root@${ID} 'nixos-rebuild switch --impure' || ssh root@${ID6} '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 [[ $? != 0 ]]; then
echo "Could Not Update Sovran_SystemsOS -- Exiting" |
zenity --text-info \
--title="Sovran_SystemsOS Updater" \
--width=500 \
exit 1
fi
zenity --info \
--ellipsize \
--no-wrap \
--width=500 \
--title="Sovran_SystemsOS Updater" \
--text="Yay Complete! Please Reboot When You Are Ready."
fi
exit 0