From 89dabc0a70662e73ca20a9fa5859b6329264711e Mon Sep 17 00:00:00 2001 From: Jose Date: Tue, 16 Dec 2025 18:18:33 +0100 Subject: [PATCH] =?UTF-8?q?chore=20=F0=9F=93=A6:=20Add=20pre-installation?= =?UTF-8?q?=20check=20for=20git?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 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. --- tasks/proxmox.yml | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/tasks/proxmox.yml b/tasks/proxmox.yml index 7dfe5f6..2402b97 100644 --- a/tasks/proxmox.yml +++ b/tasks/proxmox.yml @@ -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