diff --git a/utils/movecounter.sh b/utils/movecounter.sh new file mode 100755 index 0000000..c094ce8 --- /dev/null +++ b/utils/movecounter.sh @@ -0,0 +1,17 @@ +#!/bin/sh + +set -eu + +queue_num="${QUEUE_NUM:-0}" +user_password="${USER_PASSWORD}" +host="${HOST:-http://localhost:8000}" + + + +if [ "$1" = "+1" ]; then + url="${host}/v1/counter/${queue_num}/increment" +else + url="${host}/v1/counter/${queue_num}/decrement" +fi + +curl -s -X POST -u "${user_password}" "${url}"