diff options
author | OpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com> | 2022-03-19 11:28:38 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-03-19 11:28:38 +0100 |
commit | 19c80199a9973be16cc7c8a5c664a18b179f0179 (patch) | |
tree | 35c33b726c63b4f204f345f6c6a3d810876d914e /docs | |
parent | e3184e963c09f1b989f729297a1cb62ed39d2881 (diff) | |
parent | 6878376c42125a783333d4c587c7183f27efed19 (diff) | |
download | podman-19c80199a9973be16cc7c8a5c664a18b179f0179.tar.gz podman-19c80199a9973be16cc7c8a5c664a18b179f0179.tar.bz2 podman-19c80199a9973be16cc7c8a5c664a18b179f0179.zip |
Merge pull request #13560 from n1hility/backport-handle-incompatible
[v4.0] Backport handling of incompatible machines
Diffstat (limited to 'docs')
-rw-r--r-- | docs/source/markdown/podman-machine-rm.1.md | 14 |
1 files changed, 9 insertions, 5 deletions
diff --git a/docs/source/markdown/podman-machine-rm.1.md b/docs/source/markdown/podman-machine-rm.1.md index 7c9eb65c5..c9c68d111 100644 --- a/docs/source/markdown/podman-machine-rm.1.md +++ b/docs/source/markdown/podman-machine-rm.1.md @@ -23,17 +23,17 @@ is used. Print usage statement. -#### **--force** +#### **--force**, **-f** -Delete without confirmation +Stop and delete without confirmation. #### **--save-ignition** -Do not delete the generated ignition file +Do not delete the generated ignition file. #### **--save-image** -Do not delete the VM image +Do not delete the VM image. #### **--save-keys** @@ -42,7 +42,7 @@ deleted. ## EXAMPLES -Remove a VM named "test1" +Remove a VM named "test1": ``` $ podman machine rm test1 @@ -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)** |