fog-vsphere 0.6.3 → 0.6.4

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: 5695c11ae716df2037c0d47f2baa7cb98c5ef620
4
- data.tar.gz: c530a589499f51aad79df45d8ec722ac990bff7e
3
+ metadata.gz: 8f3b2036279ffd7d1d8c5e24bb8de343bb5be477
4
+ data.tar.gz: 2332f02bf2a76e03b018d7fa246fbffce054a67f
5
5
  SHA512:
6
- metadata.gz: a4824a270319a970c19bb3888f503a14be30c83c8eaa822e0f9406f6722207555bc26f9619a10b03e06dd5c10ab48ab1d82d8961b90c4969cb26681dfed93404
7
- data.tar.gz: ac5385e81e89ad1734ad73aa5c6d7e2bc9daf828e32efcfd55298d9dc2bb4f0c2535804f41ddb06bfae42a030472ae68f1409f69ca121676161dad8e15940422
6
+ metadata.gz: 6e1a2519a8d7d6c96cccfd1cb572290fbbec3e7d8da0128eb166170842cca5b53c25dc6335ba1ad26a9cca0310782482be1613efc6b66b0636658da88f2710ea
7
+ data.tar.gz: 37e433dfd46419ade5d2defac43ab2607520c8108b4edbd2f73aa6ba940e9901d1dde03ff1e68ac7467b601a55a9d45cd945915ecdf6f0696837b2316f99b939
@@ -1,3 +1,11 @@
1
+ ## v0.6.4 4/20/2016
2
+
3
+ * Allow 'extraConfig' options when cloning VMs
4
+
5
+ ## v0.6.3 3/7/2016
6
+
7
+ * Fix 'tools_installed?' modification
8
+
1
9
  ## v0.6.2 3/7/2016
2
10
 
3
11
  * Return tools_installed? correctly
@@ -24,6 +24,7 @@
24
24
  * Justin Pratt <jpratt@liveramp.com>
25
25
  * Karan Misra <karan@erodov.com>
26
26
  * Kelsey Hightower <kelsey@puppetlabs.com>
27
+ * Kevin Burk <xavierholt@gmail.com>
27
28
  * Kevin Menard <kevin@nirvdrum.com>
28
29
  * Kevin Menard <nirvdrum@gmail.com>
29
30
  * Lance Ivy <lance@cainlevy.net>
@@ -162,6 +162,7 @@ module Fog
162
162
  virtual_machine_config_spec.cpuHotAddEnabled = options['cpuHotAddEnabled'] if ( options.key?('cpuHotAddEnabled') )
163
163
  virtual_machine_config_spec.memoryHotAddEnabled = options['memoryHotAddEnabled'] if ( options.key?('memoryHotAddEnabled') )
164
164
  virtual_machine_config_spec.firmware = options['firmware'] if ( options.key?('firmware') )
165
+ virtual_machine_config_spec.extraConfig = extra_config(extra_config: options['extraConfig']) if ( options.key?('extraConfig') )
165
166
  # Options['customization_spec']
166
167
  # OLD Options still supported
167
168
  # * domain <~String> - *REQUIRED* - Sets the server's domain for customization
@@ -1,5 +1,5 @@
1
1
  module Fog
2
2
  module Vsphere
3
- VERSION = '0.6.3'
3
+ VERSION = '0.6.4'
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: fog-vsphere
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.6.3
4
+ version: 0.6.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - J.R. Garcia
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2016-03-07 00:00:00.000000000 Z
11
+ date: 2016-04-20 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: fog-core