updated updater app to include better handeling with ipv4 and ipv6

This commit is contained in:
naturallaw77 2023-12-02 11:18:25 -08:00
parent 57789c6260
commit 7e257ece8b

View File

@ -3,7 +3,9 @@
set -o nounset
ID=$(echo | cat /var/lib/domains/wordpress)
ID=$(timeout 1 -k dig @resolver4.opendns.com myip.opendns.com +short -4)
ID6=$(timeout 1 dig -t aaaa +short myip.opendns.com @resolver1.opendns.com)
curl "https://git.sovransystems.com/Sovran_Systems/Software/raw/branch/main/Sovran_SystemsOS_Updater/Updater%20Source%20Files/Intro.md" |
@ -20,7 +22,7 @@ curl "https://git.sovransystems.com/Sovran_Systems/Software/raw/branch/main/Sovr
else
ssh root@${ID} 'flatpak update -y' |
ssh root@${ID} || ssh root${ID6} 'flatpak update -y' |
zenity --progress \
--no-cancel \
@ -43,7 +45,7 @@ curl "https://git.sovransystems.com/Sovran_Systems/Software/raw/branch/main/Sovr
fi
ssh root@${ID} 'cd /etc/nixos; nix flake update' |
ssh root@${ID} || ssh root${ID6} 'cd /etc/nixos; nix flake update' |
zenity --progress \
--no-cancel \
@ -65,7 +67,7 @@ curl "https://git.sovransystems.com/Sovran_Systems/Software/raw/branch/main/Sovr
fi
ssh root@${ID} 'nixos-rebuild switch --impure' |
ssh root@${ID} || ssh root${ID6} 'nixos-rebuild switch --impure' |
zenity --progress \
--no-cancel \