Added a notice for 0.2 release link to changes page

This commit is contained in:
Mitchell Hashimoto 2010-03-15 16:01:16 -07:00
parent 5a9ea3bbdd
commit da60a4afe8
3 changed files with 34 additions and 2 deletions

View File

@ -33,4 +33,7 @@
</div>
</div>
<div id="content" class="container_12 clearfix">
<div id="content" class="container_12 clearfix">
<div class="grid_12 notice">
Vagrant 0.2 has been released! Read about the changes <a href="/docs/changes/changes_01x_02x.html">here</a>.
</div>

View File

@ -174,6 +174,18 @@ blockquote {
font-size: 1.3em;
}
/* ----- notice boxes ----- */
.notice {
text-align: center;
padding: 10px;
background-color: #DFF2BF;
border: 1px solid #4F8A10;
color: #4F8A10;
margin: 0;
margin-bottom: 15px;
}
/* -------------------------------
HEADER
------------------------------ */

View File

@ -92,4 +92,21 @@ Exact details on how to use chef server with Vagrant are explained on the
Vagrant will now give an error if it detects that the configured forwarded ports
would collide with another running virtual machine's forwarded ports. Before this
feature, this would fail silently, causing unexpected behavior such as the
VM successfully running but the forwarded port going to some other VM.
VM successfully running but the forwarded port going to some other VM.
<a name="vm-customization"> </a>
## VM Customization
You can now customize the specs and details of the virtual machine via the
_vm customization_ configuration. This allows you to modify details such as the
RAM or name of the VM. It is passed in the complete [VirtualBox::VM](http://mitchellh.github.com/virtualbox/VirtualBox/VM.html) object, so
you're free to modify anything with it. Example below:
{% highlight ruby %}
Vagrant::Config.run do |config|
config.vm.customize do |vm|
vm.name = "my vagrant VM"
vm.memory = 512
end
end
{% endhighlight %}