Skip to content

Commit 3b62df9

Browse files
committed
Vagrantfile: use linked clones if supported
Signed-off-by: Cristian Staretu <[email protected]>
1 parent 51b1d75 commit 3b62df9

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
@@ -85,6 +85,10 @@ Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
8585
else
8686
config.vm.box = "contiv/ubuntu1504-netplugin"
8787
end
88+
config.vm.provider 'virtualbox' do |v|
89+
v.linked_clone = true if Vagrant::VERSION =~ /^1.8/
90+
end
91+
8892
num_nodes = 2
8993
if ENV['CONTIV_NODES'] && ENV['CONTIV_NODES'] != "" then
9094
num_nodes = ENV['CONTIV_NODES'].to_i

0 commit comments

Comments
 (0)