features/support/Labfile.vagrant in testlab-1.0.1 vs features/support/Labfile.vagrant in testlab-1.1.0
- old
+ new
@@ -18,23 +18,20 @@
:cpus => ZTK::Parallel::MAX_FORKS.div(2), # use half of the available processors
:memory => ZTK::Parallel::MAX_MEMORY.div(3).div(1024 * 1024), # use a third of available RAM
:box => 'raring64',
:box_url => 'https://dl.dropboxusercontent.com/u/22904185/boxes/raring64.box',
:file => File.dirname(__FILE__)
- },
- :bind => {
- :domain => "default.zone"
}
})
network 'labnet' do
provisioners [
TestLab::Provisioner::Bind
]
address '10.128.0.1/16'
- bridge :br0
+ bridge 'br0'
end
container "test-server" do
distro "ubuntu"
release "precise"
@@ -54,10 +51,10 @@
gid 2600
end
interface do
network_id 'labnet'
- name :eth0
+ name 'eth0'
address '10.128.0.254/16'
mac '00:00:5e:63:b5:9f'
end
end