synapse-worker-docker/rootfs/conf-workers/healthcheck.sh.j2

6 lines
202 B
Plaintext
Raw Normal View History

#!/bin/sh
# This healthcheck script is designed to return OK when every
# host involved returns OK
{%- for healthcheck_url in healthcheck_urls %}
curl -fSs {{ healthcheck_url }} || exit 1
{%- endfor %}