commit 548aa65118a36072b4e0befb2a9cd22caa5c4bbb parent a42128db9db27d7a0c9128bbc5cfca172f3739a1 Author: Christian Grothoff <christian@grothoff.org> Date: Sat, 4 Mar 2023 14:48:20 +0100 fix script Diffstat:
| M | netzbon/config_launch_libeufin.sh | | | 11 | +++++++++-- |
1 file changed, 9 insertions(+), 2 deletions(-)
diff --git a/netzbon/config_launch_libeufin.sh b/netzbon/config_launch_libeufin.sh @@ -68,7 +68,14 @@ fi echo -n "Configure the default demobank with ${CURRENCY}..." # FIXME: no sign up bonus, no debt should be the default here! cd /tmp -sudo -u libeufin-sandbox libeufin-sandbox config --currency ${CURRENCY} default +sudo -E -u libeufin-sandbox \ +libeufin-sandbox config \ + --captcha-url "https://bank.${DOMAIN_NAME}" \ + --bank-debt-limit 1000000 \ + --users-debt-limit 0 \ + --without-signup-bonus \ + --currency ${CURRENCY} \ + default echo "DONE" echo -n "Start the bank..." export LIBEUFIN_SANDBOX_ADMIN_PASSWORD="${SANDBOX_ADMIN_PASSWORD}" @@ -83,7 +90,7 @@ echo "DONE" echo -n "Make one superuser at Nexus..." -sudo -u libeufin-nexus libeufin-nexus superuser \ +sudo -E -u libeufin-nexus libeufin-nexus superuser \ exchange-at-nexus \ --password $NEXUS_EXCHANGE_PASSWORD echo "DONE"