From: Michael Fritch Date: Wed, 11 Mar 2020 19:59:24 +0000 (-0600) Subject: mgr/cephadm: fix redeploy for the crash daemon X-Git-Tag: v15.1.1~30^2 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=refs%2Fpull%2F33870%2Fhead;p=ceph.git 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 --- 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,