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.
Files changed (5) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG.md +4 -0
  3. data/Readme.md +25 -1
  4. data/VERSION +1 -1
  5. metadata +2 -2
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: ee59eb428fab8a82265073af563afac3cf1eb44ef7c39d7b295006f296541b28
4
- data.tar.gz: 7cbf7aebdef759adaabd66ad72db101cfe777150348809188c6dfa8021a20163
3
+ metadata.gz: 24a98ba4b8c7a2b83a47eabdcf9f61336b88b4873bf3600164d31515ec1b5b2c
4
+ data.tar.gz: e638b52785a1f5d7718840255a0c2df6f1b63d6e3af95a8edf1e1f6c1f1dce28
5
5
  SHA512:
6
- metadata.gz: 25a9d0bdd3d5f8abe459aae553b2074f3222550a14a82df5e774274d5be67c0c3ac16831064e9f1f1a8e1ac86deab89d38944cecd3aebf56fa4ca8c600c54e30
7
- data.tar.gz: 28edf44b31602f72df2c2458a51b9f414561af4ea06b1674bd02f2793044b9294512135be8935b7b6461c365633b185e0f9901be6996060b8273faba394a4fa1
6
+ metadata.gz: b7576c6a63d66c27ecdfcb1ea7a13d1ceb3decb8ac82a91063f8d22e93222f1a11d80876f26efe6c7807d2fc5024872810e0aaf033859714c3a264d465d78ce2
7
+ data.tar.gz: b840b1d1bd9f069f3160089a47159722ff493b577760aa802e4618cb4859b3167ea72a8d91393bf55812cfdf8befdcab8f0b2741fe3f7d1a29df65ff65f62ec2
data/CHANGELOG.md CHANGED
@@ -1,3 +1,7 @@
1
+ ## 0.24.0 (2020-04-29)
2
+
3
+ No code changes to 0.24.0.beta1
4
+
1
5
  ## 0.24.0.beta1 (2020-04-28)
2
6
 
3
7
  - Add a new configuration `installer_options`, as an optional way to pass options to Installer classes.
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`): Number of seconds to wait for the box to reboot after a kernel upgrade.
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.beta1
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.beta1
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-28 00:00:00.000000000 Z
11
+ date: 2020-04-29 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: micromachine