initial project commit

This commit is contained in:
Chris Hammer 2023-11-30 13:20:39 -05:00
commit ab20dbcb61
4 changed files with 24 additions and 0 deletions

1
.gitignore vendored Normal file
View File

@ -0,0 +1 @@
collections/ansible_collections

4
ansible.cfg Normal file
View File

@ -0,0 +1,4 @@
[defaults]
collections_path = collections
callbacks_enabled = rhc.callback_demo.job_status

15
callback_demo.yml Normal file
View File

@ -0,0 +1,15 @@
- name: Callback plugin from collection demo
hosts: localhost
connection: local
become: false
gather_facts: false
tasks:
- name: Simply say hello
ansible.builtin.debug:
msg: Hello.
- name: Hello again.
ansible.builtin.debug:
msg: Hello. Again.

View File

@ -0,0 +1,4 @@
collections:
- name: https://gitea.thezengarden.net/ansible_collections/callback_demo.git
type: git
version: main