Muawia Khan 10e55aa4e7
Problem: No automated way to set up a dev/test network (#2300)
* Problem: No automated way to set up a dev/test network

* Problem: docs not updated for stack, ansible and docker based dev environments

* Problem: Using apt triggers java runtime installation on MacOS

- Update pre_tasks in ansible
- Update bigchaindb-stop playbook to handle pre_tasks

* Update Tendermint version to 0.19.3 from 0.19.2

* Update tendermint version to 0.19.3 everywhere else

* Problem: Sphinx warns about duplicate section labels

Solution: Don't use sphinx.ext.autosectionlabel

* Problem: Sphinx complains that run-node-with-docker not in any TOC

Solution: Add run-node-with-docker to a TOC (i.e. to an index.rst file)

* Tendermint has not tagged `0.19.3` container

* Problem: Internal hyperlinks to new pages not working

Solution: Add .html to the ends of the filename strings

* Problem: Invalid script imports

* Problem: Invalid comparison for supported OS version

* Addressing comments I

* Problem: No way to configure dev/forked repo for developers

* Problem: Docs not updated with STACK_REPO parameter

* Addressing comments II
2018-05-31 16:56:45 +02:00

25 lines
783 B
YAML

---
- name: Check if python3 already installed
shell: which python3
register: chk_py36
ignore_errors: yes
tags: [py36]
- name: Check version of python3
shell: "python3 -c 'import platform; print(platform.python_version())' | cut -d. -f-2"
when: chk_py36.rc == 0
register: py36_ver
tags: [py36]
- name: Creating files for python 3.6 installation
template: src=install_py36.j2 dest=/home/vagrant/install_py36.bash
mode: 0755
when: chk_py36.rc == 0 and (py36_ver.stdout | float < 3.6)
tags: [py36]
- name: Install py36
shell: "bash /home/vagrant/install_py36.bash > install_py36.txt"
register: install_py36
failed_when: "'FAILED' in install_py36.stderr or install_py36.rc != 0"
when: chk_py36.rc == 0 and (py36_ver.stdout | float < 3.6)
tags: [py36]