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 - name: Hello world
hosts: localhost hosts: localhost
connection: local connection: local
become: no become: false
gather_facts: no gather_facts: false
tasks: tasks:
- name: Say Hello world - name: Say Hello world
ansible.builtin.debug: ansible.builtin.debug:
msg: Hello world! msg: Hello world!
...