mirror of
https://github.com/saltstack-formulas/postgres-formula.git
synced 2025-04-16 09:40:26 +00:00
9 lines
202 B
Text
9 lines
202 B
Text
# pkg.install
|
|
postgresql:
|
|
pkg.installed:
|
|
{% if grains['os_family'] == 'RedHat' %}
|
|
- name: postgresql
|
|
{% elif grains['os_family'] == 'Debian' %}
|
|
- name: postgresql-9.1
|
|
{% endif %}
|
|
|