From: Xiubo Li Date: Wed, 9 Dec 2020 15:06:59 +0000 (+0800) Subject: install: pass the 'shaman' to Shaman class X-Git-Tag: 1.1.0~28^2 X-Git-Url: http://git.apps.os.sepia.ceph.com/?a=commitdiff_plain;h=8631ded2f4ec8dc9a42e30b9d0bcc6fb4b153f28;p=teuthology.git install: pass the 'shaman' to Shaman class Signed-off-by: Xiubo Li --- diff --git a/teuthology/task/install/__init__.py b/teuthology/task/install/__init__.py index 41b62d5665..00a46a4465 100644 --- a/teuthology/task/install/__init__.py +++ b/teuthology/task/install/__init__.py @@ -610,6 +610,8 @@ def task(ctx, config): ) if repos: nested_config['repos'] = repos + if 'shaman' in config: + nested_config['shaman'] = config['shaman'] with contextutil.nested( lambda: install(ctx=ctx, config=nested_config), lambda: ship_utilities(ctx=ctx, config=None),