From 81eb09153373bcd8200ffd914be198fe201fe6af Mon Sep 17 00:00:00 2001 From: fmount Date: Wed, 4 Sep 2019 09:56:10 +0200 Subject: [PATCH] Fix discovered_interpreter_python variable This change fixes the discovered_interpreter_python variable name that was "discovered_python_interpreter" and caused a failure in OSP deployments. Signed-off-by: fmount --- roles/ceph-facts/tasks/facts.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/roles/ceph-facts/tasks/facts.yml b/roles/ceph-facts/tasks/facts.yml index 86f9a21ef..2e9b0021f 100644 --- a/roles/ceph-facts/tasks/facts.yml +++ b/roles/ceph-facts/tasks/facts.yml @@ -22,11 +22,11 @@ container_binary: "{{ 'podman' if (podman_binary.stat.exists and ansible_distribution == 'Fedora') or (ansible_os_family == 'RedHat' and ansible_distribution_major_version == '8') else 'docker' }}" # In case ansible_python_interpreter is set by the user, -# ansible will not discover python and discovered_python_interpreter +# ansible will not discover python and discovered_interpreter_python # will not be set -- name: set_fact discovered_python_interpreter +- name: set_fact discovered_interpreter_python set_fact: - discovered_python_interpreter: ansible_python_interpreter + discovered_interpreter_python: "{{ ansible_python_interpreter }}" when: ansible_python_interpreter is defined # Set ceph_release to ceph_stable by default