From ee532daf66addf94c36b82bbafc1d1c7069b3e97 Mon Sep 17 00:00:00 2001 From: Jerzy Drozdz Date: Thu, 14 Jun 2018 23:50:57 +0200 Subject: [PATCH] Client should not install dev libs by default --- postgres/client/init.sls | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/postgres/client/init.sls b/postgres/client/init.sls index c20ecad..26384c9 100644 --- a/postgres/client/init.sls +++ b/postgres/client/init.sls @@ -1,7 +1,7 @@ {%- from salt.file.dirname(tpldir) ~ "/map.jinja" import postgres with context -%} {%- set pkgs = [] %} -{%- for pkg in (postgres.pkg_client, postgres.pkg_libpq_dev) %} +{%- for pkg in (postgres.pkg_client,) %} {%- if pkg %} {%- do pkgs.append(pkg) %} {%- endif %}