aboutsummaryrefslogtreecommitdiffstats
path: root/roles/git/tasks/git-daemon.yml
blob: b604401a70bdaef952caa4dc53dd0c597814c212 (plain)
1
2
3
4
5
6
7
8
9
10
11
12

- name: Install git-daemon-sysvinit package
  apt: name=git-daemon-sysvinit state=present
  tags:
    - dependencies

- name: Configure git-daemon
  template: src=etc_default_git-daemon.j2
            dest=/etc/default/git-daemon
            group=root
            owner=root
  notify: git-daemon restart