summaryrefslogtreecommitdiffstats
path: root/docker
diff options
context:
space:
mode:
authorAlec Hothan <ahothan@cisco.com>2017-09-27 18:01:25 +0000
committerGerrit Code Review <gerrit@opnfv.org>2017-09-27 18:01:25 +0000
commita4f1f6a51ba9a9cd8c09c49cddc577ed418ca73d (patch)
tree5b7397957dc7d57f13165e54a9e0a4d9efa5bbb8 /docker
parente88c91badeaea2f1b0dbea57ead41823027441f3 (diff)
parentc5c27a690fe8ce01f047330327e5bff3afb048bd (diff)
Merge "NFVBENCH-34 Pass configuration file to entrypoint script"
Diffstat (limited to 'docker')
-rwxr-xr-xdocker/nfvbench-entrypoint.sh12
1 files changed, 3 insertions, 9 deletions
diff --git a/docker/nfvbench-entrypoint.sh b/docker/nfvbench-entrypoint.sh
index 9d6d3ae..ed98ced 100755
--- a/docker/nfvbench-entrypoint.sh
+++ b/docker/nfvbench-entrypoint.sh
@@ -24,16 +24,10 @@ else
if [ -n "$PORT" ]; then
PARAMS+=" --port $PORT"
fi
- if [ -n "$OPENRC" ]; then
- if [ -f "$OPENRC" ]; then
- PARAMS+=" -c \"openrc_file: $OPENRC\""
- else
- echo "Aborting... Openrc config file cannot be found in the given path: $OPENRC"
- exit 1
+ if [ -n "$CONFIG_FILE" ]; then
+ if [ -f "$CONFIG_FILE" ]; then
+ PARAMS+=" -c $CONFIG_FILE"
fi
- else
- echo "Aborting... Openrc config path is absent"
- exit 1
fi
eval "nfvbench $PARAMS"
fi \ No newline at end of file