initial project commit

This commit is contained in:
2023-12-08 23:36:00 -05:00
commit babacc793c
2 changed files with 52 additions and 0 deletions

10
hello.yml Normal file
View File

@ -0,0 +1,10 @@
- name: Hello world
hosts: all
become: false
gather_facts: false
tasks:
- name: Say Hello world
ansible.builtin.debug:
msg: Hello world!