Simplify the task to install cronjob

Giving directly the file to deploy and doing magic with the variable
permit to have a clearer idea of what is deployed when reading the
task for the first time
This commit is contained in:
Michael Scherer 2016-08-08 11:28:45 +02:00 committed by Kevin Fenzi
parent fb63dfdce1
commit cd161cae68

View file

@ -19,11 +19,12 @@
- name: Install the meta-data fetch cron job
when: inventory_hostname.startswith(('mdapi01'))
template: src={{ item.file }}
dest={{ item.location }}/{{ item.file }}
template:
src: "{{ item | basename }}"
dest: "{{ item }}"
with_items:
- { file: 'mdapi.cron', location: /etc/cron.d }
- { file: 'mdapi.cfg', location: /etc/mdapi }
- /etc/cron.d/mdapi.cron
- /etc/mdapi/mdapi.cfg
tags:
- mdapi
- config