Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 0c9f260

Browse files
committedJan 31, 2025··
Ansible Galaxy should install all depencency roles
If you define this role as dependency in your project requirements.yml file, all dependencies of this role should also be installed without defining them separately.
1 parent 8efd24a commit 0c9f260

File tree

4 files changed

+7
-10
lines changed

4 files changed

+7
-10
lines changed
 

‎.github/workflows/molecule.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
run: pip install -r .dev_requirements.txt
1717

1818
- name: install Ansbile dependencies
19-
run: ansible-galaxy install -r requirements.yml
19+
run: ansible-galaxy install -r meta/requirements.yml
2020

2121
- name: test playbook
2222
run: molecule test

‎meta/requirements.yml

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
---
2+
3+
- name: elan.opencast_repository
4+
version: v0.1.0

‎molecule/default/converge.yml

+2-4
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,5 @@
55
opencast_version_major: 17
66
opencast_repository_enabled_release: true
77
opencast_opensearch_heap_size: 100m
8-
tasks:
9-
- name: Include opensearch role
10-
ansible.builtin.include_role:
11-
name: "opencast_opensearch"
8+
roles:
9+
- elan.opencast_opensearch

‎requirements.yml

-5
This file was deleted.

0 commit comments

Comments
 (0)
Please sign in to comment.