2018-08-28 10:19:33 -07:00
|
|
|
#!/bin/bash -e
|
|
|
|
|
|
|
|
[[ -n $1 ]] || exit
|
|
|
|
|
|
|
|
cd "$(dirname "$0")"/../..
|
|
|
|
source net/common.sh
|
|
|
|
loadConfigFile
|
|
|
|
|
|
|
|
PATH="$HOME"/.cargo/bin:"$PATH"
|
|
|
|
|
|
|
|
rsync -vPrz "$1":~/.cargo/bin/solana* ~/.cargo/bin/
|
|
|
|
|
2018-08-29 07:48:38 -07:00
|
|
|
./script/install-earlyoom.sh
|
|
|
|
./scripts/oom-monitor.sh > oom-monitor.log 2>&1 &
|
|
|
|
|
2018-08-28 10:19:33 -07:00
|
|
|
export USE_INSTALL=1
|
|
|
|
./multinode-demo/setup.sh
|
|
|
|
./multinode-demo/validator.sh "$1":~/solana "$1" >validator.log 2>&1 &
|