Files
fedora-infra_ansible/roles/git/hooks/tasks/main.yml
Mathieu Bridon 183a2ab707 git/hooks: Express the role dependency properly
This had been found by misc during his review of the patches, but the
unfixed patch is what got merged.

https://fedorahosted.org/fedora-infrastructure/ticket/4452
2014-09-24 12:26:07 +02:00

23 lines
486 B
YAML

---
# tasklist for setting up git mail hooks
- name: install needed packages
yum: pkg={{item}} state=present
with_items:
- git
- moreutils
- python-kitchen
- name: install the git hooks
copy: src={{item}} dest=/usr/share/git-core mode=0755
with_items:
- post-receive-fedmsg
- post-receive-chained
- name: install the git mail hooks
copy: src={{item}} dest=/usr/share/git-core/mail-hooks mode=0755
with_items:
- util.py
- git.py
- gnome-post-receive-email