diff --git a/ansible/playbooks/init-rocky-ansible-host.yml b/ansible/playbooks/init-rocky-ansible-host.yml index ebc5b58..ec1f162 100644 --- a/ansible/playbooks/init-rocky-ansible-host.yml +++ b/ansible/playbooks/init-rocky-ansible-host.yml @@ -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' diff --git a/ansible/roles/requirements.yml b/ansible/roles/requirements.yml index 6447734..2100967 100644 --- a/ansible/roles/requirements.yml +++ b/ansible/roles/requirements.yml @@ -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 ...