From cb60abc7969e3dc330abe6e0942759174b106d10 Mon Sep 17 00:00:00 2001 From: Theo Chatzimichos Date: Feb 09 2017 18:54:09 +0000 Subject: string for zypper.conf values instead of booleans --- diff --git a/salt/profile/zypper/config.sls b/salt/profile/zypper/config.sls index 7561539..0b4f78c 100644 --- a/salt/profile/zypper/config.sls +++ b/salt/profile/zypper/config.sls @@ -20,7 +20,7 @@ {% for section, data in zypper_conf.iteritems() %} {{ section }}: {% for config, value in data.iteritems() %} - {{ config }}: {{ value }} + {{ config }}: '{{ value }}' {% endfor %} {% endfor %} {% endif %}