Fix installing the genacls.pkgdb script from the template directory

This commit is contained in:
Pierre-Yves Chibon 2014-09-09 10:58:36 +02:00
parent 3341c84d01
commit 068d71c127

View file

@ -119,12 +119,20 @@
- config
- distgit
- name: install the gitolite scripts
- name: install the genacls.sh script
copy: src={{item}} dest=/usr/local/bin/{{item}} mode=0755
with_items:
- genacls.pkgdb
- genacls.sh
- name: install the genacls.pkgdb scripts
template: src={{item}} dest=/usr/local/bin/{{item}}
owner=root group=root mode=0755
with_items:
- genacls.pkgdb
tags:
- config
- distgit
- name: Add the genacl daily cron job
copy: src=genacls.cron dest=/etc/cron.d/genacls.cron
owner=root mode=644