X-Git-Url: https://git.arvados.org/arvados-formula.git/blobdiff_plain/6a74357bfb81a895e4f770ebd643895398675ada..f71042048fef29103a138b6b27e3d7515b327077:/test/salt/pillar/examples/postgresql.sls diff --git a/test/salt/pillar/examples/postgresql.sls b/test/salt/pillar/examples/postgresql.sls index 0bf3357..a60b41f 100644 --- a/test/salt/pillar/examples/postgresql.sls +++ b/test/salt/pillar/examples/postgresql.sls @@ -5,21 +5,24 @@ ### POSTGRESQL postgres: - # Centos-7's postgres package is too old, so we need to force using upstream's + # Centos-7 and Ubuntu-18.04's postgres packages are 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' %} + {%- if salt['grains.get']('osfinger') in ['Ubuntu-18.04', 'CentOS Linux-7'] %} use_upstream_repo: true version: '12' + {%- if salt['grains.get']('osfinger') == 'CentOS Linux-7' %} pkgs_deps: - libicu - libxslt - systemd-sysv - pkgs_extra: - postgresql12-contrib + {%- endif %} + {%- else %} + use_upstream_repo: false pkgs_extra: - postgresql-contrib {%- endif %}