From 033c77a13b328c4da5bad4a00f705f7a30d9c25d Mon Sep 17 00:00:00 2001 From: Brian Coca Date: Thu, 13 Aug 2015 09:53:44 -0400 Subject: [PATCH] now creates/removes files/ dir --- test/integration/lookup_paths/play.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/test/integration/lookup_paths/play.yml b/test/integration/lookup_paths/play.yml index 80407bdbc9..cbca554ff3 100644 --- a/test/integration/lookup_paths/play.yml +++ b/test/integration/lookup_paths/play.yml @@ -3,6 +3,8 @@ connection: local gather_facts: false tasks: + - file: path={{playbook_dir}}/files state=directory + - file: path={{playbook_dir}}/roles/files state=directory - copy: dest={{playbook_dir}}/roles/showfile/files/testfile content='in role files' - copy: dest={{playbook_dir}}/roles/showfile/tasks/testfile content='in role tasks' - copy: dest={{playbook_dir}}/roles/showfile/testfile content='in role' @@ -58,3 +60,5 @@ gather_facts: false tasks: - file: path={{playbook_dir}}/testfile state=absent + - file: path={{playbook_dir}}/files state=absent + - file: path={{playbook_dir}}/roles/files state=absent