Skip to content

Commit ef3da01

Browse files
committed
Disabled the guest additions check in the vagrant up
1 parent dc3f1a3 commit ef3da01

File tree

5 files changed

+8
-0
lines changed

5 files changed

+8
-0
lines changed

1-network-namespace/Vagrantfile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,4 +13,5 @@ Vagrant.configure(2) do |config|
1313
s1.vm.provision "shell", inline: $script
1414
end
1515
config.vm.box_check_update = false
16+
config.vbguest.auto_update = false
1617
end

2-single-node/Vagrantfile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,4 +13,5 @@ Vagrant.configure(2) do |config|
1313
s1.vm.provision "shell", inline: $script
1414
end
1515
config.vm.box_check_update = false
16+
config.vbguest.auto_update = false
1617
end

3-multi-node/Vagrantfile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,4 +19,5 @@ Vagrant.configure(2) do |config|
1919
s2.vm.provision "shell", inline: $script
2020
end
2121
config.vm.box_check_update = false
22+
config.vbguest.auto_update = false
2223
end

4-overlay-network/Vagrantfile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,4 +40,5 @@ Vagrant.configure(2) do |config|
4040
s2.vm.provision "shell", inline: $script
4141
end
4242
config.vm.box_check_update = false
43+
config.vbguest.auto_update = false
4344
end

Makefile

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,3 +22,7 @@ vagrant-destroy: $(SUBDIRS)
2222
cd $$d && vagrant destroy --force && cd ../ ; \
2323
done
2424

25+
clean: $(SUBDIRS)
26+
for d in $(SUBDIRS); do \
27+
cd $$d && make clean && cd ../ ; \
28+
done

0 commit comments

Comments
 (0)