Merge pull request #4825 from gajdaw/vagrant-destroy-doc-update

doc destroy - notice about space occupied by the box
This commit is contained in:
Seth Vargo 2015-05-30 12:22:00 -07:00
commit 89acb1705c
1 changed files with 12 additions and 0 deletions

View File

@ -18,3 +18,15 @@ confirmation can be skipped by passing in the `-f` or `--force` flag.
## Options
* `-f` or `--force` - Don't ask for confirmation before destroying.
<div class="alert alert-info">
<p>
The <code>vagrant destroy</code> command does not remove a box
that may have been installed on your computer during <code>vagrant up</code>.
Thus, even if you run <code>vagrant destroy</code>, the box installed in the system
will still be present on the hard drive. To return your computer to the
state as it was before <code>vagrant up</code> command, you need to use
<code>vagrant box remove</code>. For more information, read about the
[vagrant box remove](/v2/cli/box.html) command.
</p>
</div>