From 3a14256757e759bea7226ded30cdd7d11924e7e4 Mon Sep 17 00:00:00 2001 From: Warren Usui Date: Tue, 28 Nov 2017 03:57:27 +0000 Subject: [PATCH] Fix problem mentioned in 19425 run.Raw('"setuptools>=11.3"') needed to keep redirection from happening. --- teuthology/task/ceph_ansible.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/teuthology/task/ceph_ansible.py b/teuthology/task/ceph_ansible.py index 2b1a23d1f0..3353df75e8 100644 --- a/teuthology/task/ceph_ansible.py +++ b/teuthology/task/ceph_ansible.py @@ -439,7 +439,8 @@ class CephAnsible(Task): run.Raw(';'), 'pip', 'install', - run.Raw('setuptools>=11.3'), + run.Raw('"setuptools>=11.3"'), + run.Raw('"%s" % ansible_ver'), run.Raw(ansible_ver), run.Raw(';'), run.Raw(str_args) -- 2.39.5