Skip to content

Commit

Permalink
Fix Ethereum passphrase
Browse files Browse the repository at this point in the history
  • Loading branch information
issaw committed Dec 3, 2016
1 parent 986d4a7 commit 3cb05a7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion ethereum-consortium-blockchain-network/azuredeploy.json
Expand Up @@ -183,7 +183,7 @@
"maxVMsPerStorageAcct": 20,
"mnStorageAcctCount": "[add(div(variables('numMNNodes'), variables('maxVMsPerStorageAcct')), 1)]",
"mnStorageAcctNames": [
"[concat(uniqueString(resourceGroup().id, variables('namingInfix')), 'mn0')],
"[concat(uniqueString(resourceGroup().id, variables('namingInfix')), 'mn0')]",
"[concat(uniqueString(resourceGroup().id, variables('namingInfix')), 'mn1')]",
"[concat(uniqueString(resourceGroup().id, variables('namingInfix')), 'mn2')]",
"[concat(uniqueString(resourceGroup().id, variables('namingInfix')), 'mn3')]",
Expand Down
Expand Up @@ -26,7 +26,7 @@ sudo -u $AZUREUSER /bin/bash -c "wget -N ${ARTIFACTS_URL_PREFIX}/scripts/configu
# Initiate loop for error checking
##################################
for LOOPCOUNT in `seq 1 5`; do
sudo -u $AZUREUSER /bin/bash /home/$AZUREUSER/configure-geth-azureuser.sh $1 $2 $3 $4 $5 $6 $7 $8 $9 ${10} ${11} ${12} ${13} ${14} >> $CONFIG_LOG_FILE_PATH 2>&1;
sudo -u $AZUREUSER /bin/bash /home/$AZUREUSER/configure-geth-azureuser.sh "$1" "$2" "$3" "$4" "$5" "$6" "$7" "$8" "$9" "${10}" "${11}" "${12}" "${13}" "${14}" >> $CONFIG_LOG_FILE_PATH 2>&1;
if [ $? -ne 0 ]; then
echo "Command failed on try $LOOPCOUNT, retrying..." >> $CONFIG_LOG_FILE_PATH;
sleep 5;
Expand Down

0 comments on commit 3cb05a7

Please sign in to comment.