Browse Source
Fix Flatcar bug #11268 missing default value for ansible_interpreter_python_fallback variable (#11270)
pull/11597/head
Olivier Boudry
1 month ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with
1 additions and
1 deletions
-
roles/bootstrap-os/tasks/flatcar.yml
|
|
@ -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: |
|
|
|