docs: cleanup day notes

This commit is contained in:
Hernâni Marques 2026-07-17 01:22:26 +02:00
parent 196ba7aba9
commit 01900bab9a
2 changed files with 6 additions and 2 deletions

View file

@ -47,13 +47,12 @@ ctr_has_proc() {
}
ensure_merchant_loopback_helper() {
# Optional helper (loopback helper) — loopback :19097
# Optional loopback helper on :19097 if present in the container image
if podman exec "$MER_CTR" bash -lc "ss -tln 2>/dev/null | grep -q ':19097'" 2>/dev/null; then
log "merchant: loopback :19097 already listening"
return 0
fi
if ! podman exec "$MER_CTR" test -f /usr/local/bin/ui-unlock-api.py 2>/dev/null; then
log "merchant: WARN helper missing"
return 0
fi
log "merchant: start loopback helper :19097…"