vagrant-vcloud 0.3.0 → 0.3.1
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.
- checksums.yaml +4 -4
- data/README.md +7 -3
- data/lib/vagrant-vcloud/driver/version_5_1.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: 377aff5a6fcd7aa53aeb8a1c07c6ea0814a768ee
|
|
4
|
+
data.tar.gz: 663ad5f16d5dc1bd1a66bc91b9779c406e604b07
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 41d434f6cd5704e662edd1ac2f68d75d883fb7486559018e0a55b2a1e64ddd7dfc1fcbaf9fc921e78dfb7186eb082859eb17a1112b6170968c56b438733925fc
|
|
7
|
+
data.tar.gz: 142935eac15c311473c27eb829358afe4340551e2c4e8cd4a7ca4ea2d47bf82590716c0fa43dbb1e447fba6ef9058b3f969046a0ab0a6a905f4c348255743517
|
data/README.md
CHANGED
|
@@ -1,16 +1,20 @@
|
|
|
1
1
|
[Vagrant](http://www.vagrantup.com) provider for VMware vCloud Director®
|
|
2
2
|
=============
|
|
3
3
|
|
|
4
|
-
[Version 0.3.
|
|
4
|
+
[Version 0.3.1](https://github.com/frapposelli/vagrant-vcloud/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.
|
|
8
8
|
|
|
9
9
|
Right now a [Precise32](http://vagrant.tsugliani.fr/precise32.box) is available for use, or you can roll your own as you please, make sure to install VMware tools in it.
|
|
10
10
|
|
|
11
|
+
Features of Version 0.3.1 are:
|
|
12
|
+
|
|
13
|
+
- Small hotfix to include "preRunning" condition when using vCloud Director 5.5 [Issue #44]
|
|
14
|
+
|
|
11
15
|
Features of Version 0.3.0 are:
|
|
12
16
|
|
|
13
|
-
A substantial release, major kudos to Stefan Scherer who submitted some substantious PRs!
|
|
17
|
+
A substantial release, major kudos to [Stefan Scherer](https://github.com/StefanScherer) who submitted some substantious PRs!
|
|
14
18
|
|
|
15
19
|
- Added support for port mapping at the Organization Edge Gateway.
|
|
16
20
|
- Added a new configuration options ```vapp_prefix``` to change vApp prefix (defaults to Vagrant).
|
|
@@ -42,7 +46,7 @@ Features of Version 0.2.0 are:
|
|
|
42
46
|
|
|
43
47
|
Features of Version 0.1.2 are:
|
|
44
48
|
|
|
45
|
-
- Fix ssh_key array for the sync_folder [ISSUE #30 thanks @JMG-OICR]
|
|
49
|
+
- Fix ssh_key array for the sync_folder [ISSUE #30 thanks [@JMG-OICR](https://github.com/JMG-OICR)]
|
|
46
50
|
|
|
47
51
|
Features of Version 0.1.1 are:
|
|
48
52
|
|
|
@@ -1700,7 +1700,7 @@ module VagrantPlugins
|
|
|
1700
1700
|
@logger.debug(
|
|
1701
1701
|
"Evaluating taskid: #{task_id}, current status #{task[:status]}"
|
|
1702
1702
|
)
|
|
1703
|
-
break if task[:status]
|
|
1703
|
+
break if !['queued','preRunning','running'].include?(task[:status])
|
|
1704
1704
|
sleep 5
|
|
1705
1705
|
end
|
|
1706
1706
|
|
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.1
|
|
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-
|
|
12
|
+
date: 2014-05-06 00:00:00.000000000 Z
|
|
13
13
|
dependencies:
|
|
14
14
|
- !ruby/object:Gem::Dependency
|
|
15
15
|
name: i18n
|