fedora-install.yml 551 B

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