From b6469d162fbffc232d0ea46caf5841e9fc3450a7 Mon Sep 17 00:00:00 2001 From: Jose Date: Thu, 6 Nov 2025 21:22:13 +0100 Subject: [PATCH] =?UTF-8?q?chore=20=F0=9F=93=A6:=20Update=20setupacdc.yml?= =?UTF-8?q?=20to=20install=20pexpect=20via=20pip=20instead=20of=20apk?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Switched from using apk to pip for installing pexpect, simplifying the dependency management process. --- tasks/setupacdc.yml | 13 +++++++++---- 1 file changed, 9 insertions(+), 4 deletions(-) diff --git a/tasks/setupacdc.yml b/tasks/setupacdc.yml index 723f08d..d9f0875 100644 --- a/tasks/setupacdc.yml +++ b/tasks/setupacdc.yml @@ -5,10 +5,15 @@ tasks: - - name: Ensure pexpect is installed via apk - ansible.builtin.apk: - name: py3-pexpect - state: present + - name: Install pexpect via pip + ansible.builtin.pip: + name: pexpect + executable: pip3 + + # - 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