diff options
author | Brent Baude <bbaude@redhat.com> | 2022-03-08 15:44:40 -0600 |
---|---|---|
committer | Brent Baude <bbaude@redhat.com> | 2022-03-08 15:47:32 -0600 |
commit | 5b51b42cc86d6fe394e13ae9dd91f2ddefdb543e (patch) | |
tree | 058fa39cea567f574df47631c2ded1b7d9338a35 /docs/source | |
parent | f33b64d8b7d7b2bd22560cfacc90e25d1f9e16b4 (diff) | |
download | podman-5b51b42cc86d6fe394e13ae9dd91f2ddefdb543e.tar.gz podman-5b51b42cc86d6fe394e13ae9dd91f2ddefdb543e.tar.bz2 podman-5b51b42cc86d6fe394e13ae9dd91f2ddefdb543e.zip |
machine rm -f stops and removes machine
If you want to remove a running machine, you can now pass the --force/-f
to podman machine rm and the machine will be stopped and removed without
confirmations.
Fixes: #13448
[NO NEW TESTS NEEDED]
Signed-off-by: Brent Baude <bbaude@redhat.com>
Diffstat (limited to 'docs/source')
-rw-r--r-- | docs/source/markdown/podman-machine-rm.1.md | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/docs/source/markdown/podman-machine-rm.1.md b/docs/source/markdown/podman-machine-rm.1.md index 7c9eb65c5..4eea1d2e4 100644 --- a/docs/source/markdown/podman-machine-rm.1.md +++ b/docs/source/markdown/podman-machine-rm.1.md @@ -23,9 +23,9 @@ is used. Print usage statement. -#### **--force** +#### **--force**, **-f** -Delete without confirmation +Stop and delete without confirmation #### **--save-ignition** @@ -58,6 +58,10 @@ The following files will be deleted: Are you sure you want to continue? [y/N] y ``` +``` +$ podman machine rm -f test1 +$ +``` ## SEE ALSO **[podman(1)](podman.1.md)**, **[podman-machine(1)](podman-machine.1.md)** |