taler-deployment

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

commit 91ff0bdc9cfe5e2ce00238416cd712e322b3ee25
parent 50eeddff58efa8e696f1b59e576703de064d88fd
Author: ms <ms@taler.net>
Date:   Tue, 21 Dec 2021 17:45:45 +0100

Call sync-dbinit along deployment preparation.

Diffstat:
Mbin/taler-deployment-prepare | 16+++++++++++++++-
1 file changed, 15 insertions(+), 1 deletion(-)

diff --git a/bin/taler-deployment-prepare b/bin/taler-deployment-prepare @@ -270,4 +270,18 @@ taler-deployment-arm -e ## Step 7: Set up anastasis ## -anastasis-dbinit +if test $WITH_DB_RESET = yes; then + anastasis-dbinit --reset +else + anastasis-dbinit +fi + +## +## Step 8: Set up sync +## + +if test $WITH_DB_RESET = yes; then +sync-dbinit --reset +else +sync-dbinit +fi