aboutsummaryrefslogblamecommitdiffstats
path: root/roles/git/tasks/main.yml
blob: 24a9d2de53be0f13cf355a8eb552d6ceae924486 (plain) (tree)
1
2
3
4
5
6
7
8
9





                                 

                        
                           

                  

                       

                            

                                

                                 


                            
                    
              
 

# git ~~ roles/git/tasks/main.yml
# Init git user and settings

---

- name: create git group
  group:
    name: "{{ git_group }}"
    state: present

- name: create git user
  user:
    name: "{{ git_user }}"
    group: "{{ git_group }}"
    shell: "{{ path_gitshell }}"

- name: create git-only directory
  file:
    path: "{{ git_dir }}"
    owner: "{{ git_user }}"
    group: "{{ git_group }}"
    state: directory
    mode: 0750

remember that computers suck.