mirror of
https://pagure.io/fedora-infra/ansible.git
synced 2026-04-26 03:23:08 +08:00
17 lines
313 B
YAML
17 lines
313 B
YAML
---
|
|
# tasklist for setting up a git server (git:// access)
|
|
|
|
- name: install the needed packages
|
|
yum: pkg={{item}} state=present
|
|
with_items:
|
|
- git-daemon
|
|
- xinetd
|
|
|
|
- name: install the xinetd config file
|
|
template: >
|
|
src="git.j2"
|
|
dest="/etc/xinetd.d/git"
|
|
mode=0644
|
|
notify:
|
|
- restart xinetd
|