Rename install_bigchain to install_bigchaindb

This commit is contained in:
troymc 2016-03-23 18:12:48 +01:00
parent 85580aba07
commit 63a0e1e10b
2 changed files with 7 additions and 6 deletions

View File

@ -95,10 +95,10 @@ def install_rethinkdb():
sudo('/etc/init.d/rethinkdb restart')
# bigchain deployment
# bigchaindb deployment
@task
@parallel
def install_bigchain():
def install_bigchaindb():
sudo('python3 -m pip install bigchaindb')

View File

@ -78,14 +78,15 @@ chmod +x add2known_hosts.sh
cp conf/bigchaindb.conf.template conf/bigchaindb.conf
cat add2dbconf >> conf/bigchaindb.conf
# rollout base packages for installation of storage and bigchain
# rollout base packages (dependencies) needed before
# storage backend (rethinkdb) and bigchaindb can be rolled out
fab install_base_software
# rollout storagebackend (rethinkdb)
# rollout storage backend (rethinkdb)
fab install_rethinkdb
# rollout bigchain-reporitory
fab install_bigchain
# rollout bigchaindb
fab install_bigchaindb
# generate genesisblock
HORST=`tail -1 conf/bigchaindb.conf|cut -d: -f1|cut -d= -f2`