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

23 lines
496 B
YAML
Raw Normal View History

2018-09-19 17:57:20 +00:00
---
- name: Check if bootstrap is needed
2018-09-19 17:57:20 +00:00
raw: which "{{ item }}"
register: need_bootstrap
failed_when: false
changed_when: false
with_items:
- python
environment: {}
2018-09-19 17:57:20 +00:00
tags: facts
- name: Install python on fedora
2018-09-20 13:45:15 +00:00
raw: "dnf install --assumeyes --quiet python"
become: true
environment: {}
when: need_bootstrap.results | map(attribute='rc') | sort | last | bool
2018-09-19 17:57:20 +00:00
- name: Install required python packages
dnf:
name: libselinux-python
state: present
become: true