Pārlūkot izejas kodu

Resolve `git.config` error where minion does not have Git installed #115

lookup-fix-3
Imran Iqbal pirms 8 gadiem
vecāks
revīzija
846634bfd7
2 mainītis faili ar 9 papildinājumiem un 0 dzēšanām
  1. +3
    -0
      pillar.example
  2. +6
    -0
      users/init.sls

+ 3
- 0
pillar.example Parādīt failu

@@ -81,6 +81,9 @@ users:
options:
- "StrictHostKeyChecking yes"

# Using gitconfig without Git installed will result in an error
# https://docs.saltstack.com/en/latest/ref/states/all/salt.states.git.html:
# This state module now requires git 1.6.5 (released 10 October 2009) or newer.
gitconfig:
user.name: B User
user.email: buser@example.com

+ 6
- 0
users/init.sls Parādīt failu

@@ -416,6 +416,11 @@ users_googleauth-{{ svc }}-{{ name }}:
{%- endif %}

{% 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() %}
users_{{ name }}_user_gitconfig_{{ loop.index0 }}:
{% if grains['saltversioninfo'] >= (2015, 8, 0, 0) %}
@@ -433,6 +438,7 @@ users_{{ name }}_user_gitconfig_{{ loop.index0 }}:
{% endif %}
{% endfor %}
{% endif %}
{% endif %}

{% endfor %}


Notiek ielāde…
Atcelt
Saglabāt