Merge pull request #1142 from bigchaindb/minor-fixes-to-aws-deploy-scripts

Minor fixes to the AWS deployment scripts
This commit is contained in:
Troy McConaghy 2017-02-03 11:09:27 +01:00 committed by GitHub
commit 2ccc7d2798
3 changed files with 5 additions and 6 deletions

3
.gitattributes vendored
View File

@ -1,6 +1,7 @@
benchmarking-tests export-ignore
deploy-cluster-aws export-ignore
docs export-ignore export-ignore
docs export-ignore
ntools export-ignore
speed-tests export-ignore
tests export-ignore
.gitattributes export-ignore

View File

@ -221,7 +221,7 @@ def install_bigchaindb_from_git_archive():
@task
@parallel
def configure_bigchaindb():
run('bigchaindb -y configure', pty=False)
run('bigchaindb -y configure rethinkdb', pty=False)
# Send the specified configuration file to

View File

@ -1,8 +1,6 @@
#! /bin/bash
# The set -e option instructs bash to immediately exit
# if any command has a non-zero exit status
set -e
set -euo pipefail
function printErr()
{
@ -36,5 +34,5 @@ mkdir $CONFDIR
for (( i=0; i<$NUMFILES; i++ )); do
CONPATH=$CONFDIR"/bcdb_conf"$i
echo "Writing "$CONPATH
bigchaindb -y -c $CONPATH configure
bigchaindb -y -c $CONPATH configure rethinkdb
done