From ea659806cbb92180a27894b28f5ceb554c92a65b Mon Sep 17 00:00:00 2001 From: Andrea Dell'Amico Date: Wed, 23 Aug 2017 15:05:03 +0200 Subject: [PATCH] Fix some typos. --- postgresql/tasks/postgresql-config.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/postgresql/tasks/postgresql-config.yml b/postgresql/tasks/postgresql-config.yml index fa17baf9..b27fcc0e 100644 --- a/postgresql/tasks/postgresql-config.yml +++ b/postgresql/tasks/postgresql-config.yml @@ -25,7 +25,7 @@ become: True become_user: postgres action: configfile path={{ psql_conf_dir }}/postgresql.conf key={{ item.name }} value="{{ item.value }}" - with_items: '{{ psql_log_parameters }}' + with_items: '{{ psql_log_configuration }}' when: item.set == 'True' notify: Reload postgresql tags: [ 'postgresql', 'postgres', 'pg_conf', 'pg_conf_log' ] @@ -34,8 +34,8 @@ become: True become_user: postgres action: configfile path={{ psql_conf_dir }}/postgresql.conf key={{ item.name }} value="{{ item.value }}" - with_items: '{{ psql_autovacuum_parameters }}' + with_items: '{{ psql_autovacuum_configuration }}' when: item.set == 'True' notify: Reload postgresql - tags: [ 'postgresql', 'postgres', 'pg_conf', 'pg_autovacuum_log' ] + tags: [ 'postgresql', 'postgres', 'pg_conf', 'pg_conf_autovacuum' ]