mirror of
https://github.com/zulip/zulip.git
synced 2025-10-23 04:52:12 +00:00
Most of these problems were found by ShellCheck (http://www.shellcheck.net). Signed-off-by: Anders Kaseorg <andersk@mit.edu>
16 lines
350 B
Bash
Executable File
16 lines
350 B
Bash
Executable File
#!/bin/bash -e
|
|
|
|
queue=$1
|
|
|
|
if [ -z "$queue" ]; then
|
|
echo "Usage: $0 <queue-name>"
|
|
exit 2
|
|
fi
|
|
|
|
ZULIP_DIR=/home/zulip/deployments/current
|
|
STATE_DIR=/var/lib/nagios_state
|
|
STATE_FILE=$STATE_DIR/check-rabbitmq-consumers-$queue
|
|
|
|
"$ZULIP_DIR/bots/check-rabbitmq-consumers" "--queue=$queue" &> "${STATE_FILE}-tmp";
|
|
mv "${STATE_FILE}-tmp" "$STATE_FILE"
|