From af4fe154d8cf44d41840df81686aedb87796119f Mon Sep 17 00:00:00 2001 From: Dan Mick Date: Thu, 31 May 2012 17:09:20 -0700 Subject: [PATCH] Change hardcoded oneiric to precise Signed-off-by: Dan Mick --- teuthology/task/ceph.py | 4 ++-- teuthology/task/kernel.py | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/teuthology/task/ceph.py b/teuthology/task/ceph.py index 04f321b08bea8..07ddd17a7ce8a 100644 --- a/teuthology/task/ceph.py +++ b/teuthology/task/ceph.py @@ -197,7 +197,7 @@ def binaries(ctx, config): sha1=config.get('sha1'), flavor=config.get('flavor'), format=config.get('format'), - dist=config.get('dist'), + dist=dist, arch=config.get('arch'), ) ctx.summary['ceph-sha1'] = sha1 @@ -963,7 +963,7 @@ def task(ctx, config): # match is not found, the teuthology run fails. This is ugly, # and should be cleaned up at some point. - dist = 'oneiric' + dist = 'precise' format = 'tarball' arch = 'x86_64' flavor = 'basic' diff --git a/teuthology/task/kernel.py b/teuthology/task/kernel.py index 41f954b94064a..ed190319ad430 100644 --- a/teuthology/task/kernel.py +++ b/teuthology/task/kernel.py @@ -150,7 +150,7 @@ def install_and_reboot(ctx, config): format='deb', flavor='basic', arch='x86_64', - dist='oneiric', + dist='precise', ) log.info('fetching kernel from {url}'.format(url=deb_url)) proc = role_remote.run( @@ -313,7 +313,7 @@ def task(ctx, config): sha1=role_config.get('sha1'), flavor='basic', format='deb', - dist='oneiric', + dist='precise', arch='x86_64', ) log.debug('sha1 for {role} is {sha1}'.format(role=role, sha1=sha1)) -- 2.39.5