Add vagrant-pristine to the mix to ease development
This commit is contained in:
parent
8fad5fafd8
commit
6f25abd4ae
3 changed files with 11 additions and 2 deletions
1
Gemfile
1
Gemfile
|
@ -6,5 +6,6 @@ gemspec
|
||||||
group :development do
|
group :development do
|
||||||
gem 'vagrant', github: 'mitchellh/vagrant'
|
gem 'vagrant', github: 'mitchellh/vagrant'
|
||||||
gem 'vagrant-lxc', github: 'fgrehm/vagrant-lxc'
|
gem 'vagrant-lxc', github: 'fgrehm/vagrant-lxc'
|
||||||
|
gem 'vagrant-pristine', github: 'fgrehm/vagrant-pristine'
|
||||||
gem 'rake'
|
gem 'rake'
|
||||||
end
|
end
|
||||||
|
|
|
@ -4,6 +4,12 @@ GIT
|
||||||
specs:
|
specs:
|
||||||
vagrant-lxc (0.4.1.dev)
|
vagrant-lxc (0.4.1.dev)
|
||||||
|
|
||||||
|
GIT
|
||||||
|
remote: git://github.com/fgrehm/vagrant-pristine.git
|
||||||
|
revision: 45a8d75f048bd611e337583496eb2b48b6998bbd
|
||||||
|
specs:
|
||||||
|
vagrant-pristine (0.1.0)
|
||||||
|
|
||||||
GIT
|
GIT
|
||||||
remote: git://github.com/mitchellh/vagrant.git
|
remote: git://github.com/mitchellh/vagrant.git
|
||||||
revision: cf0e302e34f3def9d5405bb14847b4b0cb67de01
|
revision: cf0e302e34f3def9d5405bb14847b4b0cb67de01
|
||||||
|
@ -43,3 +49,4 @@ DEPENDENCIES
|
||||||
vagrant!
|
vagrant!
|
||||||
vagrant-cachier!
|
vagrant-cachier!
|
||||||
vagrant-lxc!
|
vagrant-lxc!
|
||||||
|
vagrant-pristine!
|
||||||
|
|
1
development/Vagrantfile
vendored
1
development/Vagrantfile
vendored
|
@ -3,6 +3,7 @@
|
||||||
|
|
||||||
Vagrant.require_plugin 'vagrant-cachier'
|
Vagrant.require_plugin 'vagrant-cachier'
|
||||||
Vagrant.require_plugin 'vagrant-lxc'
|
Vagrant.require_plugin 'vagrant-lxc'
|
||||||
|
Vagrant.require_plugin 'vagrant-pristine'
|
||||||
|
|
||||||
Vagrant.configure("2") do |config|
|
Vagrant.configure("2") do |config|
|
||||||
config.vm.synced_folder "../", "/vagrant", id: 'vagrant-root'#, nfs: true
|
config.vm.synced_folder "../", "/vagrant", id: 'vagrant-root'#, nfs: true
|
||||||
|
|
Loading…
Reference in a new issue