kitchen-vagrant 1.4.0 → 1.5.0
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/lib/kitchen/driver/vagrant.rb +2 -2
- data/lib/kitchen/driver/vagrant_version.rb +1 -1
- metadata +3 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 839cf2c46b31628eba46d5e379eb40d42215f68667320df8af7571cd4b544aab
|
|
4
|
+
data.tar.gz: b1d80326940aeb6e119f8b0f4249db289032c05be5958dce7f26d9c1fa6a59ae
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: ed91d2530854f088194421cb6d79d3062fd93f2b494563150a9ab467b8c1f7b9ff1a20cd00ef1563d1cb10e66dea5ddee8bd08461a3b9d68cf4f310cb7d63a9e
|
|
7
|
+
data.tar.gz: 562d85090622a80e6ee471ec39b92ae42575fb632bdbed24b25a7262e821f5d9e5253df1eae571d8a618602f08ff99d39d3a3216b14cfd507a51fdf582a9e361
|
|
@@ -237,7 +237,7 @@ module Kitchen
|
|
|
237
237
|
# box
|
|
238
238
|
# @api private
|
|
239
239
|
def bento_box?(name)
|
|
240
|
-
name =~ /^(centos|debian|fedora|freebsd|opensuse|ubuntu|oracle|hardenedbsd)-/
|
|
240
|
+
name =~ /^(centos|debian|fedora|freebsd|opensuse|ubuntu|oracle|hardenedbsd|amazonlinux)-/
|
|
241
241
|
end
|
|
242
242
|
|
|
243
243
|
# Returns whether or not the we expect the box to work with shared folders
|
|
@@ -247,7 +247,7 @@ module Kitchen
|
|
|
247
247
|
# @api private
|
|
248
248
|
def safe_share?(box)
|
|
249
249
|
return false if config[:provider] =~ /(hyperv|libvirt)/
|
|
250
|
-
box =~ /^bento\/(centos|debian|fedora|opensuse|ubuntu|oracle)-/
|
|
250
|
+
box =~ /^bento\/(centos|debian|fedora|opensuse|ubuntu|oracle|amazonlinux)-/
|
|
251
251
|
end
|
|
252
252
|
|
|
253
253
|
# Return true if we found the criteria to enable the cache_directory
|
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.
|
|
4
|
+
version: 1.5.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Fletcher Nichol
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2019-
|
|
11
|
+
date: 2019-03-14 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: test-kitchen
|
|
@@ -126,7 +126,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
126
126
|
- !ruby/object:Gem::Version
|
|
127
127
|
version: '0'
|
|
128
128
|
requirements: []
|
|
129
|
-
rubygems_version: 3.0.
|
|
129
|
+
rubygems_version: 3.0.3
|
|
130
130
|
signing_key:
|
|
131
131
|
specification_version: 4
|
|
132
132
|
summary: Kitchen::Driver::Vagrant - A Vagrant Driver for Test Kitchen.
|