postgres-formula/postgres/init.sls
Niels Abspoel 62b7d6c47f updated postgresql module
added service
added python module
added archlinux support
2014-02-09 17:50:23 +01:00

13 lines
255 B
Text

{% from "postgres/map.jinja" import postgres with context %}
postgresql:
pkg:
- installed
- name: {{ postgres.pkg }}
service:
- running
- enable: true
- name: {{ postgres.service }}
- require:
- pkg: {{ postgres.pkg }}