From a7fed9eb04c72b8ed944fd98b2983878511b5b91 Mon Sep 17 00:00:00 2001 From: Chris Hammer Date: Thu, 16 Nov 2023 23:08:49 -0500 Subject: [PATCH] update hello.yml for ansible-lint compliance --- hello.yml | 15 +++++---------- 1 file changed, 5 insertions(+), 10 deletions(-) diff --git a/hello.yml b/hello.yml index 37a99ba..3ee6e41 100644 --- a/hello.yml +++ b/hello.yml @@ -1,15 +1,10 @@ ---- - name: Hello world hosts: localhost connection: local - become: no - gather_facts: no - + become: false + gather_facts: false tasks: - - name: Say Hello world - ansible.builtin.debug: - msg: Hello world! - - -... + - name: Say Hello world + ansible.builtin.debug: + msg: Hello world!