kitchen-vagrant 1.3.0 → 1.3.1

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: 29f29923c8d4eeae2f0e8b01bf0fd097548bcfa8
4
- data.tar.gz: 9d86529013c13dee68293b5f4e363bdca635f879
3
+ metadata.gz: 13a94d4b20e36a904afba56b4877879606df7f12
4
+ data.tar.gz: 67e2b34a34db6a63aaf70fb53febdddedcf1dd74
5
5
  SHA512:
6
- metadata.gz: 20aeaa321f602d5a93e2923ac07bea6381d58fc1417cae5d9531301ac9b2637bae06054b6815eb3a64df3893646696255a303183ccb146a878e3dbe06947c1a0
7
- data.tar.gz: d9c49dbd3b95086bad52de43eb322579ed8d13951094bdb487f20786e66a80fb1ad8886c6e3d3662bc657787c1533cd173accda25d410067458d427a23672e62
6
+ metadata.gz: 7efbac16a93a962998fb038f17ee2612bcdd19a542e88de8be4f4cc08cc44db0902636b735727e73358b8bbf85d2ddded00373be2a2f7bfe75dbb442621d1a31
7
+ data.tar.gz: 2512b926ac68bac3311ef5358f02d04dcb0358eb459ea2aa44de3b62b3793e5161ee4a5b2bc739ff547258597df12c831d18d9b1f873dce3a4b96ff50d43cab2
@@ -1,5 +1,12 @@
1
1
  # Change Log
2
2
 
3
+ ## [v1.3.1](https://github.com/test-kitchen/kitchen-vagrant/tree/v1.3.1) (2018-02-20)
4
+ [Full Changelog](https://github.com/test-kitchen/kitchen-vagrant/compare/v1.3.0...v1.3.1)
5
+
6
+ **Merged pull requests:**
7
+
8
+ - Adding support for HyperV Differencing\_disk [\#342](https://github.com/test-kitchen/kitchen-vagrant/pull/342) ([cocazoulou](https://github.com/cocazoulou))
9
+
3
10
  ## [1.3.0](https://github.com/test-kitchen/kitchen-vagrant/tree/1.3.0) (2018-01-17)
4
11
  [Full Changelog](https://github.com/test-kitchen/kitchen-vagrant/compare/v1.2.2...1.3.0)
5
12
 
data/README.md CHANGED
@@ -346,7 +346,7 @@ For more info about GUI vs. Headless mode please see [vagrant configuration docs
346
346
 
347
347
  ### <a name="config-linked_clone"></a> linked_clone
348
348
 
349
- Allows to use linked clones to import boxes for VirtualBox, VMware and Parallels Desktop. Default is **nil**.
349
+ Allows to use linked clones to import boxes for VirtualBox, VMware, Parallels Desktop and Hyper-V. Default is **nil**.
350
350
 
351
351
  ```yaml
352
352
  ---
@@ -356,8 +356,9 @@ platforms:
356
356
  linked_clone: true
357
357
  ```
358
358
 
359
- will generate a Vagrantfile configuration similar to:
360
359
 
360
+ will generate a Vagrantfile configuration similar to:
361
+ #### VirtualBox, VMware and Parallels Desktop
361
362
  ```ruby
362
363
  Vagrant.configure("2") do |config|
363
364
  # ...
@@ -367,6 +368,16 @@ Vagrant.configure("2") do |config|
367
368
  end
368
369
  end
369
370
  ```
371
+ #### Hyper-V
372
+ ```ruby
373
+ Vagrant.configure("2") do |config|
374
+ # ...
375
+
376
+ c.vm.provider :hyperv do |p|
377
+ p.differencing_disk = true
378
+ end
379
+ end
380
+ ```
370
381
 
371
382
  ### <a name="config-network"></a> network
372
383
 
@@ -21,6 +21,6 @@ module Kitchen
21
21
  module Driver
22
22
 
23
23
  # Version string for Vagrant Kitchen driver
24
- VAGRANT_VERSION = "1.3.0"
24
+ VAGRANT_VERSION = "1.3.1"
25
25
  end
26
26
  end
@@ -101,6 +101,10 @@ Vagrant.configure("2") do |c|
101
101
  when "virtualbox", /^vmware_/, "parallels"
102
102
  if config[:linked_clone] == true || config[:linked_clone] == false %>
103
103
  p.linked_clone = <%= config[:linked_clone] %>
104
+ <% end
105
+ when "hyperv"
106
+ if config[:linked_clone] == true || config[:linked_clone] == false %>
107
+ p.differencing_disk = <%= config[:linked_clone] %>
104
108
  <% end
105
109
  end %>
106
110
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: kitchen-vagrant
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.3.0
4
+ version: 1.3.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Fletcher Nichol
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2018-01-19 00:00:00.000000000 Z
11
+ date: 2018-02-20 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: test-kitchen