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
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)
clear -x
if [[ -z "$list_backups" ]]; then
echo "No HeavyScript restore points available"
exit
else
fi
while true
do
clear -x
title
echo "Choose a Restore Point"
fi
echo "$list_backups"
echo
echo "0) Exit"
read -rt 120 -p "Please type a number: " selection
[[ $selection == 0 ]] && echo "Exiting.." && exit
restore_point=$(echo "$list_backups" | grep ^"$selection)" | awk '{print $2}')
#Check for valid selection. If none, kill script
if [[ -z "$selection" ]]; then
if [[ $selection == 0 ]]; then
echo "Exiting.."
exit
elif [[ -z "$selection" ]]; then
echo "Your selection cannot be empty"
sleep 3
continue
@ -143,6 +145,7 @@ do
sleep 3
continue
fi
done
while true
do
clear -x