commit fcf7d9e1795414b91259cc33cbabd6e8fb4339f5 parent 3ee2c99ed2a06b0f8fc4b7ae47fafc2451600af0 Author: Christian Grothoff <christian@grothoff.org> Date: Mon, 24 Apr 2023 12:23:15 +0200 use quotes Diffstat:
| M | netzbon/main.sh | | | 6 | +++--- |
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/netzbon/main.sh b/netzbon/main.sh @@ -57,7 +57,7 @@ if test -z "${MASTER_PUBLIC_KEY:-}"; then fi if test -z "${SANDBOX_ADMIN_PASSWORD:-}"; then read -r -s -p "Enter the admin password for the bank: " SANDBOX_ADMIN_PASSWORD - echo "SANDBOX_ADMIN_PASSWORD=${SANDBOX_ADMIN_PASSWORD}" >>config/user.conf + echo "SANDBOX_ADMIN_PASSWORD=\"${SANDBOX_ADMIN_PASSWORD}\"" >>config/user.conf echo "" # force new line fi if test -z "${DOMAIN_NAME:-}"; then @@ -83,11 +83,11 @@ check_user if test -z "${NEXUS_EXCHANGE_PASSWORD:-}"; then NEXUS_EXCHANGE_PASSWORD=$(uuidgen) - echo "NEXUS_EXCHANGE_PASSWORD=${NEXUS_EXCHANGE_PASSWORD}" >>config/internal.conf + echo "NEXUS_EXCHANGE_PASSWORD=\"${NEXUS_EXCHANGE_PASSWORD}\"" >>config/internal.conf fi if test -z "${SANDBOX_EXCHANGE_PASSWORD:-}"; then SANDBOX_EXCHANGE_PASSWORD=$(uuidgen) - echo "SANDBOX_EXCHANGE_PASSWORD=${SANDBOX_EXCHANGE_PASSWORD}" >>config/internal.conf + echo "SANDBOX_EXCHANGE_PASSWORD=\"${SANDBOX_EXCHANGE_PASSWORD}\"" >>config/internal.conf fi ./config_launch_libeufin.sh