ソースを参照

Merge pull request #169 from rhertzog/gitconfig

Do not try to run git config when git is not available
master
Niels Abspoel 6年前
コミット
e05d551ac6
コミッターのメールアドレスに関連付けられたアカウントが存在しません
1個のファイルの変更2行の追加4行の削除
  1. +2
    -4
      users/init.sls

+ 2
- 4
users/init.sls ファイルの表示

@@ -446,10 +446,6 @@ users_googleauth-{{ svc }}-{{ name }}:
{%- endfor %}
{%- endif %}

#
# if not salt['cmd.has_exec']('git')
# fails even if git is installed
#
# this doesn't work (Salt bug), therefore need to run state.apply twice
#include:
# - users
@@ -460,6 +456,7 @@ users_googleauth-{{ svc }}-{{ name }}:
# - sls: users
#
{% if 'gitconfig' in user %}
{% if salt['cmd.has_exec']('git') %}
{% for key, value in user['gitconfig'].items() %}
users_{{ name }}_user_gitconfig_{{ loop.index0 }}:
{% if grains['saltversioninfo'] >= [2015, 8, 0, 0] %}
@@ -477,6 +474,7 @@ users_{{ name }}_user_gitconfig_{{ loop.index0 }}:
{% endif %}
{% endfor %}
{% endif %}
{% endif %}

{% endfor %}


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