Fix some typos.

This commit is contained in:
Andrea Dell'Amico 2017-08-23 15:05:03 +02:00
parent 7d9b24174a
commit ea659806cb
1 changed files with 3 additions and 3 deletions

View File

@ -25,7 +25,7 @@
become: True become: True
become_user: postgres become_user: postgres
action: configfile path={{ psql_conf_dir }}/postgresql.conf key={{ item.name }} value="{{ item.value }}" 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' when: item.set == 'True'
notify: Reload postgresql notify: Reload postgresql
tags: [ 'postgresql', 'postgres', 'pg_conf', 'pg_conf_log' ] tags: [ 'postgresql', 'postgres', 'pg_conf', 'pg_conf_log' ]
@ -34,8 +34,8 @@
become: True become: True
become_user: postgres become_user: postgres
action: configfile path={{ psql_conf_dir }}/postgresql.conf key={{ item.name }} value="{{ item.value }}" 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' when: item.set == 'True'
notify: Reload postgresql notify: Reload postgresql
tags: [ 'postgresql', 'postgres', 'pg_conf', 'pg_autovacuum_log' ] tags: [ 'postgresql', 'postgres', 'pg_conf', 'pg_conf_autovacuum' ]