style: make ansible-lint happy

This commit is contained in:
VC
2024-07-05 11:53:44 +02:00
parent 99cb02e92d
commit 4bbb789c77
13 changed files with 77 additions and 52 deletions

View File

@@ -40,13 +40,13 @@
data_directory = '/srv/postgresql' # use data in another directory
# (change requires restart)
hba_file = '/etc/postgresql/{{ pg_version }}/main/pg_hba.conf' # host-based authentication file
hba_file = '/etc/postgresql/{{ postgres_pg_version }}/main/pg_hba.conf' # host-based authentication file
# (change requires restart)
ident_file = '/etc/postgresql/{{ pg_version }}/main/pg_ident.conf' # ident configuration file
ident_file = '/etc/postgresql/{{ postgres_pg_version }}/main/pg_ident.conf' # ident configuration file
# (change requires restart)
# If external_pid_file is not explicitly set, no extra PID file is written.
external_pid_file = '/var/run/postgresql/{{ pg_version }}-main.pid' # write an extra PID file
external_pid_file = '/var/run/postgresql/{{ postgres_pg_version }}-main.pid' # write an extra PID file
# (change requires restart)
@@ -484,7 +484,7 @@ log_timezone = 'Europe/Paris'
# PROCESS TITLE
#------------------------------------------------------------------------------
cluster_name = '{{ pg_version }}/main' # added to process titles if nonempty
cluster_name = '{{ postgres_pg_version }}/main' # added to process titles if nonempty
# (change requires restart)
#update_process_title = on
@@ -500,7 +500,7 @@ cluster_name = '{{ pg_version }}/main' # added to process titles if nonempty
#track_io_timing = off
#track_functions = none # none, pl, all
#track_activity_query_size = 1024 # (change requires restart)
#stats_temp_directory = '/var/run/postgresql/{{ pg_version }}-main.pg_stat_tmp'
#stats_temp_directory = '/var/run/postgresql/{{ postgres_pg_version }}-main.pg_stat_tmp'
# - Monitoring -