diff options
| author | Pierre-Yves Chibon <pingou@pingoured.fr> | 2014-12-16 14:17:36 +0100 |
|---|---|---|
| committer | Pierre-Yves Chibon <pingou@pingoured.fr> | 2014-12-16 14:17:48 +0100 |
| commit | 163c5a34bf9d304fbbd4d59bbc35b34a745897dc (patch) | |
| tree | ae25bf230082a4776e0a9b78ab7608f037d66f97 /roles/git/hooks/tasks | |
| parent | 42215ae7f536ac168abd803a06046e08bd56245b (diff) | |
| download | ansible-163c5a34bf9d304fbbd4d59bbc35b34a745897dc.tar.gz ansible-163c5a34bf9d304fbbd4d59bbc35b34a745897dc.tar.xz ansible-163c5a34bf9d304fbbd4d59bbc35b34a745897dc.zip | |
Try a trailing / as indication to create the directory
Diffstat (limited to 'roles/git/hooks/tasks')
| -rw-r--r-- | roles/git/hooks/tasks/main.yml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/roles/git/hooks/tasks/main.yml b/roles/git/hooks/tasks/main.yml index 9d6c34aed..84a049622 100644 --- a/roles/git/hooks/tasks/main.yml +++ b/roles/git/hooks/tasks/main.yml @@ -9,7 +9,7 @@ - python-kitchen - name: install the git hooks - copy: src={{item}} dest=/usr/share/git-core mode=0755 + copy: src={{item}} dest=/usr/share/git-core/ mode=0755 with_items: - post-receive-fedmsg - post-receive-chained @@ -17,7 +17,7 @@ - update-chained - name: install the git mail hooks - copy: src={{item}} dest=/usr/share/git-core/mail-hooks mode=0755 + copy: src={{item}} dest=/usr/share/git-core/mail-hooks/ mode=0755 with_items: - util.py - git.py |
