From 1f9fc757431ba1ef3ad26e8c0f224ecdf0d8d61f Mon Sep 17 00:00:00 2001 From: Jeff Geerling Date: Wed, 21 Nov 2018 20:49:17 -0600 Subject: [PATCH] Fixes #32: Template dir prefix is superfluous. --- tasks/configure.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tasks/configure.yml b/tasks/configure.yml index d69965b..26a6f68 100644 --- a/tasks/configure.yml +++ b/tasks/configure.yml @@ -10,7 +10,7 @@ - name: Configure host based authentication (if entries are configured). template: - src: "templates/pg_hba.conf.j2" + src: "pg_hba.conf.j2" dest: "{{ postgresql_config_path }}/pg_hba.conf" owner: "{{ postgresql_user }}" group: "{{ postgresql_group }}"