rzo 0.6.0 → 0.7.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
  SHA1:
3
- metadata.gz: 15792b6ebb03175e86fbaa27e86b953a435446d9
4
- data.tar.gz: 9a38f5592598ac02d1df2cbd2e22fa4bc2100be2
3
+ metadata.gz: 93c6d5a4116cc4e11c108ab19356d1e1ada72d32
4
+ data.tar.gz: 12a9d2d9b7f138925a474170294a05d0481e32f9
5
5
  SHA512:
6
- metadata.gz: ac875be48d0546dc6bca65562b89ec5125f0c42273d5a37da4caa86aa1e0481fc87dd475dd5ef779e270ebaddea1607c676d3affcf90d3672ae691846c790037
7
- data.tar.gz: 35a65334c1fc976f9ff77146c398bb33c75a6c0508b6fb2d8d8874e4089ab8a9bc206f3c520d5691ba14b76ec76fe123892c2e65c3bcb31c7320645acd91e7cc
6
+ metadata.gz: ab032adafed7bca9cb0905718feb61ad77e058d7299635c5a29a013292bcb092d54cf69e8d2774b9f208a178e896f1c2e237fb9937e760d9cd5b8ba1065b2a78
7
+ data.tar.gz: 40680c98c1034fd4c6fd91b1ca8bf680ba81f3489b55ba4ace6f4fde85c0052b16bc5dcd4546b12e04b560e667c28530af1213a59e78e9b59806c361d1e6dcf2
@@ -1,7 +1,14 @@
1
1
  # Change Log
2
2
 
3
- ## [v0.6.0](https://github.com/ghoneycutt/rizzo/tree/v0.6.0)
3
+ ## [v0.7.0](https://github.com/ghoneycutt/rizzo/tree/v0.7.0)
4
4
 
5
+ [Full Changelog](https://github.com/ghoneycutt/rizzo/compare/v0.6.0...v0.7.0)
6
+
7
+ **Merged pull requests:**
8
+
9
+ - Add boot\_timeout VM config option testing [\#28](https://github.com/ghoneycutt/rizzo/pull/28) ([jeffmccune](https://github.com/jeffmccune))
10
+
11
+ ## [v0.6.0](https://github.com/ghoneycutt/rizzo/tree/v0.6.0) (2017-11-02)
5
12
  [Full Changelog](https://github.com/ghoneycutt/rizzo/compare/v0.5.0...v0.6.0)
6
13
 
7
14
  **Closed issues:**
data/README.md CHANGED
@@ -5,7 +5,7 @@ role based focus. It is meant to make working with Vagrant easier and
5
5
  purpose built for layered Puppet control repositories.
6
6
 
7
7
  Rizzo loads a personal configuration file, `~/.rizzo.json` by default, which
8
- lists one or more control repositories. Rizzo then looks for a loads a
8
+ lists one or more control repositories. Rizzo then looks for and loads a
9
9
  `.rizzo.json` configuration file located at the root of the top level control
10
10
  repository. The top level control repository is the first listed in
11
11
  the array of control repositories in the personal configuration file.
@@ -96,7 +96,7 @@ repo.
96
96
 
97
97
  ## `~/.rizzo.json`
98
98
 
99
- The personal configuration file is loaded first from `~/.rizzo.json` by default.
99
+ The personal configuration file is loaded first, from `~/.rizzo.json` by default.
100
100
  The global `--config` option allows the end user to specific a different path to
101
101
  the personal configuration file.
102
102
 
@@ -215,6 +215,7 @@ guest.
215
215
  "bootstrap_script_path": "bootstrap_puppet4.sh",
216
216
  "bootstrap_script_args": "-l -f `hostname -f`",
217
217
  "bootstrap_guest_path": "/tmp/bootstrap",
218
+ "boot_timeout": "500",
218
219
  "box": "centos7.box",
219
220
  "box_url": "https://vagrantboxes/centos7.box",
220
221
  "box_download_checksum": "3764a2c4ae3829aa4b50971e216c3a03736aafb2",
@@ -307,6 +308,11 @@ Path of script to be used to bootstrap a system. This is relative to
307
308
 
308
309
  Any arguments to pass to `bootstrap_script_path`.
309
310
 
311
+ #### boot_timeout
312
+
313
+ Optional parameter that sets the amount of time is seconds that Vagrant waits for
314
+ a node to become available via ssh before it fails. Default is 300 seconds.
315
+
310
316
  #### box
311
317
 
312
318
  Name of the Vagrant box.
@@ -16,6 +16,9 @@ Vagrant.configure(2) do |config|
16
16
  cfg.vm.box_url = <%= nc['box_url'].inspect %>
17
17
  cfg.vm.box_download_checksum = <%= nc['box_download_checksum'].inspect %>
18
18
  cfg.vm.box_download_checksum_type = <%= nc['box_download_checksum_type'].inspect %>
19
+ <%- if nc['boot_timeout'] -%>
20
+ cfg.vm.boot_timeout = <%= nc['boot_timeout'].inspect %>
21
+ <%- end -%>
19
22
  cfg.vm.provider :virtualbox do |vb|
20
23
  vb.customize ['modifyvm', :id, '--memory', <%= nc['memory'].inspect %>]
21
24
  end
@@ -5,7 +5,7 @@ module Rzo
5
5
  # The authoritative location of the rzo version. It should be possible to
6
6
  # `require 'rizzo/version'` and access `Rizzo::VERSION` from third party
7
7
  # libraries and the gemspec. The version is defined as a Semantic Version.
8
- VERSION = '0.6.0'.freeze
8
+ VERSION = '0.7.0'.freeze
9
9
 
10
10
  ##
11
11
  # Return the SemVer string, e.g. `"0.1.0"`
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rzo
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.6.0
4
+ version: 0.7.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Garrett Honeycutt
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: exe
11
11
  cert_chain: []
12
- date: 2017-11-02 00:00:00.000000000 Z
12
+ date: 2017-11-05 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: guard