taler-deployment

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

commit a9b9b34c2a13412ae28ee28e2dd3a090da440263
parent 0bf1b8a37b05d6ce38b008acca4ea3bf80b7989b
Author: ms <ms@taler.net>
Date:   Sat, 18 Sep 2021 11:32:53 +0200

Optionally reset euFind databases.

Diffstat:
Mbin/taler-deployment-prepare-with-eufin | 16++++++++++++++--
1 file changed, 14 insertions(+), 2 deletions(-)

diff --git a/bin/taler-deployment-prepare-with-eufin b/bin/taler-deployment-prepare-with-eufin @@ -70,11 +70,11 @@ echo " OK" ## ## Step 1b: initialize database ## -echo -n "Reset and init exchange DB.." if test $WITH_DB_RESET = yes; then + echo -n "Reset and init exchange DB.." taler-exchange-dbinit --reset + echo " OK" fi -echo " OK" ## ## Step 2: Copy key material and update denom keys ## @@ -172,6 +172,16 @@ sleep 5 ## ## Step 4: Set up euFin ## + +if test $WITH_DB_RESET = yes; then + echo -n "Resetting euFin databases.." + # NOTE/FIXME: those values _could_ be extracted from + # the environment, as this one contains already the DB + # connection strings. + rm ~/nexus.sqlite + rm ~/sandbox.sqlite + echo " OK" +fi export LIBEUFIN_SANDBOX_USERNAME="admin" export LIBEUFIN_SANDBOX_PASSWORD=${LIBEUFIN_ENV_SANDBOX_ADMIN_PASSWORD} # $1 = ebics user id, $2 = ebics partner, $3 = bank connection name @@ -365,7 +375,9 @@ esac ## if test $WITH_DB_RESET = yes; then + echo -n "Reset and init merchant database.." taler-merchant-dbinit --reset + echo " OK" fi # Making sure ARM is not running yet.