Disable |solana-install| check for edge/beta testnets (#4564)

The release tarball URL changes for these testnets, which causes the
normal |solana-install| check to fail and the testnet is unnecessarily
rebooted.
This commit is contained in:
Michael Vines
2019-06-05 15:31:29 -07:00
committed by GitHub
parent 8f50c3dd2e
commit aa4a7b0c73
5 changed files with 13 additions and 2 deletions

View File

@ -58,6 +58,7 @@ Operate a configured testnet
-F - Discard validator nodes that didn't bootup successfully
-o noLedgerVerify - Skip ledger verification
-o noValidatorSanity - Skip fullnode sanity
-o noInstallCheck - Skip solana-install sanity
-o rejectExtraNodes - Require the exact number of nodes
stop-specific options:
@ -150,7 +151,7 @@ while getopts "h?T:t:o:f:rD:i:c:Fn:" opt "${shortArgs[@]}"; do
;;
o)
case $OPTARG in
noLedgerVerify|noValidatorSanity|rejectExtraNodes)
noLedgerVerify|noValidatorSanity|rejectExtraNodes|noInstallCheck)
sanityExtraArgs="$sanityExtraArgs -o $OPTARG"
;;
*)