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 +4 -4
- data/CHANGELOG.md +4 -0
- data/Readme.md +1 -1
- data/lib/vagrant-vbguest/installers/redhat.rb +1 -1
- data/lib/vagrant-vbguest/version.rb +1 -1
- metadata +3 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 5fd766b875cf2bb9c92e850a046011649eec465d
|
|
4
|
+
data.tar.gz: 4bdc188ae83862280e34e76462c729b1cac1ed4a
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
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
|
|
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
|
|
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.
|
|
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-
|
|
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.
|
|
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
|