mirror of
https://github.com/EvernodeXRPL/hpcore.git
synced 2026-04-29 15:37:59 +00:00
13 lines
284 B
Bash
Executable File
13 lines
284 B
Bash
Executable File
#!/bin/bash
|
|
|
|
nodes=3
|
|
sudo ./cluster-create.sh $nodes
|
|
|
|
# Setup initial state data for all nodes but one.
|
|
for (( i=1; i<$nodes; i++ ))
|
|
do
|
|
|
|
sudo mkdir -p ~/hpcore/hpcluster/node$i/statehist/0/data/
|
|
#sudo cp -r ~/Downloads/big.mkv ~/hpcore/hpcluster/node$i/statehist/0/data/
|
|
|
|
done |