vagrant-vcloud 0.3.2 → 0.3.3

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 4bbc6566a5568f44799cac8c73a73bb5c127e8c5
4
- data.tar.gz: 05d23945c5e91ed947cf69ae5c92a7b9a7aca1bd
3
+ metadata.gz: ef546c18f331a8370ec651fb27cf2ee9c5236e0e
4
+ data.tar.gz: 4311eaa38156959c96595d5ab4059d6a73e2c72d
5
5
  SHA512:
6
- metadata.gz: 14299a5e78c4b71505aa785e90e570c50478c68777ed45115280403db365f819d3bdf1dea2656ef1f572624b68ad8b123b81eec84dd2d8f88294e9439fae7e75
7
- data.tar.gz: 1c305fb8f6ca86e0acc976ae4cce5c9d025570c79ef62d047d1f8c50bf905951b42fb675376e761348a1c55674d0ccab49af9e62b4c6d645273db3d3d58afacc
6
+ metadata.gz: b03b9080965a98ba877f0088f5f7cde8ca6eed5fb0667a4b55a7dad2fe9aad5e42dd42d8246bb98b14dce5d3fd3f4cde9edc458ddc0d77545fd97d2ce8f0c9db
7
+ data.tar.gz: 5a3970910c1e84225268dccc994f2bc9bb7abb70ccb29fc09fa992834509bd7e6ee86c230e4188e081330f832b4bb42eef6237e765c22166365da4da2174d018
data/README.md CHANGED
@@ -1,7 +1,7 @@
1
1
  [Vagrant](http://www.vagrantup.com) provider for VMware vCloud Director®
2
2
  =============
3
3
 
4
- [Version 0.3.2](../../releases/tag/v0.3.2) has been released!
4
+ [Version 0.3.3](../../releases/tag/v0.3.3) 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,12 +10,17 @@ Right now a [Precise32](http://vagrant.tsugliani.fr/precise32.box) is available
10
10
 
11
11
  If you're unsure about what are the correct network settings for your Vagrantfile make sure to check out the [Network Deployment Options](https://github.com/frapposelli/vagrant-vcloud/wiki/Network-Deployment-Options) wiki page.
12
12
 
13
+ Features of Version 0.3.3 are:
14
+
15
+ - Critical Bug Fix for ```network_bridge``` users [[#67](../../issues/67)]
16
+
13
17
  Features of Version 0.3.2 are:
14
18
 
15
- - Added support for ```vagrant share``` command [[#31](https://github.com/frapposelli/vagrant-vcloud/issues/31)] Support vagrant share
16
- - Restructured the ```vagrant vcloud-status``` to ```vagrant vcloud status``` for future-proofing [[#53](https://github.com/frapposelli/vagrant-vcloud/issues/53)]
17
- - Added ```vagrant vcloud --redeploy-edge-gw``` to redeploy Edge Gateway [[#54](https://github.com/frapposelli/vagrant-vcloud/issues/54)]
18
- - Several Bug Fixes [[#45](https://github.com/frapposelli/vagrant-vcloud/issues/45)], [[#46](https://github.com/frapposelli/vagrant-vcloud/issues/46)], [[#47](https://github.com/frapposelli/vagrant-vcloud/issues/47)], [[#48](https://github.com/frapposelli/vagrant-vcloud/issues/48)], [[#50](https://github.com/frapposelli/vagrant-vcloud/issues/50)], [[#51](https://github.com/frapposelli/vagrant-vcloud/issues/51)], [[#52](https://github.com/frapposelli/vagrant-vcloud/issues/52)], [[#56](https://github.com/frapposelli/vagrant-vcloud/issues/56)], [[#57](https://github.com/frapposelli/vagrant-vcloud/issues/57)], [[#61](https://github.com/frapposelli/vagrant-vcloud/issues/61)]
19
+ - Added support for ```vagrant share``` command [[#31](../../issues/31)] *experimental*
20
+ - Restructured the ```vagrant vcloud-status``` command to ```vagrant vcloud``` namespace for future-proofing [[#53](../../issues/53)]
21
+ - Added ```vagrant vcloud --redeploy-edge-gw``` to redeploy Edge Gateway [[#54](../../issues/54)]
22
+ - Fixed Issues [[#45](https://github.com/frapposelli/vagrant-vcloud/issues/45), [#46](https://github.com/frapposelli/vagrant-vcloud/issues/46), [#47](https://github.com/frapposelli/vagrant-vcloud/issues/47), [#48](https://github.com/frapposelli/vagrant-vcloud/issues/48), [#51](https://github.com/frapposelli/vagrant-vcloud/issues/51), [#52](https://github.com/frapposelli/vagrant-vcloud/issues/52), [#56](https://github.com/frapposelli/vagrant-vcloud/issues/56), [#57](https://github.com/frapposelli/vagrant-vcloud/issues/57), [#61](https://github.com/frapposelli/vagrant-vcloud/issues/61)]
23
+
19
24
 
20
25
  Features of Version 0.3.1 are:
21
26
 
@@ -21,7 +21,7 @@ module VagrantPlugins
21
21
 
22
22
  # this is a helper to get vapp_edge_ip into cache for later destroy
23
23
  # of edge gateway rules
24
- vapp_edge_ip = cnx.get_vapp_edge_public_ip(vapp_id)
24
+ vapp_edge_ip = cnx.get_vapp_edge_public_ip(vapp_id) if cfg.network_bridge.nil?
25
25
 
26
26
  # Poweroff vApp
27
27
  env[:ui].info('Single VM left in the vApp, Powering off vApp...')
@@ -1,5 +1,5 @@
1
1
  module VagrantPlugins
2
2
  module VCloud
3
- VERSION = '0.3.2'
3
+ VERSION = '0.3.3'
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: vagrant-vcloud
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.3.2
4
+ version: 0.3.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Fabio Rapposelli
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2014-05-20 00:00:00.000000000 Z
12
+ date: 2014-05-21 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: i18n