From 3a0d2d4483860dde341efe4ab04507490f8ac4c1 Mon Sep 17 00:00:00 2001 From: Kevin Fenzi Date: Mon, 23 Jun 2014 01:01:24 +0000 Subject: [PATCH] Fix paths --- roles/hosts/tasks/main.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/roles/hosts/tasks/main.yml b/roles/hosts/tasks/main.yml index a28ef07ecc..43264b59f6 100644 --- a/roles/hosts/tasks/main.yml +++ b/roles/hosts/tasks/main.yml @@ -13,10 +13,10 @@ action: copy src={{ item }} dest=/etc/hosts with_first_found: - files: - - "{{ files }}/hosts/{{ ansible_fqdn }}-hosts" - - "{{ files }}/hosts/{{ ansible_hostname }}-hosts" - - "{{ files }}/hosts/{{ ansible_domain }}-hosts" - - "{{ files }}/hosts/{{ host_group }}-hosts" + - "{{ ansible_fqdn }}-hosts" + - "{{ ansible_hostname }}-hosts" + - "{{ ansible_domain }}-hosts" + - "{{ host_group }}-hosts" skip: true tags: - config