mirror of
https://github.com/ail-project/ail-framework.git
synced 2024-11-10 00:28:22 +00:00
Updated KillAll in LAUNCH
This commit is contained in:
parent
bd46c83fb6
commit
bc35747f00
1 changed files with 5 additions and 5 deletions
|
@ -189,11 +189,11 @@ function launching_scripts {
|
|||
helptext;
|
||||
|
||||
############### TESTS ###################
|
||||
isredis=`screen -ls | awk '/\.Redis\t/ {print strtonum($1)}'`
|
||||
islvldb=`screen -ls | awk '/\.LevelDB\t/ {print strtonum($1)}'`
|
||||
islogged=`screen -ls | awk '/\.Logging\t/ {print strtonum($1)}'`
|
||||
isqueued=`screen -ls | awk '/\.Queue\t/ {print strtonum($1)}'`
|
||||
isscripted=`screen -ls | awk '/\.Script\t/ {print strtonum($1)}'`
|
||||
isredis=`screen -ls | egrep '[0-9]+.Redis' | cut -d. -f1`
|
||||
islvldb=`screen -ls | egrep '[0-9]+.LevelDB' | cut -d. -f1`
|
||||
islogged=`screen -ls | egrep '[0-9]+.Logging' | cut -d. -f1`
|
||||
isqueued=`screen -ls | egrep '[0-9]+.Queue' | cut -d. -f1`
|
||||
isscripted=`screen -ls | egrep '[0-9]+.Script' | cut -d. -f1`
|
||||
|
||||
options=("Redis" "LevelDB" "Logs" "Queues" "Scripts" "Killall" "Shutdown" "Update-config")
|
||||
|
||||
|
|
Loading…
Reference in a new issue