initial project commit

This commit is contained in:
Chris Hammer 2023-11-09 10:33:54 -05:00
commit f23987925f
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
host_key_checking = False
display_skipped_hosts = False

4
requirements.yml Normal file
View File

@ -0,0 +1,4 @@
collections:
- name: community.general
- name: rhc.known_good
- name: rhc.known_bad

15
test.yml Normal file
View File

@ -0,0 +1,15 @@
---
- name: Test PAH
hosts: all
become: false
gather_facts: false
tasks:
- name: Include rhc.known_good.good
include_role:
name: rhc.known_good.good
- name: Include rhc.known_bad.bad
include_role:
name: rhc.known_bad.bad