summaryrefslogtreecommitdiffstats
path: root/roles/contiv_facts/tasks/fedora-install.yml
blob: b8239a636127cf92d4d866d925c56944ea7d1e9c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
---
- 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: "{{ contiv_https_proxy }}"
    http_proxy: "{{ contiv_http_proxy }}"
    no_proxy: "{{ contiv_no_proxy }}"

- name: Install libselinux-python
  command: dnf install {{ item }} -y
  with_items:
    - python-dnf
    - libselinux-python
  environment:
    https_proxy: "{{ contiv_https_proxy }}"
    http_proxy: "{{ contiv_http_proxy }}"
    no_proxy: "{{ contiv_no_proxy }}"