vagrant-vbguest 0.30.0 → 0.31.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.editorconfig +22 -0
- data/CHANGELOG.md +5 -0
- data/Readme.md +1 -1
- data/VERSION +1 -1
- data/lib/vagrant-vbguest/installers/debian.rb +2 -0
- data/lib/vagrant-vbguest/installers/redhat.rb +1 -1
- metadata +4 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 3648ade616bfaddafaf75b6a48be6e8744e34b78ee97aa312c351a199fe1341c
|
4
|
+
data.tar.gz: 303b9330920b71330cbf16faf9b8230e0a50046017bfc1c14099c75bf50a8546
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: ae76c53cfee6318338cb2ee6c51759855d9891a6b645baff5262e7632a747c1a92c29f6b87b3e96a8cfa1f38484e8cc8451d28060cdc06803487c1d4eb210597
|
7
|
+
data.tar.gz: 98a67568739b232630c73ec73cdbea72201687cb16e5cc746bf63755d2ba95b2ccc1b894c3b32926d0374ff8bd355849d3aadfd41adace9ea04821efb39ae29d
|
data/.editorconfig
ADDED
@@ -0,0 +1,22 @@
|
|
1
|
+
root = true
|
2
|
+
|
3
|
+
[*]
|
4
|
+
end_of_line = lf
|
5
|
+
charset = utf-8
|
6
|
+
|
7
|
+
[{*.rb,Gemfile,Vagrantfile}]
|
8
|
+
indent_style = space
|
9
|
+
indent_size = 2
|
10
|
+
trim_trailing_whitespace = true
|
11
|
+
insert_final_newline = true
|
12
|
+
|
13
|
+
[*.md]
|
14
|
+
trim_trailing_whitespace = false
|
15
|
+
indent_style = space
|
16
|
+
indent_size = 2
|
17
|
+
|
18
|
+
[*.{yml,yaml}]
|
19
|
+
indent_size = 2
|
20
|
+
|
21
|
+
[VERSION]
|
22
|
+
insert_final_newline = true
|
data/CHANGELOG.md
CHANGED
data/Readme.md
CHANGED
@@ -24,7 +24,7 @@ If you're lucky, *vagrant-vbguest* does not require any configuration.
|
|
24
24
|
However, here is an example of `Vagrantfile`:
|
25
25
|
|
26
26
|
```ruby
|
27
|
-
Vagrant
|
27
|
+
Vagrant.configure("2") do |config|
|
28
28
|
# we will try to autodetect this path.
|
29
29
|
# However, if we cannot or you have a special one you may pass it like:
|
30
30
|
# config.vbguest.iso_path = "#{ENV['HOME']}/Downloads/VBoxGuestAdditions.iso"
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
0.
|
1
|
+
0.31.0
|
@@ -34,6 +34,8 @@ module VagrantVbguest
|
|
34
34
|
else
|
35
35
|
['linux-headers-`uname -r`']
|
36
36
|
end
|
37
|
+
# include build-essential so we can compile the kernel modules.
|
38
|
+
packages << 'build-essential'
|
37
39
|
# some Debian system (lenny) don't come with a dkms package so we need to skip that.
|
38
40
|
# apt-cache search will exit with 0 even if nothing was found, so we need to grep.
|
39
41
|
packages << 'dkms' if communicate.test('apt-cache search --names-only \'^dkms$\' | grep dkms')
|
@@ -5,7 +5,7 @@ module VagrantVbguest
|
|
5
5
|
# fortunately they're probably both similar enough to RHEL
|
6
6
|
# (RedHat Enterprise Linux) not to matter.
|
7
7
|
def self.match?(vm)
|
8
|
-
/\A(redhat|centos|amazon)\d*\Z/ =~ self.distro(vm)
|
8
|
+
/\A(redhat|centos|amazon|rocky)\d*\Z/ =~ self.distro(vm)
|
9
9
|
end
|
10
10
|
|
11
11
|
# Install missing deps and yield up to regular linux installation
|
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.31.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:
|
11
|
+
date: 2022-11-28 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: micromachine
|
@@ -66,6 +66,7 @@ executables: []
|
|
66
66
|
extensions: []
|
67
67
|
extra_rdoc_files: []
|
68
68
|
files:
|
69
|
+
- ".editorconfig"
|
69
70
|
- ".gitignore"
|
70
71
|
- CHANGELOG.md
|
71
72
|
- CODE_OF_CONDUCT.md
|
@@ -128,7 +129,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
128
129
|
- !ruby/object:Gem::Version
|
129
130
|
version: 1.3.6
|
130
131
|
requirements: []
|
131
|
-
rubygems_version: 3.
|
132
|
+
rubygems_version: 3.1.6
|
132
133
|
signing_key:
|
133
134
|
specification_version: 4
|
134
135
|
summary: A Vagrant plugin to install the VirtualBoxAdditions into the guest VM
|