summaryrefslogtreecommitdiffstats
path: root/examples/playbooks/run-once-fail.yml
diff options
context:
space:
mode:
Diffstat (limited to 'examples/playbooks/run-once-fail.yml')
-rw-r--r--examples/playbooks/run-once-fail.yml12
1 files changed, 12 insertions, 0 deletions
diff --git a/examples/playbooks/run-once-fail.yml b/examples/playbooks/run-once-fail.yml
new file mode 100644
index 0000000..8963196
--- /dev/null
+++ b/examples/playbooks/run-once-fail.yml
@@ -0,0 +1,12 @@
+---
+- name: "Example with run_once"
+ hosts: all
+ # strategy: free # noqa: run-once[play] (Corrected code example)
+ strategy: free
+ gather_facts: false
+ tasks:
+ # - name: Task with run_once # noqa: run-once[task] (Corrected code example)
+ - name: Task with run_once
+ ansible.builtin.debug:
+ msg: "Test"
+ run_once: true # <-- avoid use of strategy as free at play level when using run_once at task level