ソースを参照

Merge pull request #154 from bbinet/fix-long-line-issue

Use json serializer instead of yaml to fix serialization of long lines
pull/189/head
Filip Pytloun 5年前
コミット
9a11f88aeb
コミッターのメールアドレスに関連付けられたアカウントが存在しません
1個のファイルの変更2行の追加2行の削除
  1. +2
    -2
      linux/system/file.sls

+ 2
- 2
linux/system/file.sls ファイルの表示

@@ -8,7 +8,7 @@ linux_file_{{ file_name }}:
file.serialize:
- formatter: {{ file.serialize }}
{%- if file.contents is defined %}
- dataset: {{ file.contents|yaml }}
- dataset: {{ file.contents|json }}
{%- elif file.contents_pillar is defined %}
- dataset_pillar: {{ file.contents_pillar }}
{%- endif %}
@@ -25,7 +25,7 @@ linux_file_{{ file_name }}:
- template: {{ file.template }}
{%- endif %}
{%- elif file.contents is defined %}
- contents: {{ file.contents|yaml }}
- contents: {{ file.contents|json }}
{%- elif file.contents_pillar is defined %}
- contents_pillar: {{ file.contents_pillar }}
{%- elif file.contents_grains is defined %}

読み込み中…
キャンセル
保存