I have written the playbook for mail server creation. For that i have written multiple individual yml files and put all those in main.yml.
so while executing this main.yml suppose it fails any yml file inside main.yml. that is as
in main.yml consists
-
include: 123.yml
-
include: 13.yml
-
include: 12.yml
-
include: 1234.yml
-
include: 12345.yml
-
include: 123567.yml
while exeuting main.yml if it fails at 12.yml . then while executing again by --limit @/main.retry it start from 123.yml.
so how to continue from where it fails i.e continue from 12.yml while executing main.yml???
Could you please provide me solution how to overcome this problem???