Skip to content

Commit

Permalink
Fix default assignment for node count
Browse files Browse the repository at this point in the history
  • Loading branch information
neelimamukiri committed Jun 21, 2017
1 parent d78c2fb commit a04e506
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions scripts/vagrantup.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@

set -euo pipefail

num_nodes=${CONTIV_NODES-2}
num_masters=${CONTIV_MASTERS-1}
num_nodes=${CONTIV_NODES:-2}
num_masters=${CONTIV_MASTERS:-1}
((num_workers = $num_nodes - $num_masters))

orc=$1
Expand Down

0 comments on commit a04e506

Please # to comment.