ansible-taler-exchange

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

commit 8818e5a738b8bd5f918b7cadb2d7e5a33eb65f70
parent 3cf1989ac9262f51438a640f610f5c12e33515ec
Author: Florian Dold <florian@dold.me>
Date:   Fri,  3 Jul 2026 17:18:40 +0200

fix off-by-one in argument check

Diffstat:
Mroles/common_packages/files/setup-challenger-client-id-fact | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/roles/common_packages/files/setup-challenger-client-id-fact b/roles/common_packages/files/setup-challenger-client-id-fact @@ -3,7 +3,7 @@ # Helper script, intented to be used by ansible # to generate a fact file. -if [[ $# < 4 ]]; +if [[ $# < 5 ]]; then echo "Usage: $0 <fact_file> <user> <conf> <client_secret> <url>" >&2 exit 1