update hello.yml for ansible-lint compliance
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
Chris Hammer 2023-11-16 23:08:49 -05:00
parent 5a74a3a4e5
commit a7fed9eb04

View File

@ -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!
...