From: Vasu Kulkarni Date: Wed, 18 Oct 2017 22:09:20 +0000 (-0700) Subject: update ansible package from ansible PPA X-Git-Tag: 1.1.0~382^2~1 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=07afbe151a0b27052ef5a0c4b449ffdfc16b6525;p=teuthology.git update ansible package from ansible PPA Signed-off-by: Vasu Kulkarni --- diff --git a/teuthology/task/ceph_ansible.py b/teuthology/task/ceph_ansible.py index 80a0f439..fe7919cb 100644 --- a/teuthology/task/ceph_ansible.py +++ b/teuthology/task/ceph_ansible.py @@ -316,11 +316,23 @@ class CephAnsible(Task): 'libselinux-python' ]) else: + # update ansible from ppa + ceph_installer.run(args=[ + 'sudo', + 'add-apt-repository', + run.Raw('ppa:ansible/ansible'), + ]) + ceph_installer.run(args=[ + 'sudo', + 'apt-get', + 'update', + ]) ceph_installer.run(args=[ 'sudo', 'apt-get', 'install', '-y', + 'ansible', 'libssl-dev', 'python-openssl', 'libffi-dev',