infra-swarm/ansible/roles/swarm/tasks/main.yml

17 lines
361 B
YAML
Raw Normal View History

2018-08-01 19:58:01 +00:00
---
- name: Create directories for geth
file:
path: '{{ item }}'
state: directory
with_items:
- '{{ geth_vol }}/data'
- '{{ geth_vol }}/keys'
- '{{ cont_vol }}/data'
- '{{ cont_vol }}/store'
- include_tasks: account.yml
2018-08-29 19:00:31 +00:00
- include_tasks: bootnodes.yml
2018-08-30 12:30:48 +00:00
- include_tasks: geth.yml
2018-08-01 19:58:01 +00:00
- include_tasks: swarm.yml
- include_tasks: consul.yml