From: Vasu Kulkarni Date: Thu, 1 Oct 2015 00:34:20 +0000 (-0400) Subject: fix for version match, 1.3.1 now maps to 0.94.3 instead of the prevoius 0.94.2 X-Git-Tag: 1.1.0~805^2 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=refs%2Fpull%2F645%2Fhead;p=teuthology.git fix for version match, 1.3.1 now maps to 0.94.3 instead of the prevoius 0.94.2 Signed-off-by: Vasu Kulkarni --- diff --git a/teuthology/task/install.py b/teuthology/task/install.py index 3e949a5c..a2a5106b 100644 --- a/teuthology/task/install.py +++ b/teuthology/task/install.py @@ -759,7 +759,7 @@ def rh_install_pkgs(ctx, remote, installed_version): :param remote: the teuthology.orchestra.remote.Remote object """ pkgs = ['ceph-deploy'] - rh_version_check = {'0.94.1': '1.3.0', '0.94.2': '1.3.1'} + rh_version_check = {'0.94.1': '1.3.0', '0.94.3': '1.3.1'} for pkg in pkgs: log.info("Check if ceph-deploy is already installed on node %s", remote.shortname) remote.run(args=['sudo', 'yum', 'clean', 'metadata'])