From: Javier Bértoli Date: Wed, 21 Jul 2021 17:45:58 +0000 (-0300) Subject: 17750: Update example postgresql configuration for Centos 7 X-Git-Url: https://git.arvados.org/arvados-formula.git/commitdiff_plain/e60e3d1b2fb7664254de8c32ef68a45c6e667d33 17750: Update example postgresql configuration for Centos 7 Arvados-DCO-1.1-Signed-off-by: Javier Bértoli --- diff --git a/test/salt/pillar/examples/postgresql.sls b/test/salt/pillar/examples/postgresql.sls index 5d800ec..0bf3357 100644 --- a/test/salt/pillar/examples/postgresql.sls +++ b/test/salt/pillar/examples/postgresql.sls @@ -1,9 +1,28 @@ --- +# Copyright (C) The Arvados Authors. All rights reserved. +# +# SPDX-License-Identifier: AGPL-3.0 + ### POSTGRESQL postgres: - use_upstream_repo: false + # Centos-7's postgres package is too old, so we need to force using upstream's + # This is not required in Debian's family as they already ship with PG +11 + {%- if salt['grains.get']('os_family') == 'RedHat' %} + use_upstream_repo: true + version: '12' + + pkgs_deps: + - libicu + - libxslt + - systemd-sysv + + pkgs_extra: + - postgresql12-contrib + + {%- else %} pkgs_extra: - postgresql-contrib + {%- endif %} postgresconf: |- listen_addresses = '*' # listen on all interfaces #ssl = on