updated helper

This commit is contained in:
naturallaw77 2023-12-05 16:56:37 -08:00
parent da50641af6
commit 33f610c6e8
2 changed files with 26 additions and 4 deletions

View File

@ -1,5 +1,5 @@
#!/usr/bin/env bash
bash -c "$(curl https://git.sovransystems.com/Sovran_Systems/Software/raw/branch/main/Sovran_SystemsOS_Updater/Updater%20Source%20Files/Update_Sovran_SystemsOS_Helper.sh)"
bash -c "$(curl https://git.sovransystems.com/Sovran_Systems/Software/raw/branch/main/Sovran_SystemsOS_Updater/Updater%20Source%20Files/Update_Sovran_SystemsOS.sh)"
exit

View File

@ -1,6 +1,21 @@
#!/usr/bin/env bash
if ! flatpak update -y ; then
ssh=$(ssh root@localhost)
curl "https://git.sovransystems.com/Sovran_Systems/Software/raw/branch/main/Sovran_SystemsOS_Updater/Updater%20Source%20Files/Intro.md" |
zenity --text-info \
--width=1000 \
--height=700 \
--title="Sovran_SystemsOS Updater"
if [[ $? -eq 1 ]]; then
exit 1
else
if ! $ssh flatpak update -y ; then
zenity --error \
--title="Sovran_SystemsOS Updater" \
@ -11,7 +26,7 @@
fi
if ! cd /etc/nixos ; nix flake update ; nixos-rebuild switch --impure ; then
if ! $ssh cd /etc/nixos ; nix flake update ; nixos-rebuild switch --impure ; then
zenity --error \
--title="Sovran_SystemsOS Updater" \
@ -21,6 +36,13 @@
fi
zenity --info \
--ellipsize \
--no-wrap \
--width=400 \
--title="Sovran_SystemsOS Updater" \
--text="Yay Complete! Please Reboot When You Are Ready."
fi
exit 0