taler-deployment

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

commit 77e72d1bb69ea71b684613fc6938442ee430a888
parent e49654e2b7c6b1de8767bfed0c08f32aa3e2f52c
Author: Marcello Stanisci <stanisci.m@gmail.com>
Date:   Fri, 27 Apr 2018 16:23:30 +0200

HONOR'ing missing instance.

Diffstat:
Mconfig/generate-config | 13+++++++------
1 file changed, 7 insertions(+), 6 deletions(-)

diff --git a/config/generate-config b/config/generate-config @@ -215,8 +215,8 @@ def config(currency, envname, exchange_pub, standalone): cfg_put("instance-default", "tip_reserve_priv_filename", "${TALER_DEPLOYMENT_SHARED}/merchant/default-tip.priv") cfg_put("instance-default", "tip_exchange", "https://exchange.{}.taler.net/".format(envname)) # instance tutorial - cfg_put("instance-tutorial", "keyfile", "${TALER_DEPLOYMENT_SHARED}/merchant/tutorial.priv") - cfg_put("instance-tutorial", "name", "Tutorial") + cfg_put("instance-Tutorial", "keyfile", "${TALER_DEPLOYMENT_SHARED}/merchant/tutorial.priv") + cfg_put("instance-Tutorial", "name", "Tutorial") if standalone: cfg_put("account-merchant", "url", "payto://x-taler-bank/env.taler.net/{}/bank/{}".format(os.getenv("HOME"), "3")) @@ -230,10 +230,11 @@ def config(currency, envname, exchange_pub, standalone): cfg_put("account-merchant", "wire_response", "${TALER_DEPLOYMENT_SHARED}/merchant/wire/merchant.json") cfg_put("account-merchant", "HONOR_default", "YES") - cfg_put("account-merchant", "HONOR_tor", "YES") - cfg_put("account-merchant", "HONOR_gnunet", "YES") - cfg_put("account-merchant", "HONOR_taler", "YES") - cfg_put("account-merchant", "HONOR_fsf", "YES") + cfg_put("account-merchant", "HONOR_Tor", "YES") + cfg_put("account-merchant", "HONOR_GNUnet", "YES") + cfg_put("account-merchant", "HONOR_Taler", "YES") + cfg_put("account-merchant", "HONOR_FSF", "YES") + cfg_put("account-merchant", "HONOR_Tutorial", "YES") coin(currency, "ct_10", "0.10") coin(currency, "1", "1")