mirror of
https://github.com/ail-project/ail-framework.git
synced 2024-11-10 08:38:28 +00:00
fix: [LAUNCH] update screen status
This commit is contained in:
parent
335d94cf79
commit
99fedf9855
1 changed files with 8 additions and 4 deletions
|
@ -676,13 +676,16 @@ function menu_display {
|
||||||
check_screens;
|
check_screens;
|
||||||
while [ "$1" != "" ]; do
|
while [ "$1" != "" ]; do
|
||||||
case $1 in
|
case $1 in
|
||||||
-l | --launchAuto ) launch_all "automatic";
|
-l | --launchAuto ) check_screens;
|
||||||
|
launch_all "automatic";
|
||||||
;;
|
;;
|
||||||
-lr | --launchRedis ) launch_redis;
|
-lr | --launchRedis ) check_screens;
|
||||||
|
launch_redis;
|
||||||
;;
|
;;
|
||||||
-la | --launchARDB ) launch_ardb;
|
-la | --launchARDB ) launch_ardb;
|
||||||
;;
|
;;
|
||||||
-lk | --launchKVROCKS ) launch_kvrocks;
|
-lk | --launchKVROCKS ) check_screens;
|
||||||
|
launch_kvrocks;
|
||||||
;;
|
;;
|
||||||
-lrv | --launchRedisVerify ) launch_redis;
|
-lrv | --launchRedisVerify ) launch_redis;
|
||||||
wait_until_redis_is_ready;
|
wait_until_redis_is_ready;
|
||||||
|
@ -700,7 +703,8 @@ while [ "$1" != "" ]; do
|
||||||
check_screens;
|
check_screens;
|
||||||
launch_all "automatic";
|
launch_all "automatic";
|
||||||
;;
|
;;
|
||||||
-ks | --killscript ) killscript;
|
-ks | --killscript ) check_screens;
|
||||||
|
killscript;
|
||||||
;;
|
;;
|
||||||
-m | --menu ) menu_display;
|
-m | --menu ) menu_display;
|
||||||
;;
|
;;
|
||||||
|
|
Loading…
Reference in a new issue