fedora-install.yml 506 B

123456789101112131415161718192021222324
  1. ---
  2. - name: Install dnf
  3. yum:
  4. name: dnf
  5. state: installed
  6. - name: Update repo cache
  7. command: dnf update -y
  8. retries: 5
  9. delay: 10
  10. environment:
  11. https_proxy: "{{ https_proxy }}"
  12. http_proxy: "{{ http_proxy }}"
  13. no_proxy: "{{ no_proxy }}"
  14. - name: Install libselinux-python
  15. command: dnf install {{ item }} -y
  16. with_items:
  17. - python-dnf
  18. - libselinux-python
  19. environment:
  20. https_proxy: "{{ https_proxy }}"
  21. http_proxy: "{{ http_proxy }}"
  22. no_proxy: "{{ no_proxy }}"