commit | b422c8bce30fc0a68aa56290b13facceceed3bc1 | [log] [tgz] |
---|---|---|
author | Michael Kutý <6du1ro.n@gmail.com> | Mon Oct 24 00:12:28 2016 +0200 |
committer | Michael Kutý <6du1ro.n@gmail.com> | Mon Oct 24 00:12:28 2016 +0200 |
tree | e91e89d582fab2f82ab64dec66edae7c7727d6e3 | |
parent | dd1dc2da90dcc4e17a576f1d7808e1f27f917e8a [diff] |
Fix pg conf syntax.
diff --git a/postgresql/files/pg_hba.conf b/postgresql/files/pg_hba.conf index 3a17f12..11c0c1d 100644 --- a/postgresql/files/pg_hba.conf +++ b/postgresql/files/pg_hba.conf
@@ -94,7 +94,7 @@ {%- for client in server.clients %} {%- if client != '127.0.0.1' %} -host all all {%- if "/" in client %}{{ client }}{%- else %}{{ client }}/32{%- endif %} md5 +host all all {% if "/" in client %}{{ client }}{% else %}{{ client }}/32{% endif %} md5 {%- endif %} {%- endfor %}