mirror of
https://github.com/0glabs/0g-chain.git
synced 2024-11-10 10:05:18 +00:00
ad33296d98
* feat: use os specific build directories * fix typo
27 lines
745 B
Bash
Executable File
27 lines
745 B
Bash
Executable File
#!/usr/bin/env sh
|
|
|
|
BINARY=/kvd/linux/${BINARY:-kvd}
|
|
echo "binary: ${BINARY}"
|
|
ID=${ID:-0}
|
|
LOG=${LOG:-kvd.log}
|
|
|
|
if ! [ -f "${BINARY}" ]; then
|
|
echo "The binary $(basename "${BINARY}") cannot be found. Please add the binary to the shared folder. Please use the BINARY environment variable if the name of the binary is not 'kvd' E.g.: -e BINARY=kvd_my_test_version"
|
|
exit 1
|
|
fi
|
|
|
|
BINARY_CHECK="$(file "$BINARY" | grep 'ELF 64-bit LSB executable, x86-64')"
|
|
|
|
if [ -z "${BINARY_CHECK}" ]; then
|
|
echo "Binary needs to be OS linux, ARCH amd64"
|
|
exit 1
|
|
fi
|
|
|
|
export KVDHOME="/kvd/node${ID}/kvd"
|
|
|
|
if [ -d "$(dirname "${KVDHOME}"/"${LOG}")" ]; then
|
|
"${BINARY}" --home "${KVDHOME}" "$@" | tee "${KVDHOME}/${LOG}"
|
|
else
|
|
"${BINARY}" --home "${KVDHOME}" "$@"
|
|
fi
|