From: Kienan Stewart Date: Fri, 2 Jun 2023 13:10:19 +0000 (-0400) Subject: ansible: add role requirements file X-Git-Url: https://git.lttng.org./?a=commitdiff_plain;h=fc7346bb7449a2981a2cde9d489c6f0024982f77;p=lttng-ci.git ansible: add role requirements file Change-Id: I67ac89edab607c971e688dcdd43f342377a9a125 --- diff --git a/automation/ansible/README.md b/automation/ansible/README.md index 9d2ffaa..57a171c 100644 --- a/automation/ansible/README.md +++ b/automation/ansible/README.md @@ -1,7 +1,7 @@ # Required collections ``` -ansible-galaxy collection install community.general +ansible-galaxy install -r roles/requirements.yml ``` # Privileged data diff --git a/automation/ansible/roles/requirements.yml b/automation/ansible/roles/requirements.yml new file mode 100644 index 0000000..649feec --- /dev/null +++ b/automation/ansible/roles/requirements.yml @@ -0,0 +1,5 @@ +--- +collections: + - name: community.general + version: '>=5.4.0' + type: galaxy