blob: 18f0f0490a49db33bed562d55e71687cb33479db (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
---
- name: Fixture for examples/playbooks/rule-only-builtins.yml
hosts: localhost
tasks:
- name: Sysctl # noqa: args[module]
# while next module is mocked in our config, we still want to see that
# only-builtins rules gets matched
fake_namespace.fake_collection.fake_module:
name: vm.swappiness
value: "5"
- name: Some task # noqa: args[module]
zuul_return: {}
|