drone-test-2/hello.yml
Chris Hammer af04159d2c
All checks were successful
continuous-integration/drone/push Build is passing
bleh
2023-12-09 00:14:11 -05:00

15 lines
253 B
YAML

- name: Hello world
hosts: all
become: false
gather_facts: false
tasks:
- name: Say hello world
ansible.builtin.debug:
msg: Hello world!
- name: Say goodbye world
ansible.builtin.debug:
msg: Goodbye world!