Fix Flatcar bug #11268 missing default value for ansible_interpreter_python_fallback variable (#11270)
parent
b0563c20b0
commit
583583942c
|
@ -23,7 +23,7 @@
|
|||
|
||||
- name: Make interpreter discovery works on Flatcar
|
||||
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
|
||||
systemd_service:
|
||||
|
|
Loading…
Reference in New Issue