Browse Source

Add possibility to remove user's git config keys

master
Damien Tardy-Panis 8 years ago
parent
commit
8e33bb8aa9
2 changed files with 18 additions and 1 deletions
  1. +4
    -0
      pillar.example
  2. +14
    -1
      users/init.sls

+ 4
- 0
pillar.example View File

user.email: buser@example.com user.email: buser@example.com
"url.https://.insteadOf": "git://" "url.https://.insteadOf": "git://"


gitconfig.absent:
- push.default
- color\..+

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

+ 14
- 1
users/init.sls View File

# - require_in: # - require_in:
# - sls: users # - sls: users
# #
{% if 'gitconfig' in user %}
{% if salt['cmd.has_exec']('git') %} {% if salt['cmd.has_exec']('git') %}

{% if 'gitconfig' in user %}
{% 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 %}

{% if 'gitconfig.absent' in user and grains['saltversioninfo'] >= [2015, 8, 0, 0] %}
{% for key in user.get('gitconfig.absent') %}
users_{{ name }}_user_gitconfig_absent_{{ key }}:
git.config_unset:
- name: '{{ key }}'
- user: {{ name }}
- global: True
- all: True
{% endfor %}
{% endif %}

{% endif %} {% endif %}


{% endfor %} {% endfor %}

Loading…
Cancel
Save