Tags for this role.

This commit is contained in:
Ralph Bean 2016-03-21 16:16:24 +00:00
parent 9ffcd0a1ef
commit 549c7d655b

View file

@ -3,11 +3,13 @@
- name: install the git-daemon package
yum: pkg=git-daemon state=present
tags: git/server
# If NOT using xinetd
- name: delete stock git daemon config
file: path="/usr/lib/systemd/system/git.service" state=absent
when: ansible_distribution_major_version|int == 7
tags: git/server
- name: configure git daemon
template: >
@ -15,11 +17,13 @@
dest="/usr/lib/systemd/system/git@.service"
mode=0644
when: ansible_distribution_major_version|int == 7
tags: git/server
# If using xinetd
- name: install xinetd
yum: pkg=xinetd state=present
when: ansible_distribution_major_version|int == 6
tags: git/server
- name: install the xinetd config file
template: >
@ -27,5 +31,6 @@
dest="/etc/xinetd.d/git"
mode=0644
when: ansible_distribution_major_version|int == 6
tags: git/server
notify:
- restart xinetd