diff options
Diffstat (limited to 'mockrun')
-rwxr-xr-x | mockrun | 16 |
1 files changed, 8 insertions, 8 deletions
@@ -1,17 +1,17 @@ #!/bin/bash -CHECK=$(redis-cli ping) -[ "$CHECK" = "PONG" ] || exit 1 - # ARCH detection and check if [ "$(uname -m)" = "x86_64" ]; then - SUF=x QUEUE=mockx + REDISCLI="redis-cli" else - SUF=a QUEUE=mocka + REDISCLI="redis-cli -h remi" fi +CHECK=$($REDISCLI ping) +[ "$CHECK" = "PONG" ] || exit 1 + if [ "$1" = "-h" -o "$1" = "--help" ]; then echo "Usage $0 [ option ]" echo " -e --erase to empty the queue" @@ -21,17 +21,17 @@ if [ "$1" = "-h" -o "$1" = "--help" ]; then exit 0 elif [ "$1" = "-l" -o "$1" = "--list" ]; then - redis-cli smembers $QUEUE + $REDISCLI smembers $QUEUE exit 0 elif [ "$1" = "-e" -o "$1" = "--erase" ]; then - redis-cli del $QUEUE + $REDISCLI del $QUEUE exit 0 fi while true do - CMD=$(redis-cli spop $QUEUE) + CMD=$($REDISCLI spop $QUEUE) if [ -z "$CMD" ]; then if [ "$1" = "-p" -o "$1" = "--perm" ]; then echo -n . |