From: John Mulligan Date: Tue, 26 Sep 2023 17:45:35 +0000 (-0400) Subject: cephadm: remove (doc)string X-Git-Tag: v19.0.0~387^2 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=refs%2Fpull%2F53683%2Fhead;p=ceph.git 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 --- diff --git a/src/cephadm/cephadm.py b/src/cephadm/cephadm.py index 4e9227bdc63..37799c82fba 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 = '...' -""" - ##################################