mirror of
https://github.com/spantaleev/matrix-docker-ansible-deploy.git
synced 2024-11-06 02:37:31 +01:00
Move python{,3}-docker installation to another task
This also adds support for installing python3-docker (not python-docker) in systems that run Python 3.
This commit is contained in:
parent
349fbb6434
commit
8748f3d443
@ -28,7 +28,6 @@
|
|||||||
- name: Ensure APT packages are installed
|
- name: Ensure APT packages are installed
|
||||||
apt:
|
apt:
|
||||||
name:
|
name:
|
||||||
- python-docker
|
|
||||||
- "{{ matrix_ntpd_package }}"
|
- "{{ matrix_ntpd_package }}"
|
||||||
- fuse
|
- fuse
|
||||||
state: latest
|
state: latest
|
||||||
@ -38,5 +37,6 @@
|
|||||||
apt:
|
apt:
|
||||||
name:
|
name:
|
||||||
- "{{ matrix_docker_package_name }}"
|
- "{{ matrix_docker_package_name }}"
|
||||||
|
- "python{{'3' if ansible_python.version.major == 3 else ''}}-docker"
|
||||||
state: latest
|
state: latest
|
||||||
when: matrix_docker_installation_enabled|bool
|
when: matrix_docker_installation_enabled|bool
|
||||||
|
Loading…
Reference in New Issue
Block a user