When initially trying to get an elaborate playbook to work, it’s very costly to repeat the process when a single task fails.
I’d like the playbook to automatically pause on a task that I haven’t set ignore_errors: True
on, let me manually do what the task intended to do, then let the playbook abort that particular task and continue. This way I can make an presumptive fix to the failing task, but let Ansible continue with the rest of the tasks, without having to re-run the playbook for every single error.
Are using retry
files the right way to do this, or is there another way?
- Neil