An Ansible playbook includes multiple roles. The administrator wants to ensure that a specific role's tasks are executed before any other roles, even if the roles are listed in a different order in the playbook. Which approach should be used?
pre_tasks run before any roles, guaranteeing execution order.
Why this answer
Option B is correct because pre_tasks run before any roles, ensuring ordering. Option A (any_errors_fatal) is for error handling, not ordering. Option C (role dependencies) can enforce order but not as straightforward as pre_tasks.
Option D is not a valid parameter.