tvd-vagrant 0.0.17 → 0.0.18

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.0.17
1
+ 0.0.18
@@ -11,12 +11,6 @@ Vagrant.configure("2") do |config|
11
11
  config.ssh.private_key_path = "<%= node[:vagrant][:ssh_private_key_path] %>"
12
12
  <% end %>
13
13
 
14
- <% if node[:vagrant][:provision] && node[:vagrant][:provision][:shell] %>
15
- config.vm.provision :shell,
16
- :path => "<%= node[:vagrant][:provision][:shell][:path] %>",
17
- :args => "<%= node[:vagrant][:provision][:shell][:args] %>"
18
- <% end %>
19
-
20
14
  config.vm.synced_folder ".", "/vagrant", :id => "vagrant-root", :disabled => true
21
15
 
22
16
  config.vm.provider :aws do |aws|
@@ -1,5 +1,7 @@
1
1
  require "vagrant-shell"
2
2
 
3
+ VagrantPlugins::Shell::Plugin.make_provider(:docker)
4
+
3
5
  Vagrant.configure("2") do |config|
4
6
  config.vm.box = "<%= node[:vagrant][:box] %>"
5
7
 
@@ -11,17 +13,11 @@ Vagrant.configure("2") do |config|
11
13
  config.ssh.private_key_path = "<%= node[:vagrant][:ssh_private_key_path] %>"
12
14
  <% end %>
13
15
 
14
- <% if node[:vagrant][:provision] && node[:vagrant][:provision][:shell] %>
15
- config.vm.provision :shell,
16
- :path => "<%= node[:vagrant][:provision][:shell][:path] %>",
17
- :args => "<%= node[:vagrant][:provision][:shell][:args] %>"
18
- <% end %>
19
-
20
16
  config.vm.synced_folder ".", "/vagrant", :id => "vagrant-root", :disabled => true
21
17
 
22
- config.vm.provider :shell do |shell|
23
- shell.script = "<%= node[:vagrant][:shell_script] %>"
24
- shell.run_args = [ "<%= node[:vagrant][:shell_args] %>" ]
18
+ config.vm.provider :docker do |docker, override|
19
+ docker.script = docker.find_script(:docker)
20
+ docker.run_args = [ "<%= node[:vagrant][:shell_args] %>" ]
25
21
  end
26
22
  end
27
23
 
@@ -9,12 +9,6 @@ Vagrant.configure("2") do |config|
9
9
  config.ssh.private_key_path = "<%= node[:vagrant][:ssh_private_key_path] %>"
10
10
  <% end %>
11
11
 
12
- <% if node[:vagrant][:provision] && node[:vagrant][:provision][:shell] %>
13
- config.vm.provision :shell,
14
- :path => "<%= node[:vagrant][:provision][:shell][:path] %>",
15
- :args => "<%= node[:vagrant][:provision][:shell][:args] %>"
16
- <% end %>
17
-
18
12
  config.vm.synced_folder ".", "/vagrant", :id => "vagrant-root", :disabled => true
19
13
 
20
14
  config.vm.provider :virtualbox do |virtualbox, override|
metadata CHANGED
@@ -1,38 +1,45 @@
1
- --- !ruby/object:Gem::Specification
1
+ --- !ruby/object:Gem::Specification
2
2
  name: tvd-vagrant
3
- version: !ruby/object:Gem::Version
4
- version: 0.0.17
3
+ version: !ruby/object:Gem::Version
4
+ hash: 59
5
5
  prerelease:
6
+ segments:
7
+ - 0
8
+ - 0
9
+ - 18
10
+ version: 0.0.18
6
11
  platform: ruby
7
- authors:
12
+ authors:
8
13
  - Tom Bombadil
9
14
  autorequire:
10
15
  bindir: bin
11
16
  cert_chain: []
12
- date: 2013-05-06 00:00:00.000000000 Z
13
- dependencies:
14
- - !ruby/object:Gem::Dependency
17
+
18
+ date: 2013-07-16 00:00:00 Z
19
+ dependencies:
20
+ - !ruby/object:Gem::Dependency
15
21
  name: tvd-tvdinner
16
- requirement: !ruby/object:Gem::Requirement
17
- none: false
18
- requirements:
19
- - - ! '>='
20
- - !ruby/object:Gem::Version
21
- version: '0'
22
- type: :runtime
23
22
  prerelease: false
24
- version_requirements: !ruby/object:Gem::Requirement
23
+ requirement: &id001 !ruby/object:Gem::Requirement
25
24
  none: false
26
- requirements:
27
- - - ! '>='
28
- - !ruby/object:Gem::Version
29
- version: '0'
25
+ requirements:
26
+ - - ">="
27
+ - !ruby/object:Gem::Version
28
+ hash: 3
29
+ segments:
30
+ - 0
31
+ version: "0"
32
+ type: :runtime
33
+ version_requirements: *id001
30
34
  description: vagrant cookbook and utilities
31
35
  email: amanibhavam@destructuring.org
32
36
  executables: []
37
+
33
38
  extensions: []
39
+
34
40
  extra_rdoc_files: []
35
- files:
41
+
42
+ files:
36
43
  - cookbooks/vagrant/attributes/default.rb
37
44
  - cookbooks/vagrant/metadata.rb
38
45
  - cookbooks/vagrant/recipes/aws.rb
@@ -43,37 +50,42 @@ files:
43
50
  - cookbooks/vagrant/templates/default/Vagrantfile.virtualbox.erb
44
51
  - lib/tvd-vagrant.rb
45
52
  - lib/tvd-vagrant/version.rb
46
- - spec/.gitignore
47
- - tasks/.gitignore
48
53
  - LICENSE
49
54
  - NOTICE
50
55
  - VERSION
51
56
  - README.md
52
57
  homepage: http://destructuring.org/tvd-vagrant
53
- licenses:
58
+ licenses:
54
59
  - Apache 2.0
55
60
  post_install_message:
56
61
  rdoc_options: []
57
- require_paths:
62
+
63
+ require_paths:
58
64
  - lib
59
- required_ruby_version: !ruby/object:Gem::Requirement
65
+ required_ruby_version: !ruby/object:Gem::Requirement
60
66
  none: false
61
- requirements:
62
- - - ! '>='
63
- - !ruby/object:Gem::Version
64
- version: '0'
65
- required_rubygems_version: !ruby/object:Gem::Requirement
67
+ requirements:
68
+ - - ">="
69
+ - !ruby/object:Gem::Version
70
+ hash: 3
71
+ segments:
72
+ - 0
73
+ version: "0"
74
+ required_rubygems_version: !ruby/object:Gem::Requirement
66
75
  none: false
67
- requirements:
68
- - - ! '>='
69
- - !ruby/object:Gem::Version
70
- version: '0'
76
+ requirements:
77
+ - - ">="
78
+ - !ruby/object:Gem::Version
79
+ hash: 3
80
+ segments:
81
+ - 0
82
+ version: "0"
71
83
  requirements: []
84
+
72
85
  rubyforge_project:
73
- rubygems_version: 1.8.25
86
+ rubygems_version: 1.8.15
74
87
  signing_key:
75
88
  specification_version: 3
76
89
  summary: vagrant cookbook and utilities
77
- test_files:
78
- - spec/.gitignore
79
- - tasks/.gitignore
90
+ test_files: []
91
+
data/spec/.gitignore DELETED
File without changes
data/tasks/.gitignore DELETED
File without changes