taler-deployment

Deployment scripts and configuration files
Log | Files | Refs | README

commit 39cb0575a0ad8c55003e5fa16f1db3b97c768a62
parent 4cbaa1ea14b91583849a2f689e7a084d0dd89e93
Author: Mikolai Gütschow <mikolai.guetschow@tu-dresden.de>
Date:   Wed, 21 Aug 2024 13:44:37 +0200

regsetup/setup-libeufin: remove doubled receiver-name parameter in payto URI

?receiver-name=Exchange is already contained in the payto URI return by libeufin-bank

Diffstat:
Mregional-currency/setup-libeufin.sh | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/regional-currency/setup-libeufin.sh b/regional-currency/setup-libeufin.sh @@ -97,7 +97,7 @@ echo "settings = { bankName: \"${BANK_NAME}\" }" >/etc/libeufin/settings.js say "Create exchange account..." if test -z "${EXCHANGE_PAYTO:-}"; then # FIXME create-account should have a way to update the password if the account already exists - EXCHANGE_PAYTO_NEW="$(sudo -u libeufin-bank libeufin-bank create-account -c /etc/libeufin/libeufin-bank.conf --username exchange --password "${BANK_EXCHANGE_PASSWORD}" --name Exchange --exchange 2>> setup.log)?receiver-name=Exchange" + EXCHANGE_PAYTO_NEW="$(sudo -u libeufin-bank libeufin-bank create-account -c /etc/libeufin/libeufin-bank.conf --username exchange --password "${BANK_EXCHANGE_PASSWORD}" --name Exchange --exchange 2>> setup.log)" echo "EXCHANGE_PAYTO=\"${EXCHANGE_PAYTO_NEW}\"" >> config/user.conf fi