Files
fedora-infra_ansible/roles/git/hooks/tasks/main.yml
2014-12-16 14:17:48 +01:00

25 lines
536 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
- update-block-push-origin
- update-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