Replaces many references to file: with ansible.builtin.file Signed-off-by: Ryan Lerch <rlerch@redhat.com>
49 lines
1.5 KiB
YAML
49 lines
1.5 KiB
YAML
---
|
|
# tasklist for setting up a git server (git:// access)
|
|
|
|
- name: Install the git-daemon package
|
|
package: name=git-daemon state=present
|
|
tags: git/server
|
|
|
|
# If NOT using xinetd
|
|
- name: Delete stock git daemon config
|
|
ansible.builtin.file: path="/usr/lib/systemd/system/git.service" state=absent
|
|
when: ansible_distribution_major_version|int >= 7 and ansible_distribution == 'RedHat'
|
|
tags: git/server
|
|
|
|
- name: Delete stock git daemon config
|
|
ansible.builtin.file: path="/usr/lib/systemd/system/git.service" state=absent
|
|
when: ansible_distribution_major_version|int >= 29 and ansible_distribution == 'Fedora'
|
|
tags: git/server
|
|
|
|
- name: Configure git daemon
|
|
template: >
|
|
src="git@.service.j2"
|
|
dest="/usr/lib/systemd/system/git@.service"
|
|
mode=0644
|
|
when: ansible_distribution_major_version|int >= 7 and ansible_distribution == 'RedHat'
|
|
tags: git/server
|
|
|
|
- name: Configure git daemon
|
|
template: >
|
|
src="git@.service.j2"
|
|
dest="/usr/lib/systemd/system/git@.service"
|
|
mode=0644
|
|
when: ansible_distribution_major_version|int >= 29 and ansible_distribution == 'Fedora'
|
|
tags: git/server
|
|
|
|
# If using xinetd
|
|
- name: Install xinetd
|
|
package: name=xinetd state=present
|
|
when: ansible_distribution_major_version|int == 6 and ansible_distribution == 'RedHat'
|
|
tags: git/server
|
|
|
|
- name: Install the xinetd config file
|
|
template: >
|
|
src="git.j2"
|
|
dest="/etc/xinetd.d/git"
|
|
mode=0644
|
|
when: ansible_distribution_major_version|int == 6 and ansible_distribution == 'RedHat'
|
|
tags: git/server
|
|
notify:
|
|
- restart xinetd
|