use upstream repo for python if configured

This commit is contained in:
noelmcloughlin 2018-03-31 22:30:57 +01:00 committed by N
parent 43b51148fe
commit be07072e4f

View file

@ -1,5 +1,16 @@
{% from "postgres/map.jinja" import postgres with context %}
include:
- postgres.upstream
postgresql-python:
pkg.installed:
- name: {{ postgres.pkg_python}}
{% if postgres.fromrepo %}
- fromrepo: {{ postgres.fromrepo }}
{% endif %}
{% if postgres.use_upstream_repo == true %}
- refresh: True
- require:
- pkgrepo: postgresql-repo
{% endif %}