mirror of
https://github.com/saltstack-formulas/postgres-formula.git
synced 2025-04-17 10:10:31 +00:00
Merge pull request #74 from tenso-m/extra
replace pkg_contrib with pkgs_extra
This commit is contained in:
commit
7bfde30dde
3 changed files with 7 additions and 4 deletions
|
@ -8,6 +8,9 @@ postgres:
|
|||
lookup:
|
||||
pkg: 'postgresql-9.3'
|
||||
pkg_client: 'postgresql-client-9.3'
|
||||
pkgs_extra:
|
||||
- postgresql-contrib
|
||||
- postgresql-plpython
|
||||
pg_hba: '/etc/postgresql/9.3/main/pg_hba.conf'
|
||||
|
||||
users:
|
||||
|
|
|
@ -3,7 +3,7 @@ postgres:
|
|||
pkg_dev: postgresql-devel
|
||||
pkg_libpq_dev: postgresql-libs
|
||||
pkg_client: postgresql-client
|
||||
pkg_contrib: postgresql-contrib
|
||||
pkgs_extra:
|
||||
python: python-psycopg2
|
||||
service: postgresql
|
||||
conf_dir: /var/lib/pgsql/data
|
||||
|
|
|
@ -48,10 +48,10 @@ run-postgresql:
|
|||
- require:
|
||||
- pkg: install-postgresql
|
||||
|
||||
{% if postgres.pkg_contrib != False %}
|
||||
install-postgres-contrib:
|
||||
{% if postgres.pkgs_extra %}
|
||||
install-postgres-extra:
|
||||
pkg.installed:
|
||||
- name: {{ postgres.pkg_contrib }}
|
||||
- pkgs: {{ postgres.pkgs_extra }}
|
||||
{% endif %}
|
||||
|
||||
{% if postgres.postgresconf %}
|
||||
|
|
Loading…
Add table
Reference in a new issue