vagrant-vcenter 0.3.0 → 0.3.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +1 -11
- data/lib/vagrant-vcenter/action.rb +4 -0
- data/lib/vagrant-vcenter/version.rb +1 -1
- data/vagrant-vcenter.gemspec +0 -1
- metadata +2 -16
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 7a088682faa4d0d1ba396bd4f8e4b4f514c88d26
|
4
|
+
data.tar.gz: 46d87a3a7a167b7d359c081d14064591abc0c2ff
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: f7a56ea70be027a21041e17206dc2dd48e0fc4971f3eed29e0de64679edfdde026ad0957c2fd30d72dc8bfe5d3b3552cd7c500b2b55a89a28ff50e3beac87e36
|
7
|
+
data.tar.gz: e454c96bc57f2abc238c384af6da9c30c4911bf93b10fc3e27b726c4bb2dc210c1c98931a916cddb235195dc8e43dc3c22a839ebefea046f851b18fc5355f59a
|
data/README.md
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
[Vagrant](http://www.vagrantup.com) provider for VMware vCenter®
|
2
2
|
=============
|
3
3
|
|
4
|
-
[Version 0.3.
|
4
|
+
[Version 0.3.1](../../releases/tag/v0.3.1) has been released!
|
5
5
|
-------------
|
6
6
|
|
7
7
|
Please note that this software is still Alpha/Beta quality and is not recommended for production usage.
|
@@ -10,16 +10,6 @@ We have a wide array of boxes available at [Vagrant Cloud](https://vagrantcloud.
|
|
10
10
|
|
11
11
|
This plugin supports the universal [```vmware_ovf``` box format](https://github.com/gosddc/packer-post-processor-vagrant-vmware-ovf/wiki/vmware_ovf-Box-Format), that is 100% portable between [vagrant-vcloud](https://github.com/frapposelli/vagrant-vcloud), [vagrant-vcenter](https://github.com/gosddc/vagrant-vcenter) and [vagrant-vcloudair](https://github.com/gosddc/vagrant-vcloudair), no more double boxes!.
|
12
12
|
|
13
|
-
Changes in [version 0.3.0](../../releases/tag/v0.3.0) include:
|
14
|
-
|
15
|
-
Fixes
|
16
|
-
|
17
|
-
- ```vmware_ovf``` support!
|
18
|
-
- You can now specify network using the ```public_network``` notation of Vagrant.
|
19
|
-
- Plugin is now operating in parallel, MOAR SPEED!
|
20
|
-
- Create the VM folder if it doesn't exist.
|
21
|
-
- Several bug fixes.
|
22
|
-
|
23
13
|
Install
|
24
14
|
-------------
|
25
15
|
|
@@ -22,6 +22,7 @@ module VagrantPlugins
|
|
22
22
|
def self.action_reload
|
23
23
|
Vagrant::Action::Builder.new.tap do |b|
|
24
24
|
b.use ConfigValidate
|
25
|
+
b.use ConnectvCenter
|
25
26
|
b.use Call, IsCreated do |env, b2|
|
26
27
|
unless env[:result]
|
27
28
|
b2.use MessageNotCreated
|
@@ -115,6 +116,7 @@ module VagrantPlugins
|
|
115
116
|
def self.action_provision
|
116
117
|
Vagrant::Action::Builder.new.tap do |b|
|
117
118
|
b.use ConfigValidate
|
119
|
+
b.use ConnectvCenter
|
118
120
|
b.use Call, IsCreated do |env, b2|
|
119
121
|
unless env[:result]
|
120
122
|
b2.use MessageNotCreated
|
@@ -152,6 +154,7 @@ module VagrantPlugins
|
|
152
154
|
def self.action_ssh
|
153
155
|
Vagrant::Action::Builder.new.tap do |b|
|
154
156
|
b.use ConfigValidate
|
157
|
+
b.use ConnectvCenter
|
155
158
|
b.use Call, IsCreated do |env, b2|
|
156
159
|
unless env[:result]
|
157
160
|
b2.use MessageNotCreated
|
@@ -165,6 +168,7 @@ module VagrantPlugins
|
|
165
168
|
def self.action_ssh_run
|
166
169
|
Vagrant::Action::Builder.new.tap do |b|
|
167
170
|
b.use ConfigValidate
|
171
|
+
b.use ConnectvCenter
|
168
172
|
b.use Call, IsCreated do |env, b2|
|
169
173
|
unless env[:result]
|
170
174
|
b2.use MessageNotCreated
|
data/vagrant-vcenter.gemspec
CHANGED
@@ -14,7 +14,6 @@ Gem::Specification.new do |s|
|
|
14
14
|
|
15
15
|
s.add_runtime_dependency 'vagrant-rbvmomi', '~> 1.8.1'
|
16
16
|
s.add_runtime_dependency 'log4r', '~> 1.1.10'
|
17
|
-
s.add_runtime_dependency 'nokogiri', '1.5.5'
|
18
17
|
s.add_runtime_dependency 'pry'
|
19
18
|
|
20
19
|
s.add_development_dependency 'rake'
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: vagrant-vcenter
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.3.
|
4
|
+
version: 0.3.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Fabio Rapposelli
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2014-09-
|
11
|
+
date: 2014-09-17 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: vagrant-rbvmomi
|
@@ -38,20 +38,6 @@ dependencies:
|
|
38
38
|
- - ~>
|
39
39
|
- !ruby/object:Gem::Version
|
40
40
|
version: 1.1.10
|
41
|
-
- !ruby/object:Gem::Dependency
|
42
|
-
name: nokogiri
|
43
|
-
requirement: !ruby/object:Gem::Requirement
|
44
|
-
requirements:
|
45
|
-
- - '='
|
46
|
-
- !ruby/object:Gem::Version
|
47
|
-
version: 1.5.5
|
48
|
-
type: :runtime
|
49
|
-
prerelease: false
|
50
|
-
version_requirements: !ruby/object:Gem::Requirement
|
51
|
-
requirements:
|
52
|
-
- - '='
|
53
|
-
- !ruby/object:Gem::Version
|
54
|
-
version: 1.5.5
|
55
41
|
- !ruby/object:Gem::Dependency
|
56
42
|
name: pry
|
57
43
|
requirement: !ruby/object:Gem::Requirement
|