diff options
author | Daniel Baumann <daniel.baumann@open-infrastructure.net> | 2022-06-05 06:22:39 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@open-infrastructure.net> | 2022-06-05 07:27:23 +0000 |
commit | a6b3dc088b186db8a43349dc86853c35b1b05530 (patch) | |
tree | 79b5242519687c5c625ffd889cf12a2d77851a73 /share/man/container-stop.1.rst | |
parent | Adding default interactive mode for container stop command. (diff) | |
download | compute-tools-a6b3dc088b186db8a43349dc86853c35b1b05530.tar.xz compute-tools-a6b3dc088b186db8a43349dc86853c35b1b05530.zip |
Renaming force option in container stop command to kill in order to properly separate the three different stop modi (interactive, force, kill).
Signed-off-by: Daniel Baumann <daniel.baumann@open-infrastructure.net>
Diffstat (limited to 'share/man/container-stop.1.rst')
-rw-r--r-- | share/man/container-stop.1.rst | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/share/man/container-stop.1.rst b/share/man/container-stop.1.rst index 567b2f4..bf668be 100644 --- a/share/man/container-stop.1.rst +++ b/share/man/container-stop.1.rst @@ -49,11 +49,14 @@ The following **container stop** options are available: Specify container name. Specifying 'ALL' will stop all started container. -f, --force: - Instead of running the proper shutdown sequence, terminate all processes of the container imediatly. + Do not prompt before every stopping. -i, --interactive: Prompt before every stopping (default). +-k, --kill: + Instead of running the proper shutdown sequence, terminate all processes of the container imediatly. + -v, --verbose: Explain what is being done. @@ -64,9 +67,13 @@ Shutdown example.net container: sudo container stop -n example.net +Shutdown example.net container without prompting: + + sudo container stop -n example.net -f + Immediately stop example.net container: - sudo container stop -n example.net -f + sudo container stop -n example.net -k Stop all container: |