blob: 46210965eb296fcf7bd66ecafa3c9f79700ef381 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
---
- name: Fixture for no-tabs rule
hosts: localhost
tasks:
- name: Should not trigger no-tabs rules
ansible.builtin.lineinfile:
path: some.txt
regexp: ^\t$
line: string with \t inside
- name: Foo
ansible.builtin.debug:
msg: "Presence of \t should trigger no-tabs here."
- name: Key has a tab
ansible.builtin.debug:
"ms\tg": "The associated key has \t and should trigger no-tabs here."
- name: Should not trigger no-tabs rules # noqa fqcn
lineinfile:
path: some.txt
regexp: ^\t$
line: string with \t inside
|