From e18c7f85a2151b7b2f958c6072f020b770ad064e Mon Sep 17 00:00:00 2001 From: Chris Hammer Date: Tue, 14 Mar 2023 17:00:23 -0400 Subject: [PATCH] add collection requirements --- .gitignore | 2 +- collections/requirements.yml | 9 +++++++++ 2 files changed, 10 insertions(+), 1 deletion(-) create mode 100644 collections/requirements.yml diff --git a/.gitignore b/.gitignore index 8aeb155..d6c0788 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,3 @@ -collections +collections/ansible_collections facts.d inventory_cache diff --git a/collections/requirements.yml b/collections/requirements.yml new file mode 100644 index 0000000..6c4c45b --- /dev/null +++ b/collections/requirements.yml @@ -0,0 +1,9 @@ +--- +collections: + # Official/Community collections + - name: ansible.posix + - name: community.general + - name: community.crypto + + +...