mirror of
https://github.com/bigchaindb/bigchaindb.git
synced 2024-10-13 13:34:05 +00:00

- Change consists of two deployment models: - Using Vagrant(single node, with/without docker) - Using Ansible(single node, with/without docker) - Updated quickstart documentation. - Some WIP comments, which will be addressed later. Depending on the requirements.
12 lines
293 B
YAML
12 lines
293 B
YAML
---
|
|
|
|
- include: debian.yml
|
|
when: distribution_name == "debian" or distribution_name == "ubuntu"
|
|
|
|
- include: centos.yml
|
|
when: distribution_name == "centos" or distribution_name == "red hat enterprise linux"
|
|
|
|
- include: fedora.yml
|
|
when: distribution_name == "fedora"
|
|
|
|
- include: common.yml |