ソースを参照

Fix meta/salt.yml to workaround broken formulas

Change-Id: If8ee6ccfd282d8f926eff268cd74871e0f400754
pull/70/head
Filip Pytloun 7年前
コミット
84d46739a7
2個のファイルの変更2行の追加2行の削除
  1. +1
    -1
      salt/map.jinja
  2. +1
    -1
      salt/meta/salt.yml

+ 1
- 1
salt/map.jinja ファイルの表示

@@ -179,7 +179,7 @@ Debian:
virt_pkgs:
- libvirt-dev
- pkg-config
{% if grains.oscodename == 'trusty' %}
{% if grains.get('oscodename') == 'trusty' %}
- libguestfs-tools
{% endif %}


+ 1
- 1
salt/meta/salt.yml ファイルの表示

@@ -4,7 +4,7 @@
{%- macro load_grains_file() %}{% include grains_fragment_file ignore missing %}{% endmacro %}
{%- set grains_yaml = load_grains_file()|load_yaml %}
{%- if grains_yaml is mapping %}
{%- for node in grains_yaml.graph %}
{%- for node in grains_yaml.graph if grains_yaml.graph %}
{%- do service_grains.salt.graph.append(node) %}
{%- endfor %}
{%- endif %}

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