aboutsummaryrefslogblamecommitdiffstats
path: root/roles/git/tasks/main.yml
blob: 74481e42f6370bc347b668392b2975fbd6bbe2cd (plain) (tree)



















                                 

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

---

- name: create git-only directory
  file:
    path: /data/git
    owner: git
    group: git
    state: directory
    mode: 0741

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

remember that computers suck.