From 99b31c36e2aff66946dc0b7efb6ad5349d122229 Mon Sep 17 00:00:00 2001 From: Jon Spriggs Date: Tue, 10 Sep 2013 09:07:16 +0100 Subject: [PATCH] Use Vagrant-Cachier by default This reduces subsequent startup times. --- Vagrant/Vagrantfile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Vagrant/Vagrantfile b/Vagrant/Vagrantfile index 9e4cc97..5475e65 100644 --- a/Vagrant/Vagrantfile +++ b/Vagrant/Vagrantfile @@ -11,4 +11,7 @@ Vagrant.configure("2") do |config| puppet.manifests_path = "manifests" puppet.manifest_file = "init.pp" end + # Use Vagrant-Cachier + # https://github.com/fgrehm/vagrant-cachier + config.cache.auto_detect = true end