beaker-puppet 1.2.0 → 1.3.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/lib/beaker-puppet/helpers/puppet_helpers.rb +3 -0
- data/lib/beaker-puppet/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 45a8dfa4bb241b997e60986c8896160470a637d8
|
|
4
|
+
data.tar.gz: 17f813f9d4d3fcf09a61d4565623b8fd2e08f958
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 61950830eb26571e505889c2d993abdc6394b4e883e5c231acf644b9dba52c6e594bc01b58cfe13605f293fdf1f66bf4a3a6c3c28ffc7ffffc35275c8e55007c
|
|
7
|
+
data.tar.gz: 8596699dbe70b8144a11978d461587fbb69dec600e0f52adff7d4a6f9931def1cb5cb4efae77bf0baa34366003cf40cce9de82b182371661e89e581277fcc40d
|
|
@@ -434,6 +434,8 @@ module Beaker
|
|
|
434
434
|
# path separator character. (The POSIX path separator
|
|
435
435
|
# is ‘:’, and the Windows path separator is ‘;’.)
|
|
436
436
|
#
|
|
437
|
+
# @option opts [String] :hiera_config The path of the hiera.yaml configuration.
|
|
438
|
+
#
|
|
437
439
|
# @option opts [String] :debug (false) If this option exists,
|
|
438
440
|
# the "--debug" command line parameter
|
|
439
441
|
# will be passed to the 'puppet apply' command.
|
|
@@ -461,6 +463,7 @@ module Beaker
|
|
|
461
463
|
puppet_apply_opts[:trace] = nil if opts[:trace]
|
|
462
464
|
puppet_apply_opts[:parser] = 'future' if opts[:future_parser]
|
|
463
465
|
puppet_apply_opts[:modulepath] = opts[:modulepath] if opts[:modulepath]
|
|
466
|
+
puppet_apply_opts[:hiera_config] = opts[:hiera_config] if opts[:hiera_config]
|
|
464
467
|
puppet_apply_opts[:noop] = nil if opts[:noop]
|
|
465
468
|
|
|
466
469
|
# From puppet help:
|