Browse Source

Add possibility to manage the user's global git configuration.

lookup-fix-3
Heinz Wiesinger 9 years ago
parent
commit
452b8ee8cf
2 changed files with 24 additions and 0 deletions
  1. +5
    -0
      pillar.example
  2. +19
    -0
      users/init.sls

+ 5
- 0
pillar.example View File

options: options:
- "StrictHostKeyChecking yes" - "StrictHostKeyChecking yes"


gitconfig:
user.name: B User
user.email: buser@example.com
url."https://".insteadOf: "git://"

google_2fa: True google_2fa: True
google_auth: google_auth:
ssh: | ssh: |

+ 19
- 0
users/init.sls View File

{%- endfor %} {%- endfor %}
{%- endif %} {%- endif %}


{% if 'gitconfig' in user %}
{% for key, value in user['gitconfig'].items() %}
users_{{ name }}_user_gitconfig_{{ loop.index0 }}:
{% if grains['saltversioninfo'] >= (2015, 8, 0, 0) %}
git.config_set:
{% else %}
git.config:
{% endif %}
- name: {{ key }}
- value: "{{ value }}"
- user: {{ name }}
{% if grains['saltversioninfo'] >= (2015, 8, 0, 0) %}
- global: True
{% else %}
- is_global: True
{% endif %}
{% endfor %}
{% endif %}

{% endfor %} {% endfor %}





Loading…
Cancel
Save