tvd-vagrant 0.0.14 → 0.0.15

Sign up to get free protection for your applications and to get access to all the features.
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.0.14
1
+ 0.0.15
@@ -0,0 +1,4 @@
1
+ template "#{node[:vagrant][:release_dir]}/Vagrantfile" do
2
+ source "Vagrantfile.docker.erb"
3
+ mode 00644
4
+ end
@@ -0,0 +1,18 @@
1
+ require "vagrant-shell"
2
+
3
+ Vagrant.configure("2") do |config|
4
+ config.vm.box = "<%= node[:vagrant][:box] %>"
5
+ <% if node[:vagrant][:provision] && node[:vagrant][:provision][:shell] %>
6
+ config.vm.provision :shell, :path => "<%= node[:vagrant][:provision][:shell][:path] %>"
7
+ <% end %>
8
+
9
+ config.ssh.username = "<%= node[:vagrant][:ssh_username] %>"
10
+ config.vm.synced_folder ".", "/vagrant", :id => "vagrant-root", :disabled => true
11
+
12
+ config.vm.provider :shell do |shell|
13
+ shell.script = ENV['SHELL_SCRIPT']
14
+ shell.run_args = [ ENV['SHELL_ARGS'] ]
15
+ end
16
+ end
17
+
18
+ # vi: set ft=ruby :
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: tvd-vagrant
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.14
4
+ version: 0.0.15
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2013-04-16 00:00:00.000000000 Z
12
+ date: 2013-05-03 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: tvd-tvdinner
@@ -36,8 +36,10 @@ files:
36
36
  - cookbooks/vagrant/attributes/default.rb
37
37
  - cookbooks/vagrant/metadata.rb
38
38
  - cookbooks/vagrant/recipes/aws.rb
39
+ - cookbooks/vagrant/recipes/docker.rb
39
40
  - cookbooks/vagrant/recipes/virtualbox.rb
40
41
  - cookbooks/vagrant/templates/default/Vagrantfile.aws.erb
42
+ - cookbooks/vagrant/templates/default/Vagrantfile.docker.erb
41
43
  - cookbooks/vagrant/templates/default/Vagrantfile.virtualbox.erb
42
44
  - lib/tvd-vagrant.rb
43
45
  - lib/tvd-vagrant/version.rb