Merge pull request #4825 from gajdaw/vagrant-destroy-doc-update
doc destroy - notice about space occupied by the box
This commit is contained in:
commit
89acb1705c
|
@ -18,3 +18,15 @@ confirmation can be skipped by passing in the `-f` or `--force` flag.
|
||||||
## Options
|
## Options
|
||||||
|
|
||||||
* `-f` or `--force` - Don't ask for confirmation before destroying.
|
* `-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>
|
||||||
|
|
Loading…
Reference in New Issue