From 05e2ba9b150aceed6e2f20e6376534638db40876 Mon Sep 17 00:00:00 2001 From: Josh Durgin Date: Mon, 20 Jun 2011 16:45:05 -0700 Subject: [PATCH] Save the flavor of a run in the summary file. --- teuthology/task/ceph.py | 1 + 1 file changed, 1 insertion(+) diff --git a/teuthology/task/ceph.py b/teuthology/task/ceph.py index d3ffc7bdb813e..d0c864497d31e 100644 --- a/teuthology/task/ceph.py +++ b/teuthology/task/ceph.py @@ -108,6 +108,7 @@ def binaries(ctx, config): sha1=config.get('sha1'), flavor=config.get('flavor'), ) + ctx.summary['flavor'] = config.get('flavor', 'default') if ctx.archive is not None: with file(os.path.join(ctx.archive, 'ceph-sha1'), 'w') as f: f.write(sha1 + '\n') -- 2.39.5