mirror of
https://github.com/ceph/ceph
synced 2025-03-25 11:48:05 +00:00
calamari_setup: der. Use dict.update() correctly
Signed-off-by: Dan Mick <dan.mick@redhat.com>
This commit is contained in:
parent
85e7be5a48
commit
58174f05e9
@ -51,7 +51,9 @@ def task(ctx, config):
|
||||
calamari_user -- user name to log into gui
|
||||
calamari_password -- calamari user password
|
||||
"""
|
||||
config = DEFAULTS.update(config)
|
||||
local_config = DEFAULTS
|
||||
local_config.update(config)
|
||||
config = local_config
|
||||
cal_svr = None
|
||||
for remote_, roles in ctx.cluster.remotes.items():
|
||||
if 'client.0' in roles:
|
||||
|
Loading…
Reference in New Issue
Block a user