8 lines
129 B
Bash
Executable File
8 lines
129 B
Bash
Executable File
#!/usr/bin/env bash
|
|
#
|
|
# Start the bootstrap leader node
|
|
#
|
|
|
|
here=$(dirname "$0")
|
|
exec "$here"/fullnode.sh --bootstrap-leader "$@"
|