back to scripts

full-health-whatsapp.sh

bash 5 lines secrets redacted

Pushes a full health summary to the WhatsApp channel.

Note Live script from my home-lab server. Tokens, IDs, phone numbers and other secrets have been replaced with placeholders like <WHATSAPP_GROUP_ID> — everything else is the real, running code.
#!/usr/bin/env bash
set -euo pipefail
request="${*:-Full health check over the last 24 hours}"

exec /home/lanky/scripts/agent-ticket-router.py all "$request"

back to scripts