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-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=refs%2Fpull%2F1588%2Fhead;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 41b62d566..00a46a446 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),