drone-test-2/hello.yml
Chris Hammer e29f324ea2
Some checks failed
continuous-integration/drone/push Build is failing
fix linting error
2023-12-09 00:12:20 -05:00

21 lines
353 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!
- name: Install Htop
ansible.builtin.package:
name: htop
state: present