mirror of
https://github.com/bigchaindb/bigchaindb.git
synced 2024-10-13 13:34:05 +00:00
Merge pull request #1142 from bigchaindb/minor-fixes-to-aws-deploy-scripts
Minor fixes to the AWS deployment scripts
This commit is contained in:
commit
2ccc7d2798
3
.gitattributes
vendored
3
.gitattributes
vendored
@ -1,6 +1,7 @@
|
|||||||
benchmarking-tests export-ignore
|
benchmarking-tests export-ignore
|
||||||
deploy-cluster-aws export-ignore
|
deploy-cluster-aws export-ignore
|
||||||
docs export-ignore export-ignore
|
docs export-ignore
|
||||||
|
ntools export-ignore
|
||||||
speed-tests export-ignore
|
speed-tests export-ignore
|
||||||
tests export-ignore
|
tests export-ignore
|
||||||
.gitattributes export-ignore
|
.gitattributes export-ignore
|
||||||
|
2
deploy-cluster-aws/fabfile.py
vendored
2
deploy-cluster-aws/fabfile.py
vendored
@ -221,7 +221,7 @@ def install_bigchaindb_from_git_archive():
|
|||||||
@task
|
@task
|
||||||
@parallel
|
@parallel
|
||||||
def configure_bigchaindb():
|
def configure_bigchaindb():
|
||||||
run('bigchaindb -y configure', pty=False)
|
run('bigchaindb -y configure rethinkdb', pty=False)
|
||||||
|
|
||||||
|
|
||||||
# Send the specified configuration file to
|
# Send the specified configuration file to
|
||||||
|
@ -1,8 +1,6 @@
|
|||||||
#! /bin/bash
|
#! /bin/bash
|
||||||
|
|
||||||
# The set -e option instructs bash to immediately exit
|
set -euo pipefail
|
||||||
# if any command has a non-zero exit status
|
|
||||||
set -e
|
|
||||||
|
|
||||||
function printErr()
|
function printErr()
|
||||||
{
|
{
|
||||||
@ -36,5 +34,5 @@ mkdir $CONFDIR
|
|||||||
for (( i=0; i<$NUMFILES; i++ )); do
|
for (( i=0; i<$NUMFILES; i++ )); do
|
||||||
CONPATH=$CONFDIR"/bcdb_conf"$i
|
CONPATH=$CONFDIR"/bcdb_conf"$i
|
||||||
echo "Writing "$CONPATH
|
echo "Writing "$CONPATH
|
||||||
bigchaindb -y -c $CONPATH configure
|
bigchaindb -y -c $CONPATH configure rethinkdb
|
||||||
done
|
done
|
||||||
|
Loading…
x
Reference in New Issue
Block a user