75d45e9789
The patch also removes tasks responsible for installing python3-virtualenv package - virtualenv module is part of python3, therefore there is no need to install it. Change-Id: If0fcf61e2dbab88601fd68efb1d10eed6888f8d8
12 lines
234 B
YAML
12 lines
234 B
YAML
---
|
|
- name: Is python3 available
|
|
ansible.builtin.command: "python3 --version"
|
|
ignore_errors: true
|
|
register: python3_is_available
|
|
changed_when: false
|
|
|
|
- name: Install git
|
|
become: true
|
|
ansible.builtin.package:
|
|
name: git
|