kitchen-puppet 1.47.1 → 1.47.2
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/kitchen-puppet/version.rb +1 -1
- data/lib/kitchen/provisioner/puppet_apply.rb +6 -0
- data/provisioner_options.md +1 -0
- 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: 4c3e4ff489eab900c9165f7404833defb112829c
|
|
4
|
+
data.tar.gz: b077a8638d92ab3f846fafa6f20b9f0b35d5540d
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 4cd3c79075fbb5d37e8dfa37ccd1a7ee48b1b8335a0b686ba64b19a7939e949dff4e2172652a050933f99f1cebd4e2e00beaf303c42ee41a501e2edf28ff7851
|
|
7
|
+
data.tar.gz: d1f640fb5959de7d703257bd6902b79b1d65cb8becf5b86dbfe2685e81395a1ed57f5832c181e897546aa599d8a72a1a926df6276a7cedc1034f376a0270e320
|
|
@@ -141,6 +141,7 @@ module Kitchen
|
|
|
141
141
|
default_config :puppet_verbose, false
|
|
142
142
|
default_config :puppet_noop, false
|
|
143
143
|
default_config :puppet_show_diff, false
|
|
144
|
+
default_config :puppet_future_parser, false
|
|
144
145
|
default_config :platform, &:platform_name
|
|
145
146
|
default_config :update_package_repos, true
|
|
146
147
|
default_config :remove_puppet_repo, false
|
|
@@ -691,6 +692,7 @@ module Kitchen
|
|
|
691
692
|
puppet_verbose_flag,
|
|
692
693
|
puppet_debug_flag,
|
|
693
694
|
puppet_logdest_flag,
|
|
695
|
+
puppet_future_parser_flag,
|
|
694
696
|
puppet_show_diff_flag,
|
|
695
697
|
puppet_whitelist_exit_code
|
|
696
698
|
].join(' ')
|
|
@@ -907,6 +909,10 @@ module Kitchen
|
|
|
907
909
|
config[:puppet_show_diff] ? '--show_diff' : nil
|
|
908
910
|
end
|
|
909
911
|
|
|
912
|
+
def puppet_future_parser_flag
|
|
913
|
+
config[:puppet_future_parser] ? '--parser=future' : nil
|
|
914
|
+
end
|
|
915
|
+
|
|
910
916
|
def puppet_logdest_flag
|
|
911
917
|
return nil unless config[:puppet_logdest]
|
|
912
918
|
destinations = ''
|
data/provisioner_options.md
CHANGED
|
@@ -78,6 +78,7 @@ puppet_debug| false| Enable full debugging logging on puppet run
|
|
|
78
78
|
puppet_detailed_exitcodes | nil | Provide transaction information via exit codes. See `--detailed-exitcodes` section of `puppet help apply`
|
|
79
79
|
puppet_enc | | path for external node classifier script
|
|
80
80
|
puppet_environment | nil | puppet environment for running puppet apply (Must set if using Puppet v4)
|
|
81
|
+
puppet_future_parser | false | Run puppet with the future parser enabled (see https://docs.puppet.com/puppet/3.8/experiments_future.html).
|
|
81
82
|
puppet_git_init | nil | initialize puppet from GIT repository, e.g. "git@github.com:example/puppet-repo.git"
|
|
82
83
|
puppet_git_pr | nil | checkout specific Pull Request from repository specified in puppet_git_init, e.g. "324"
|
|
83
84
|
puppet_logdest | nil | _Array_ of log destinations. Include 'console' if wanted
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: kitchen-puppet
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.47.
|
|
4
|
+
version: 1.47.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Neill Turner
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2017-02-
|
|
11
|
+
date: 2017-02-24 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: test-kitchen
|