From f97ba94ff308659aac30ba3c0d582f0a86977f2d Mon Sep 17 00:00:00 2001 From: Vasu Kulkarni Date: Wed, 30 Sep 2015 20:34:20 -0400 Subject: [PATCH] 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 --- teuthology/task/install.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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']) -- 2.47.3