initial project commit
This commit is contained in:
commit
ab20dbcb61
1
.gitignore
vendored
Normal file
1
.gitignore
vendored
Normal file
@ -0,0 +1 @@
|
||||
collections/ansible_collections
|
4
ansible.cfg
Normal file
4
ansible.cfg
Normal file
@ -0,0 +1,4 @@
|
||||
[defaults]
|
||||
collections_path = collections
|
||||
callbacks_enabled = rhc.callback_demo.job_status
|
||||
|
15
callback_demo.yml
Normal file
15
callback_demo.yml
Normal 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.
|
||||
|
4
collections/requirements.yml
Normal file
4
collections/requirements.yml
Normal file
@ -0,0 +1,4 @@
|
||||
collections:
|
||||
- name: https://gitea.thezengarden.net/ansible_collections/callback_demo.git
|
||||
type: git
|
||||
version: main
|
Loading…
x
Reference in New Issue
Block a user