Software/Sovran_SystemsOS_Updater/Updater Source Files/Update_Sovran_SystemsOS.sh

104 lines
2.0 KiB
Bash
Raw Normal View History

2023-05-22 19:32:08 -07:00
#!/usr/bin/env bash
2023-05-22 14:32:15 -07:00
set -o nounset
2023-12-01 10:02:36 -08:00
2023-12-02 12:01:21 -08:00
ID6=$(timeout 1 -K dig -t aaaa +short myip.opendns.com @resolver1.opendns.com)
2023-12-02 11:41:49 -08:00
2023-12-02 11:39:52 -08:00
ID=$(timeout 1 dig @resolver4.opendns.com myip.opendns.com +short -4)
2023-12-02 11:41:49 -08:00
2023-05-22 14:32:15 -07:00
2023-12-01 10:02:36 -08:00
curl "https://git.sovransystems.com/Sovran_Systems/Software/raw/branch/main/Sovran_SystemsOS_Updater/Updater%20Source%20Files/Intro.md" |
2023-06-19 12:54:55 -07:00
zenity --text-info \
2023-12-01 10:02:36 -08:00
--title="Sovran_SystemsOS Updater" \
--width=1000 \
--height=700
2023-05-23 20:10:41 -07:00
if [[ $? -eq 1 ]]; then
2023-12-01 09:45:44 -08:00
exit 1
else
2023-12-01 09:45:44 -08:00
2023-12-02 11:46:11 -08:00
ssh root@${ID6} 'flatpak update -y' || ssh root@${ID} 'flatpak update -y' |
2023-12-01 16:52:13 -08:00
zenity --progress \
--no-cancel \
--auto-close \
--pulsate \
--width=500 \
--text="Updating Flatpaks" \
--title="Sovran_SystemsOS Updater"
2023-12-01 09:45:44 -08:00
if [[ $? != 0 ]]; then
2023-12-01 10:00:13 -08:00
echo "Could Not Update Flatpaks -- Exiting" |
2023-12-01 09:45:44 -08:00
zenity --text-info \
--title="Sovran_SystemsOS Updater" \
--width=500 \
exit 1
fi
2023-12-02 11:46:11 -08:00
ssh root@${ID6} 'cd /etc/nixos; nix flake update' || ssh root@${ID} 'cd /etc/nixos; nix flake update' |
2023-06-19 12:54:55 -07:00
zenity --progress \
--no-cancel \
--auto-close \
--pulsate \
--width=500 \
2023-06-19 13:01:20 -07:00
--text="Moving Files Into Place..." \
2023-06-19 12:54:55 -07:00
--title="Sovran_SystemsOS Updater"
if [[ $? != 0 ]]; then
2023-12-01 09:45:44 -08:00
echo "Could Not Update Flake -- Exiting" |
zenity --text-info \
--title="Sovran_SystemsOS Updater" \
2023-06-18 09:29:21 -07:00
--width=500 \
2023-12-01 09:45:44 -08:00
exit 1
fi
2023-12-02 11:46:11 -08:00
ssh root@${ID6} 'nixos-rebuild switch --impure' || ssh root@${ID} 'nixos-rebuild switch --impure' |
2023-12-01 10:00:13 -08:00
zenity --progress \
--no-cancel \
--auto-close \
--pulsate \
--width=500 \
2023-12-01 10:10:10 -08:00
--text="Updating, In Rare Cases, It Could Take Up To 3 Hours, Please Be Patient..." \
2023-12-01 10:00:13 -08:00
--title="Sovran_SystemsOS Updater"
if [[ $? != 0 ]]; then
2023-12-01 09:45:44 -08:00
echo "Could Not Update Sovran_SystemsOS -- Exiting" |
zenity --text-info \
--title="Sovran_SystemsOS Updater" \
2023-06-18 09:29:21 -07:00
--width=500 \
2023-12-01 09:45:44 -08:00
exit 1
fi
zenity --info \
--ellipsize \
--no-wrap \
2023-06-18 09:29:21 -07:00
--width=500 \
--title="Sovran_SystemsOS Updater" \
2023-06-18 09:29:21 -07:00
--text="Yay Complete! Please Reboot When You Are Ready."
2023-06-19 12:54:55 -07:00
fi
2023-05-22 14:32:15 -07:00
2023-09-23 21:12:42 -07:00
exit 0