ansible-taler-exchange

Ansible playbook to deploy a production Taler Exchange
Log | Files | Refs | README | LICENSE

commit dda3bd17a3a2a4f75764b492d927cc3198fbb549
parent 0b4d109aaf69d0891e6acd968878b43709ebb81a
Author: Florian Dold <dold@taler.net>
Date:   Fri, 31 Jul 2026 15:47:48 +0200

check the exit status of the geniban helper

Diffstat:
Mroles/devtesting/tasks/files/taler-devtesting | 5+++--
1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/roles/devtesting/tasks/files/taler-devtesting b/roles/devtesting/tasks/files/taler-devtesting @@ -45,7 +45,7 @@ def fake_incoming(credit_payto, debit_payto, subject, amount): if amount is not None: opts += ["--amount", amount] print(f"Faking incoming {currency} transaction", file=sys.stderr) - print(f"Debit Payto: ", debit_payto, file=sys.stderr) + print("Debit Payto:", debit_payto, file=sys.stderr) subprocess.run( [ "sudo", @@ -77,7 +77,8 @@ def geniban(): "gen", "--country", cc, - ] + ], + check=True, ) @cli.command()