Browse Source

Merge pull request #43 from FHE3/fix-apt-conf-number

also pass check when opt_data is a number
tags/v0.7.0
Niels Abspoel 5 years ago
parent
commit
29c8a43e12
No account linked to committer's email address
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      apt/templates/apt_conf.jinja

+ 1
- 1
apt/templates/apt_conf.jinja View File

@@ -11,7 +11,7 @@
{%- endmacro -%}
// This file is managed by salt
{%- for opt, opt_data in data|dictsort -%}
{%- if opt_data is string %}
{%- if opt_data is string or opt_data is number %}
{{ opt }} "{{ opt_data }}";
{%- elif opt_data is mapping %}
{{ opt }}

Loading…
Cancel
Save