Added a notice for 0.2 release link to changes page
This commit is contained in:
parent
5a9ea3bbdd
commit
da60a4afe8
|
@ -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>
|
|
@ -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
|
||||
------------------------------ */
|
||||
|
|
|
@ -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 %}
|
||||
|
|
Loading…
Reference in New Issue