diff options
author | Kerim Gokarslan <kgokarsl@cisco.com> | 2017-09-26 12:15:30 -0700 |
---|---|---|
committer | ahothan <ahothan@cisco.com> | 2017-10-20 00:37:13 -0700 |
commit | a3b10cdbc47038d2048870e68fe805a5a86505c3 (patch) | |
tree | 5b7397957dc7d57f13165e54a9e0a4d9efa5bbb8 /docker | |
parent | 15f65ff08330764e55f72f8ef76effca1afd7b33 (diff) |
NFVBENCH-34 Pass configuration file to entrypoint script
Change-Id: If44d5d9fb2db58b3e1a3ebd1c8d94c1452f84409
Signed-off-by: Kerim Gokarslan <kgokarsl@cisco.com>
Diffstat (limited to 'docker')
-rwxr-xr-x | docker/nfvbench-entrypoint.sh | 12 |
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 |