debian: Fix test failed after bullseye release (#7888)

(cherry picked from commit 79166496f3)
This commit is contained in:
rtsp 2021-08-20 05:37:24 +07:00 committed by Kubernetes Prow Robot
parent a583a2d9aa
commit c91a05f330
1 changed files with 15 additions and 0 deletions

View File

@ -51,6 +51,21 @@
when:
- need_bootstrap.rc != 0
- name: Update Apt cache
raw: apt-get update --allow-releaseinfo-change
become: true
when:
- '''ID=debian'' in os_release.stdout_lines'
- (
'''VERSION="10'' in os_release.stdout_lines' or
'''VERSION="11'' in os_release.stdout_lines'
)
register: bootstrap_update_apt_result
changed_when:
- '"changed its" in bootstrap_update_apt_result.stdout'
- '"value from" in bootstrap_update_apt_result.stdout'
ignore_errors: true
- name: Set the ansible_python_interpreter fact
set_fact:
ansible_python_interpreter: "/usr/bin/python3"