浏览代码

fix: corrected indentation on context in file.managed states

tags/v0.9.0^2
Eric Veiras Galisson 5 年前
父节点
当前提交
ef88f3d047
共有 1 个文件被更改,包括 4 次插入4 次删除
  1. +4
    -4
      logrotate/jobs.sls

+ 4
- 4
logrotate/jobs.sls 查看文件

@@ -22,11 +22,11 @@ logrotate-{{ key }}:
- template: jinja
- context:
{% if value is mapping %}
path: {{ value.get('path', [key]) | json }}
data: {{ value.get('config', []) | json }}
path: {{ value.get('path', [key]) | json }}
data: {{ value.get('config', []) | json }}
{% else %}
path: [ {{ key | json }} ]
data: {{ value | json }}
path: [ {{ key | json }} ]
data: {{ value | json }}
{% endif %}
{% endif %}
{%- endfor -%}

正在加载...
取消
保存