From 8a167a6fbdaa1201bfa4524473c50cffa5b0191e Mon Sep 17 00:00:00 2001 From: Michael Fritch Date: Wed, 11 Mar 2020 13:59:24 -0600 Subject: [PATCH] mgr/cephadm: fix redeploy for the crash daemon `auth get` was using `crash.` when it should have been `client.crash.` Signed-off-by: Michael Fritch --- src/pybind/mgr/cephadm/module.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pybind/mgr/cephadm/module.py b/src/pybind/mgr/cephadm/module.py index 1ad560ea38f..830cf7ff830 100644 --- a/src/pybind/mgr/cephadm/module.py +++ b/src/pybind/mgr/cephadm/module.py @@ -2085,7 +2085,7 @@ class CephadmOrchestrator(orchestrator.Orchestrator, MgrModule): if daemon_type == 'mon': ename = 'mon.' else: - ename = '%s.%s' % (daemon_type, daemon_id) + ename = name_to_config_section(daemon_type + '.' + daemon_id) ret, keyring, err = self.mon_command({ 'prefix': 'auth get', 'entity': ename, -- 2.47.3