mirror of
https://github.com/zulip/zulip.git
synced 2025-11-11 17:36:27 +00:00
This may require just doing an mv on the home directory, plus changing the home directory in /etc/passwd. It should of course be done carefully. (imported from commit 660997d897ee6d33563af74f0fc5d4267a911755)
16 lines
340 B
Bash
Executable File
16 lines
340 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
|