add titles to utility menu

This commit is contained in:
Heavybullets8 2022-09-02 17:24:37 -06:00
parent 046e03f9c2
commit 800cac096f
2 changed files with 7 additions and 0 deletions

View File

@ -7,6 +7,8 @@ while true
do do
clear -x clear -x
title title
echo "Command to Container Menu"
echo "-------------------------"
echo "$app_name" echo "$app_name"
echo echo
echo "0) Exit" echo "0) Exit"
@ -45,6 +47,8 @@ case "${#containers[@]}" in
do do
clear -x clear -x
title title
echo "Available Containers"
echo "--------------------"
cont_search=$( cont_search=$(
for i in "${containers[@]}" for i in "${containers[@]}"
do do

View File

@ -4,6 +4,8 @@
menu(){ menu(){
clear -x clear -x
title title
echo "Available Utilities"
echo "-------------------"
echo "1) Help" echo "1) Help"
echo "2) List DNS Names" echo "2) List DNS Names"
echo "3) Mount and Unmount PVC storage" echo "3) Mount and Unmount PVC storage"
@ -35,6 +37,7 @@ case $selection in
clear -x clear -x
title title
echo "Backup Menu" echo "Backup Menu"
echo "-----------"
echo "1) Create Backup" echo "1) Create Backup"
echo "2) Delete Backup" echo "2) Delete Backup"
echo "3) Restore Backup" echo "3) Restore Backup"