fix centos 8 testing
continuous-integration/drone/push Build is passing Details

This commit is contained in:
Robert Kaussow 2020-01-26 16:02:30 +01:00
parent 1ebbbc9136
commit 029ef60a59
2 changed files with 2 additions and 1 deletions

View File

@ -2,6 +2,7 @@
- name: Converge
hosts: all
vars:
ansible_python_interpreter: /usr/libexec/platform-python
lvm_volumes:
- name: lv_test
group: vg_test

View File

@ -4,6 +4,6 @@
gather_facts: false
tasks:
- name: Install python for Ansible
raw: test -e /usr/bin/python || (apt -y update && apt install -y python-minimal)
raw: test -e /usr/bin/python || (dnf -y install python3 && alternatives --set python /usr/bin/python3)
become: true
changed_when: false