mirror of
https://github.com/kubernetes-sigs/kubespray.git
synced 2026-05-08 18:07:39 -02:30
Fix Flatcar bug #11268 missing default value for ansible_interpreter_python_fallback variable (#11270)
This commit is contained in:
@@ -23,7 +23,7 @@
|
|||||||
|
|
||||||
- name: Make interpreter discovery works on Flatcar
|
- name: Make interpreter discovery works on Flatcar
|
||||||
set_fact:
|
set_fact:
|
||||||
ansible_interpreter_python_fallback: "{{ ansible_interpreter_python_fallback + [ '/opt/bin/python' ] }}"
|
ansible_interpreter_python_fallback: "{{ (ansible_interpreter_python_fallback | default([])) + [ '/opt/bin/python' ] }}"
|
||||||
|
|
||||||
- name: Disable auto-upgrade
|
- name: Disable auto-upgrade
|
||||||
systemd_service:
|
systemd_service:
|
||||||
|
|||||||
Reference in New Issue
Block a user