chore 📦: Update setupacdc.yml to use pip and apk for package installation

Updated the setupacdc.yml file to utilize pip and apk for installing dependencies, ensuring consistency in package management across different environments.
This commit is contained in:
2025-11-07 05:45:04 +01:00
parent ced7303db5
commit f6b28b5d0c

View File

@@ -1,14 +1,19 @@
--- ---
- name: Install pexpect on Ansible controller # - name: Install pexpect on Ansible controller
hosts: localhost # hosts: localhost
gather_facts: false # gather_facts: false
tasks: # tasks:
- name: Install py3-pexpect # - name: Install pexpect via pip
ansible.builtin.apk: # ansible.builtin.pip:
name: py3-pexpect # name: pexpect
state: present # executable: pip3
# - name: Install py3-pexpect
# ansible.builtin.apk:
# name: py3-pexpect
# state: present
# - name: Ensure pexpect is installed via apk # - name: Ensure pexpect is installed via apk
# ansible.builtin.apk: # ansible.builtin.apk: