aboutsummaryrefslogblamecommitdiffstatshomepage
path: root/src/roles/etckeeper/tasks/main.yml
blob: 19f9b863fdc8d05a8be46548587e16485d063be3 (plain) (tree)
1
2
3
4
5
6
7
8
9

                                   
        





                                   
 





                                   
- name: Make sure git is configured
  become: true
  block:
    - name: Set user.name
      community.general.git_config:
        scope: local
        repo: /etc
        name: user.name
        value: '{{ git_name }}'

    - name: Set user.email
      community.general.git_config:
        scope: local
        repo: /etc
        name: user.email
        value: '{{ git_email }}'