Browse Source

Merge pull request #137 from soniah/current

temp fix on git executable
lookup-fix-3
Forrest 8 years ago
parent
commit
b873db1aee
1 changed files with 13 additions and 6 deletions
  1. +13
    -6
      users/init.sls

+ 13
- 6
users/init.sls View File

{%- endfor %} {%- endfor %}
{%- endif %} {%- 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
#
#git:
# pkg.installed:
# - require_in:
# - sls: users
#
{% if 'gitconfig' in user %} {% if 'gitconfig' in user %}
{% if not salt['cmd.has_exec']('git') %}
skip_{{ name }}_gitconfig_since_git_not_installed:
test.fail_without_changes:
- name: "Git configuration for user {{ name }} has been skipped because Git is not installed."
{% else %}
{% for key, value in user['gitconfig'].items() %} {% for key, value in user['gitconfig'].items() %}
users_{{ name }}_user_gitconfig_{{ loop.index0 }}: users_{{ name }}_user_gitconfig_{{ loop.index0 }}:
{% if grains['saltversioninfo'] >= (2015, 8, 0, 0) %} {% if grains['saltversioninfo'] >= (2015, 8, 0, 0) %}
{% endif %} {% endif %}
{% endfor %} {% endfor %}
{% endif %} {% endif %}
{% endif %}


{% endfor %} {% endfor %}



Loading…
Cancel
Save