summaryrefslogtreecommitdiffstats
path: root/func
diff options
context:
space:
mode:
authorMofassirArif <mofassir.arif@xflowresearch.com>2016-02-15 23:36:15 -0800
committerMofassirArif <mofassir.arif@xflowresearch.com>2016-02-15 23:36:15 -0800
commit4dbb3e08adaaa90a0483681dc51393de56359c85 (patch)
tree3abd61fd27847425d1012bacedf3f1869372bb76 /func
parentb5c0b2b8c5ea0ab734548813a859ac6065138437 (diff)
qtip: add user name in case of apex and make the changes in ansible
playbooks to cater for apex. Also reduce the verbosity for runnning ansbile plays. Change-Id: Id3a6da7bea3ede99f8a23e5fd0a2801987f9565b Signed-off-by: MofassirArif <mofassir.arif@xflowresearch.com>
Diffstat (limited to 'func')
-rw-r--r--func/driver.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/func/driver.py b/func/driver.py
index 240e5b27..94fc1432 100644
--- a/func/driver.py
+++ b/func/driver.py
@@ -56,5 +56,5 @@ class Driver:
index= index+1
dic_json = json.dumps(dict(self.dic_json.items()))
print dic_json
- run_play = 'ansible-playbook ./benchmarks/playbooks/{0} --private-key=./data/QtipKey -i ./data/hosts --extra-vars \'{1}\' -v'.format(benchmark_name, dic_json)
+ run_play = 'ansible-playbook ./benchmarks/playbooks/{0} --private-key=./data/QtipKey -i ./data/hosts --extra-vars \'{1}\''.format(benchmark_name, dic_json)
status = os.system(run_play)