update updater script

This commit is contained in:
naturallaw77 2024-03-13 21:09:40 -07:00
parent 35181a20e9
commit a7ad9f61b2

View File

@ -19,9 +19,7 @@ time_stamp=$(date +%Y-%m-%d-%T)
mkdir -p /home/free/Documents/Updater_App_Logs
find /home/free/Documents/Updater_App_Logs -name "*.txt" -type f -mtime +5 -delete
if ! ssh root@localhost 'cd /etc/nixos && nix flake update && nixos-rebuild switch &> /home/free/Documents/Updater_App_Logs/'$time_stamp'_Updater_Log.txt' ; then
if ! xterm -T "Sovran_SystemsOS Updater" -fa 'Noto Mono' -fs 15 -fg white -bg black -e bash -c "ssh root@localhost 'cd /etc/nixos && nix flake update && nixos-rebuild switch --impure'" ; then
zenity --error \
--width=500 \
@ -62,6 +60,8 @@ else
SPICE | zenity --progress --no-cancel --auto-close --width=750 --pulsate --text="Updating now. In rare cases, it could take up to 1 hour. Go have some herbal tea and relax while the update is in progress." --title="Sovran_SystemsOS_Light Updater"
find /home/free/Documents/Updater_App_Logs -name "*.txt" -type f -mtime +5 -delete
fi
exit 0