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,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