summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2023-07-23 14:52:23 +0200
committerChristian Grothoff <christian@grothoff.org>2023-07-23 14:52:23 +0200
commit77e06dda9179e6b26184824414195a64c88f3d23 (patch)
tree23a2267d58872cfc2ab3fd02742452e1417a8965 /src
parentbaef188ed0a7aec86724322e7717af5360232c3d (diff)
downloadexchange-77e06dda9179e6b26184824414195a64c88f3d23.tar.gz
exchange-77e06dda9179e6b26184824414195a64c88f3d23.tar.bz2
exchange-77e06dda9179e6b26184824414195a64c88f3d23.zip
tolerate unset
Diffstat (limited to 'src')
-rwxr-xr-xsrc/testing/taler-unified-setup.sh4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/testing/taler-unified-setup.sh b/src/testing/taler-unified-setup.sh
index 09999aef2..48e164c2f 100755
--- 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.