-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path_loader.sh
More file actions
executable file
·31 lines (22 loc) · 791 Bytes
/
_loader.sh
File metadata and controls
executable file
·31 lines (22 loc) · 791 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
echo "Development only script for Hyplerledger Fabric control"
# Grab the current directory
DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
THIS_SCRIPT=`basename "$0"`
echo "Running '${THIS_SCRIPT}'"
if [ -z ${FABRIC_VERSION+x} ]; then
echo "FABRIC_VERSION is unset, assuming hlfv1"
export FABRIC_VERSION="hlfv1"
else
echo "FABRIC_VERSION is set to '$FABRIC_VERSION'"
fi
if [ -z ${FABRIC_START_TIMEOUT+x} ]; then
echo "FABRIC_START_TIMEOUT is unset, assuming 15 (seconds)"
export FABRIC_START_TIMEOUT=15
else
re='^[0-9]+$'
if ! [[ $FABRIC_START_TIMEOUT =~ $re ]] ; then
echo "FABRIC_START_TIMEOUT: Not a number" >&2; exit 1
fi
echo "FABRIC_START_TIMEOUT is set to '$FABRIC_START_TIMEOUT'"
fi
"${DIR}"/fabric-scripts/"${FABRIC_VERSION}"/"${THIS_SCRIPT}"