Improve decoration

This commit is contained in:
Paul Chechetin
2015-09-25 15:36:24 +03:00
parent e126180f91
commit 334f14b6e2

View File

@@ -456,15 +456,19 @@ In short, VMs without a box can be created, halted and destroyed but all other f
An example for a PXE booted VM with no disks whatsoever: An example for a PXE booted VM with no disks whatsoever:
```ruby
Vagrant.configure("2") do |config| Vagrant.configure("2") do |config|
config.vm.define :pxeclient do |pxeclient| config.vm.define :pxeclient do |pxeclient|
pxeclient.vm.provider :libvirt do |domain| pxeclient.vm.provider :libvirt do |domain|
domain.boot 'network' domain.boot 'network'
end end
end end
end
```
And an example for a PXE booted VM with no box but a blank disk which will boot from this HD if the NICs fail to PXE boot:: And an example for a PXE booted VM with no box but a blank disk which will boot from this HD if the NICs fail to PXE boot:
```ruby
Vagrant.configure("2") do |config| Vagrant.configure("2") do |config|
config.vm.define :pxeclient do |pxeclient| config.vm.define :pxeclient do |pxeclient|
pxeclient.vm.provider :libvirt do |domain| pxeclient.vm.provider :libvirt do |domain|
@@ -473,6 +477,8 @@ Vagrant.configure("2") do |config|
domain.boot 'hd' domain.boot 'hd'
end end
end end
end
```
## SSH Access To VM ## SSH Access To VM