From 96226c246300f8758aa50a00acd8e0e20878189b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gardais=20J=C3=A9r=C3=A9my?= Date: Wed, 27 Feb 2019 14:01:32 +0100 Subject: [PATCH] Fix E203 Most files should not contain tabs --- CHANGELOG.md | 1 + tasks/main.yml | 4 ++-- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 15e6f7c..165bb36 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,7 @@ ### Fix * Fix E405 Remote package tasks should have a retry. * Use to_nice_json to manage packages list. +* Fix E203 Most files should not contain tabs. ## v1.1.1 diff --git a/tasks/main.yml b/tasks/main.yml index b25a8f9..99ca92b 100644 --- a/tasks/main.yml +++ b/tasks/main.yml @@ -10,7 +10,7 @@ dest: /etc/hosts state: present 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 when: (basics__hosts_localhost_manage and ansible_lo.ipv4.address is defined) @@ -20,7 +20,7 @@ dest: /etc/hosts state: present 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 when: (basics__hosts_ipv4_manage and ansible_default_ipv4.address is defined)