Skip to content

Commit df1c0ed

Browse files
author
Matthew Fisher
committed
Merge pull request #1110 from btrepp/cachierfix
fix(vagrant): disable vagrant cachier if present
2 parents b5e4cb5 + 0bf1fbe commit df1c0ed

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)