taler-deployment

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

commit 4a66f96ee49b8cfa6f5a55a721416f2a7a924b9f
parent f6ae92bd88a7b17040f0bd05463df92e88f9f2f0
Author: Christian Grothoff <christian@grothoff.org>
Date:   Tue, 18 Feb 2020 09:54:08 +0100

fmt string fix

Diffstat:
Mbin/taler-config-generate | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/bin/taler-config-generate b/bin/taler-config-generate @@ -282,7 +282,7 @@ def main(currency, envname, outdir, exchange_pub, twisted): sc = ConfigFile(envname, currency, exchange_pub, twisted, "sync.conf") sc.cfg_put("sync", "annual_fee", sc.currency+":0.1") sc.cfg_put("sync", "serve", "unix") - sc.cfg_put("syncdb-postgres", "config", "postgres:///taler{}" % envname) + sc.cfg_put("syncdb-postgres", "config", "postgres:///taler%s" % envname) sc.cfg_put("sync", "unixpath", "$HOME/sockets/sync.http") config_files.append(sc)