taler-deployment

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

commit dcf5206df37bf232c04270d1a08f0a5b02f7d87e
parent 58c4ea164976af6f0139183d5122af8c47607c26
Author: ms <ms@taler.net>
Date:   Sat, 18 Sep 2021 11:24:39 +0200

logging

Diffstat:
Mbin/taler-deployment-prepare-with-eufin | 12+++++++++---
1 file changed, 9 insertions(+), 3 deletions(-)

diff --git a/bin/taler-deployment-prepare-with-eufin b/bin/taler-deployment-prepare-with-eufin @@ -239,8 +239,11 @@ function prepare_sandbox_account() { NEXUS_URL="http://localhost:5222/" SANDBOX_URL="http://localhost:5111/" +echo -n "Making Sandbox superuser..." libeufin-sandbox superuser admin --password=${LIBEUFIN_ENV_SANDBOX_ADMIN_PASSWORD} -taler-deployment-arm -i libeufin-nexus +echo " OK" + +echo -n "Lunching Sandbox..." taler-deployment-arm -i libeufin-sandbox if ! curl -s --retry 5 --retry-connrefused $SANDBOX_URL > /dev/null; then @@ -248,13 +251,16 @@ if ! curl -s --retry 5 --retry-connrefused $SANDBOX_URL > /dev/null; then stop_running exit 1 fi -echo "Sandbox launched" +echo " OK" + +echo -n "Launching Nexus..." +taler-deployment-arm -i libeufin-nexus if ! curl -s --retry 5 --retry-connrefused $NEXUS_URL > /dev/null; then echo "Could not launch Nexus" stop_running exit 1 fi -echo "Nexus launched" +echo " OK" EBICS_HOST="ebicsDeployedHost"