scripts: sanity/dns/wallet-cli helpers; ops cleanup

This commit is contained in:
Hernâni Marques 2026-07-09 19:57:14 +02:00
parent 1181680a4b
commit be05666737
No known key found for this signature in database
18 changed files with 1440 additions and 0 deletions

View file

@ -0,0 +1,22 @@
#!/bin/bash
# Run all sanity checks; exit non-zero if any failed.
set -euo pipefail
ROOT=$(cd "$(dirname "$0")" && pwd)
ec=0
for s in \
check_helpers-running.sh \
check_stack-health.sh \
check_merchant-delays.sh \
check_exchange-wirewatch.sh \
check_settlement.sh
do
echo ""
echo "########## $s ##########"
if bash "$ROOT/$s"; then
echo "PASS $s"
else
echo "FAIL $s (exit $?)"
ec=1
fi
done
exit $ec