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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: db28f68539ee8dda59a6f5c90d7af10f12a9d2c4dc7655d1bce7a9fc64a5c034
4
- data.tar.gz: c2c9578e6654cf80c7294de848d4fd1463bc85eaef93407955da9d79b447c7a6
3
+ metadata.gz: 3648ade616bfaddafaf75b6a48be6e8744e34b78ee97aa312c351a199fe1341c
4
+ data.tar.gz: 303b9330920b71330cbf16faf9b8230e0a50046017bfc1c14099c75bf50a8546
5
5
  SHA512:
6
- metadata.gz: 3bb704473740a35f7b698ad0de4d7cc837c564589018670650f1c094d8d72c2b0832421eed554f07e3ad49a581b4d80d96f90a05ef2b472907ae8dc9ca736593
7
- data.tar.gz: 77ccd750474b598241be1d29039ef09175dc66297ad5fdc866e2e47dcd1c3f0330138f0c20fbe220764b5988b3ec187bec94b69d2184b6618b1d28a13709038d
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
@@ -1,3 +1,8 @@
1
+ ## 0.31.0 (2022-11-28)
2
+
3
+ - Use the CentOS installer when detecting Rocky Linux. Thanks @djflux [GH-424]
4
+ - Install build-essential in Debian installer. Thanks @chpatton013 [GH-415]
5
+
1
6
  ## 0.30.0 (2021-06-05)
2
7
 
3
8
  - Fix Ruby 3 compatibility [GH-409]
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::Config.run do |config|
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.30.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.30.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: 2021-06-05 00:00:00.000000000 Z
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.2.15
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