feat: install six on host machine
Some checks failed
Provision & Configure / Terraform Apply (push) Failing after 1m2s

This commit is contained in:
Ditmar Visser
2025-06-11 15:03:37 +00:00
parent 60bc09d4ec
commit 9e76a3716a
2 changed files with 15 additions and 1 deletions

View File

@ -3,8 +3,21 @@
become: true
roles:
- docker
- geerlingguy.pip
vars:
pip_install_packages:
- name: docker
- name: requests
tasks:
- name: Ensure Python 3 and pip are installed
ansible.builtin.raw: |
sudo apt update && sudo apt install -y python3 python3-pip
changed_when: false
# - name: Install 'six' module
# ansible.builtin.pip:
# name: six
- name: Delete existing hello world container
community.docker.docker_container:
name: "les-06"

1
ansible/requirements.yml Normal file
View File

@ -0,0 +1 @@
- src: geerlingguy.pip