diff --git a/bin/check_ardb.sh b/bin/check_ardb.sh deleted file mode 100755 index d73ac3e9..00000000 --- a/bin/check_ardb.sh +++ /dev/null @@ -1,27 +0,0 @@ -#!/bin/bash - -GREEN="\\033[1;32m" -DEFAULT="\\033[0;39m" -RED="\\033[1;31m" -ROSE="\\033[1;35m" -BLUE="\\033[1;34m" -WHITE="\\033[0;02m" -YELLOW="\\033[1;33m" -CYAN="\\033[1;36m" - -[ -z "$AIL_HOME" ] && echo "Needs the env var AIL_HOME. Run the script from the virtual environment." && exit 1; - -flag_ardb=0 -redis_dir=${AIL_HOME}/redis/src/ -sleep 0.2 -bash -c $redis_dir'redis-cli -p 6382 PING | grep "PONG" &> /dev/null' -if [ ! $? == 0 ]; then - echo -e $RED"\t6382 ARDB not ready"$DEFAULT - flag_ardb=1 -fi - -if [ $flag_ardb == 0 ]; then - exit 0 -else - exit 1 -fi diff --git a/bin/check_redis.sh b/bin/check_redis.sh deleted file mode 100755 index 0223e1eb..00000000 --- a/bin/check_redis.sh +++ /dev/null @@ -1,39 +0,0 @@ -#!/bin/bash - -GREEN="\\033[1;32m" -DEFAULT="\\033[0;39m" -RED="\\033[1;31m" -ROSE="\\033[1;35m" -BLUE="\\033[1;34m" -WHITE="\\033[0;02m" -YELLOW="\\033[1;33m" -CYAN="\\033[1;36m" - -[ -z "$AIL_HOME" ] && echo "Needs the env var AIL_HOME. Run the script from the virtual environment." && exit 1; - -flag_redis=0 -redis_dir=${AIL_HOME}/redis/src/ -bash -c $redis_dir'redis-cli -p 6379 PING | grep "PONG" &> /dev/null' -if [ ! $? == 0 ]; then - echo -e $RED"\t6379 not ready"$DEFAULT - flag_redis=1 -fi -sleep 0.1 -bash -c $redis_dir'redis-cli -p 6380 PING | grep "PONG" &> /dev/null' -if [ ! $? == 0 ]; then - echo -e $RED"\t6380 not ready"$DEFAULT - flag_redis=1 -fi -sleep 0.1 -bash -c $redis_dir'redis-cli -p 6381 PING | grep "PONG" &> /dev/null' -if [ ! $? == 0 ]; then - echo -e $RED"\t6381 not ready"$DEFAULT - flag_redis=1 -fi -sleep 0.1 - -if [ $flag_redis == 0 ]; then - exit 0 -else - exit 1 -fi