Skip to content

Commit c88b8a1

Browse files
committed
Menu Bug Fixes
1 parent e31a1db commit c88b8a1

3 files changed

Lines changed: 46 additions & 1 deletion

File tree

scripts/menu/database-tools-menu.sh

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -38,18 +38,38 @@ while true
3838
case $secopt in
3939
"Analyze All Tables & Databases")
4040
/usr/local/bin/enginescript/scripts/functions/server-tools/analyze-tables.sh
41+
echo ""
42+
echo ""
43+
read -n 1 -s -r -p "Press any key to continue"
44+
echo ""
45+
echo ""
4146
break
4247
;;
4348
"MariaDB-Check Database Optimizer")
4449
/usr/local/bin/enginescript/scripts/functions/server-tools/mariadbcheck.sh
50+
echo ""
51+
echo ""
52+
read -n 1 -s -r -p "Press any key to continue"
53+
echo ""
54+
echo ""
4555
break
4656
;;
4757
"MySQLreport")
4858
/usr/local/bin/enginescript/scripts/functions/server-tools/mysqltuner.sh
59+
echo ""
60+
echo ""
61+
read -n 1 -s -r -p "Press any key to continue"
62+
echo ""
63+
echo ""
4964
break
5065
;;
5166
"MySQLtuner")
5267
/usr/local/bin/enginescript/scripts/functions/server-tools/mysqltuner.sh
68+
echo ""
69+
echo ""
70+
read -n 1 -s -r -p "Press any key to continue"
71+
echo ""
72+
echo ""
5373
break
5474
;;
5575
"Exit Server Tools")

scripts/menu/enginescript-tools-menu.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ while true
3232
echo ""
3333
echo ""
3434
PS3='Please enter your choice: '
35-
secoptions=("Configure New Domain" "Update Domain Vhost File" "View/Edit EngineScript Install Options File" "Remove Domain (DANGER)" "Exit Server Tools")
35+
secoptions=("Configure New Domain" "Update Domain Vhost File" "View/Edit EngineScript Install Options File" "Remove Domain (DANGER)" "Exit EngineScript Tools")
3636
select secopt in "${secoptions[@]}"
3737
do
3838
case $secopt in

scripts/menu/server-site-tools-menu.sh

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -38,10 +38,20 @@ while true
3838
case $secopt in
3939
"Backup All Domains")
4040
/usr/local/bin/enginescript/scripts/functions/alias/alias-backup.sh
41+
echo ""
42+
echo ""
43+
read -n 1 -s -r -p "Press any key to continue"
44+
echo ""
45+
echo ""
4146
break
4247
;;
4348
"Clear All Caches")
4449
/usr/local/bin/enginescript/scripts/functions/alias/alias-cache.sh
50+
echo ""
51+
echo ""
52+
read -n 1 -s -r -p "Press any key to continue"
53+
echo ""
54+
echo ""
4555
break
4656
;;
4757
"Dispay Server Info")
@@ -50,14 +60,29 @@ while true
5060
;;
5161
"Fix Permissions")
5262
/usr/local/bin/enginescript/scripts/functions/cron/permissions.sh
63+
echo ""
64+
echo ""
65+
read -n 1 -s -r -p "Press any key to continue"
66+
echo ""
67+
echo ""
5368
break
5469
;;
5570
"Optimize All Images")
5671
/usr/local/bin/enginescript/scripts/functions/cron/optimize-images.sh
72+
echo ""
73+
echo ""
74+
read -n 1 -s -r -p "Press any key to continue"
75+
echo ""
76+
echo ""
5777
break
5878
;;
5979
"Testssl.sh")
6080
/usr/local/bin/enginescript/scripts/functions/server-tools/testssl.sh
81+
echo ""
82+
echo ""
83+
read -n 1 -s -r -p "Press any key to continue"
84+
echo ""
85+
echo ""
6186
break
6287
;;
6388
"Exit Server Tools")

0 commit comments

Comments
 (0)