From ced7303db5e5c828fb218ec37b381f5b28eeaf5e Mon Sep 17 00:00:00 2001 From: Jose Date: Thu, 6 Nov 2025 21:24:57 +0100 Subject: [PATCH] =?UTF-8?q?chore=20=F0=9F=93=A6:=20Update=20setupacdc.yml?= =?UTF-8?q?=20to=20use=20apk=20for=20py3-pexpect=20installation?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Switched from pip to apk for installing py3-pexpect, as apk is the recommended package manager on the target system. --- tasks/setupacdc.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/tasks/setupacdc.yml b/tasks/setupacdc.yml index d9f0875..0a03fe9 100644 --- a/tasks/setupacdc.yml +++ b/tasks/setupacdc.yml @@ -5,11 +5,11 @@ tasks: - - name: Install pexpect via pip - ansible.builtin.pip: - name: pexpect - executable: pip3 - + - name: Install py3-pexpect + ansible.builtin.apk: + name: py3-pexpect + state: present + # - name: Ensure pexpect is installed via apk # ansible.builtin.apk: # name: py3-pexpect