mirror of
https://github.com/zulip/zulip.git
synced 2025-11-08 16:01:58 +00:00
The new puppet.conf file has to be moved into place manually. (imported from commit 253d9a95386dae8c803a998ce2dc7e8be40c880a)
8 lines
222 B
Bash
Executable File
8 lines
222 B
Bash
Executable File
#!/bin/sh
|
|
if [ "$(hostname)" = "staging.zulip.net" ]; then
|
|
site="https://staging.zulip.com"
|
|
else
|
|
site="https://api.zulip.com"
|
|
fi
|
|
/home/zulip/deployments/current/bots/check_send_receive.py --munin $1 --site="$site"
|