vagrant-vbguest 0.24.0.beta1 → 0.24.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 +4 -0
- data/Readme.md +25 -1
- data/VERSION +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: 24a98ba4b8c7a2b83a47eabdcf9f61336b88b4873bf3600164d31515ec1b5b2c
|
4
|
+
data.tar.gz: e638b52785a1f5d7718840255a0c2df6f1b63d6e3af95a8edf1e1f6c1f1dce28
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: b7576c6a63d66c27ecdfcb1ea7a13d1ceb3decb8ac82a91063f8d22e93222f1a11d80876f26efe6c7807d2fc5024872810e0aaf033859714c3a264d465d78ce2
|
7
|
+
data.tar.gz: b840b1d1bd9f069f3160089a47159722ff493b577760aa802e4618cb4859b3167ea72a8d91393bf55812cfdf8befdcab8f0b2741fe3f7d1a29df65ff65f62ec2
|
data/CHANGELOG.md
CHANGED
data/Readme.md
CHANGED
@@ -75,10 +75,34 @@ Vagrant.configure("2") do |config|
|
|
75
75
|
end
|
76
76
|
```
|
77
77
|
|
78
|
+
Note that box-specific settings overwrite earlier settings:
|
79
|
+
|
80
|
+
```ruby
|
81
|
+
Vagrant.configure("2") do |config|
|
82
|
+
config.vbguest.installer_options = { foo: 1, bar: 2 }
|
83
|
+
|
84
|
+
config.vm.define "a" do |box_config|
|
85
|
+
# not setting any `installer_options` will inherit the "global" ones
|
86
|
+
# installer_options => { foo: 1, bar: 2 }
|
87
|
+
end
|
88
|
+
|
89
|
+
config.vm.define "b" do |box_config|
|
90
|
+
# setting any `installer_options` will start from scratch
|
91
|
+
box_config.vbguest.installer_options[:zort] = 3 # => { zort: 3 }
|
92
|
+
end
|
93
|
+
|
94
|
+
config.vm.define "c" do |box_config|
|
95
|
+
# however, you can explicitly merge the global config
|
96
|
+
box_config.vbguest.installer_options = config.vbguest.installer_options.merge(zort: 3) # => { foo: 1, bar: 2, zort: 3 }
|
97
|
+
end
|
98
|
+
end
|
99
|
+
```
|
100
|
+
|
101
|
+
|
78
102
|
##### CentOS
|
79
103
|
|
80
104
|
* `:allow_kernel_upgrade` (default: `false`): If `true`, instead of trying to find matching the matching kernel-devel package to the installed kernel version, the kernel will be updated and the (now matching) up-to-date kernel-devel will be installed. __NOTE__: This will trigger a reboot of the box.
|
81
|
-
* `:reboot_timeout` (default: `300`):
|
105
|
+
* `:reboot_timeout` (default: `300`): Maximum number of seconds to wait for the box to reboot after a kernel upgrade.
|
82
106
|
|
83
107
|
#### Global Configuration
|
84
108
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
0.24.0
|
1
|
+
0.24.0
|
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.24.0
|
4
|
+
version: 0.24.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: 2020-04-
|
11
|
+
date: 2020-04-29 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: micromachine
|