]> git-server-git.apps.pok.os.sepia.ceph.com Git - teuthology.git/commitdiff
Fix problem mentioned in 19425
authorWarren Usui <wusui@redhat.com>
Tue, 28 Nov 2017 03:57:27 +0000 (03:57 +0000)
committerWarren Usui <wusui@redhat.com>
Tue, 28 Nov 2017 03:57:27 +0000 (03:57 +0000)
run.Raw('"setuptools>=11.3"') needed to keep redirection from happening.

teuthology/task/ceph_ansible.py

index 2b1a23d1f03e902a8b277ae177e23e16d90c4400..3353df75e89e9597136917a93cdc83b510955346 100644 (file)
@@ -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)