vagrant-vbguest 0.20.0 → 0.21.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/CHANGELOG.md +5 -0
- data/Gemfile +5 -1
- data/Readme.md +2 -2
- data/VERSION +1 -1
- data/lib/vagrant-vbguest/hosts/virtualbox.rb +1 -1
- data/lib/vagrant-vbguest/installers/linux.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: f213012e6f9e581787544f8a4b05dac855cc79a055c3d04fb488682ce4a97a17
|
|
4
|
+
data.tar.gz: cc84ba488d581b7078b5e244239ae75d912dcde94837ff7c5d3b4138c833544f
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 73d8c5ed68a32b7561d6dde9052b2a2adc22e4ef924e680eb64ee56e50c5d60207646710e7f0408f53092454f8bad90eb563cafb05b04b12b280959fe06f0ecc
|
|
7
|
+
data.tar.gz: 1389e1c8951c6fcc4b5447a806f0fd5ce0a5c2b335f8018ae5f2028ac46a2fcfde340a72678d9c9b1aa0034cde59ce13273bba6df3d0801b02eb5eeb9087e17b
|
data/CHANGELOG.md
CHANGED
data/Gemfile
CHANGED
|
@@ -4,7 +4,11 @@ group :development do
|
|
|
4
4
|
# We depend on Vagrant for development, but we don't add it as a
|
|
5
5
|
# gem dependency because we expect to be installed within the
|
|
6
6
|
# Vagrant environment itself using `vagrant plugin`.
|
|
7
|
-
|
|
7
|
+
if ENV["VAGRANT_VERSION"]
|
|
8
|
+
gem "vagrant", :git => "https://github.com/hashicorp/vagrant.git", tag: "v#{ENV["VAGRANT_VERSION"]}"
|
|
9
|
+
else
|
|
10
|
+
gem "vagrant", :git => "https://github.com/hashicorp/vagrant.git"
|
|
11
|
+
end
|
|
8
12
|
gem "rake", "~> 10.0"
|
|
9
13
|
end
|
|
10
14
|
|
data/Readme.md
CHANGED
|
@@ -47,7 +47,7 @@ end
|
|
|
47
47
|
* `iso_path` : The full path or URL to the VBoxGuestAdditions.iso file. <br/>
|
|
48
48
|
The `iso_path` may contain the optional placeholder `%{version}` replaced with detected VirtualBox version (e.g. `4.1.8`).
|
|
49
49
|
Relative paths are tricky, try to use an absolute path where possible. If not, the path is relative to the current working directory, that is where the `vagrant` command is issued. You can make sure to always be relative to the `Vagrantfile` with a little bit of ruby: `File.expand_path("../relative/path/to/VBoxGuestAdditions.iso", __FILE__)`
|
|
50
|
-
The default URI for the actual iso download is: `
|
|
50
|
+
The default URI for the actual iso download is: `https://download.virtualbox.org/virtualbox/%{version}/VBoxGuestAdditions_%{version}.iso`<br/>
|
|
51
51
|
vbguest will try to autodetect the best option for your system. WTF? see below.
|
|
52
52
|
* `iso_upload_path` (String, default: `/tmp`): A writeable directory where to put the VBoxGuestAdditions.iso file on the guest system.
|
|
53
53
|
* `iso_mount_point` (String, default: `/mnt`): Where to mount the VBoxGuestAdditions.iso file on the guest system.
|
|
@@ -265,7 +265,7 @@ This project contains a [sample installer gem](https://github.com/dotless-de/vag
|
|
|
265
265
|
|
|
266
266
|
Bug reports and pull requests are welcome on GitHub at https://github.com/dotless-de/vagrant-vbguest.
|
|
267
267
|
|
|
268
|
-
For the forseeable future, no more pull requests will be accepted which add new guest support/installers. Please build your gem as a plugin to vbguest (see "Very Advanced Usage" section of this file). In fact, please open a pull request to remove support for a guest system if feel confident that your
|
|
268
|
+
For the forseeable future, no more pull requests will be accepted which add new guest support/installers. Please build your gem as a plugin to vbguest (see "Very Advanced Usage" section of this file). In fact, please open a pull request to remove support for a guest system if feel confident that your solution is better.
|
|
269
269
|
|
|
270
270
|
|
|
271
271
|
## Known Issues
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
0.
|
|
1
|
+
0.21.0
|
|
@@ -36,7 +36,7 @@ module VagrantVbguest
|
|
|
36
36
|
#
|
|
37
37
|
# @return [String] A URI template containing the versions placeholder.
|
|
38
38
|
def web_path
|
|
39
|
-
"
|
|
39
|
+
"https://download.virtualbox.org/virtualbox/%{version}/VBoxGuestAdditions_%{version}.iso"
|
|
40
40
|
end
|
|
41
41
|
|
|
42
42
|
|
|
@@ -78,7 +78,7 @@ module VagrantVbguest
|
|
|
78
78
|
opts = {
|
|
79
79
|
:sudo => true
|
|
80
80
|
}.merge(opts || {})
|
|
81
|
-
communicate.test('grep -qE "^vboxguest\s.+\s\([^\s]*O[^\s]*\)$" /proc/modules &&
|
|
81
|
+
communicate.test('grep -qE "^vboxguest\s.+\s\([^\s]*O[^\s]*\)$" /proc/modules && ls /lib/modules/`uname -r`/misc/vboxsf.ko*', opts, &block)
|
|
82
82
|
end
|
|
83
83
|
|
|
84
84
|
# This overrides {VagrantVbguest::Installers::Base#guest_version}
|
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.
|
|
4
|
+
version: 0.21.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Robert Schulze
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: exe
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2019-
|
|
11
|
+
date: 2019-11-11 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: micromachine
|