summaryrefslogtreecommitdiffstats
path: root/test/schemas/test/playbooks/tasks/ignore_errors.yml
diff options
context:
space:
mode:
Diffstat (limited to 'test/schemas/test/playbooks/tasks/ignore_errors.yml')
-rw-r--r--test/schemas/test/playbooks/tasks/ignore_errors.yml7
1 files changed, 7 insertions, 0 deletions
diff --git a/test/schemas/test/playbooks/tasks/ignore_errors.yml b/test/schemas/test/playbooks/tasks/ignore_errors.yml
new file mode 100644
index 0000000..2f253f2
--- /dev/null
+++ b/test/schemas/test/playbooks/tasks/ignore_errors.yml
@@ -0,0 +1,7 @@
+- command: echo 123
+ ignore_errors: true
+
+- command: echo 123
+ vars:
+ should_ignore_errors: true
+ ignore_errors: "{{ should_ignore_errors }}"