From 2e555046e2d2b7fba80df1082e9cdccb315df86e Mon Sep 17 00:00:00 2001 From: chenjiankun Date: Thu, 15 Dec 2016 02:31:43 +0000 Subject: Use ConfigParser to write yardstick.conf JIRA: YARDSTICK-474 Currently, I use file.write() method to write config in yardstick.conf. But it is not recommended. So I change to use ConfigParser to write config in yardstick.conf Change-Id: Ia789cf09296afd5d1507bcf99f165378bf87c591 Signed-off-by: chenjiankun --- setup.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'setup.py') diff --git a/setup.py b/setup.py index 54595b648..0100b4635 100755 --- a/setup.py +++ b/setup.py @@ -25,7 +25,8 @@ setup( 'resources/scripts/remove/*.bash' ], 'etc': [ - 'yardstick/nodes/*/*.yaml' + 'yardstick/nodes/*/*.yaml', + 'yardstick/*.sample' ], 'tests': [ 'opnfv/*/*.yaml', -- cgit 1.2.3-korg