Skip to content
Snippets Groups Projects
Unverified Commit 58358394 authored by Olivier Boudry's avatar Olivier Boudry Committed by GitHub
Browse files

Fix Flatcar bug #11268 missing default value for...

Fix Flatcar bug #11268 missing default value for ansible_interpreter_python_fallback variable (#11270)
parent b0563c20
No related branches found
No related tags found
No related merge requests found
...@@ -23,7 +23,7 @@ ...@@ -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:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment