mirror of
https://github.com/saltstack-formulas/postgres-formula.git
synced 2025-04-17 10:10:31 +00:00
13 lines
331 B
Text
13 lines
331 B
Text
{% from "postgres/map.jinja" import postgres with context %}
|
|
|
|
{% if postgres.pkg_dev != False %}
|
|
install-postgres-dev-package:
|
|
pkg.installed:
|
|
- name: {{ postgres.pkg_dev }}
|
|
{% endif %}
|
|
|
|
{% if postgres.pkg_libpq_dev != False %}
|
|
install-postgres-libpq-dev:
|
|
pkg.installed:
|
|
- name: {{ postgres.pkg_libpq_dev }}
|
|
{% endif %}
|