mirror of
https://github.com/ail-project/ail-framework.git
synced 2024-11-26 15:57:16 +00:00
fix: [LAUNCH] remove ardb check
This commit is contained in:
parent
6e66fc943b
commit
83ab4a93cd
1 changed files with 3 additions and 3 deletions
|
@ -459,14 +459,14 @@ function launch_queues {
|
||||||
function launch_scripts {
|
function launch_scripts {
|
||||||
if [[ ! $isscripted ]]; then ############################# is core
|
if [[ ! $isscripted ]]; then ############################# is core
|
||||||
sleep 1
|
sleep 1
|
||||||
if checking_ardb && checking_redis && checking_kvrocks; then
|
if checking_redis && checking_kvrocks; then
|
||||||
launching_scripts;
|
launching_scripts;
|
||||||
else
|
else
|
||||||
no_script_launched=true
|
no_script_launched=true
|
||||||
while $no_script_launched; do
|
while $no_script_launched; do
|
||||||
echo -e $YELLOW"\tScript not started, waiting 5 more secondes"$DEFAULT
|
echo -e $YELLOW"\tScript not started, waiting 5 more secondes"$DEFAULT
|
||||||
sleep 5
|
sleep 5
|
||||||
if checking_redis && checking_ardb && checking_kvrocks; then
|
if checking_redis && checking_kvrocks; then
|
||||||
launching_scripts;
|
launching_scripts;
|
||||||
no_script_launched=false
|
no_script_launched=false
|
||||||
else
|
else
|
||||||
|
@ -597,7 +597,7 @@ function launch_tests() {
|
||||||
|
|
||||||
function reset_password() {
|
function reset_password() {
|
||||||
echo -e "\t* Reseting UI admin password..."
|
echo -e "\t* Reseting UI admin password..."
|
||||||
if checking_ardb && checking_redis; then
|
if checking_kvrocks && checking_redis; then
|
||||||
python ${AIL_HOME}/var/www/create_default_user.py &
|
python ${AIL_HOME}/var/www/create_default_user.py &
|
||||||
wait
|
wait
|
||||||
else
|
else
|
||||||
|
|
Loading…
Reference in a new issue