c12s-kubespray/roles/bootstrap-os/tasks/bootstrap-fedora.yml

48 lines
1.3 KiB
YAML
Raw Normal View History

2018-09-19 17:57:20 +00:00
---
# Some Fedora based distros ship without Python installed
- name: Check if bootstrap is needed
raw: which python
2018-09-19 17:57:20 +00:00
register: need_bootstrap
failed_when: false
changed_when: false
environment: {}
tags:
- facts
2018-09-19 17:57:20 +00:00
- name: Check if a proxy is set in /etc/dnf/dnf.conf
raw: grep -qs 'proxy=' /etc/dnf/dnf.conf
register: need_http_proxy
failed_when: false
changed_when: false
# This command should always run, even in check mode
check_mode: false
environment: {}
when:
- http_proxy is defined
- name: Add http_proxy to /etc/dnf/dnf.conf if http_proxy is defined
raw: echo 'proxy={{ http_proxy }}' >> /etc/dnf/dnf.conf
become: true
environment: {}
when:
- http_proxy is defined
- need_http_proxy.rc != 0
# Fedora's policy as of Fedora 30 is to still install python2 as /usr/bin/python
# See https://fedoraproject.org/wiki/FinalizingFedoraSwitchtoPython3 for the current status
2018-09-19 17:57:20 +00:00
- name: Install python on fedora
raw: "dnf install --assumeyes --quiet python2"
become: true
environment: {}
when:
- need_bootstrap.rc != 0
2018-09-19 17:57:20 +00:00
# libselinux-python is required on SELinux enabled hosts
# See https://docs.ansible.com/ansible/latest/installation_guide/intro_installation.html#managed-node-requirements
- name: Install libselinux-python
package:
2018-09-19 17:57:20 +00:00
name: libselinux-python
state: present
become: true