Fix E203 Most files should not contain tabs
This commit is contained in:
parent
654ffc8d43
commit
96226c2463
|
@ -3,6 +3,7 @@
|
||||||
### Fix
|
### Fix
|
||||||
* Fix E405 Remote package tasks should have a retry.
|
* Fix E405 Remote package tasks should have a retry.
|
||||||
* Use to_nice_json to manage packages list.
|
* Use to_nice_json to manage packages list.
|
||||||
|
* Fix E203 Most files should not contain tabs.
|
||||||
|
|
||||||
## v1.1.1
|
## v1.1.1
|
||||||
|
|
||||||
|
|
|
@ -10,7 +10,7 @@
|
||||||
dest: /etc/hosts
|
dest: /etc/hosts
|
||||||
state: present
|
state: present
|
||||||
regexp: "^{{ ansible_lo.ipv4.address }}"
|
regexp: "^{{ ansible_lo.ipv4.address }}"
|
||||||
line: "{{ ansible_lo.ipv4.address }} {{ basics__hosts_localhost_content }}"
|
line: "{{ ansible_lo.ipv4.address }} {{ basics__hosts_localhost_content }}"
|
||||||
backup: yes
|
backup: yes
|
||||||
when: (basics__hosts_localhost_manage and
|
when: (basics__hosts_localhost_manage and
|
||||||
ansible_lo.ipv4.address is defined)
|
ansible_lo.ipv4.address is defined)
|
||||||
|
@ -20,7 +20,7 @@
|
||||||
dest: /etc/hosts
|
dest: /etc/hosts
|
||||||
state: present
|
state: present
|
||||||
regexp: "^{{ ansible_default_ipv4.address }}"
|
regexp: "^{{ ansible_default_ipv4.address }}"
|
||||||
line: "{{ ansible_default_ipv4.address }} {{ basics__hosts_ipv4_content }}"
|
line: "{{ ansible_default_ipv4.address }} {{ basics__hosts_ipv4_content }}"
|
||||||
backup: yes
|
backup: yes
|
||||||
when: (basics__hosts_ipv4_manage and
|
when: (basics__hosts_ipv4_manage and
|
||||||
ansible_default_ipv4.address is defined)
|
ansible_default_ipv4.address is defined)
|
||||||
|
|
Reference in New Issue