forked from ISTI-ansible-roles/ansible-roles
Fix some typos.
This commit is contained in:
parent
7d9b24174a
commit
ea659806cb
|
@ -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' ]
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue