2020-03-28 10:39:15 +00:00
|
|
|
---
|
|
|
|
|
|
|
|
- name: Install host dependencies
|
2022-10-28 11:20:17 +00:00
|
|
|
community.general.pacman:
|
2020-03-28 10:39:15 +00:00
|
|
|
name:
|
|
|
|
- python-docker
|
|
|
|
- python-dnspython
|
2022-07-18 11:08:35 +00:00
|
|
|
state: present
|
2022-02-05 20:32:54 +00:00
|
|
|
update_cache: true
|
2020-03-28 10:39:15 +00:00
|
|
|
|
|
|
|
- name: Ensure Docker is installed
|
2022-10-28 11:20:17 +00:00
|
|
|
community.general.pacman:
|
2020-03-28 10:39:15 +00:00
|
|
|
name:
|
|
|
|
- docker
|
2022-07-18 11:08:35 +00:00
|
|
|
state: present
|
2022-07-18 08:22:05 +00:00
|
|
|
when: matrix_docker_installation_enabled | bool
|