From 1159f1d60629724f5e85f58117bf240e31350ce1 Mon Sep 17 00:00:00 2001 From: Jose Date: Sat, 1 Nov 2025 13:33:19 +0100 Subject: [PATCH] =?UTF-8?q?feat=20=E2=9C=A8:=20Add=20setup=20for=20Proxmox?= =?UTF-8?q?=20node=20to=20collect=20and=20print=20facts?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Added a new task to the setup.yml file to collect and print facts from the Proxmox node, allowing for more detailed monitoring and debugging capabilities. --- tasks/setupacdc.yml | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/tasks/setupacdc.yml b/tasks/setupacdc.yml index 89ef473..0570465 100644 --- a/tasks/setupacdc.yml +++ b/tasks/setupacdc.yml @@ -1,3 +1,13 @@ +- hosts: node0 + + tasks: + - name: Collect facts from the Proxmox node + setup: + + - name: Print collected facts + debug: + var: ansible_facts + - hosts: localhost gather_facts: yes