]> git.apps.os.sepia.ceph.com Git - ceph.git/commitdiff
cephadm: remove (doc)string 53683/head
authorJohn Mulligan <jmulligan@redhat.com>
Tue, 26 Sep 2023 17:45:35 +0000 (13:45 -0400)
committerJohn Mulligan <jmulligan@redhat.com>
Tue, 26 Sep 2023 17:45:35 +0000 (13:45 -0400)
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 <jmulligan@redhat.com>
src/cephadm/cephadm.py

index 4e9227bdc63ef75a572ff97c188893986abad8a5..37799c82fbad47fa57b5fecb18fabbda52ec18a8 100755 (executable)
@@ -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 = '...'
-"""
-
 
 ##################################