mirror of
https://github.com/saltstack-formulas/postgres-formula.git
synced 2025-04-17 10:10:31 +00:00
added client formula and required default values
This commit is contained in:
parent
b38deb618f
commit
f6e68157a3
2 changed files with 27 additions and 0 deletions
24
postgres/client.sls
Normal file
24
postgres/client.sls
Normal file
|
@ -0,0 +1,24 @@
|
|||
{% from "postgres/map.jinja" import postgres with context %}
|
||||
|
||||
{% if salt['pillar.get']('postgres:use_upstream_repo') %}
|
||||
install-postgresql-repo:
|
||||
pkgrepo.managed:
|
||||
- humanname: PostgreSQL Official Repository
|
||||
- name: {{ postgres.pkg_repo }}
|
||||
- keyid: B97B0AFCAA1A47F044F244A07FCC7D46ACCC4CF8
|
||||
- keyserver: keyserver.ubuntu.com
|
||||
- file: {{ postgres.pkg_repo_file }}
|
||||
- require_in:
|
||||
- install-postgresql-client
|
||||
{% endif %}
|
||||
|
||||
install-postgresql-client:
|
||||
pkg.installed:
|
||||
- name: {{ postgres.pkg_client }}
|
||||
- refresh: {{ salt['pillar.get']('postgres:use_upstream_repo', False) }}
|
||||
|
||||
{% if postgres.pkg_libpq_dev != False %}
|
||||
install-postgres-libpq-dev:
|
||||
pkg.installed:
|
||||
- name: {{ postgres.pkg_libpq_dev }}
|
||||
{% endif %}
|
|
@ -15,6 +15,7 @@
|
|||
'pkg' : 'postgresql-server',
|
||||
'pkg_dev' : 'postgresql-devel',
|
||||
'pkg_libpq_dev' : 'postgresql-libs',
|
||||
'pkg_client' : 'postgresql-client',
|
||||
'python' : 'python-psycopg2',
|
||||
'service' : 'postgresql',
|
||||
'conf_dir' : '/var/lib/pgsql/data',
|
||||
|
@ -26,6 +27,7 @@
|
|||
'pkg' : 'postgresql',
|
||||
'pkg_dev' : 'postgresql-devel',
|
||||
'pkg_libpq_dev' : 'postgresql-libs',
|
||||
'pkg_client' : 'postgresql-client',
|
||||
'python' : 'python-psycopg2',
|
||||
'service' : 'postgresql',
|
||||
'conf_dir' : '/var/lib/pgsql/data',
|
||||
|
@ -37,6 +39,7 @@
|
|||
'pkg' : 'postgresql-' + pg_version.id,
|
||||
'pkg_dev' : 'postgresql-server-dev-' + pg_version.id,
|
||||
'pkg_libpq_dev' : 'libpq-dev',
|
||||
'pkg_client' : 'postgresql-client-'+ pg_version.id,
|
||||
'pkg_contrib' : 'postgresql-contrib-' + pg_version.id,
|
||||
'pkg_repo' : 'deb http://apt.postgresql.org/pub/repos/apt/ ' + grains['lsb_distrib_codename'] + '-pgdg main',
|
||||
'pkg_repo_file' : '/etc/apt/sources.list.d/pgdg.list',
|
||||
|
|
Loading…
Add table
Reference in a new issue