Code Review
/
yardstick.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
review
|
tree
raw
|
patch
| inline |
side by side
(parent:
7e2c35c
)
Bugfix: ansible can't not run without config
09/56309/1
author
chenjiankun
<chenjiankun1@huawei.com>
Tue, 24 Apr 2018 01:58:10 +0000
(
01:58
+0000)
committer
chenjiankun
<chenjiankun1@huawei.com>
Tue, 24 Apr 2018 01:58:10 +0000
(
01:58
+0000)
JIRA: YARDSTICK-1135
Ansible need ansible.cfg when run in the remote node.
However the file name is wrong. Need:
setup.cfg -> ansible.cfg
Change-Id: Ifa674fb624ca83d90c3ac9ad3bfe148013bf8bfd
Signed-off-by: chenjiankun <chenjiankun1@huawei.com>
yardstick/common/ansible_common.py
patch
|
blob
|
history
diff --git
a/yardstick/common/ansible_common.py
b/yardstick/common/ansible_common.py
index
38d2dd7
..
ca5a110
100644
(file)
--- a/
yardstick/common/ansible_common.py
+++ b/
yardstick/common/ansible_common.py
@@
-514,7
+514,7
@@
class AnsibleCommon(object):
parser.add_section('defaults')
parser.set('defaults', 'host_key_checking', 'False')
- cfg_path = os.path.join(directory, '
setup
.cfg')
+ cfg_path = os.path.join(directory, '
ansible
.cfg')
with open(cfg_path, 'w') as f:
parser.write(f)