Wrap app db creation in an if-statement to check for Pillar values

This commit is contained in:
Seth House 2014-05-16 10:59:19 -06:00
parent 9ac9a4610e
commit 2bd55a5a16

View file

@ -26,6 +26,7 @@ pg_hba.conf:
- pkg: {{ postgres.pkg }} - pkg: {{ postgres.pkg }}
{% endif %} {% endif %}
{% if 'db' in pillar['postgres'] %}
postgres-app-user: postgres-app-user:
postgres_user.present: postgres_user.present:
- name: {{ pillar['postgres']['db']['user'] }} - name: {{ pillar['postgres']['db']['user'] }}
@ -46,3 +47,4 @@ postgres-app-db:
- runas: postgres - runas: postgres
- require: - require:
- postgres_user: postgres-app-user - postgres_user: postgres-app-user
{% endif %}