test collection and role separation

This commit is contained in:
nazunalika 2022-04-10 11:23:02 -07:00
parent d754e2364a
commit 3afe7d607b
Signed by: label
GPG Key ID: 6735C0E1BD65D048
2 changed files with 1 additions and 22 deletions

View File

@ -38,7 +38,7 @@
command: >
ansible-galaxy collection install
{{ ( force_purge | bool ) | ternary('--force-with-deps','') }}
-r {{ installation_prefix }}roles/requirements.yml
-r {{ installation_prefix }}collections/requirements.yml
-p {{ installation_prefix }}{{ collection_installation_dir }}
register: galaxy_install_collection
changed_when: '"Installing " in galaxy_install_collection.stdout'

View File

@ -43,25 +43,4 @@ roles:
src: https://git.rockylinux.org/infrastructure/public/ansible/ansible-role-wikijs.git
scm: git
version: develop
collections:
# freeipa
- name: freeipa.ansible_freeipa
version: 1.5.3
- name: community.general
- name: community.mysql
- name: community.rabbitmq
- name: ansible.posix
- name: ansible.utils
- name: ktdreyer.koji_ansible
- name: netbox.netbox
- name: community.aws
- name: community.libvirt
- name: containers.podman
- name: nginxinc.nginx_core
version: 0.3.0
# - name: rockylinux.taiga
# source: https://github.com/rocky-linux/taiga-ansible.git
# type: git
# version: master
...