vagrant-vbguest 0.15.1 → 0.15.2

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: c37881d21a287efc3cf0a6807007018dd71592a8
4
- data.tar.gz: '0882d9cbc9259036688f32a9398c4fca9774bf6f'
3
+ metadata.gz: 5fd766b875cf2bb9c92e850a046011649eec465d
4
+ data.tar.gz: 4bdc188ae83862280e34e76462c729b1cac1ed4a
5
5
  SHA512:
6
- metadata.gz: 30a614fd427d0810274dfe109db01c2d0451d484d3da6a79f2f0eb06ca913d4b3e10cc1f194e45dac971038c7b2fafcad2aa859a94c54000eed057564e6c5b27
7
- data.tar.gz: d27af0ae78ddee7723c4bbca441d4723429a5525372a470a6dd75aebb90505290880803d3b2a07452722de2353ef95cd0bcab233b73b7317884b32afa2a1c9d0
6
+ metadata.gz: deb10ef9bbc91075af6b2518543fd091d41c2973f25386fdaa1ab15f88f31c5e91c73592525bd2b589d888668e00af57e4b40c8552d81ecb5e9a89c87ca4e1d9
7
+ data.tar.gz: 63227c7e469f706b242c7ea4d91b66ba6b82d9e2d1f1468dbda5a7582dbe1372c88feea70e5c92802c29b0c31fb1c3e2bb6cfe243e40765e2da5693abbdb6c23
data/CHANGELOG.md CHANGED
@@ -1,3 +1,7 @@
1
+ ## 0.15.02 (2018-05-22)
2
+
3
+ - On RedHad based guest, the installer will now try to install the 'kernel-devel' package additionally to 'kernel-devel-`uname -r`' Thanks @ghoneycutt [GH-299]
4
+
1
5
  ## 0.15.1 (2018-01-08)
2
6
 
3
7
  - Fix disabling `yes |` via options. Thanks @davidjb [GH-280]
data/Readme.md CHANGED
@@ -275,7 +275,7 @@ end
275
275
 
276
276
  If you find yourself copying the same installer in each of your vagrant project, it might be a good idea to make it a plugin itself. Like vagrant-vbguest itself, installers can be [distributed as ruby gems](http://guides.rubygems.org/publishing/)
277
277
 
278
- This poroject contains a [sample installer gem](https://github.com/dotless-de/vagrant-vbguest/tree/master/testdrive/vagrant-vbguest-unikorn) which might serve as an boilerplate.
278
+ This project contains a [sample installer gem](https://github.com/dotless-de/vagrant-vbguest/tree/master/testdrive/vagrant-vbguest-unikorn) which might serve as an boilerplate.
279
279
 
280
280
  ## Known Issues
281
281
 
@@ -21,7 +21,7 @@ module VagrantVbguest
21
21
 
22
22
  def dependencies
23
23
  packages = [
24
- 'kernel-devel-`uname -r`', 'gcc', 'binutils', 'make', 'perl', 'bzip2'
24
+ 'kernel-devel', 'kernel-devel-`uname -r`', 'gcc', 'binutils', 'make', 'perl', 'bzip2'
25
25
  ]
26
26
  packages.join ' '
27
27
  end
@@ -1,3 +1,3 @@
1
1
  module VagrantVbguest
2
- VERSION = "0.15.1"
2
+ VERSION = "0.15.2"
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: vagrant-vbguest
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.15.1
4
+ version: 0.15.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Robert Schulze
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2018-01-08 00:00:00.000000000 Z
11
+ date: 2018-05-22 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: micromachine
@@ -131,7 +131,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
131
131
  version: 1.3.6
132
132
  requirements: []
133
133
  rubyforge_project:
134
- rubygems_version: 2.6.13
134
+ rubygems_version: 2.6.14
135
135
  signing_key:
136
136
  specification_version: 4
137
137
  summary: A Vagrant plugin to install the VirtualBoxAdditions into the guest VM