From f6b28b5d0ccd8eebb22aafce92c84cf9a9163398 Mon Sep 17 00:00:00 2001 From: Jose Date: Fri, 7 Nov 2025 05:45:04 +0100 Subject: [PATCH] =?UTF-8?q?chore=20=F0=9F=93=A6:=20Update=20setupacdc.yml?= =?UTF-8?q?=20to=20use=20pip=20and=20apk=20for=20package=20installation?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Updated the setupacdc.yml file to utilize pip and apk for installing dependencies, ensuring consistency in package management across different environments. --- tasks/setupacdc.yml | 23 ++++++++++++++--------- 1 file changed, 14 insertions(+), 9 deletions(-) diff --git a/tasks/setupacdc.yml b/tasks/setupacdc.yml index 0a03fe9..81a74fb 100644 --- a/tasks/setupacdc.yml +++ b/tasks/setupacdc.yml @@ -1,15 +1,20 @@ --- -- name: Install pexpect on Ansible controller - hosts: localhost - gather_facts: false +# - name: Install pexpect on Ansible controller +# hosts: localhost +# gather_facts: false - tasks: +# 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: Install py3-pexpect - ansible.builtin.apk: - name: py3-pexpect - state: present - # - name: Ensure pexpect is installed via apk # ansible.builtin.apk: # name: py3-pexpect