diff --git a/playbooks/deploy_hypervisor.yaml b/playbooks/deploy_hypervisor.yaml
index 0739d35..4d3200f 100644
--- a/playbooks/deploy_hypervisor.yaml
+++ b/playbooks/deploy_hypervisor.yaml
@@ -1,6 +1,13 @@
 - name: Ensure the VM template generation is set up
   hosts: proxmox_vm_template_hosts
   tasks:
+    - name: Ensure dependencies are present
+      ansible.builtin.apt:
+        name:
+          - git
+          - libguestfs-tools
+      become: true
+
     - name: Ensure /usr/local/{lib,sbin} exist
       ansible.builtin.file:
         path: "{{ item }}"