From e067a92b52b4dce5485fc1ed489dbff8c703a1e1 Mon Sep 17 00:00:00 2001 From: Christophe Siraut Date: Thu, 1 Oct 2020 08:15:36 +0200 Subject: [PATCH] adapt_wcs_config: also change createdb-connection-params values --- publik-dump/bin/adapt_wcs_config.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/publik-dump/bin/adapt_wcs_config.py b/publik-dump/bin/adapt_wcs_config.py index 2dd0af7..84ab328 100755 --- a/publik-dump/bin/adapt_wcs_config.py +++ b/publik-dump/bin/adapt_wcs_config.py @@ -13,6 +13,8 @@ with open(args.file) as fh: data["postgresql"]["host"] = args.host data["postgresql"]["password"] = args.password +data["postgresql"]["createdb-connection-params"]["host"] = args.host +data["postgresql"]["createdb-connection-params"]["password"] = args.password print(data["postgresql"]) with open(args.file, "w") as fh: