summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorms <ms@taler.net>2021-09-18 11:24:39 +0200
committerms <ms@taler.net>2021-09-18 11:24:39 +0200
commitdcf5206df37bf232c04270d1a08f0a5b02f7d87e (patch)
treee39215b0d8bac230d797b6799433a0f6aefe4380
parent58c4ea164976af6f0139183d5122af8c47607c26 (diff)
downloaddeployment-dcf5206df37bf232c04270d1a08f0a5b02f7d87e.tar.gz
deployment-dcf5206df37bf232c04270d1a08f0a5b02f7d87e.tar.bz2
deployment-dcf5206df37bf232c04270d1a08f0a5b02f7d87e.zip
logging
-rwxr-xr-xbin/taler-deployment-prepare-with-eufin12
1 files changed, 9 insertions, 3 deletions
diff --git a/bin/taler-deployment-prepare-with-eufin b/bin/taler-deployment-prepare-with-eufin
index 744ece4..634e7d4 100755
--- 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"