blob: 4fba8efacd197df2bab92812d3f97617bb91f78a (
plain)
1
2
3
4
5
6
7
8
9
|
---
- name: Fixture
hosts: whatever
tasks:
- name: Hello world
action: debug msg="Hello!" # noqa: fqcn[action-core]
- name: This should be fine too
action: file state=touch dest=./wherever mode=0600 # noqa: fqcn[action-core]
|