Skip to content

Commit

Permalink
Fix Flatcar bug #11268 missing default value for ansible_interpreter_…
Browse files Browse the repository at this point in the history
…python_fallback variable (#11270)
  • Loading branch information
oboudry-mvp authored Oct 3, 2024
1 parent dc498d9 commit 749fa74
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion roles/bootstrap-os/tasks/flatcar.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down

0 comments on commit 749fa74

Please sign in to comment.