From a8be9caefc4de5fc0aadb8394c724b6d8de03018 Mon Sep 17 00:00:00 2001 From: John Mulligan Date: Tue, 26 Sep 2023 13:45:35 -0400 Subject: [PATCH] cephadm: remove (doc)string Remove a, now irrelevant (IMO), docstring that might have been associated with the recently moved `cached_stdin` global. It's not really clear how helpful it is in light of the new "compiled" cephadm, so I am opting to remove it rather than move it. Signed-off-by: John Mulligan --- src/cephadm/cephadm.py | 21 --------------------- 1 file changed, 21 deletions(-) diff --git a/src/cephadm/cephadm.py b/src/cephadm/cephadm.py index 4e9227bdc63ef..37799c82fbad4 100755 --- a/src/cephadm/cephadm.py +++ b/src/cephadm/cephadm.py @@ -161,27 +161,6 @@ FuncT = TypeVar('FuncT', bound=Callable) logger = logging.getLogger() -""" -You can invoke cephadm in two ways: - -1. The normal way, at the command line. - -2. By piping the script to the python3 binary. In this latter case, you should - prepend one or more lines to the beginning of the script. - - For arguments, - - injected_argv = [...] - - e.g., - - injected_argv = ['ls'] - - For reading stdin from the '--config-json -' argument, - - injected_stdin = '...' -""" - ################################## -- 2.39.5