93 lines
		
	
	
		
			2.3 KiB
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			93 lines
		
	
	
		
			2.3 KiB
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
#!/usr/bin/env bash
 | 
						|
#
 | 
						|
# Start the bootstrap leader node
 | 
						|
#
 | 
						|
 | 
						|
here=$(dirname "$0")
 | 
						|
# shellcheck source=multinode-demo/common.sh
 | 
						|
source "$here"/common.sh
 | 
						|
 | 
						|
# shellcheck source=scripts/oom-score-adj.sh
 | 
						|
source "$here"/../scripts/oom-score-adj.sh
 | 
						|
 | 
						|
if [[ $1 = -h ]]; then
 | 
						|
  fullnode_usage "$@"
 | 
						|
fi
 | 
						|
 | 
						|
extra_fullnode_args=()
 | 
						|
setup_stakes=true
 | 
						|
 | 
						|
while [[ ${1:0:1} = - ]]; do
 | 
						|
  if [[ $1 = --blockstream ]]; then
 | 
						|
    extra_fullnode_args+=("$1" "$2")
 | 
						|
    shift 2
 | 
						|
  elif [[ $1 = --enable-rpc-exit ]]; then
 | 
						|
    extra_fullnode_args+=("$1")
 | 
						|
    shift
 | 
						|
  elif [[ $1 = --init-complete-file ]]; then
 | 
						|
    extra_fullnode_args+=("$1" "$2")
 | 
						|
    shift 2
 | 
						|
  elif [[ $1 = --only-bootstrap-stake ]]; then
 | 
						|
    setup_stakes=false
 | 
						|
    shift
 | 
						|
  elif [[ $1 = --public-address ]]; then
 | 
						|
    extra_fullnode_args+=("$1")
 | 
						|
    shift
 | 
						|
  elif [[ $1 = --no-voting ]]; then
 | 
						|
    extra_fullnode_args+=("$1")
 | 
						|
    shift
 | 
						|
  elif [[ $1 = --rpc-port ]]; then
 | 
						|
    extra_fullnode_args+=("$1" "$2")
 | 
						|
    shift 2
 | 
						|
  else
 | 
						|
    echo "Unknown argument: $1"
 | 
						|
    exit 1
 | 
						|
  fi
 | 
						|
done
 | 
						|
 | 
						|
if [[ -n $3 ]]; then
 | 
						|
  fullnode_usage "$@"
 | 
						|
fi
 | 
						|
 | 
						|
 | 
						|
[[ -f "$SOLANA_CONFIG_DIR"/bootstrap-leader-id.json ]] || {
 | 
						|
  echo "$SOLANA_CONFIG_DIR/bootstrap-leader-id.json not found, create it by running:"
 | 
						|
  echo
 | 
						|
  echo "  ${here}/setup.sh"
 | 
						|
  exit 1
 | 
						|
}
 | 
						|
 | 
						|
if [[ -n "$SOLANA_CUDA" ]]; then
 | 
						|
  program="$solana_fullnode_cuda"
 | 
						|
else
 | 
						|
  program="$solana_fullnode"
 | 
						|
fi
 | 
						|
 | 
						|
tune_system
 | 
						|
 | 
						|
$solana_ledger_tool --ledger "$SOLANA_CONFIG_DIR"/bootstrap-leader-ledger verify
 | 
						|
 | 
						|
bootstrap_leader_id_path="$SOLANA_CONFIG_DIR"/bootstrap-leader-id.json
 | 
						|
bootstrap_leader_staker_id_path="$SOLANA_CONFIG_DIR"/bootstrap-leader-staker-id.json
 | 
						|
bootstrap_leader_staker_id=$($solana_wallet --keypair "$bootstrap_leader_staker_id_path" address)
 | 
						|
 | 
						|
trap 'kill "$pid" && wait "$pid"' INT TERM ERR
 | 
						|
$program \
 | 
						|
  --identity "$bootstrap_leader_id_path" \
 | 
						|
  --voting-keypair "$bootstrap_leader_staker_id_path" \
 | 
						|
  --staking-account  "$bootstrap_leader_staker_id" \
 | 
						|
  --ledger "$SOLANA_CONFIG_DIR"/bootstrap-leader-ledger \
 | 
						|
  --accounts "$SOLANA_CONFIG_DIR"/bootstrap-leader-accounts \
 | 
						|
  --rpc-port 8899 \
 | 
						|
  --rpc-drone-address 127.0.0.1:9900 \
 | 
						|
  "${extra_fullnode_args[@]}" \
 | 
						|
  > >($bootstrap_leader_logger) 2>&1 &
 | 
						|
pid=$!
 | 
						|
oom_score_adj "$pid" 1000
 | 
						|
 | 
						|
if [[ $setup_stakes = true ]] ; then
 | 
						|
  setup_fullnode_staking 127.0.0.1 "$bootstrap_leader_id_path" "$bootstrap_leader_staker_id_path"
 | 
						|
fi
 | 
						|
 | 
						|
wait "$pid"
 |