Merge pull request #9606 from amwill04/patch-2

Update options to define id can be used in any directory
This commit is contained in:
Brian Cain 2018-03-22 10:04:00 -07:00 committed by GitHub
commit e4554249f7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 5 additions and 0 deletions

View File

@ -20,6 +20,11 @@ on a day-to-day basis.
## Options
* `name` - Name of machine defined in [Vagrantfile](/docs/vagrantfile/)
* `id` - Machine id found with `vagrant global-status`. Using `id` allows
you to call `vagrant up id` from any directory.
* `--[no-]destroy-on-error` - Destroy the newly created machine if a fatal,
unexpected error occurs. This will only happen on the first `vagrant up`.
By default this is set.