summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xconfig/generate-config4
1 files changed, 4 insertions, 0 deletions
diff --git a/config/generate-config b/config/generate-config
index 89fcb6c..f9b8fe9 100755
--- a/config/generate-config
+++ b/config/generate-config
@@ -135,10 +135,14 @@ def config(currency, envname, exchange_pub, standalone):
if standalone:
cfg_put("exchangedb-postgres", "db_conn_str", "postgres:///taler?host={}/sockets".format(os.getenv("HOME")))
+ cfg_put("exchangedb-postgres", "config", "postgres:///taler?host={}/sockets".format(os.getenv("HOME")))
cfg_put("auditordb-postgres", "db_conn_str", "postgres:///taler?host={}/sockets".format(os.getenv("HOME")))
+ cfg_put("auditordb-postgres", "config", "postgres:///taler?host={}/sockets".format(os.getenv("HOME")))
else:
cfg_put("exchangedb-postgres", "db_conn_str", "postgres:///taler{}".format(envname))
+ cfg_put("exchangedb-postgres", "config", "postgres:///taler{}".format(envname))
cfg_put("auditordb-postgres", "db_conn_str", "postgres:///taler{}".format(envname))
+ cfg_put("auditordb-postgres", "config", "postgres:///taler{}".format(envname))
if standalone:
cfg_put("exchange-wire-test", "bank_url", "https://env.taler.net/{}/bank/".format(envname))