From 31a1d1ce466fa2a52d5ec5a162e85423a8a57941 Mon Sep 17 00:00:00 2001 From: Jose Date: Thu, 6 Nov 2025 21:19:31 +0100 Subject: [PATCH] =?UTF-8?q?chore=20=F0=9F=93=A6:=20Update=20setupacdc.yml?= =?UTF-8?q?=20to=20include=20pexpect=20installation=20for=20Ansible=20cont?= =?UTF-8?q?roller?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Added a new task to install pexpect on the Ansible controller, ensuring it's installed via apk. This change is part of the setup process and will enable the use of pexpect in future tasks. --- tasks/setupacdc.yml | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/tasks/setupacdc.yml b/tasks/setupacdc.yml index fcde755..723f08d 100644 --- a/tasks/setupacdc.yml +++ b/tasks/setupacdc.yml @@ -1,4 +1,15 @@ --- +- name: Install pexpect on Ansible controller + hosts: localhost + gather_facts: false + + tasks: + + - name: Ensure pexpect is installed via apk + ansible.builtin.apk: + name: py3-pexpect + state: present + - name: Create and provision LXC container on Proxmox hosts: node0 gather_facts: no