summaryrefslogtreecommitdiffstats
path: root/examples/playbooks/multi_yaml_doc.yml
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--examples/playbooks/multi_yaml_doc.yml23
1 files changed, 23 insertions, 0 deletions
diff --git a/examples/playbooks/multi_yaml_doc.yml b/examples/playbooks/multi_yaml_doc.yml
new file mode 100644
index 0000000..ab1e02f
--- /dev/null
+++ b/examples/playbooks/multi_yaml_doc.yml
@@ -0,0 +1,23 @@
+---
+- name: First problematic play
+ hosts: localhost
+ tasks:
+ - name: Echo a message
+ ansible.builtin.shell: echo hello # <-- command-instead-of-shell
+ changed_when: false
+---
+- name: second problematic play # <-- name[casing]
+ hosts: localhost
+ tasks:
+ - name: Remove file (delete file)
+ ansible.builtin.file:
+ path: /etc/foo.txt
+ state: absent
+---
+- name: Third problematic play
+ hosts: localhost
+ tasks:
+ - name: Remove file (delete file)
+ file: # <-- fqcn[action-core]
+ path: /etc/foo.txt
+ state: absent