af44bd4ddd
Using --start-at-task on a playbook with tasks with no name would fail if those unnamed tasks were encountered before the targetted start task.
10 lines
147 B
YAML
10 lines
147 B
YAML
---
|
|
- hosts: localhost
|
|
gather_facts: false
|
|
tasks:
|
|
- name:
|
|
debug:
|
|
msg: foo
|
|
- name: "task 2"
|
|
debug:
|
|
msg: bar
|