From b03a3d5e479987f10d7ac66248cfb8ec8cc121a4 Mon Sep 17 00:00:00 2001 From: Ditmar Visser Date: Wed, 11 Jun 2025 17:14:09 +0000 Subject: [PATCH] fix: install python with packages --- ansible/main.yml | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/ansible/main.yml b/ansible/main.yml index 776bf47..66657f5 100644 --- a/ansible/main.yml +++ b/ansible/main.yml @@ -13,15 +13,9 @@ pre_tasks: - name: Ensure python3 and pip are available ansible.builtin.raw: | - sudo apt update && sudo apt install -y python3 python3-pip + sudo apt update && sudo apt install -y python3 python3-pip python3-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 ansible.builtin.setup: