#!/usr/bin/env sh

##
## Input parameters
##
BINARY=/cyber/${BINARY:-cyber}
ID=${ID:-0}
LOG=${LOG:-cyber.log}

##
## Assert linux binary
##
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 'gaiad' E.g.: -e BINARY=gaiad_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

##
## Run binary with all parameters
##
export CYBERHOME="/cyber/node${ID}/cyber"

if [ -d "$(dirname "${CYBERHOME}"/"${LOG}")" ]; then
  "${BINARY}" --home "${CYBERHOME}" "$@" | tee "${CYBERHOME}/${LOG}"
else
  "${BINARY}" --home "${CYBERHOME}" "$@"
fi


Neighbours