diff options
Diffstat (limited to 'examples/playbooks/playbook-imported.yml')
-rw-r--r-- | examples/playbooks/playbook-imported.yml | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/examples/playbooks/playbook-imported.yml b/examples/playbooks/playbook-imported.yml new file mode 100644 index 0000000..d5f4ae8 --- /dev/null +++ b/examples/playbooks/playbook-imported.yml @@ -0,0 +1,11 @@ +--- +- name: Fixture + hosts: localhost + connection: local + gather_facts: false + tasks: + - ansible.builtin.command: + cmd: echo "no name" # should generate unnamed-task + - name: Another task + ansible.builtin.debug: + msg: debug message |