From cd161cae689bc93746325941b40608c323c0a5d0 Mon Sep 17 00:00:00 2001 From: Michael Scherer Date: Mon, 8 Aug 2016 11:28:45 +0200 Subject: [PATCH] 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 --- roles/mdapi/tasks/main.yml | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/roles/mdapi/tasks/main.yml b/roles/mdapi/tasks/main.yml index d884654de6..ac4dacd1f0 100644 --- a/roles/mdapi/tasks/main.yml +++ b/roles/mdapi/tasks/main.yml @@ -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