fix: install six using apt

This commit is contained in:
Ditmar Visser
2025-06-11 17:12:44 +00:00
parent 914293b23e
commit 3f28da065b

View File

@ -16,11 +16,11 @@
sudo apt update && sudo apt install -y python3 python3-pip
changed_when: false
- name: Install 'six' module
ansible.builtin.raw: pip3 install six
changed_when: false
- name: Install 'six' module using apt
ansible.builtin.apt:
name: python3-six
state: present
update_cache: true
tasks:
- name: Manually gather facts after 'six' is installed