From f6bc698a3800079cbe9728ba4efc9de696eeb76d Mon Sep 17 00:00:00 2001 From: Will Szumski Date: Tue, 23 Oct 2018 10:57:44 +0100 Subject: [PATCH] Fix lint warning concerning task names ``` [502] All tasks should be named /home/will/code/tenks/ansible/physical_network.yml:23 Task/Handler: set_fact source_type=direct __line__=24 __file__=/home/will/code/tenks/ansible/physical_network.yml ``` TrivialFix Change-Id: I5d80f7a4aa8d050d88234aa1e8c20e5118cc8d33 --- ansible/physical_network.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/ansible/physical_network.yml b/ansible/physical_network.yml index 2052cf4..4b51038 100644 --- a/ansible/physical_network.yml +++ b/ansible/physical_network.yml @@ -20,7 +20,8 @@ ### Firstly, some fact gathering. # Start off by assuming the source interface is direct, unless proven # otherwise. -- set_fact: +- name: Set initial value for source_type + set_fact: source_type: direct - name: Get source interface details