From 09e50d4ac2fb8f5dd5bf9665c73a1a988c8ec0c8 Mon Sep 17 00:00:00 2001 From: Neha Ojha Date: Mon, 4 Dec 2017 13:50:33 -0800 Subject: [PATCH] qa: install collectl with cbt task Signed-off-by: Neha Ojha --- qa/tasks/cbt.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/qa/tasks/cbt.py b/qa/tasks/cbt.py index 8046ca63cdc93..91bd3ff5480d8 100644 --- a/qa/tasks/cbt.py +++ b/qa/tasks/cbt.py @@ -53,10 +53,10 @@ class CBT(Task): if system_type == 'rpm': install_cmd = ['sudo', 'yum', '-y', 'install'] - cbt_depends = ['python-yaml', 'python-lxml', 'librbd-devel', 'pdsh'] + cbt_depends = ['python-yaml', 'python-lxml', 'librbd-devel', 'pdsh', 'collectl'] else: install_cmd = ['sudo', 'apt-get', '-y', '--force-yes', 'install'] - cbt_depends = ['python-yaml', 'python-lxml', 'librbd-dev'] + cbt_depends = ['python-yaml', 'python-lxml', 'librbd-dev', 'collectl'] self.first_mon.run(args=install_cmd + cbt_depends) # install fio -- 2.39.5