Skip to content
This repository has been archived by the owner on Dec 7, 2023. It is now read-only.

improve rm docs #444

Merged
merged 1 commit into from
Sep 20, 2019
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 8 additions & 3 deletions docs/usage.md
Original file line number Diff line number Diff line change
Expand Up @@ -190,7 +190,7 @@ via `attach` is **shared**, every attached user operates the same terminal.

## All in one

Ignite has a shorthand for peforming `image import`, `create`, `start` and possibly also `attach`
Ignite has a shorthand for performing `image import`, `create`, `start` and possibly also `attach`
all in one command:

```console
Expand Down Expand Up @@ -237,8 +237,13 @@ To remove `VMs` in Ignite, use the following command:
# ignite rm my-vm
```

The `VM` needs to not be running for this to succeed. Using the `--force` flag
a running `VM` can also be removed, it will be killed before removal.
The `VM` needs to not be running for this to succeed. Using the `--force` flag (`-f` for short)
a running `VM` can also be removed, it will be killed before removal.
This force option is also able to stop and remove zombie VMs.

```
# ignite rm -f my-vm
```

## Removing other resources

Expand Down