tvd-vagrant 0.0.24 → 0.0.25
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +5 -13
- data/VERSION +1 -1
- data/cookbooks/vagrant/templates/default/Vagrantfile.aws.erb +6 -0
- data/cookbooks/vagrant/templates/default/Vagrantfile.docker.erb +4 -0
- data/cookbooks/vagrant/templates/default/Vagrantfile.static.erb +6 -0
- data/cookbooks/vagrant/templates/default/Vagrantfile.virtualbox.erb +4 -0
- metadata +11 -11
checksums.yaml
CHANGED
@@ -1,15 +1,7 @@
|
|
1
1
|
---
|
2
|
-
|
3
|
-
metadata.gz:
|
4
|
-
|
5
|
-
data.tar.gz: !binary |-
|
6
|
-
ZDM1MTVjM2UyYTI2ZWEwMTNmMjRlZWY4MWVlZTU1NjMxYTcyMzE0YQ==
|
2
|
+
SHA1:
|
3
|
+
metadata.gz: 922033a85c077dc185685875d85d40d67ea06c97
|
4
|
+
data.tar.gz: 4a239a15736ca26183b02553df7e0c16a11b7b7e
|
7
5
|
SHA512:
|
8
|
-
metadata.gz:
|
9
|
-
|
10
|
-
ODJjNTkzZjQ3NjFiMDA2Y2U0MDEwMjU3YmU3MGI4NzkzN2Q3YzRmNDU4MGEx
|
11
|
-
OGU3MGI1YzU1YTExMDhiM2NlMzgyZGE3ZDE0NGRjMDJjZmJlZTE=
|
12
|
-
data.tar.gz: !binary |-
|
13
|
-
MjU5ZTUwYzAxNzI0MjIwODVlOTgwODQ4NDMwNzQ2MzBkODUyYTY1Mzg3YjI5
|
14
|
-
YzcyNzk0YWVkMTg0ZTRiOGJhNWFmZjdiYjk2ZDYwNzQzOTgwYTIwOTg0MWQw
|
15
|
-
M2FhNWQxNzI2NGNiMGRiMzEwNjMyZTY0YjRiOGI4MjAyOTM4Zjg=
|
6
|
+
metadata.gz: f062af32da5c693fcd2303d6035e6ba7b37548b3f1e3c2d34ac5c43722af4e3de5be50aea861570934c379ae606a09190f1ea3cb84852ba24e5ae4c59e0b9e9c
|
7
|
+
data.tar.gz: 430cbaee3f52e71ee773eac664487ef303b2b513c73225d55e2eefa6527b00461f63988d52f9775d8849c7bb018be655952a226b27e46849a26b76beefec7f6d
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
0.0.
|
1
|
+
0.0.25
|
@@ -7,8 +7,14 @@ Vagrant.configure("2") do |config|
|
|
7
7
|
config.ssh.username = "<%= node[:vagrant][:ssh_username] %>"
|
8
8
|
<% end %>
|
9
9
|
|
10
|
+
<% if node[:vagrant][:ssh_forward_agent] %>
|
11
|
+
config.ssh.forward_agent = true
|
12
|
+
<% end %>
|
13
|
+
|
10
14
|
<% if node[:vagrant][:ssh_private_key_path] %>
|
11
15
|
config.ssh.private_key_path = "<%= node[:vagrant][:ssh_private_key_path] %>"
|
16
|
+
<% else %>
|
17
|
+
config.ssh.private_key_path = []
|
12
18
|
<% end %>
|
13
19
|
|
14
20
|
config.vm.synced_folder ".", "/vagrant", :id => "vagrant-root", :disabled => true
|
@@ -9,6 +9,10 @@ Vagrant.configure("2") do |config|
|
|
9
9
|
config.ssh.username = "<%= node[:vagrant][:ssh_username] %>"
|
10
10
|
<% end %>
|
11
11
|
|
12
|
+
<% if node[:vagrant][:ssh_forward_agent] %>
|
13
|
+
config.ssh.forward_agent = true
|
14
|
+
<% end %>
|
15
|
+
|
12
16
|
<% if node[:vagrant][:ssh_private_key_path] %>
|
13
17
|
config.ssh.private_key_path = "<%= node[:vagrant][:ssh_private_key_path] %>"
|
14
18
|
<% end %>
|
@@ -10,8 +10,14 @@ Vagrant.configure("2") do |config|
|
|
10
10
|
config.ssh.username = "<%= node[:vagrant][:ssh_username] %>"
|
11
11
|
<% end %>
|
12
12
|
|
13
|
+
<% if node[:vagrant][:ssh_forward_agent] %>
|
14
|
+
config.ssh.forward_agent = true
|
15
|
+
<% end %>
|
16
|
+
|
13
17
|
<% if node[:vagrant][:ssh_private_key_path] %>
|
14
18
|
config.ssh.private_key_path = "<%= node[:vagrant][:ssh_private_key_path] %>"
|
19
|
+
<% else %>
|
20
|
+
config.ssh.private_key_path = []
|
15
21
|
<% end %>
|
16
22
|
|
17
23
|
config.vm.synced_folder ".", "/vagrant", :id => "vagrant-root", :disabled => true
|
@@ -5,6 +5,10 @@ Vagrant.configure("2") do |config|
|
|
5
5
|
config.ssh.username = "<%= node[:vagrant][:ssh_username] %>"
|
6
6
|
<% end %>
|
7
7
|
|
8
|
+
<% if node[:vagrant][:ssh_forward_agent] %>
|
9
|
+
config.ssh.forward_agent = true
|
10
|
+
<% end %>
|
11
|
+
|
8
12
|
<% if node[:vagrant][:ssh_private_key_path] %>
|
9
13
|
config.ssh.private_key_path = "<%= node[:vagrant][:ssh_private_key_path] %>"
|
10
14
|
<% end %>
|
metadata
CHANGED
@@ -1,27 +1,27 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: tvd-vagrant
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.25
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Tom Bombadil
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2014-
|
11
|
+
date: 2014-06-17 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: tvd-tvdinner
|
15
15
|
requirement: !ruby/object:Gem::Requirement
|
16
16
|
requirements:
|
17
|
-
- -
|
17
|
+
- - ">="
|
18
18
|
- !ruby/object:Gem::Version
|
19
19
|
version: '0'
|
20
20
|
type: :runtime
|
21
21
|
prerelease: false
|
22
22
|
version_requirements: !ruby/object:Gem::Requirement
|
23
23
|
requirements:
|
24
|
-
- -
|
24
|
+
- - ">="
|
25
25
|
- !ruby/object:Gem::Version
|
26
26
|
version: '0'
|
27
27
|
description: vagrant cookbook and utilities
|
@@ -30,6 +30,10 @@ executables: []
|
|
30
30
|
extensions: []
|
31
31
|
extra_rdoc_files: []
|
32
32
|
files:
|
33
|
+
- LICENSE
|
34
|
+
- NOTICE
|
35
|
+
- README.md
|
36
|
+
- VERSION
|
33
37
|
- cookbooks/vagrant/attributes/default.rb
|
34
38
|
- cookbooks/vagrant/metadata.rb
|
35
39
|
- cookbooks/vagrant/recipes/aws.rb
|
@@ -44,10 +48,6 @@ files:
|
|
44
48
|
- lib/tvd-vagrant/version.rb
|
45
49
|
- spec/.gitignore
|
46
50
|
- tasks/.gitignore
|
47
|
-
- LICENSE
|
48
|
-
- NOTICE
|
49
|
-
- VERSION
|
50
|
-
- README.md
|
51
51
|
homepage: http://destructuring.org/tvd-vagrant
|
52
52
|
licenses:
|
53
53
|
- Apache 2.0
|
@@ -58,17 +58,17 @@ require_paths:
|
|
58
58
|
- lib
|
59
59
|
required_ruby_version: !ruby/object:Gem::Requirement
|
60
60
|
requirements:
|
61
|
-
- -
|
61
|
+
- - ">="
|
62
62
|
- !ruby/object:Gem::Version
|
63
63
|
version: '0'
|
64
64
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
65
65
|
requirements:
|
66
|
-
- -
|
66
|
+
- - ">="
|
67
67
|
- !ruby/object:Gem::Version
|
68
68
|
version: '0'
|
69
69
|
requirements: []
|
70
70
|
rubyforge_project:
|
71
|
-
rubygems_version: 2.
|
71
|
+
rubygems_version: 2.2.2
|
72
72
|
signing_key:
|
73
73
|
specification_version: 4
|
74
74
|
summary: vagrant cookbook and utilities
|