ansible-role-refstack-client/tasks/install-packages.yaml
Roman Popelka 75d45e9789 Add fips job for refstack-client
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
2023-07-14 21:53:33 +02:00

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