Start replacing configfile with the proper modules
This commit is contained in:
parent
b6d5cae17b
commit
3941030b6b
|
@ -49,87 +49,81 @@
|
||||||
when: postgresql_data_dir.stat.isdir is not defined
|
when: postgresql_data_dir.stat.isdir is not defined
|
||||||
|
|
||||||
- name: postgresql-config | Configuration of Deb/Ubuntu systems
|
- name: postgresql-config | Configuration of Deb/Ubuntu systems
|
||||||
|
when: ansible_distribution_file_variety == "Debian"
|
||||||
|
tags: ['postgresql', 'postgres', 'pg_conf']
|
||||||
block:
|
block:
|
||||||
- name: postgresql-config | Set some postgresql configuration parameters that require a db restart
|
- name: postgresql-config | Set some postgresql configuration parameters that require a db restart
|
||||||
become: True
|
become: true
|
||||||
become_user: postgres
|
become_user: postgres
|
||||||
action: configfile path={{ psql_conf_dir }}/postgresql.conf key={{ item.name }} value="{{ item.value }}"
|
community.postgresql.postgresql_set:
|
||||||
with_items: '{{ psql_conf_parameters }}'
|
name: '{{ item.name }}'
|
||||||
when: item.set == 'True'
|
value: "{% if item.set %}{{ item.value }}{% else %}default{% endif %}"
|
||||||
|
loop: '{{ psql_conf_parameters }}'
|
||||||
notify: Restart postgresql
|
notify: Restart postgresql
|
||||||
tags: [ 'postgresql', 'postgres', 'pg_conf' ]
|
|
||||||
|
|
||||||
- name: postgresql-config | Set the postgresql logging configuration parameters
|
- name: postgresql-config | Set the postgresql logging configuration parameters
|
||||||
become: True
|
become: true
|
||||||
become_user: postgres
|
become_user: postgres
|
||||||
action: configfile path={{ psql_conf_dir }}/postgresql.conf key={{ item.name }} value="{{ item.value }}"
|
community.postgresql.postgresql_set:
|
||||||
with_items: '{{ psql_log_configuration }}'
|
name: '{{ item.name }}'
|
||||||
when: item.set == 'True'
|
value: "{% if item.set %}{{ item.value }}{% else %}default{% endif %}"
|
||||||
|
loop: '{{ psql_log_configuration }}'
|
||||||
notify: Reload postgresql
|
notify: Reload postgresql
|
||||||
tags: [ 'postgresql', 'postgres', 'pg_conf', 'pg_conf_log' ]
|
tags: ['postgresql', 'postgres', 'pg_conf', 'pg_conf_log']
|
||||||
|
|
||||||
- name: postgresql-config | Set the postgresql autovacuum configuration parameters
|
- name: postgresql-config | Set the postgresql autovacuum configuration parameters
|
||||||
become: True
|
become: true
|
||||||
become_user: postgres
|
become_user: postgres
|
||||||
action: configfile path={{ psql_conf_dir }}/postgresql.conf key={{ item.name }} value="{{ item.value }}"
|
community.postgresql.postgresql_set:
|
||||||
with_items: '{{ psql_autovacuum_configuration }}'
|
name: '{{ item.name }}'
|
||||||
when: item.set == 'True'
|
value: "{% if item.set %}{{ item.value }}{% else %}default{% endif %}"
|
||||||
|
loop: '{{ psql_autovacuum_configuration }}'
|
||||||
notify: Reload postgresql
|
notify: Reload postgresql
|
||||||
tags: [ 'postgresql', 'postgres', 'pg_conf', 'pg_conf_autovacuum' ]
|
tags: ['postgresql', 'postgres', 'pg_conf', 'pg_conf_autovacuum']
|
||||||
|
|
||||||
- name: postgresql-config | Set the postgresql listen port
|
- name: postgresql-config | Set the postgresql listen port
|
||||||
action: configfile path={{ psql_conf_dir }}/postgresql.conf key=port value="{{ psql_db_port }}"
|
become: true
|
||||||
register: restart_postgresql
|
become_user: postgres
|
||||||
tags: [ 'postgresql', 'postgres', 'pg_conf' ]
|
community.postgresql.postgresql_set:
|
||||||
|
name: 'port'
|
||||||
|
value: "{% if psql_listen_on_ext_int %}{{ psql_db_port }}{% else %}default{% endif %}"
|
||||||
|
notify: Restart postgresql
|
||||||
|
|
||||||
- name: postgresql-config | We want postgres listen on the public IP
|
- name: postgresql-config | We want postgres listen on the public IP
|
||||||
action: configfile path={{ psql_conf_dir }}/postgresql.conf key=listen_addresses value="'*'"
|
become: true
|
||||||
register: restart_postgresql
|
become_user: postgres
|
||||||
when:
|
community.postgresql.postgresql_set:
|
||||||
- psql_listen_on_ext_int
|
name: 'listen_addresses'
|
||||||
tags: [ 'postgresql', 'postgres', 'pg_conf' ]
|
value: "{% if psql_listen_on_ext_int %}*{% else %}default{% endif %}"
|
||||||
|
notify: Restart postgresql
|
||||||
- name: postgresql-config | If postgresql is only accessed from localhost make it listen only on the localhost interface
|
|
||||||
action: configfile path={{ psql_conf_dir }}/postgresql.conf key=listen_addresses value="'localhost'"
|
|
||||||
register: restart_postgresql
|
|
||||||
when:
|
|
||||||
- not psql_listen_on_ext_int
|
|
||||||
tags: [ 'postgresql', 'postgres', 'pg_conf' ]
|
|
||||||
|
|
||||||
- name: postgresql-config | Log the connections
|
- name: postgresql-config | Log the connections
|
||||||
action: configfile path={{ psql_conf_dir }}/postgresql.conf key=log_connections value="on"
|
become: true
|
||||||
register: restart_postgresql
|
become_user: postgres
|
||||||
when: psql_db_data is defined
|
community.postgresql.postgresql_set:
|
||||||
tags: [ 'postgresql', 'postgres', 'pg_conf' ]
|
name: 'log_connections'
|
||||||
|
value: "{% if psql_db_data is defined %}on{% else %}default{% endif %}"
|
||||||
|
notify: Reload postgresql
|
||||||
|
|
||||||
- name: postgresql-config | Log the disconnections
|
- name: postgresql-config | Log the disconnections
|
||||||
action: configfile path={{ psql_conf_dir }}/postgresql.conf key=log_disconnections value="on"
|
become: true
|
||||||
register: restart_postgresql
|
become_user: postgres
|
||||||
when: psql_db_data is defined
|
community.postgresql.postgresql_set:
|
||||||
tags: [ 'postgresql', 'postgres', 'pg_conf' ]
|
name: 'log_disconnections'
|
||||||
|
value: "{% if psql_db_data is defined %}on{% else %}default{% endif %}"
|
||||||
|
notify: Reload postgresql
|
||||||
|
|
||||||
- name: postgresql-config | Log the hostnames
|
- name: postgresql-config | Log the hostnames
|
||||||
action: configfile path={{ psql_conf_dir }}/postgresql.conf key=log_hostname value="on"
|
become: true
|
||||||
register: restart_postgresql
|
become_user: postgres
|
||||||
when:
|
community.postgresql.postgresql_set:
|
||||||
- psql_listen_on_ext_int
|
name: 'log_hostname'
|
||||||
tags: [ 'postgresql', 'postgres', 'pg_conf' ]
|
value: "{% if psql_listen_on_ext_int %}{{ psql_db_port }}{% else %}default{% endif %}"
|
||||||
|
notify: Reload postgresql
|
||||||
|
|
||||||
- name: postgresql-config | Set the correct permissions to the postgresql files
|
- name: postgresql-config | Flush flush_handlers Restart PostgreSQL
|
||||||
file: dest={{ psql_conf_dir }}/{{ item }} owner=root group=postgres mode=0640
|
ansible.builtin.meta: flush_handlers
|
||||||
with_items:
|
tags: ['postgresql', 'postgres', 'pg_hba', 'pg_conf']
|
||||||
- pg_hba.conf
|
|
||||||
- postgresql.conf
|
|
||||||
tags: [ 'postgresql', 'postgres', 'pg_hba', 'pg_conf' ]
|
|
||||||
|
|
||||||
- name: postgresql-config | Restart the postgresql server after changing parameters that need a restart
|
|
||||||
service: name=postgresql state=restarted
|
|
||||||
when:
|
|
||||||
- restart_postgresql is defined and restart_postgresql is changed
|
|
||||||
ignore_errors: True
|
|
||||||
tags: [ 'postgresql', 'postgres', 'pg_hba', 'pg_conf' ]
|
|
||||||
|
|
||||||
when: ansible_distribution_file_variety == "Debian"
|
|
||||||
|
|
||||||
- name: postgresql-config | Data directory for EL
|
- name: postgresql-config | Data directory for EL
|
||||||
block:
|
block:
|
||||||
|
@ -188,7 +182,7 @@
|
||||||
command: restorecon -vR {{ psql_log_dir }}
|
command: restorecon -vR {{ psql_log_dir }}
|
||||||
|
|
||||||
- name: postgresql-config | Set some postgresql configuration parameters that require a db restart
|
- name: postgresql-config | Set some postgresql configuration parameters that require a db restart
|
||||||
become: True
|
become: true
|
||||||
become_user: postgres
|
become_user: postgres
|
||||||
action: configfile path={{ psql_el_conf_dir }}/postgresql.conf key={{ item.name }} value="{{ item.value }}"
|
action: configfile path={{ psql_el_conf_dir }}/postgresql.conf key={{ item.name }} value="{{ item.value }}"
|
||||||
with_items: '{{ psql_conf_parameters }}'
|
with_items: '{{ psql_conf_parameters }}'
|
||||||
|
@ -197,7 +191,7 @@
|
||||||
tags: [ 'postgresql', 'postgres', 'pg_conf' ]
|
tags: [ 'postgresql', 'postgres', 'pg_conf' ]
|
||||||
|
|
||||||
- name: postgresql-config | Set the postgresql logging configuration parameters
|
- name: postgresql-config | Set the postgresql logging configuration parameters
|
||||||
become: True
|
become: true
|
||||||
become_user: postgres
|
become_user: postgres
|
||||||
action: configfile path={{ psql_el_conf_dir }}/postgresql.conf key={{ item.name }} value="{{ item.value }}"
|
action: configfile path={{ psql_el_conf_dir }}/postgresql.conf key={{ item.name }} value="{{ item.value }}"
|
||||||
with_items: '{{ psql_log_configuration }}'
|
with_items: '{{ psql_log_configuration }}'
|
||||||
|
@ -206,7 +200,7 @@
|
||||||
tags: [ 'postgresql', 'postgres', 'pg_conf', 'pg_conf_log' ]
|
tags: [ 'postgresql', 'postgres', 'pg_conf', 'pg_conf_log' ]
|
||||||
|
|
||||||
- name: postgresql-config | Set the postgresql autovacuum configuration parameters
|
- name: postgresql-config | Set the postgresql autovacuum configuration parameters
|
||||||
become: True
|
become: true
|
||||||
become_user: postgres
|
become_user: postgres
|
||||||
action: configfile path={{ psql_el_conf_dir }}/postgresql.conf key={{ item.name }} value="{{ item.value }}"
|
action: configfile path={{ psql_el_conf_dir }}/postgresql.conf key={{ item.name }} value="{{ item.value }}"
|
||||||
with_items: '{{ psql_autovacuum_configuration }}'
|
with_items: '{{ psql_autovacuum_configuration }}'
|
||||||
|
|
Loading…
Reference in New Issue