Welcome to WordPress. This is your first post. Edit or delete it, then start blogging!
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 |
{% from "postgres/map.jinja" import postgres with context %} {% if postgres.use_upstream_repo %} include: - postgres.upstream {% endif %} install-postgresql-client: pkg.installed: - name: {{ postgres.pkg_client }} - refresh: {{ postgres.use_upstream_repo }} {% if postgres.pkg_libpq_dev != False %} install-postgres-libpq-dev: pkg.installed: - name: {{ postgres.pkg_libpq_dev }} {% endif %} |