Skip to content

Commit de2a672

Browse files
committed
Merge pull request #320 from unclejack/linked_clones
Vagrantfile: use linked clones if supported
2 parents 7737a95 + 3b62df9 commit de2a672

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

Vagrantfile

+4
Original file line numberDiff line numberDiff line change
@@ -74,6 +74,10 @@ Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
7474
else
7575
config.vm.box = "contiv/ubuntu1504-netplugin"
7676
end
77+
config.vm.provider 'virtualbox' do |v|
78+
v.linked_clone = true if Vagrant::VERSION =~ /^1.8/
79+
end
80+
7781
num_nodes = 2
7882
if ENV['CONTIV_NODES'] && ENV['CONTIV_NODES'] != "" then
7983
num_nodes = ENV['CONTIV_NODES'].to_i

0 commit comments

Comments
 (0)