summaryrefslogtreecommitdiffstats
path: root/examples/playbooks/rule-fqcn-fail.yml
diff options
context:
space:
mode:
Diffstat (limited to 'examples/playbooks/rule-fqcn-fail.yml')
-rw-r--r--examples/playbooks/rule-fqcn-fail.yml14
1 files changed, 14 insertions, 0 deletions
diff --git a/examples/playbooks/rule-fqcn-fail.yml b/examples/playbooks/rule-fqcn-fail.yml
new file mode 100644
index 0000000..8015cc2
--- /dev/null
+++ b/examples/playbooks/rule-fqcn-fail.yml
@@ -0,0 +1,14 @@
+---
+- name: Fixture
+ hosts: localhost
+ collections:
+ - community.general
+ tasks:
+ - name: Shell (fqcn[action-core]) # noqa: command-instead-of-shell
+ shell: echo This rule should get matched by the fqcn rule
+ changed_when: false
+ - name: Shell (fqcn[action])
+ ini_file:
+ section: foo
+ path: /tmp/test.ini
+ mode: "0644"