Merge "[TRAIN-Only] Update ansible python fact" into stable/train

This commit is contained in:
Zuul 2021-03-24 18:19:21 +00:00 committed by Gerrit Code Review
commit 5035f261de
2 changed files with 4 additions and 4 deletions

View File

@ -1,13 +1,13 @@
- name: Gather facts needed by role if necessary
setup:
gather_subset: "!min,python"
when: ansible_python is not defined
when: ansible_facts['python'] is not defined
tags:
- container_config_tasks
- name: set python_cmd if necessary
set_fact:
python_cmd: "python{{ ansible_python.version.major }}"
python_cmd: "python{{ ansible_facts.python.version.major }}"
cacheable: true
when: python_cmd is not defined
tags:

View File

@ -12,13 +12,13 @@
- name: Gather ansible facts if necessary
setup:
gather_subset: "!min,python"
when: ansible_python is not defined
when: ansible_facts['python'] is not defined
tags:
- container_config_tasks
- name: Set python_cmd if necessary
set_fact:
python_cmd: "python{{ ansible_python.version.major }}"
python_cmd: "python{{ ansible_facts.python.version.major }}"
cacheable: true
when: python_cmd is not defined
tags: