Skip to content

Commit 8d96494

Browse files
author
Rob McBroom
committed
fix the formatting of package lists
Continuing what was done in #254
1 parent 57f80ee commit 8d96494

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

postgres/client/init.sls

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ include:
1515
# Install PostgreSQL client and libraries
1616
postgresql-client-libs:
1717
pkg.installed:
18-
- pkgs: {{ pkgs }}
18+
- pkgs: {{ pkgs | json }}
1919
{%- if postgres.use_upstream_repo == true %}
2020
- refresh: True
2121
- require:

postgres/dev/init.sls

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
{% if pkgs %}
77
install-postgres-dev-packages:
88
pkg.installed:
9-
- pkgs: {{ pkgs }}
9+
- pkgs: {{ pkgs | json }}
1010
{% if postgres.fromrepo %}
1111
- fromrepo: {{ postgres.fromrepo }}
1212
{% endif %}

0 commit comments

Comments
 (0)