taler-deployment

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

commit 020224b779e989581b5b4453af06761824174e96
parent 98f637ca2b8303f06cd01c7237f18b16b3784773
Author: Christian Grothoff <christian@grothoff.org>
Date:   Sat,  4 Mar 2023 11:50:27 +0100

-fix persisting of config vals

Diffstat:
Mnetzbon/main.sh | 6+++---
1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/netzbon/main.sh b/netzbon/main.sh @@ -26,17 +26,17 @@ echo "TALER: Welcome to the GNU Taler Debian setup!" if test -z "${CURRENCY:-}" then read -p "Enter the name of the currency (e.g. 'EUR'): " CURRENCY - echo "CURRENCY=${CURRENCY}" >> config/taler.conf + echo "CURRENCY=${CURRENCY}" >> config/user.conf fi if test -z "${SANDBOX_ADMIN_PASSWORD:-}" then read -p "Enter the admin password for the bank: " SANDBOX_ADMIN_PASSWORD - echo "SANDBOX_ADMIN_PASSWORD=${SANDBOX_ADMIN_PASSWORD}" >> config/taler.conf + echo "SANDBOX_ADMIN_PASSWORD=${SANDBOX_ADMIN_PASSWORD}" >> config/user.conf fi if test -z "${DOMAIN_NAME:-}" then read -s -p "Enter the domain name: " DOMAIN_NAME - echo "DOMAIN_NAME=${DOMAIN_NAME}" >> config/taler.conf + echo "DOMAIN_NAME=${DOMAIN_NAME}" >> config/user.conf fi # END USER INTERACTION