Skip to content

Commit 0bf1fbe

Browse files
committed
fix(vagrant): disable vagrant cachier if present
Vagrant cachier trys to use vboxfs mounts if it is installed. Disable it if present.
1 parent 7f0d1cb commit 0bf1fbe

1 file changed

Lines changed: 4 additions & 0 deletions

File tree

Vagrantfile

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,10 @@ Vagrant.configure("2") do |config|
2929
if Vagrant.has_plugin?("vagrant-vbguest") then
3030
config.vbguest.auto_update = false
3131
end
32+
#plugin conflict
33+
if Vagrant.has_plugin?("vagrant-cachier") then
34+
config.cache.disable!
35+
end
3236

3337
(1..DEIS_NUM_INSTANCES).each do |i|
3438
config.vm.define vm_name = "deis-#{i}" do |config|

0 commit comments

Comments
 (0)