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

5
2026/2026-07-17.md Normal file
View file

@ -0,0 +1,5 @@
# 2026-07-17
- Bank: `taler://withdraw` **ohne `:443`** (Wallet-Apps); live deployed
- Merchant/bank in-container apps after reboot via `ensure-taler-apps` + user units
- Admin-log: 13 Commits (19:0401:07) + follow-up; `main` force-pushed → Forgejo

View file

@ -47,13 +47,12 @@ ctr_has_proc() {
} }
ensure_merchant_loopback_helper() { 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 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" log "merchant: loopback :19097 already listening"
return 0 return 0
fi fi
if ! podman exec "$MER_CTR" test -f /usr/local/bin/ui-unlock-api.py 2>/dev/null; then 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 return 0
fi fi
log "merchant: start loopback helper :19097…" log "merchant: start loopback helper :19097…"