35 lines
808 B
YAML
35 lines
808 B
YAML
---
|
|
|
|
- name: Setup Firewall and system misc
|
|
ansible.builtin.include_tasks:
|
|
file: system.yml
|
|
|
|
- name: Configure Blockstorage
|
|
ansible.builtin.include_tasks:
|
|
file: blockstorage.yml
|
|
when: ipfs_enable_blockstorage
|
|
|
|
- name: Configure kubo
|
|
ansible.builtin.include_tasks:
|
|
file: kubo.yml
|
|
when: ipfs_enable_kubo
|
|
|
|
- name: Configure ipfs-cluster-follow
|
|
ansible.builtin.include_tasks:
|
|
file: ipfs-cluster-follow.yml
|
|
when: ipfs_enable_ipfs_cluster_follow
|
|
|
|
- name: Configure ipfs-cluster-service
|
|
ansible.builtin.include_tasks:
|
|
file: ipfs-cluster-service.yml
|
|
when: ipfs_enable_ipfs_cluster_service
|
|
|
|
- name: Configure helpers
|
|
ansible.builtin.include_tasks:
|
|
file: helpers.yml
|
|
|
|
# This should always be last
|
|
- name: Configure ipfs
|
|
ansible.builtin.include_tasks:
|
|
file: config.yml
|