exchange

Base system with REST service to issue digital coins, run by the payment service provider
Log | Files | Refs | Submodules | README | LICENSE

commit 77e06dda9179e6b26184824414195a64c88f3d23
parent baef188ed0a7aec86724322e7717af5360232c3d
Author: Christian Grothoff <christian@grothoff.org>
Date:   Sun, 23 Jul 2023 14:52:23 +0200

tolerate unset

Diffstat:
Msrc/testing/taler-unified-setup.sh | 4+++-
1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/src/testing/taler-unified-setup.sh b/src/testing/taler-unified-setup.sh @@ -254,6 +254,7 @@ then # Create the default demobank. echo -n "Configuring sandbox at ${LIBEUFIN_SANDBOX_DB_CONNECTION} " + libeufin-sandbox reset-tables libeufin-sandbox config \ --currency "$CURRENCY" \ --users-debt-limit 99999999 \ @@ -344,13 +345,14 @@ then # to the exchange. LIBEUFIN_NEXUS_DB_CONNECTION=$(taler-config -c "$CONF" -s "libeufin-nexus" -o "DB_CONNECTION") - if [ ! -z "$PGHOST" ] + if [ ! -z "${PGHOST:+}" ] then EHOST=$(echo $PGHOST | sed -e "s/\//\\\\\//g") LIBEUFIN_NEXUS_DB_CONNECTION=$(echo $LIBEUFIN_NEXUS_DB_CONNECTION | sed -e "s/\/var\/run\/postgresql/$EHOST/") taler-config -c "$CONF" -s "libeufin-nexus" -o "DB_CONNECTION" -V "$LIBEUFIN_NEXUS_DB_CONNECTION" fi export LIBEUFIN_NEXUS_DB_CONNECTION + libeufin-nexus reset-tables # For convenience, username and password are # identical to those used at the Sandbox.