From c93f2d8ea0bab22a963d07495100b441350a7942 Mon Sep 17 00:00:00 2001 From: Jose Date: Mon, 1 Dec 2025 19:21:00 +0100 Subject: [PATCH] =?UTF-8?q?feat=20=E2=9C=A8:=20Add=20Proxmox=20VM=20role?= =?UTF-8?q?=20to=20requirements=20and=20create=20Debian=20template=20task?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- roles/requirements.yml | 6 +++++- tasks/proxmox_debian_template.yml | 11 +++++++++++ 2 files changed, 16 insertions(+), 1 deletion(-) create mode 100644 tasks/proxmox_debian_template.yml diff --git a/roles/requirements.yml b/roles/requirements.yml index ebff7d8..a16f818 100644 --- a/roles/requirements.yml +++ b/roles/requirements.yml @@ -5,7 +5,11 @@ - name: ansible_samba_ad_dc src: https://repo.piave7.duckdns.org/Jose/ansible_samba_ad_dc.git scm: git - + +- name: ansible_proxmox_vm + src: https://repo.piave7.duckdns.org/Jose/ansible_proxmox_VM.git + scm: git + # version: master # or a specific tag/branch like 'v1.0.0' # - name: ansible_samba_domain_member diff --git a/tasks/proxmox_debian_template.yml b/tasks/proxmox_debian_template.yml new file mode 100644 index 0000000..28e8244 --- /dev/null +++ b/tasks/proxmox_debian_template.yml @@ -0,0 +1,11 @@ +--- +- name: Build Debian Template + hosts: node0 + become: true + gather_facts: false + + tasks: + + - name: Deploy the debian template + ansible.builtin.include_role: + name: ansible_proxmox_vm