diff --git a/Gemfile b/Gemfile index f4760c3..4c761c5 100644 --- a/Gemfile +++ b/Gemfile @@ -4,7 +4,8 @@ source 'https://rubygems.org' gemspec group :development do - gem 'vagrant', github: 'mitchellh/vagrant' - gem 'vagrant-lxc', github: 'fgrehm/vagrant-lxc' + gem 'vagrant', github: 'mitchellh/vagrant' + gem 'vagrant-lxc', github: 'fgrehm/vagrant-lxc' + gem 'vagrant-pristine', github: 'fgrehm/vagrant-pristine' gem 'rake' end diff --git a/Gemfile.lock b/Gemfile.lock index 8d35815..b2ec5bc 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -4,6 +4,12 @@ GIT specs: vagrant-lxc (0.4.1.dev) +GIT + remote: git://github.com/fgrehm/vagrant-pristine.git + revision: 45a8d75f048bd611e337583496eb2b48b6998bbd + specs: + vagrant-pristine (0.1.0) + GIT remote: git://github.com/mitchellh/vagrant.git revision: cf0e302e34f3def9d5405bb14847b4b0cb67de01 @@ -43,3 +49,4 @@ DEPENDENCIES vagrant! vagrant-cachier! vagrant-lxc! + vagrant-pristine! diff --git a/development/Vagrantfile b/development/Vagrantfile index 2992970..3521de3 100644 --- a/development/Vagrantfile +++ b/development/Vagrantfile @@ -3,6 +3,7 @@ Vagrant.require_plugin 'vagrant-cachier' Vagrant.require_plugin 'vagrant-lxc' +Vagrant.require_plugin 'vagrant-pristine' Vagrant.configure("2") do |config| config.vm.synced_folder "../", "/vagrant", id: 'vagrant-root'#, nfs: true