ansible_pull(role): add git as a dependency to ensure is installed
Some checks failed
/ Ansible Lint (push) Failing after 48s

This commit is contained in:
June 2025-10-16 09:40:34 +02:00
commit dce4e7c4d4
Signed by: june
SSH key fingerprint: SHA256:o9EAq4Y9N9K0pBQeBTqhSDrND5E7oB+60ZNx0U1yPe0

View file

@ -2,7 +2,9 @@
block:
- name: ensure apt dependencies are installed
ansible.builtin.apt:
name: virtualenv
name:
- virtualenv
- git
state: present
become: true