c80b593fb6
The old role will be kept and include ensure-docker for backwards compatability. Change-Id: Icb76a954b04631c405b09eb54343fd852a511b83
15 lines
302 B
YAML
15 lines
302 B
YAML
---
|
|
|
|
- name: Distro block
|
|
become: true
|
|
block:
|
|
- name: Install docker
|
|
package:
|
|
name: "{{ docker_distro_packages }}"
|
|
state: present
|
|
when:
|
|
- not (use_upstream_docker | bool)
|
|
notify: Assure docker service is running
|
|
|
|
- include_tasks: docker-setup.yaml
|