Hi,
Does someone know if and how to include plays that does not exist at the execution time?
For example.
main.yml
`
-
include: download.yml
-
include: /this/file/does/not/exist/yet/configure.yml
`
I would like to download some files. After download.yml finishes the file “/this/file/does/not/exist/yet/configure.yml” will exist, but not before. I would like to include the configure.yml file which will be an ansible playbook.
Is it possible?