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 +4 -4
- data/README.md +10 -5
- data/lib/vagrant-vcloud/action/power_off_vapp.rb +1 -1
- data/lib/vagrant-vcloud/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: ef546c18f331a8370ec651fb27cf2ee9c5236e0e
|
4
|
+
data.tar.gz: 4311eaa38156959c96595d5ab4059d6a73e2c72d
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
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.
|
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](
|
16
|
-
- Restructured the ```vagrant vcloud-status``` to ```vagrant vcloud
|
17
|
-
- Added ```vagrant vcloud --redeploy-edge-gw``` to redeploy Edge Gateway [[#54](
|
18
|
-
-
|
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...')
|
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.
|
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-
|
12
|
+
date: 2014-05-21 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: i18n
|