taler-deployment

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

commit d10e29ded3fc81082ebd48bb55a4f620d7611624
parent 3f3b64385dbe8a3f5ebe6c8b40224509e4e52e6d
Author: Marcello Stanisci <marcello.stanisci@inria.fr>
Date:   Mon, 17 Jul 2017 14:17:40 +0200

mapping TALER_{DATA,CONFIG}_HOME for blue/green envs

Diffstat:
Mconfig/generate-config | 4+++-
1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/config/generate-config b/config/generate-config @@ -44,7 +44,9 @@ def coin(currency, def config(currency, envname, exchange_pub, standalone): cfg_put("paths", "TALER_DEPLOYMENT_SHARED", "${HOME}/shared-data") - cfg_put("paths", "TALER_DEPLOYMENT_SHARED", "${HOME}/shared-data") + if not standalone: + cfg_put("paths", "TALER_DATA_HOME", "${HOME}/shared-data") + cfg_put("paths", "TALER_CONFIG_HOME", "${HOME}/shared-config") cfg_put("taler", "CURRENCY", currency)