drone-test-1/hello.yml
Chris Hammer e2e8648977
All checks were successful
continuous-integration/drone/push Build is passing
add 'git' installation
2023-11-18 02:00:37 -05:00

17 lines
263 B
YAML

- name: Hello world
hosts: all
become: false
gather_facts: false
tasks:
- name: Say Hello world
ansible.builtin.debug:
msg: Hello world!
- name: Install Git
ansible.builtin.package:
name: git
state: present