00-general-pre-flight.yml 462 B

12345678910111213141516
  1. ---
  2. - name: Ensure workstation has the collections it needs.
  3. hosts: workstation.lab.example.com
  4. become: no
  5. gather_facts: no
  6. tasks:
  7. - name: Install the required collections.
  8. become: yes
  9. ansible.builtin.yum:
  10. name:
  11. - ansible-collection-ansible-posix
  12. - ansible-collection-community-crypto
  13. - ansible-collection-community-general
  14. - ansible-collection-containers-podman
  15. state: present
  16. ...