Add a new gitolite/base role

This will be needed to migrate Dist Git from puppet to ansible.
This commit is contained in:
Mathieu Bridon 2014-07-08 11:52:29 +02:00 committed by Kevin Fenzi
parent 3cbdbf5a76
commit 360fb1fa33

View file

@ -0,0 +1,10 @@
---
# tasklist for setting up a basic gitolite
- name: install the needed packages
yum: pkg={{item}} state=present
with_items:
- gitolite
- name: ensure the /etc/gitolite directory
file: path=/etc/gitolite owner=root group=root mode=0755 state=directory