chore 📦: Add pre-installation check for git

This commit adds a step to verify that git is installed on the system before proceeding with the installation of proxmoxer. This ensures compatibility and prevents potential errors during the setup process.
This commit is contained in:
2025-12-16 18:18:33 +01:00
parent af0298410c
commit 89dabc0a70

View File

@@ -4,6 +4,13 @@
tasks:
- name: Ensure git is installed
ansible.builtin.apt:
name: git
state: present
update_cache: yes
- name: Install proxmoxer from APT
ansible.builtin.apt:
name: python3-proxmoxer