From e625316d02b4c4b71c8ed91824fbe8b6cd7bc869 Mon Sep 17 00:00:00 2001 From: Sage Weil Date: Fri, 16 Aug 2013 22:34:26 -0700 Subject: [PATCH] kernel: fix sha1 6f8910eca47c3d00643c77fb8a166357637e55eb inadvertantly started using the ceph sha1 for the kernel. Signed-off-by: Sage Weil --- teuthology/task/kernel.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/teuthology/task/kernel.py b/teuthology/task/kernel.py index cff01ae093..a5ef4ae748 100644 --- a/teuthology/task/kernel.py +++ b/teuthology/task/kernel.py @@ -511,13 +511,12 @@ def task(ctx, config): log.info('unable to extract sha1 from deb path, forcing install') assert False else: - nsha1 = ctx.config.get('overrides',{}).get('ceph',{}).get('sha1',role_config.get('sha1')) larch, ldist = _find_arch_and_dist(ctx) sha1, _ = teuthology.get_ceph_binary_url( package='kernel', branch=role_config.get('branch'), tag=role_config.get('tag'), - sha1=nsha1, + sha1=role_config.get('sha1'), flavor='basic', format='deb', dist=ldist, -- 2.39.5