mirror of
https://pagure.io/fedora-infra/ansible.git
synced 2026-04-30 05:20:49 +08:00
23 lines
504 B
YAML
23 lines
504 B
YAML
---
|
|
# tasklist for setting up git mail hooks
|
|
|
|
- name: install needed packages
|
|
yum: pkg={{item}} state=present
|
|
with_items:
|
|
- git
|
|
- moreutils
|
|
|
|
# This requires the fedmsg/base role
|
|
- 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
|