mirror of
https://github.com/freeipa/ansible-freeipa.git
synced 2026-05-02 11:23:12 +00:00
19 lines
466 B
YAML
19 lines
466 B
YAML
---
|
|
- block:
|
|
- name: Verify Python3 import
|
|
script: py3test.py
|
|
register: result_py3test
|
|
failed_when: False
|
|
changed_when: False
|
|
check_mode: no
|
|
|
|
- name: Set python interpreter to 3
|
|
set_fact:
|
|
ansible_python_interpreter: "/usr/bin/python3"
|
|
when: result_py3test.rc == 0
|
|
|
|
- name: Set python interpreter to 2
|
|
set_fact:
|
|
ansible_python_interpreter: "/usr/bin/python2"
|
|
when: result_py3test.failed or result_py3test.rc != 0
|