mirror of
https://github.com/saltstack-formulas/postgres-formula.git
synced 2025-04-16 09:40:26 +00:00
13 lines
313 B
Text
13 lines
313 B
Text
{% from "postgres/map.jinja" import postgres with context %}
|
|
|
|
{% if postgres.pkg_dev %}
|
|
install-postgres-dev-package:
|
|
pkg.installed:
|
|
- name: {{ postgres.pkg_dev }}
|
|
{% endif %}
|
|
|
|
{% if postgres.pkg_libpq_dev %}
|
|
install-postgres-libpq-dev:
|
|
pkg.installed:
|
|
- name: {{ postgres.pkg_libpq_dev }}
|
|
{% endif %}
|