diff options
author | Simen Linderud <simen.linderud@gmail.com> | 2019-01-19 19:26:41 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-01-19 19:26:41 +0100 |
commit | 54419582734d0fb820c8c08a7847eb6961f481c5 (patch) | |
tree | d1a22a24322d2a26dcddb79347fab4061be49eac /ansible/roles/postgres/files | |
parent | f11803f365ec8729d3056642468e975c3cf8a85b (diff) | |
parent | bb1cc93d51efcd24d77b51187638e9616c061ed6 (diff) |
Merge pull request #194 from lasseh/master
Update ansible play for Debian 9
Diffstat (limited to 'ansible/roles/postgres/files')
-rw-r--r-- | ansible/roles/postgres/files/postgresql.conf | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/ansible/roles/postgres/files/postgresql.conf b/ansible/roles/postgres/files/postgresql.conf index cf6e67e..7c45ea4 100644 --- a/ansible/roles/postgres/files/postgresql.conf +++ b/ansible/roles/postgres/files/postgresql.conf @@ -38,15 +38,15 @@ # The default values of these variables are driven from the -D command-line # option or PGDATA environment variable, represented here as ConfigDir. -data_directory = '/var/lib/postgresql/9.4/main' # use data in another directory +data_directory = '/var/lib/postgresql/9.6/main' # use data in another directory # (change requires restart) -hba_file = '/etc/postgresql/9.4/main/pg_hba.conf' # host-based authentication file +hba_file = '/etc/postgresql/9.6/main/pg_hba.conf' # host-based authentication file # (change requires restart) -ident_file = '/etc/postgresql/9.4/main/pg_ident.conf' # ident configuration file +ident_file = '/etc/postgresql/9.6/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/9.4-main.pid' # write an extra PID file +external_pid_file = '/var/run/postgresql/9.6-main.pid' # write an extra PID file # (change requires restart) @@ -450,7 +450,7 @@ log_timezone = 'UTC' #track_functions = none # none, pl, all #track_activity_query_size = 1024 # (change requires restart) #update_process_title = on -stats_temp_directory = '/var/run/postgresql/9.4-main.pg_stat_tmp' +stats_temp_directory = '/var/run/postgresql/9.6-main.pg_stat_tmp' # - Statistics Monitoring - |