From 8d9649452cc4dce5321d16d1d9b630d8b83c2601 Mon Sep 17 00:00:00 2001 From: Rob McBroom Date: Thu, 14 Mar 2019 12:08:33 -0400 Subject: [PATCH] fix the formatting of package lists Continuing what was done in #254 --- postgres/client/init.sls | 2 +- postgres/dev/init.sls | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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 %}