
Usage of this role is still sketchy however at least all the required playbooks are in place Main issue at the moment is the interfacing with these playbooks
10 lines
173 B
YAML
10 lines
173 B
YAML
# This playbook is setup to install docker on debian based systems
|
|
---
|
|
- hosts: main
|
|
tasks:
|
|
- include_tasks: 'debian.yml'
|
|
when:
|
|
ansible_distribution: Debian
|
|
|
|
|