restore update

This commit is contained in:
Heavybullets8 2022-07-29 00:34:55 -06:00
parent 291ad68542
commit 73f060cea3

View File

@ -119,22 +119,24 @@ while true
do do
clear -x && echo "pulling restore points.." clear -x && echo "pulling restore points.."
list_backups=$(cli -c 'app kubernetes list_backups' | grep "HeavyScript_" | sort -t '_' -Vr -k2,7 | tr -d " \t\r" | awk -F '|' '{print $2}' | nl -s ") " | column -t) list_backups=$(cli -c 'app kubernetes list_backups' | grep "HeavyScript_" | sort -t '_' -Vr -k2,7 | tr -d " \t\r" | awk -F '|' '{print $2}' | nl -s ") " | column -t)
clear -x
if [[ -z "$list_backups" ]]; then if [[ -z "$list_backups" ]]; then
echo "No HeavyScript restore points available" echo "No HeavyScript restore points available"
exit exit
else fi
while true
do
clear -x
title title
echo "Choose a Restore Point" echo "Choose a Restore Point"
fi
echo "$list_backups" echo "$list_backups"
echo echo
echo "0) Exit" echo "0) Exit"
read -rt 120 -p "Please type a number: " selection read -rt 120 -p "Please type a number: " selection
[[ $selection == 0 ]] && echo "Exiting.." && exit
restore_point=$(echo "$list_backups" | grep ^"$selection)" | awk '{print $2}') restore_point=$(echo "$list_backups" | grep ^"$selection)" | awk '{print $2}')
#Check for valid selection. If none, kill script if [[ $selection == 0 ]]; then
if [[ -z "$selection" ]]; then echo "Exiting.."
exit
elif [[ -z "$selection" ]]; then
echo "Your selection cannot be empty" echo "Your selection cannot be empty"
sleep 3 sleep 3
continue continue
@ -143,6 +145,7 @@ do
sleep 3 sleep 3
continue continue
fi fi
done
while true while true
do do
clear -x clear -x