rzo 0.6.0 → 0.7.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 +8 -1
- data/README.md +8 -2
- data/lib/rzo/app/templates/Vagrantfile.erb +3 -0
- data/lib/rzo/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 93c6d5a4116cc4e11c108ab19356d1e1ada72d32
|
|
4
|
+
data.tar.gz: 12a9d2d9b7f138925a474170294a05d0481e32f9
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: ab032adafed7bca9cb0905718feb61ad77e058d7299635c5a29a013292bcb092d54cf69e8d2774b9f208a178e896f1c2e237fb9937e760d9cd5b8ba1065b2a78
|
|
7
|
+
data.tar.gz: 40680c98c1034fd4c6fd91b1ca8bf680ba81f3489b55ba4ace6f4fde85c0052b16bc5dcd4546b12e04b560e667c28530af1213a59e78e9b59806c361d1e6dcf2
|
data/CHANGELOG.md
CHANGED
|
@@ -1,7 +1,14 @@
|
|
|
1
1
|
# Change Log
|
|
2
2
|
|
|
3
|
-
## [v0.
|
|
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
|
|
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
|
data/lib/rzo/version.rb
CHANGED
|
@@ -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.
|
|
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.
|
|
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-
|
|
12
|
+
date: 2017-11-05 00:00:00.000000000 Z
|
|
13
13
|
dependencies:
|
|
14
14
|
- !ruby/object:Gem::Dependency
|
|
15
15
|
name: guard
|