1
0
mirror of https://github.com/bigchaindb/bigchaindb.git synced 2024-06-16 09:33:21 +02:00
bigchaindb/pkg/ansible/roles/bigchaindb/tasks/debian.yml
muawiakh f2e1b4ac80 Automation for single node deployment for quickstart
- 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.
2017-09-14 14:00:13 +02:00

8 lines
163 B
YAML

---
- name: Install dependencies
apt:
name: "{{ item }}"
state: present
update_cache: yes
with_items: "{{ dependencies_deb }}"
tags: [bigchaindb]