mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-04-29 23:24:55 +02:00
vagrant-halt: add page (#15939)
Co-authored-by: Juri Dispan <juri.dispan@posteo.net>
This commit is contained in:
parent
515fd74c9a
commit
6a6fa655ff
1 changed files with 21 additions and 0 deletions
21
pages/common/vagrant-halt.md
Normal file
21
pages/common/vagrant-halt.md
Normal file
|
@ -0,0 +1,21 @@
|
|||
# vagrant halt
|
||||
|
||||
> Shuts down the running machine Vagrant is managing.
|
||||
> See also: `vagrant`, `vagrant box`, `vagrant plugin`, `vagrant validate`.
|
||||
> More information: <https://developer.hashicorp.com/vagrant/docs/cli/halt>.
|
||||
|
||||
- Halt the currently running Vagrant machine gracefully:
|
||||
|
||||
`vagrant halt`
|
||||
|
||||
- Halt a specific machine by its ID or name gracefully:
|
||||
|
||||
`vagrant halt {{id_or_name}}`
|
||||
|
||||
- Forcefully halt the current running machine(s) (This can affect multiple running machines if they are part of the same Vagrant environment):
|
||||
|
||||
`vagrant halt {{[-f|--force]}}`
|
||||
|
||||
- Forcefully halt a specific machine by its ID or name:
|
||||
|
||||
`vagrant halt {{[-f|--force]}} {{id_or_name}}`
|
Loading…
Add table
Reference in a new issue