updated logic
diff --git a/tasks/echo.yml b/tasks/echo.yml new file mode 100644 index 0000000..8864fd9 --- /dev/null +++ b/tasks/echo.yml
@@ -0,0 +1,4 @@ +--- +- name: Echo Hello + debug: + msg: "Hello from included echo.yml file" \ No newline at end of file
diff --git a/tasks/main.yml b/tasks/main.yml index 8446cf3..596b25b 100644 --- a/tasks/main.yml +++ b/tasks/main.yml
@@ -23,6 +23,9 @@ msg: "Count Files Matched: {{ item.matched }}" with_items: "{{ downloads.results }}" +- name: Include echo.yml + include: echo.yml + #- name: Iterate over files found # include: ./download_files.yml # vars: