fix the formatting of package lists

Continuing what was done in #254
This commit is contained in:
Rob McBroom 2019-03-14 12:08:33 -04:00
parent 57f80ee20a
commit 8d9649452c
2 changed files with 2 additions and 2 deletions

View file

@ -15,7 +15,7 @@ include:
# Install PostgreSQL client and libraries
postgresql-client-libs:
pkg.installed:
- pkgs: {{ pkgs }}
- pkgs: {{ pkgs | json }}
{%- if postgres.use_upstream_repo == true %}
- refresh: True
- require:

View file

@ -6,7 +6,7 @@
{% if pkgs %}
install-postgres-dev-packages:
pkg.installed:
- pkgs: {{ pkgs }}
- pkgs: {{ pkgs | json }}
{% if postgres.fromrepo %}
- fromrepo: {{ postgres.fromrepo }}
{% endif %}