summaryrefslogtreecommitdiffstats
path: root/utils/env_prepare/stack_prepare.py
diff options
context:
space:
mode:
authorYang Yu <Gabriel.yuyang@huawei.com>2018-01-03 10:09:16 +0800
committerYu Yang (Gabriel) <Gabriel.yuyang@huawei.com>2018-01-05 07:38:51 +0000
commitdfffb38551329a52d4c650c30fa88d6c2293ba54 (patch)
tree5b7ffcd722ed8040322193e6a290b7e48e089fa8 /utils/env_prepare/stack_prepare.py
parentcbd8645b9d529ce26535f0bb9553892c3fce4dc0 (diff)
bug-fix: wrong line to modify for getting results
In Danube, should modify no.12 line of yardstick config file to let yardstick record result in file instead of reporting to MongoDB. After Danube, it should be no.13 line of that file. Also return to Danube:3.1 and will fix the line issue for VNF scaling test in another ticket Change-Id: I309e9c609967efdda8eaaf289d788ccf1693308e Signed-off-by: Yang Yu <Gabriel.yuyang@huawei.com>
Diffstat (limited to 'utils/env_prepare/stack_prepare.py')
-rw-r--r--utils/env_prepare/stack_prepare.py10
1 files changed, 10 insertions, 0 deletions
diff --git a/utils/env_prepare/stack_prepare.py b/utils/env_prepare/stack_prepare.py
index 25c2a29b..c7dae390 100644
--- a/utils/env_prepare/stack_prepare.py
+++ b/utils/env_prepare/stack_prepare.py
@@ -37,6 +37,16 @@ def _prepare_env_daemon(test_yardstick):
config.bottlenecks_config["yardstick_rc_dir"])
docker_env.docker_exec_cmd(yardstick_contain,
cmd)
+ file_orig = ("/home/opnfv/repos/yardstick/etc"
+ "/yardstick/yardstick.conf.sample")
+ file_after = "/etc/yardstick/yardstick.conf"
+ cmd = "cp %s %s" % (file_orig,
+ file_after)
+ docker_env.docker_exec_cmd(yardstick_contain,
+ cmd)
+ cmd = "sed -i '12s/http/file/g' /etc/yardstick/yardstick.conf"
+ docker_env.docker_exec_cmd(yardstick_contain,
+ cmd)
# update the external_network
_source_file(rc_file)