diff --git a/postgres/client/init.sls b/postgres/client/init.sls index e220c67..6724637 100644 --- a/postgres/client/init.sls +++ b/postgres/client/init.sls @@ -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: diff --git a/postgres/dev/init.sls b/postgres/dev/init.sls index 16e32fd..09b4323 100644 --- a/postgres/dev/init.sls +++ b/postgres/dev/init.sls @@ -6,7 +6,7 @@ {% if pkgs %} install-postgres-dev-packages: pkg.installed: - - pkgs: {{ pkgs }} + - pkgs: {{ pkgs | json }} {% if postgres.fromrepo %} - fromrepo: {{ postgres.fromrepo }} {% endif %}