1234567891011121314151617181920212223242526 |
- ---
- - name: Install dnf
- yum:
- name: dnf
- state: installed
- register: result
- until: result is succeeded
- - name: Update repo cache
- command: dnf update -y
- retries: 5
- delay: 10
- environment:
- https_proxy: "{{ https_proxy }}"
- http_proxy: "{{ http_proxy }}"
- no_proxy: "{{ no_proxy }}"
- - name: Install libselinux-python
- command: dnf install {{ item }} -y
- with_items:
- - python-dnf
- - libselinux-python
- environment:
- https_proxy: "{{ https_proxy }}"
- http_proxy: "{{ http_proxy }}"
- no_proxy: "{{ no_proxy }}"
|