puppet 6.1.0-x86-mingw32 → 6.2.0-x86-mingw32

Sign up to get free protection for your applications and to get access to all the features.

Potentially problematic release.


This version of puppet might be problematic. Click here for more details.

Files changed (65) hide show
  1. checksums.yaml +4 -4
  2. data/Gemfile.lock +11 -11
  3. data/lib/puppet.rb +4 -4
  4. data/lib/puppet/application/agent.rb +3 -0
  5. data/lib/puppet/application/apply.rb +3 -0
  6. data/lib/puppet/application/device.rb +3 -0
  7. data/lib/puppet/application/script.rb +3 -0
  8. data/lib/puppet/defaults.rb +21 -11
  9. data/lib/puppet/forge.rb +4 -1
  10. data/lib/puppet/pops/issues.rb +3 -4
  11. data/lib/puppet/pops/loader/ruby_legacy_function_instantiator.rb +60 -4
  12. data/lib/puppet/pops/model/pn_transformer.rb +5 -0
  13. data/lib/puppet/pops/parser/eparser.rb +656 -656
  14. data/lib/puppet/provider/package/pkg.rb +20 -4
  15. data/lib/puppet/provider/package/portage.rb +15 -4
  16. data/lib/puppet/rest/route.rb +1 -1
  17. data/lib/puppet/settings.rb +10 -5
  18. data/lib/puppet/transaction.rb +12 -7
  19. data/lib/puppet/util/command_line.rb +5 -1
  20. data/lib/puppet/util/log/destinations.rb +3 -0
  21. data/lib/puppet/version.rb +1 -1
  22. data/locales/puppet.pot +241 -237
  23. data/man/man5/puppet.conf.5 +14 -6
  24. data/man/man8/puppet-agent.8 +4 -1
  25. data/man/man8/puppet-apply.8 +4 -1
  26. data/man/man8/puppet-catalog.8 +1 -1
  27. data/man/man8/puppet-config.8 +1 -1
  28. data/man/man8/puppet-describe.8 +1 -1
  29. data/man/man8/puppet-device.8 +4 -1
  30. data/man/man8/puppet-doc.8 +1 -1
  31. data/man/man8/puppet-epp.8 +1 -1
  32. data/man/man8/puppet-facts.8 +1 -1
  33. data/man/man8/puppet-filebucket.8 +1 -1
  34. data/man/man8/puppet-generate.8 +1 -1
  35. data/man/man8/puppet-help.8 +1 -1
  36. data/man/man8/puppet-key.8 +1 -1
  37. data/man/man8/puppet-lookup.8 +1 -1
  38. data/man/man8/puppet-man.8 +1 -1
  39. data/man/man8/puppet-module.8 +1 -1
  40. data/man/man8/puppet-node.8 +1 -1
  41. data/man/man8/puppet-parser.8 +1 -1
  42. data/man/man8/puppet-plugin.8 +1 -1
  43. data/man/man8/puppet-report.8 +1 -1
  44. data/man/man8/puppet-resource.8 +1 -1
  45. data/man/man8/puppet-script.8 +4 -1
  46. data/man/man8/puppet-ssl.8 +1 -1
  47. data/man/man8/puppet-status.8 +1 -1
  48. data/man/man8/puppet.8 +2 -2
  49. data/spec/fixtures/unit/pops/loaders/loaders/mix_4x_and_3x_functions/usee/lib/puppet/parser/functions/bad_func_load2.rb +11 -0
  50. data/spec/fixtures/unit/pops/loaders/loaders/mix_4x_and_3x_functions/usee/lib/puppet/parser/functions/bad_func_load3.rb +11 -0
  51. data/spec/fixtures/unit/pops/loaders/loaders/mix_4x_and_3x_functions/usee/lib/puppet/parser/functions/bad_func_load4.rb +11 -0
  52. data/spec/fixtures/unit/pops/loaders/loaders/mix_4x_and_3x_functions/usee/lib/puppet/parser/functions/bad_func_load5.rb +12 -0
  53. data/spec/fixtures/unit/pops/loaders/loaders/mix_4x_and_3x_functions/usee/lib/puppet/parser/functions/good_func_load.rb +9 -0
  54. data/spec/unit/forge/forge_spec.rb +4 -2
  55. data/spec/unit/pops/loaders/loaders_spec.rb +65 -3
  56. data/spec/unit/pops/model/pn_transformer_spec.rb +4 -0
  57. data/spec/unit/provider/package/pkg_spec.rb +18 -0
  58. data/spec/unit/provider/package/portage_spec.rb +16 -2
  59. data/spec/unit/provider/service/systemd_spec.rb +7 -5
  60. data/spec/unit/rest/route_spec.rb +1 -1
  61. data/spec/unit/settings_spec.rb +36 -0
  62. data/spec/unit/transaction_spec.rb +54 -0
  63. data/spec/unit/util/command_line_spec.rb +23 -2
  64. data/spec/unit/util/log/destinations_spec.rb +18 -0
  65. metadata +12 -2
@@ -1,7 +1,14 @@
1
1
  require 'puppet/provider/package'
2
2
 
3
3
  Puppet::Type.type(:package).provide :pkg, :parent => Puppet::Provider::Package do
4
- desc "OpenSolaris image packaging system. See pkg(5) for more information."
4
+ desc "OpenSolaris image packaging system. See pkg(5) for more information.
5
+
6
+ This provider supports the `install_options` attribute, which allows
7
+ command-line flags to be passed to pkg. These options should be specified:
8
+ - as a string (for example, '--flag'), or
9
+ - as a hash (for example, {'--flag' => 'value'}), or
10
+ - as an array where each element is either a string or a hash."
11
+
5
12
  # https://docs.oracle.com/cd/E19963-01/html/820-6572/managepkgs.html
6
13
  # A few notes before we start:
7
14
  # Opensolaris pkg has two slightly different formats (as of now.)
@@ -19,6 +26,8 @@ Puppet::Type.type(:package).provide :pkg, :parent => Puppet::Provider::Package d
19
26
 
20
27
  has_feature :holdable
21
28
 
29
+ has_feature :install_options
30
+
22
31
  commands :pkg => "/usr/bin/pkg"
23
32
 
24
33
  confine :osfamily => :solaris
@@ -152,7 +161,9 @@ Puppet::Type.type(:package).provide :pkg, :parent => Puppet::Provider::Package d
152
161
  end
153
162
  potential_matches.each{ |p|
154
163
  command = is == :absent ? 'install' : 'update'
155
- status = exec_cmd(command(:pkg), command, '-n', "#{name}@#{p[:ensure]}")[:exit]
164
+ options = ['-n']
165
+ options.concat(join_options(@resource[:install_options])) if @resource[:install_options]
166
+ status = exec_cmd(command(:pkg), command, *options, "#{name}@#{p[:ensure]}")[:exit]
156
167
  case status
157
168
  when 4
158
169
  # if the first installable match would cause no changes, we're in sync
@@ -190,8 +201,12 @@ Puppet::Type.type(:package).provide :pkg, :parent => Puppet::Provider::Package d
190
201
  # Now we know there is a newer version. But is that installable? (i.e are there any constraints?)
191
202
  # return the first known we find. The only way that is currently available is to do a dry run of
192
203
  # pkg update and see if could get installed (`pkg update -n res`).
193
- known = lst.find {|p| p[:status] == 'known' }
194
- return known[:ensure] if known and exec_cmd(command(:pkg), 'update', '-n', @resource[:name])[:exit].zero?
204
+ known = lst.find { |p| p[:status] == 'known' }
205
+ if known
206
+ options = ['-n']
207
+ options.concat(join_options(@resource[:install_options])) if @resource[:install_options]
208
+ return known[:ensure] if exec_cmd(command(:pkg), 'update', *options, @resource[:name])[:exit].zero?
209
+ end
195
210
 
196
211
  # If not, then return the installed, else nil
197
212
  (lst.find {|p| p[:status] == 'installed' } || {})[:ensure]
@@ -213,6 +228,7 @@ Puppet::Type.type(:package).provide :pkg, :parent => Puppet::Provider::Package d
213
228
  if Puppet::Util::Package.versioncmp(Facter.value(:operatingsystemrelease), '11.2') >= 0
214
229
  args.push('--sync-actuators-timeout', '900')
215
230
  end
231
+ args.concat(join_options(@resource[:install_options])) if @resource[:install_options]
216
232
  unless should.is_a? Symbol
217
233
  name += "@#{should}"
218
234
  end
@@ -111,7 +111,16 @@ Puppet::Type.type(:package).provide :portage, :parent => Puppet::Provider::Packa
111
111
  @atom ||= begin
112
112
  package_info = {}
113
113
  # do the search
114
- search_output = qatom_bin(*([@resource[:name], '--format', output_format]))
114
+ should = @resource[:ensure]
115
+ case should
116
+ # The terms present, absent, purged, held, installed, latest in :ensure
117
+ # resolve as Symbols, and we do not need specific package version in this case
118
+ when true, false, Symbol
119
+ search = @resource[:name]
120
+ else
121
+ search = '=' + @resource[:name] + '-' + "#{should}"
122
+ end
123
+ search_output = qatom_bin(*([search, '--format', output_format]))
115
124
  # verify if the search found anything
116
125
  match = result_format.match(search_output)
117
126
  if match
@@ -197,9 +206,11 @@ Puppet::Type.type(:package).provide :portage, :parent => Puppet::Provider::Packa
197
206
  # ensure is what is currently installed
198
207
  # This DOES NOT choose to install/upgrade or not, just provides current info
199
208
  # prefer checking versions to slots as versions are finer grained
200
- if qatom[:pv]
201
- package[:version_available] = eix_get_version_for_versions(package[:installable_versions], qatom[:pv])
202
- package[:ensure] = eix_get_version_for_versions(package[:installed_versions], qatom[:pv])
209
+ search = qatom[:pv]
210
+ search = search + '-' + qatom[:pr] if qatom[:pr]
211
+ if search
212
+ package[:version_available] = eix_get_version_for_versions(package[:installable_versions], search)
213
+ package[:ensure] = eix_get_version_for_versions(package[:installed_versions], search)
203
214
  elsif qatom[:slot]
204
215
  package[:version_available] = eix_get_version_for_slot(package[:slot_versions_available], qatom[:slot])
205
216
  package[:ensure] = eix_get_version_for_slot(package[:installed_slots], qatom[:slot])
@@ -50,7 +50,7 @@ module Puppet::Rest
50
50
  end
51
51
 
52
52
  if Puppet[:use_srv_records]
53
- dns_resolver.each_srv_record(@srv_service) do |srv_server, srv_port|
53
+ dns_resolver.each_srv_record(Puppet[:srv_domain], @srv_service) do |srv_server, srv_port|
54
54
  # Try each of the servers for this service in weighted order
55
55
  # until a working one is found.
56
56
  begin
@@ -255,7 +255,7 @@ class Puppet::Settings
255
255
  @global_defaults_initialized
256
256
  end
257
257
 
258
- def initialize_global_settings(args = [])
258
+ def initialize_global_settings(args = [], require_config = true)
259
259
  raise Puppet::DevError, _("Attempting to initialize global default settings more than once!") if global_defaults_initialized?
260
260
 
261
261
  # The first two phases of the lifecycle of a puppet application are:
@@ -264,7 +264,7 @@ class Puppet::Settings
264
264
  # 2) Parse the puppet config file(s).
265
265
 
266
266
  parse_global_options(args)
267
- parse_config_files
267
+ parse_config_files(require_config)
268
268
 
269
269
  @global_defaults_initialized = true
270
270
  end
@@ -590,14 +590,19 @@ class Puppet::Settings
590
590
  end
591
591
 
592
592
  # Parse the configuration file. Just provides thread safety.
593
- def parse_config_files
593
+ def parse_config_files(require_config = true)
594
594
  file = which_configuration_file
595
595
  if Puppet::FileSystem.exist?(file)
596
596
  begin
597
597
  text = read_file(file)
598
598
  rescue => detail
599
- Puppet.log_exception(detail, "Could not load #{file}: #{detail}")
600
- return
599
+ message = _("Could not load %{file}: %{detail}") % { file: file, detail: detail}
600
+ if require_config
601
+ Puppet.log_and_raise(detail, message)
602
+ else
603
+ Puppet.log_exception(detail, message)
604
+ return
605
+ end
601
606
  end
602
607
  else
603
608
  return
@@ -56,6 +56,8 @@ class Puppet::Transaction
56
56
  @prefetched_providers = Hash.new { |h,k| h[k] = {} }
57
57
 
58
58
  @prefetch_failed_providers = Hash.new { |h,k| h[k] = {} }
59
+
60
+ @failed_dependencies_already_notified = Set.new()
59
61
  end
60
62
 
61
63
  # Invoke the pre_run_check hook in every resource in the catalog.
@@ -291,8 +293,9 @@ class Puppet::Transaction
291
293
  if s && s.dependency_failed?
292
294
  # See above. --daniel 2011-06-06
293
295
  unless suppress_report then
294
- s.failed_dependencies.each do |dep|
296
+ s.failed_dependencies.find_all { |d| !(@failed_dependencies_already_notified.include?(d.ref)) }.each do |dep|
295
297
  resource.notice _("Dependency %{dep} has failures: %{status}") % { dep: dep, status: resource_status(dep).failed }
298
+ @failed_dependencies_already_notified.add(dep.ref)
296
299
  end
297
300
  end
298
301
  end
@@ -355,15 +358,17 @@ class Puppet::Transaction
355
358
  Puppet.debug "Prefetching #{provider_class.name} resources for #{type_name}"
356
359
  begin
357
360
  provider_class.prefetch(resources)
358
- rescue Exception => detail
359
- if !detail.is_a?(LoadError) && !detail.is_a?(Puppet::MissingCommand)
360
- raise unless Puppet.settings[:future_features]
361
-
362
- @prefetch_failed_providers[type_name][provider_class.name] = true
363
- end
361
+ rescue LoadError, Puppet::MissingCommand => detail
364
362
  #TRANSLATORS `prefetch` is a function name and should not be translated
365
363
  message = _("Could not prefetch %{type_name} provider '%{name}': %{detail}") % { type_name: type_name, name: provider_class.name, detail: detail }
366
364
  Puppet.log_exception(detail, message)
365
+ rescue StandardError => detail
366
+ message = _("Could not prefetch %{type_name} provider '%{name}': %{detail}") % { type_name: type_name, name: provider_class.name, detail: detail }
367
+ Puppet.log_exception(detail, message)
368
+
369
+ raise unless Puppet.settings[:future_features]
370
+
371
+ @prefetch_failed_providers[type_name][provider_class.name] = true
367
372
  end
368
373
  @prefetched_providers[type_name][provider_class.name] = true
369
374
  end
@@ -64,8 +64,12 @@ module Puppet
64
64
  #
65
65
  # @return [void]
66
66
  def execute
67
+ require_config = true
68
+ if @argv.first =~ /help|-h|--help|-V|--version/
69
+ require_config = false
70
+ end
67
71
  Puppet::Util.exit_on_fail(_("Could not initialize global default settings")) do
68
- Puppet.initialize_settings(args)
72
+ Puppet.initialize_settings(args, require_config)
69
73
  end
70
74
 
71
75
  setpriority(Puppet[:priority])
@@ -66,6 +66,7 @@ Puppet::Util::Log.newdesttype :file do
66
66
  def initialize(path)
67
67
  @name = path
68
68
  @json = path.end_with?('.json') ? 1 : 0
69
+ @jsonl = path.end_with?('.jsonl')
69
70
 
70
71
  # first make sure the directory exists
71
72
  # We can't just use 'Config.use' here, because they've
@@ -111,6 +112,8 @@ Puppet::Util::Log.newdesttype :file do
111
112
  if @json > 0
112
113
  @json > 1 ? @file.puts(',') : @json = 2
113
114
  @file.puts(Puppet::Util::Json.dump(msg.to_structured_hash))
115
+ elsif @jsonl
116
+ @file.puts(Puppet::Util::Json.dump(msg.to_structured_hash))
114
117
  else
115
118
  @file.puts("#{msg.time} #{msg.source} (#{msg.level}): #{msg}")
116
119
  end
@@ -6,7 +6,7 @@
6
6
  # Raketasks and such to set the version based on the output of `git describe`
7
7
 
8
8
  module Puppet
9
- PUPPETVERSION = '6.1.0'
9
+ PUPPETVERSION = '6.2.0'
10
10
 
11
11
  ##
12
12
  # version is a public API method intended to always provide a fast and
@@ -1,16 +1,16 @@
1
1
  # SOME DESCRIPTIVE TITLE.
2
- # Copyright (C) 2018 Puppet, Inc.
2
+ # Copyright (C) 2019 Puppet, Inc.
3
3
  # This file is distributed under the same license as the Puppet automation framework package.
4
- # FIRST AUTHOR <EMAIL@ADDRESS>, 2018.
4
+ # FIRST AUTHOR <EMAIL@ADDRESS>, 2019.
5
5
  #
6
6
  #, fuzzy
7
7
  msgid ""
8
8
  msgstr ""
9
- "Project-Id-Version: Puppet automation framework 6.0.4-203-g3db83f5\n"
9
+ "Project-Id-Version: Puppet automation framework 6.1.0-99-g8d13182\n"
10
10
  "\n"
11
11
  "Report-Msgid-Bugs-To: https://tickets.puppetlabs.com\n"
12
- "POT-Creation-Date: 2018-12-07 19:18+0000\n"
13
- "PO-Revision-Date: 2018-12-07 19:18+0000\n"
12
+ "POT-Creation-Date: 2019-01-22 21:33+0000\n"
13
+ "PO-Revision-Date: 2019-01-22 21:33+0000\n"
14
14
  "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
15
15
  "Language-Team: LANGUAGE <LL@li.org>\n"
16
16
  "Language: \n"
@@ -164,7 +164,7 @@ msgstr ""
164
164
  msgid "No help available for puppet %{app_name}"
165
165
  msgstr ""
166
166
 
167
- #: ../lib/puppet/application/agent.rb:24 ../lib/puppet/application/device.rb:22
167
+ #: ../lib/puppet/application/agent.rb:24 ../lib/puppet/application/device.rb:23
168
168
  msgid "Cancelling startup"
169
169
  msgstr ""
170
170
 
@@ -172,19 +172,19 @@ msgstr ""
172
172
  msgid "The puppet agent daemon"
173
173
  msgstr ""
174
174
 
175
- #: ../lib/puppet/application/agent.rb:360
175
+ #: ../lib/puppet/application/agent.rb:363
176
176
  msgid "Fingerprint asked but no certificate nor certificate request have yet been issued"
177
177
  msgstr ""
178
178
 
179
- #: ../lib/puppet/application/agent.rb:365
179
+ #: ../lib/puppet/application/agent.rb:368
180
180
  msgid "Could not get fingerprint for digest '%{digest}'"
181
181
  msgstr ""
182
182
 
183
- #: ../lib/puppet/application/agent.rb:389
183
+ #: ../lib/puppet/application/agent.rb:392
184
184
  msgid "Starting Puppet client version %{version}"
185
185
  msgstr ""
186
186
 
187
- #: ../lib/puppet/application/agent.rb:405
187
+ #: ../lib/puppet/application/agent.rb:408
188
188
  msgid "The puppet agent command does not take parameters"
189
189
  msgstr ""
190
190
 
@@ -194,35 +194,35 @@ msgstr ""
194
194
 
195
195
  #. TRANSLATORS "puppet apply" is a program command and should not be translated
196
196
  #. TRANSLATORS "puppet apply" is a program command and should not be translated
197
- #: ../lib/puppet/application/apply.rb:204 ../lib/puppet/application/apply.rb:319
197
+ #: ../lib/puppet/application/apply.rb:207 ../lib/puppet/application/apply.rb:322
198
198
  msgid "For puppet apply"
199
199
  msgstr ""
200
200
 
201
- #: ../lib/puppet/application/apply.rb:212
201
+ #: ../lib/puppet/application/apply.rb:215
202
202
  msgid "%{file} is not readable"
203
203
  msgstr ""
204
204
 
205
- #: ../lib/puppet/application/apply.rb:290 ../lib/puppet/application/script.rb:238
205
+ #: ../lib/puppet/application/apply.rb:293 ../lib/puppet/application/script.rb:241
206
206
  msgid "Exiting"
207
207
  msgstr ""
208
208
 
209
- #: ../lib/puppet/application/apply.rb:329
209
+ #: ../lib/puppet/application/apply.rb:332
210
210
  msgid "Could not deserialize catalog from %{format}: %{detail}"
211
211
  msgstr ""
212
212
 
213
- #: ../lib/puppet/application/apply.rb:350 ../lib/puppet/application/script.rb:141
213
+ #: ../lib/puppet/application/apply.rb:353 ../lib/puppet/application/script.rb:144
214
214
  msgid "Could not find facts for %{node}"
215
215
  msgstr ""
216
216
 
217
- #: ../lib/puppet/application/apply.rb:363 ../lib/puppet/application/script.rb:150
217
+ #: ../lib/puppet/application/apply.rb:366 ../lib/puppet/application/script.rb:153
218
218
  msgid "Could not find node %{node}"
219
219
  msgstr ""
220
220
 
221
- #: ../lib/puppet/application/apply.rb:376 ../lib/puppet/application/script.rb:134
221
+ #: ../lib/puppet/application/apply.rb:379 ../lib/puppet/application/script.rb:137
222
222
  msgid "Could not find file %{manifest}"
223
223
  msgstr ""
224
224
 
225
- #: ../lib/puppet/application/apply.rb:377
225
+ #: ../lib/puppet/application/apply.rb:380
226
226
  msgid "Only one file can be applied per run. Skipping %{files}"
227
227
  msgstr ""
228
228
 
@@ -234,51 +234,51 @@ msgstr ""
234
234
  msgid "Display help about resource types"
235
235
  msgstr ""
236
236
 
237
- #: ../lib/puppet/application/device.rb:77
237
+ #: ../lib/puppet/application/device.rb:82
238
238
  msgid "Manage remote network devices"
239
239
  msgstr ""
240
240
 
241
- #: ../lib/puppet/application/device.rb:216
241
+ #: ../lib/puppet/application/device.rb:229
242
242
  msgid "resource command requires target"
243
243
  msgstr ""
244
244
 
245
- #: ../lib/puppet/application/device.rb:219
245
+ #: ../lib/puppet/application/device.rb:232
246
246
  msgid "facts command requires target"
247
247
  msgstr ""
248
248
 
249
- #: ../lib/puppet/application/device.rb:222
249
+ #: ../lib/puppet/application/device.rb:235
250
250
  msgid "missing argument: --target is required when using --apply"
251
251
  msgstr ""
252
252
 
253
- #: ../lib/puppet/application/device.rb:223
253
+ #: ../lib/puppet/application/device.rb:236
254
254
  msgid "%{file} does not exist, cannot apply"
255
255
  msgstr ""
256
256
 
257
- #: ../lib/puppet/application/device.rb:239
257
+ #: ../lib/puppet/application/device.rb:253
258
258
  msgid "Target device / certificate '%{target}' not found in %{config}"
259
259
  msgstr ""
260
260
 
261
- #: ../lib/puppet/application/device.rb:241
261
+ #: ../lib/puppet/application/device.rb:255
262
262
  msgid "No device found in %{config}"
263
263
  msgstr ""
264
264
 
265
- #: ../lib/puppet/application/device.rb:263
265
+ #: ../lib/puppet/application/device.rb:281
266
266
  msgid "retrieving resource: %{resource} from %{target} at %{scheme}%{url_host}%{port}%{url_path}"
267
267
  msgstr ""
268
268
 
269
- #: ../lib/puppet/application/device.rb:278
269
+ #: ../lib/puppet/application/device.rb:296
270
270
  msgid "retrieving facts from %{target} at %{scheme}%{url_host}%{port}%{url_path}"
271
271
  msgstr ""
272
272
 
273
- #: ../lib/puppet/application/device.rb:303
273
+ #: ../lib/puppet/application/device.rb:321
274
274
  msgid "starting applying configuration to %{target} at %{scheme}%{url_host}%{port}%{url_path}"
275
275
  msgstr ""
276
276
 
277
- #: ../lib/puppet/application/device.rb:340 ../lib/puppet/application/resource.rb:196
277
+ #: ../lib/puppet/application/device.rb:359 ../lib/puppet/application/resource.rb:196
278
278
  msgid "You must specify the type to display"
279
279
  msgstr ""
280
280
 
281
- #: ../lib/puppet/application/device.rb:341 ../lib/puppet/application/resource.rb:197
281
+ #: ../lib/puppet/application/device.rb:360 ../lib/puppet/application/resource.rb:197
282
282
  msgid "Could not find type %{type}"
283
283
  msgstr ""
284
284
 
@@ -426,11 +426,11 @@ msgstr ""
426
426
  msgid "Run a puppet manifests as a script without compiling a catalog"
427
427
  msgstr ""
428
428
 
429
- #: ../lib/puppet/application/script.rb:121
429
+ #: ../lib/puppet/application/script.rb:124
430
430
  msgid "Bolt must be installed to use the script application"
431
431
  msgstr ""
432
432
 
433
- #: ../lib/puppet/application/script.rb:135
433
+ #: ../lib/puppet/application/script.rb:138
434
434
  msgid "Only one file can be used per run. Skipping %{files}"
435
435
  msgstr ""
436
436
 
@@ -506,7 +506,7 @@ msgid ""
506
506
  " puppet ssl clean\n"
507
507
  msgstr ""
508
508
 
509
- #: ../lib/puppet/application/ssl.rb:214
509
+ #: ../lib/puppet/application/ssl.rb:213
510
510
  msgid "Removed %{label} %{path}"
511
511
  msgstr ""
512
512
 
@@ -701,15 +701,15 @@ msgstr ""
701
701
  msgid "Certificate names must be lower case"
702
702
  msgstr ""
703
703
 
704
- #: ../lib/puppet/defaults.rb:961 ../lib/puppet/settings/enum_setting.rb:13 ../lib/puppet/settings/symbolic_enum_setting.rb:14
704
+ #: ../lib/puppet/defaults.rb:962 ../lib/puppet/settings/enum_setting.rb:13 ../lib/puppet/settings/symbolic_enum_setting.rb:14
705
705
  msgid "Invalid value '%{value}' for parameter %{name}. Allowed values are '%{allowed_values}'"
706
706
  msgstr ""
707
707
 
708
- #: ../lib/puppet/defaults.rb:1458 ../lib/puppet/defaults.rb:1473
708
+ #: ../lib/puppet/defaults.rb:1459 ../lib/puppet/defaults.rb:1474
709
709
  msgid "Attempted to set both server and server_list."
710
710
  msgstr ""
711
711
 
712
- #: ../lib/puppet/defaults.rb:1459 ../lib/puppet/defaults.rb:1474
712
+ #: ../lib/puppet/defaults.rb:1460 ../lib/puppet/defaults.rb:1475
713
713
  msgid "Server setting will not be used."
714
714
  msgstr ""
715
715
 
@@ -1798,23 +1798,23 @@ msgstr ""
1798
1798
  msgid "The current user does not have the necessary permission to manage symlinks."
1799
1799
  msgstr ""
1800
1800
 
1801
- #: ../lib/puppet/forge.rb:136
1801
+ #: ../lib/puppet/forge.rb:139
1802
1802
  msgid "Malformed dependency: %{name}."
1803
1803
  msgstr ""
1804
1804
 
1805
- #: ../lib/puppet/forge.rb:137
1805
+ #: ../lib/puppet/forge.rb:140
1806
1806
  msgid "Exception was: %{detail}"
1807
1807
  msgstr ""
1808
1808
 
1809
- #: ../lib/puppet/forge.rb:203
1809
+ #: ../lib/puppet/forge.rb:206
1810
1810
  msgid "Downloaded release for %{name} did not match expected checksum"
1811
1811
  msgstr ""
1812
1812
 
1813
- #: ../lib/puppet/forge.rb:211 ../lib/puppet/module_tool/applications/unpacker.rb:58 ../lib/puppet/module_tool/local_tarball.rb:86
1813
+ #: ../lib/puppet/forge.rb:214 ../lib/puppet/module_tool/applications/unpacker.rb:58 ../lib/puppet/module_tool/local_tarball.rb:86
1814
1814
  msgid "Could not extract contents of module archive: %{message}"
1815
1815
  msgstr ""
1816
1816
 
1817
- #: ../lib/puppet/forge.rb:228
1817
+ #: ../lib/puppet/forge.rb:231
1818
1818
  msgid "Cannot consider release %{name}-%{version}: %{error}"
1819
1819
  msgstr ""
1820
1820
 
@@ -5028,487 +5028,483 @@ msgid "Float-Type [] requires all arguments to be floats, or integers (or defaul
5028
5028
  msgstr ""
5029
5029
 
5030
5030
  #: ../lib/puppet/pops/issues.rb:435
5031
- msgid "one of %{expected} are"
5031
+ msgid "%{expression}[] cannot use %{actual} where one of the following is expected: %{expected}"
5032
5032
  msgstr ""
5033
5033
 
5034
5034
  #: ../lib/puppet/pops/issues.rb:437
5035
- msgid "%{expected} is"
5036
- msgstr ""
5037
-
5038
- #: ../lib/puppet/pops/issues.rb:439
5039
- msgid "%{expression}[] cannot use %{actual} where %{expected_text} expected"
5035
+ msgid "%{expression}[] cannot use %{actual} where %{expected} is expected"
5040
5036
  msgstr ""
5041
5037
 
5042
- #: ../lib/puppet/pops/issues.rb:443
5038
+ #: ../lib/puppet/pops/issues.rb:442
5043
5039
  msgid "A substring operation does not accept %{label_article} %{actual_type} as a character index. Expected an Integer"
5044
5040
  msgstr ""
5045
5041
 
5046
- #: ../lib/puppet/pops/issues.rb:447
5042
+ #: ../lib/puppet/pops/issues.rb:446
5047
5043
  msgid "%{expression}[] argument must be a Type or a String. Got %{actual}"
5048
5044
  msgstr ""
5049
5045
 
5050
- #: ../lib/puppet/pops/issues.rb:451
5046
+ #: ../lib/puppet/pops/issues.rb:450
5051
5047
  msgid "%{base_type}[] arguments must be types. Got %{actual}"
5052
5048
  msgstr ""
5053
5049
 
5054
- #: ../lib/puppet/pops/issues.rb:457
5050
+ #: ../lib/puppet/pops/issues.rb:456
5055
5051
  msgid "%{base_type_label}[] accepts %{min} or more arguments. Got %{actual}"
5056
5052
  msgstr ""
5057
5053
 
5058
- #: ../lib/puppet/pops/issues.rb:459
5054
+ #: ../lib/puppet/pops/issues.rb:458
5059
5055
  msgid "%{base_type_label}[] accepts %{min} to %{max} arguments. Got %{actual}"
5060
5056
  msgstr ""
5061
5057
 
5062
- #: ../lib/puppet/pops/issues.rb:461
5058
+ #: ../lib/puppet/pops/issues.rb:460
5063
5059
  msgid "%{base_type_label}[] accepts %{min} %{label}. Got %{actual}"
5064
5060
  msgstr ""
5065
5061
 
5066
- #: ../lib/puppet/pops/issues.rb:461
5062
+ #: ../lib/puppet/pops/issues.rb:460
5067
5063
  msgid "argument"
5068
5064
  msgstr ""
5069
5065
 
5070
- #: ../lib/puppet/pops/issues.rb:466
5066
+ #: ../lib/puppet/pops/issues.rb:465
5071
5067
  msgid "Error creating type specialization of %{base_type}, %{message}"
5072
5068
  msgstr ""
5073
5069
 
5074
- #: ../lib/puppet/pops/issues.rb:470
5070
+ #: ../lib/puppet/pops/issues.rb:469
5075
5071
  msgid "Cannot specialize an already specialized %{kind} type"
5076
5072
  msgstr ""
5077
5073
 
5078
- #: ../lib/puppet/pops/issues.rb:474
5074
+ #: ../lib/puppet/pops/issues.rb:473
5079
5075
  msgid "First argument to Resource[] must be a resource type or a String. Got %{actual}."
5080
5076
  msgstr ""
5081
5077
 
5082
- #: ../lib/puppet/pops/issues.rb:478
5078
+ #: ../lib/puppet/pops/issues.rb:477
5083
5079
  msgid "Arguments to Resource[] are all empty/undefined"
5084
5080
  msgstr ""
5085
5081
 
5086
- #: ../lib/puppet/pops/issues.rb:482
5082
+ #: ../lib/puppet/pops/issues.rb:481
5087
5083
  msgid "Illegal Class name in class reference. %{expression} cannot be used where a String is expected"
5088
5084
  msgstr ""
5089
5085
 
5090
- #: ../lib/puppet/pops/issues.rb:486
5086
+ #: ../lib/puppet/pops/issues.rb:485
5091
5087
  msgid "Unacceptable name. The name '%{name}' is unacceptable as the name of %{value}"
5092
5088
  msgstr ""
5093
5089
 
5094
- #: ../lib/puppet/pops/issues.rb:490
5090
+ #: ../lib/puppet/pops/issues.rb:489
5095
5091
  msgid "Unacceptable location. The name '%{name}' is unacceptable in file '%{file}'"
5096
5092
  msgstr ""
5097
5093
 
5098
- #: ../lib/puppet/pops/issues.rb:495
5094
+ #: ../lib/puppet/pops/issues.rb:494
5099
5095
  msgid "The %{value} '%{name}' is unacceptable as a top level construct in this location"
5100
5096
  msgstr ""
5101
5097
 
5102
- #: ../lib/puppet/pops/issues.rb:497
5098
+ #: ../lib/puppet/pops/issues.rb:496
5103
5099
  msgid "This %{value} is unacceptable as a top level construct in this location"
5104
5100
  msgstr ""
5105
5101
 
5106
- #: ../lib/puppet/pops/issues.rb:502
5102
+ #: ../lib/puppet/pops/issues.rb:501
5107
5103
  msgid "Parameter $%{param} is not last, and has 'captures rest'"
5108
5104
  msgstr ""
5109
5105
 
5110
- #: ../lib/puppet/pops/issues.rb:506
5106
+ #: ../lib/puppet/pops/issues.rb:505
5111
5107
  msgid "Parameter $%{param} has 'captures rest' - not supported in %{container}"
5112
5108
  msgstr ""
5113
5109
 
5114
- #: ../lib/puppet/pops/issues.rb:510
5110
+ #: ../lib/puppet/pops/issues.rb:509
5115
5111
  msgid "Parameter $%{param} is required but appears after optional parameters"
5116
5112
  msgstr ""
5117
5113
 
5118
- #: ../lib/puppet/pops/issues.rb:514
5114
+ #: ../lib/puppet/pops/issues.rb:513
5119
5115
  msgid "Parameter $%{param} is required but no value was given"
5120
5116
  msgstr ""
5121
5117
 
5122
- #: ../lib/puppet/pops/issues.rb:518
5118
+ #: ../lib/puppet/pops/issues.rb:517
5123
5119
  msgid "The value '%{value}' cannot be converted to Numeric."
5124
5120
  msgstr ""
5125
5121
 
5126
- #: ../lib/puppet/pops/issues.rb:522
5122
+ #: ../lib/puppet/pops/issues.rb:521
5127
5123
  msgid "The string '%{before}' was automatically coerced to the numerical value %{after}"
5128
5124
  msgstr ""
5129
5125
 
5130
- #: ../lib/puppet/pops/issues.rb:526
5126
+ #: ../lib/puppet/pops/issues.rb:525
5131
5127
  msgid "Unknown function: '%{name}'."
5132
5128
  msgstr ""
5133
5129
 
5134
- #: ../lib/puppet/pops/issues.rb:530
5130
+ #: ../lib/puppet/pops/issues.rb:529
5135
5131
  msgid "Unknown variable: '%{name}'."
5136
5132
  msgstr ""
5137
5133
 
5138
- #: ../lib/puppet/pops/issues.rb:534
5134
+ #: ../lib/puppet/pops/issues.rb:533
5139
5135
  msgid "Error while evaluating %{expression}, %{detail}"
5140
5136
  msgstr ""
5141
5137
 
5142
- #: ../lib/puppet/pops/issues.rb:538
5138
+ #: ../lib/puppet/pops/issues.rb:537
5143
5139
  msgid "Resource type not found: %{res_type}"
5144
5140
  msgstr ""
5145
5141
 
5146
- #: ../lib/puppet/pops/issues.rb:542
5142
+ #: ../lib/puppet/pops/issues.rb:541
5147
5143
  msgid "Illegal Resource Type expression, expected result to be a type name, or untitled Resource, got %{actual}"
5148
5144
  msgstr ""
5149
5145
 
5150
- #: ../lib/puppet/pops/issues.rb:546
5146
+ #: ../lib/puppet/pops/issues.rb:545
5151
5147
  msgid "The title '%{title}' has already been used in this resource expression"
5152
5148
  msgstr ""
5153
5149
 
5154
- #: ../lib/puppet/pops/issues.rb:550
5150
+ #: ../lib/puppet/pops/issues.rb:549
5155
5151
  msgid "The attribute '%{attribute}' has already been set"
5156
5152
  msgstr ""
5157
5153
 
5158
- #: ../lib/puppet/pops/issues.rb:554
5154
+ #: ../lib/puppet/pops/issues.rb:553
5159
5155
  msgid "Missing title. The title expression resulted in undef"
5160
5156
  msgstr ""
5161
5157
 
5162
- #: ../lib/puppet/pops/issues.rb:558
5158
+ #: ../lib/puppet/pops/issues.rb:557
5163
5159
  msgid "Missing title at index %{index}. The title expression resulted in an undef title"
5164
5160
  msgstr ""
5165
5161
 
5166
- #: ../lib/puppet/pops/issues.rb:562
5162
+ #: ../lib/puppet/pops/issues.rb:561
5167
5163
  msgid "Illegal title type at index %{index}. Expected String, got %{actual}"
5168
5164
  msgstr ""
5169
5165
 
5170
- #: ../lib/puppet/pops/issues.rb:566
5166
+ #: ../lib/puppet/pops/issues.rb:565
5171
5167
  msgid "Empty string title at %{index}. Title strings must have a length greater than zero."
5172
5168
  msgstr ""
5173
5169
 
5174
- #: ../lib/puppet/pops/issues.rb:570
5170
+ #: ../lib/puppet/pops/issues.rb:569
5175
5171
  msgid "Resource not found: %{type_name}['%{title}']"
5176
5172
  msgstr ""
5177
5173
 
5178
- #: ../lib/puppet/pops/issues.rb:574
5174
+ #: ../lib/puppet/pops/issues.rb:573
5179
5175
  msgid "The resource %{type_name}['%{title}'] does not have a parameter called '%{param}'"
5180
5176
  msgstr ""
5181
5177
 
5182
- #: ../lib/puppet/pops/issues.rb:578
5178
+ #: ../lib/puppet/pops/issues.rb:577
5183
5179
  msgid "Division by 0"
5184
5180
  msgstr ""
5185
5181
 
5186
- #: ../lib/puppet/pops/issues.rb:582
5182
+ #: ../lib/puppet/pops/issues.rb:581
5187
5183
  msgid "The result of the %{operator} expression is Infinity"
5188
5184
  msgstr ""
5189
5185
 
5190
- #: ../lib/puppet/pops/issues.rb:587
5186
+ #: ../lib/puppet/pops/issues.rb:586
5191
5187
  msgid "Heredoc syntax specification has empty segment between '+' : '%{syntax}'"
5192
5188
  msgstr ""
5193
5189
 
5194
- #: ../lib/puppet/pops/issues.rb:591
5190
+ #: ../lib/puppet/pops/issues.rb:590
5195
5191
  msgid "Ambiguous EPP parameter expression. Probably missing '<%-' before parameters to remove leading whitespace"
5196
5192
  msgstr ""
5197
5193
 
5198
5194
  #. TRANSLATORS "import" is a function name and should not be translated
5199
- #: ../lib/puppet/pops/issues.rb:596
5195
+ #: ../lib/puppet/pops/issues.rb:595
5200
5196
  msgid "Use of 'import' has been discontinued in favor of a manifest directory. See http://links.puppet.com/puppet-import-deprecation"
5201
5197
  msgstr ""
5202
5198
 
5203
- #: ../lib/puppet/pops/issues.rb:600
5199
+ #: ../lib/puppet/pops/issues.rb:599
5204
5200
  msgid "This %{expression} has no effect. A value was produced and then forgotten (one or more preceding expressions may have the wrong form)"
5205
5201
  msgstr ""
5206
5202
 
5207
- #: ../lib/puppet/pops/issues.rb:604
5203
+ #: ../lib/puppet/pops/issues.rb:603
5208
5204
  msgid "This expression is invalid. Did you try declaring a '%{name}' resource without a title?"
5209
5205
  msgstr ""
5210
5206
 
5211
- #: ../lib/puppet/pops/issues.rb:608
5207
+ #: ../lib/puppet/pops/issues.rb:607
5212
5208
  msgid "This %{expression} has no effect. %{container} can not end with a value-producing expression without other effect"
5213
5209
  msgstr ""
5214
5210
 
5215
- #: ../lib/puppet/pops/issues.rb:612
5211
+ #: ../lib/puppet/pops/issues.rb:611
5216
5212
  msgid "Use of reserved word: %{word}, must be quoted if intended to be a String value"
5217
5213
  msgstr ""
5218
5214
 
5219
- #: ../lib/puppet/pops/issues.rb:616
5215
+ #: ../lib/puppet/pops/issues.rb:615
5220
5216
  msgid "Use of future reserved word: '%{word}'"
5221
5217
  msgstr ""
5222
5218
 
5223
- #: ../lib/puppet/pops/issues.rb:620
5219
+ #: ../lib/puppet/pops/issues.rb:619
5224
5220
  msgid "The name: '%{name}' is already defined by Puppet and can not be used as the name of %{expression}."
5225
5221
  msgstr ""
5226
5222
 
5227
- #: ../lib/puppet/pops/issues.rb:624
5223
+ #: ../lib/puppet/pops/issues.rb:623
5228
5224
  msgid "No matching entry for selector parameter with value '%{param}'"
5229
5225
  msgstr ""
5230
5226
 
5231
- #: ../lib/puppet/pops/issues.rb:628
5227
+ #: ../lib/puppet/pops/issues.rb:627
5232
5228
  msgid "Node inheritance is not supported in Puppet >= 4.0.0. See http://links.puppet.com/puppet-node-inheritance-deprecation"
5233
5229
  msgstr ""
5234
5230
 
5235
- #: ../lib/puppet/pops/issues.rb:632
5231
+ #: ../lib/puppet/pops/issues.rb:631
5236
5232
  msgid "Resource Override can only operate on resources, got: %{actual}"
5237
5233
  msgstr ""
5238
5234
 
5239
- #: ../lib/puppet/pops/issues.rb:636
5235
+ #: ../lib/puppet/pops/issues.rb:635
5240
5236
  msgid "The parameter '%{param}' is declared more than once in the parameter list"
5241
5237
  msgstr ""
5242
5238
 
5243
- #: ../lib/puppet/pops/issues.rb:640
5239
+ #: ../lib/puppet/pops/issues.rb:639
5244
5240
  msgid "The key '%{key}' is declared more than once"
5245
5241
  msgstr ""
5246
5242
 
5247
- #: ../lib/puppet/pops/issues.rb:644
5243
+ #: ../lib/puppet/pops/issues.rb:643
5248
5244
  msgid "This %{container} already has a 'default' entry - this is a duplicate"
5249
5245
  msgstr ""
5250
5246
 
5251
- #: ../lib/puppet/pops/issues.rb:648
5247
+ #: ../lib/puppet/pops/issues.rb:647
5252
5248
  msgid "The parameter $%{param} redefines a built in parameter in %{container}"
5253
5249
  msgstr ""
5254
5250
 
5255
- #: ../lib/puppet/pops/issues.rb:652
5251
+ #: ../lib/puppet/pops/issues.rb:651
5256
5252
  msgid "Expected value of type %{expected}, got %{actual}"
5257
5253
  msgstr ""
5258
5254
 
5259
- #: ../lib/puppet/pops/issues.rb:656
5255
+ #: ../lib/puppet/pops/issues.rb:655
5260
5256
  msgid "Unfolding of attributes from Hash can only be used once per resource body"
5261
5257
  msgstr ""
5262
5258
 
5263
- #: ../lib/puppet/pops/issues.rb:660
5259
+ #: ../lib/puppet/pops/issues.rb:659
5264
5260
  msgid "This %{expression} appears in a context where catalog related expressions are not allowed"
5265
5261
  msgstr ""
5266
5262
 
5267
- #: ../lib/puppet/pops/issues.rb:664
5263
+ #: ../lib/puppet/pops/issues.rb:663
5268
5264
  msgid "Syntax error at %{location}"
5269
5265
  msgstr ""
5270
5266
 
5271
- #: ../lib/puppet/pops/issues.rb:668
5267
+ #: ../lib/puppet/pops/issues.rb:667
5272
5268
  msgid "Illegal class reference"
5273
5269
  msgstr ""
5274
5270
 
5275
- #: ../lib/puppet/pops/issues.rb:672
5271
+ #: ../lib/puppet/pops/issues.rb:671
5276
5272
  msgid "Illegal fully qualified class reference"
5277
5273
  msgstr ""
5278
5274
 
5279
- #: ../lib/puppet/pops/issues.rb:676
5275
+ #: ../lib/puppet/pops/issues.rb:675
5280
5276
  msgid "Illegal fully qualified name"
5281
5277
  msgstr ""
5282
5278
 
5283
- #: ../lib/puppet/pops/issues.rb:680
5279
+ #: ../lib/puppet/pops/issues.rb:679
5284
5280
  msgid "Illegal name or bare word"
5285
5281
  msgstr ""
5286
5282
 
5287
- #: ../lib/puppet/pops/issues.rb:684
5283
+ #: ../lib/puppet/pops/issues.rb:683
5288
5284
  msgid "Illegal number '%{value}'"
5289
5285
  msgstr ""
5290
5286
 
5291
- #: ../lib/puppet/pops/issues.rb:688
5287
+ #: ../lib/puppet/pops/issues.rb:687
5292
5288
  msgid "Unicode escape '\\u' was not followed by 4 hex digits or 1-6 hex digits in {} or was > 10ffff"
5293
5289
  msgstr ""
5294
5290
 
5295
- #: ../lib/puppet/pops/issues.rb:692
5291
+ #: ../lib/puppet/pops/issues.rb:691
5296
5292
  msgid "Not a valid hex number %{value}"
5297
5293
  msgstr ""
5298
5294
 
5299
- #: ../lib/puppet/pops/issues.rb:696
5295
+ #: ../lib/puppet/pops/issues.rb:695
5300
5296
  msgid "Not a valid octal number %{value}"
5301
5297
  msgstr ""
5302
5298
 
5303
- #: ../lib/puppet/pops/issues.rb:700
5299
+ #: ../lib/puppet/pops/issues.rb:699
5304
5300
  msgid "Not a valid decimal number %{value}"
5305
5301
  msgstr ""
5306
5302
 
5307
- #: ../lib/puppet/pops/issues.rb:704
5303
+ #: ../lib/puppet/pops/issues.rb:703
5308
5304
  msgid "Internal Error: No string or file given to lexer to process."
5309
5305
  msgstr ""
5310
5306
 
5311
- #: ../lib/puppet/pops/issues.rb:708
5307
+ #: ../lib/puppet/pops/issues.rb:707
5312
5308
  msgid "Unrecognized escape sequence '\\%{ch}'"
5313
5309
  msgstr ""
5314
5310
 
5315
- #: ../lib/puppet/pops/issues.rb:712
5311
+ #: ../lib/puppet/pops/issues.rb:711
5316
5312
  msgid "Unclosed quote after %{after} followed by '%{followed_by}'"
5317
5313
  msgstr ""
5318
5314
 
5319
- #: ../lib/puppet/pops/issues.rb:716
5315
+ #: ../lib/puppet/pops/issues.rb:715
5320
5316
  msgid "Unclosed multiline comment"
5321
5317
  msgstr ""
5322
5318
 
5323
- #: ../lib/puppet/pops/issues.rb:720
5319
+ #: ../lib/puppet/pops/issues.rb:719
5324
5320
  msgid "Internal error: %{error}"
5325
5321
  msgstr ""
5326
5322
 
5327
- #: ../lib/puppet/pops/issues.rb:724
5323
+ #: ../lib/puppet/pops/issues.rb:723
5328
5324
  msgid "Unbalanced epp tag, reached <eof> without closing tag."
5329
5325
  msgstr ""
5330
5326
 
5331
- #: ../lib/puppet/pops/issues.rb:728
5327
+ #: ../lib/puppet/pops/issues.rb:727
5332
5328
  msgid "Reaching end after opening <%# without seeing %>"
5333
5329
  msgstr ""
5334
5330
 
5335
- #: ../lib/puppet/pops/issues.rb:732
5331
+ #: ../lib/puppet/pops/issues.rb:731
5336
5332
  msgid "Unbalanced embedded expression - opening <% and reaching end of input"
5337
5333
  msgstr ""
5338
5334
 
5339
- #: ../lib/puppet/pops/issues.rb:736
5335
+ #: ../lib/puppet/pops/issues.rb:735
5340
5336
  msgid "Unclosed parenthesis after '@(' followed by '%{followed_by}'"
5341
5337
  msgstr ""
5342
5338
 
5343
- #: ../lib/puppet/pops/issues.rb:740
5339
+ #: ../lib/puppet/pops/issues.rb:739
5344
5340
  msgid "Heredoc without end-tagged line"
5345
5341
  msgstr ""
5346
5342
 
5347
- #: ../lib/puppet/pops/issues.rb:744
5343
+ #: ../lib/puppet/pops/issues.rb:743
5348
5344
  msgid "Invalid heredoc escape char. Only t, r, n, s, u, L, $ allowed. Got '%{actual}'"
5349
5345
  msgstr ""
5350
5346
 
5351
- #: ../lib/puppet/pops/issues.rb:748
5347
+ #: ../lib/puppet/pops/issues.rb:747
5352
5348
  msgid "Invalid syntax in heredoc expected @(endtag[:syntax][/escapes])"
5353
5349
  msgstr ""
5354
5350
 
5355
- #: ../lib/puppet/pops/issues.rb:752
5351
+ #: ../lib/puppet/pops/issues.rb:751
5356
5352
  msgid "Heredoc without any following lines of text"
5357
5353
  msgstr ""
5358
5354
 
5359
- #: ../lib/puppet/pops/issues.rb:756
5355
+ #: ../lib/puppet/pops/issues.rb:755
5360
5356
  msgid "Heredoc with an empty endtag"
5361
5357
  msgstr ""
5362
5358
 
5363
- #: ../lib/puppet/pops/issues.rb:760
5359
+ #: ../lib/puppet/pops/issues.rb:759
5364
5360
  msgid "An escape char for @() may only appear once. Got '%{escapes}'"
5365
5361
  msgstr ""
5366
5362
 
5367
- #: ../lib/puppet/pops/issues.rb:764
5363
+ #: ../lib/puppet/pops/issues.rb:763
5368
5364
  msgid "Illegal %{format} Byte Order mark at beginning of input: %{bom} - remove these from the puppet source"
5369
5365
  msgstr ""
5370
5366
 
5371
- #: ../lib/puppet/pops/issues.rb:768
5367
+ #: ../lib/puppet/pops/issues.rb:767
5372
5368
  msgid "No such file or directory: %{file}"
5373
5369
  msgstr ""
5374
5370
 
5375
- #: ../lib/puppet/pops/issues.rb:772
5371
+ #: ../lib/puppet/pops/issues.rb:771
5376
5372
  msgid "%{file} is not a file"
5377
5373
  msgstr ""
5378
5374
 
5379
- #: ../lib/puppet/pops/issues.rb:777
5375
+ #: ../lib/puppet/pops/issues.rb:776
5380
5376
  msgid "%{expression} resulted in a value outside of Puppet Integer max range, got '%{value}'"
5381
5377
  msgstr ""
5382
5378
 
5383
- #: ../lib/puppet/pops/issues.rb:779
5379
+ #: ../lib/puppet/pops/issues.rb:778
5384
5380
  msgid "%{expression} resulted in a value outside of Puppet Integer min range, got '%{value}'"
5385
5381
  msgstr ""
5386
5382
 
5387
- #: ../lib/puppet/pops/issues.rb:784
5383
+ #: ../lib/puppet/pops/issues.rb:783
5388
5384
  msgid "This runtime does not support hiera.yaml version %{version}"
5389
5385
  msgstr ""
5390
5386
 
5391
- #: ../lib/puppet/pops/issues.rb:788
5387
+ #: ../lib/puppet/pops/issues.rb:787
5392
5388
  msgid "hiera.yaml version 3 cannot be used in %{location}"
5393
5389
  msgstr ""
5394
5390
 
5395
- #: ../lib/puppet/pops/issues.rb:792
5391
+ #: ../lib/puppet/pops/issues.rb:791
5396
5392
  msgid "hiera.yaml version 4 cannot be used in the global layer"
5397
5393
  msgstr ""
5398
5394
 
5399
- #: ../lib/puppet/pops/issues.rb:796
5395
+ #: ../lib/puppet/pops/issues.rb:795
5400
5396
  msgid "Undefined variable '%{name}'"
5401
5397
  msgstr ""
5402
5398
 
5403
- #: ../lib/puppet/pops/issues.rb:800
5399
+ #: ../lib/puppet/pops/issues.rb:799
5404
5400
  msgid "Backend '%{name}' is defined more than once."
5405
5401
  msgstr ""
5406
5402
 
5407
- #: ../lib/puppet/pops/issues.rb:803 ../lib/puppet/pops/issues.rb:816
5403
+ #: ../lib/puppet/pops/issues.rb:802 ../lib/puppet/pops/issues.rb:815
5408
5404
  msgid "First defined at %{error_location}"
5409
5405
  msgstr ""
5410
5406
 
5411
- #: ../lib/puppet/pops/issues.rb:809
5407
+ #: ../lib/puppet/pops/issues.rb:808
5412
5408
  msgid "No data provider is registered for backend '%{name}'"
5413
5409
  msgstr ""
5414
5410
 
5415
- #: ../lib/puppet/pops/issues.rb:813
5411
+ #: ../lib/puppet/pops/issues.rb:812
5416
5412
  msgid "Hierarchy name '%{name}' defined more than once."
5417
5413
  msgstr ""
5418
5414
 
5419
- #: ../lib/puppet/pops/issues.rb:822
5415
+ #: ../lib/puppet/pops/issues.rb:821
5420
5416
  msgid "'hiera3_backend' is only allowed in the global layer"
5421
5417
  msgstr ""
5422
5418
 
5423
- #: ../lib/puppet/pops/issues.rb:826
5419
+ #: ../lib/puppet/pops/issues.rb:825
5424
5420
  msgid "'default_hierarchy' is only allowed in the module layer"
5425
5421
  msgstr ""
5426
5422
 
5427
- #: ../lib/puppet/pops/issues.rb:830
5423
+ #: ../lib/puppet/pops/issues.rb:829
5428
5424
  msgid "Use \"data_hash: %{function_name}_data\" instead of \"hiera3_backend: %{function_name}\""
5429
5425
  msgstr ""
5430
5426
 
5431
- #: ../lib/puppet/pops/issues.rb:834
5427
+ #: ../lib/puppet/pops/issues.rb:833
5432
5428
  msgid "One of %{keys} must be defined in hierarchy '%{name}'"
5433
5429
  msgstr ""
5434
5430
 
5435
- #: ../lib/puppet/pops/issues.rb:838 ../lib/puppet/pops/issues.rb:846
5431
+ #: ../lib/puppet/pops/issues.rb:837 ../lib/puppet/pops/issues.rb:845
5436
5432
  msgid "Only one of %{keys} can be defined in hierarchy '%{name}'"
5437
5433
  msgstr ""
5438
5434
 
5439
- #: ../lib/puppet/pops/issues.rb:842
5435
+ #: ../lib/puppet/pops/issues.rb:841
5440
5436
  msgid "Only one of %{keys} can be defined in defaults"
5441
5437
  msgstr ""
5442
5438
 
5443
- #: ../lib/puppet/pops/issues.rb:850
5439
+ #: ../lib/puppet/pops/issues.rb:849
5444
5440
  msgid "Option key '%{key}' used in hierarchy '%{name}' is reserved by Puppet"
5445
5441
  msgstr ""
5446
5442
 
5447
- #: ../lib/puppet/pops/issues.rb:854
5443
+ #: ../lib/puppet/pops/issues.rb:853
5448
5444
  msgid "Option key '%{key}' used in defaults is reserved by Puppet"
5449
5445
  msgstr ""
5450
5446
 
5451
- #: ../lib/puppet/pops/issues.rb:858
5447
+ #: ../lib/puppet/pops/issues.rb:857
5452
5448
  msgid "Unable to find '%{function_type}' function named '%{function_name}'"
5453
5449
  msgstr ""
5454
5450
 
5455
- #: ../lib/puppet/pops/issues.rb:862
5451
+ #: ../lib/puppet/pops/issues.rb:861
5456
5452
  msgid "'alias' interpolation is only permitted if the expression is equal to the entire string"
5457
5453
  msgstr ""
5458
5454
 
5459
- #: ../lib/puppet/pops/issues.rb:866
5455
+ #: ../lib/puppet/pops/issues.rb:865
5460
5456
  msgid "Unknown interpolation method '%{name}'"
5461
5457
  msgstr ""
5462
5458
 
5463
- #: ../lib/puppet/pops/issues.rb:870
5459
+ #: ../lib/puppet/pops/issues.rb:869
5464
5460
  msgid "Interpolation using method syntax is not allowed in this context"
5465
5461
  msgstr ""
5466
5462
 
5467
- #: ../lib/puppet/pops/issues.rb:874
5463
+ #: ../lib/puppet/pops/issues.rb:873
5468
5464
  msgid "Endless recursion detected when attempting to serialize value of class %{type_name}"
5469
5465
  msgstr ""
5470
5466
 
5471
- #: ../lib/puppet/pops/issues.rb:878
5467
+ #: ../lib/puppet/pops/issues.rb:877
5472
5468
  msgid "%{path} contains the special value default. It will be converted to the String 'default'"
5473
5469
  msgstr ""
5474
5470
 
5475
- #: ../lib/puppet/pops/issues.rb:882
5471
+ #: ../lib/puppet/pops/issues.rb:881
5476
5472
  msgid "%{path} contains %{klass} value. It will be converted to the String '%{value}'"
5477
5473
  msgstr ""
5478
5474
 
5479
- #: ../lib/puppet/pops/issues.rb:886
5475
+ #: ../lib/puppet/pops/issues.rb:885
5480
5476
  msgid "%{path} contains a hash with %{klass} key. It will be converted to the String '%{value}'"
5481
5477
  msgstr ""
5482
5478
 
5483
- #: ../lib/puppet/pops/issues.rb:890
5479
+ #: ../lib/puppet/pops/issues.rb:889
5484
5480
  msgid "The feature '%{feature}' is only available when compiling a catalog"
5485
5481
  msgstr ""
5486
5482
 
5487
- #: ../lib/puppet/pops/issues.rb:894
5483
+ #: ../lib/puppet/pops/issues.rb:893
5488
5484
  msgid "The catalog operation '%{operation}' is only available when compiling a catalog"
5489
5485
  msgstr ""
5490
5486
 
5491
- #: ../lib/puppet/pops/issues.rb:898
5487
+ #: ../lib/puppet/pops/issues.rb:897
5492
5488
  msgid "%{expr} is only available when compiling a catalog"
5493
5489
  msgstr ""
5494
5490
 
5495
- #: ../lib/puppet/pops/issues.rb:902
5491
+ #: ../lib/puppet/pops/issues.rb:901
5496
5492
  msgid "The task operation '%{operation}' is not available when compiling a catalog"
5497
5493
  msgstr ""
5498
5494
 
5499
- #: ../lib/puppet/pops/issues.rb:906
5495
+ #: ../lib/puppet/pops/issues.rb:905
5500
5496
  msgid "%{expr} is not available when compiling a catalog"
5501
5497
  msgstr ""
5502
5498
 
5503
- #: ../lib/puppet/pops/issues.rb:910
5499
+ #: ../lib/puppet/pops/issues.rb:909
5504
5500
  msgid "The 'bolt' library is required to %{action}"
5505
5501
  msgstr ""
5506
5502
 
5507
- #: ../lib/puppet/pops/issues.rb:914
5503
+ #: ../lib/puppet/pops/issues.rb:913
5508
5504
  msgid "Task not found: %{type_name}"
5509
5505
  msgstr ""
5510
5506
 
5511
- #: ../lib/puppet/pops/issues.rb:918
5507
+ #: ../lib/puppet/pops/issues.rb:917
5512
5508
  msgid "Failed to load: %{type_name}"
5513
5509
  msgstr ""
5514
5510
 
@@ -5626,19 +5622,23 @@ msgstr ""
5626
5622
  msgid "The code loaded from %{source_ref} did not produce a Function class when evaluated. Got '%{klass}'"
5627
5623
  msgstr ""
5628
5624
 
5629
- #: ../lib/puppet/pops/loader/ruby_legacy_function_instantiator.rb:17
5625
+ #: ../lib/puppet/pops/loader/ruby_legacy_function_instantiator.rb:24
5630
5626
  msgid "The code loaded from %{source_ref} does not seem to be a Puppet 3x API function - no 'newfunction' call."
5631
5627
  msgstr ""
5632
5628
 
5633
- #. TRANSLATORS - the word 'newfunction' shoud not be translated as it is a method name.
5634
- #: ../lib/puppet/pops/loader/ruby_legacy_function_instantiator.rb:37
5629
+ #. TRANSLATORS - the word 'newfunction' should not be translated as it is a method name.
5630
+ #: ../lib/puppet/pops/loader/ruby_legacy_function_instantiator.rb:46
5635
5631
  msgid "Illegal legacy function definition! The code loaded from %{source_ref} did not return the result of calling 'newfunction'. Got '%{klass}'"
5636
5632
  msgstr ""
5637
5633
 
5638
- #: ../lib/puppet/pops/loader/ruby_legacy_function_instantiator.rb:40
5634
+ #: ../lib/puppet/pops/loader/ruby_legacy_function_instantiator.rb:49
5639
5635
  msgid "The code loaded from %{source_ref} produced mis-matched name, expected 'function_%{type_name}', got '%{created_name}'"
5640
5636
  msgstr ""
5641
5637
 
5638
+ #: ../lib/puppet/pops/loader/ruby_legacy_function_instantiator.rb:92
5639
+ msgid "Illegal method definition of method '%{method_name}' on line %{line}' in legacy function. See %{url} for more information"
5640
+ msgstr ""
5641
+
5642
5642
  #: ../lib/puppet/pops/loader/task_instantiator.rb:27
5643
5643
  msgid "Failed to load metadata for task %{name}: %{reason}"
5644
5644
  msgstr ""
@@ -6716,39 +6716,39 @@ msgstr ""
6716
6716
  msgid "Refusing to install package group %{resource_name}, because allow_virtual is false."
6717
6717
  msgstr ""
6718
6718
 
6719
- #: ../lib/puppet/provider/package/pkg.rb:46 ../lib/puppet/provider/package/pkg.rb:56
6719
+ #: ../lib/puppet/provider/package/pkg.rb:55 ../lib/puppet/provider/package/pkg.rb:65
6720
6720
  msgid "Unknown format %{resource_name}: %{full_flags}[%{bad_flag}]"
6721
6721
  msgstr ""
6722
6722
 
6723
- #: ../lib/puppet/provider/package/pkg.rb:87
6723
+ #: ../lib/puppet/provider/package/pkg.rb:96
6724
6724
  msgid "Unknown format %{resource_name}: %{state}"
6725
6725
  msgstr ""
6726
6726
 
6727
- #: ../lib/puppet/provider/package/pkg.rb:106
6727
+ #: ../lib/puppet/provider/package/pkg.rb:115
6728
6728
  msgid "Unknown line format %{resource_name}: %{parse_line}"
6729
6729
  msgstr ""
6730
6730
 
6731
- #: ../lib/puppet/provider/package/pkg.rb:116
6731
+ #: ../lib/puppet/provider/package/pkg.rb:125
6732
6732
  msgid "Unable to unfreeze %{package}"
6733
6733
  msgstr ""
6734
6734
 
6735
- #: ../lib/puppet/provider/package/pkg.rb:151
6735
+ #: ../lib/puppet/provider/package/pkg.rb:160
6736
6736
  msgid "Implicit version %{should} has %{n} possible matches"
6737
6737
  msgstr ""
6738
6738
 
6739
- #: ../lib/puppet/provider/package/pkg.rb:161
6739
+ #: ../lib/puppet/provider/package/pkg.rb:172
6740
6740
  msgid "Selecting version '%{version}' for implicit '%{should}'"
6741
6741
  msgstr ""
6742
6742
 
6743
- #: ../lib/puppet/provider/package/pkg.rb:166
6743
+ #: ../lib/puppet/provider/package/pkg.rb:177
6744
6744
  msgid "No version of %{name} matching %{should} is installable, even though the package is currently installed"
6745
6745
  msgstr ""
6746
6746
 
6747
- #: ../lib/puppet/provider/package/pkg.rb:185
6747
+ #: ../lib/puppet/provider/package/pkg.rb:196
6748
6748
  msgid "pkg warning: %{warnings}"
6749
6749
  msgstr ""
6750
6750
 
6751
- #: ../lib/puppet/provider/package/pkg.rb:221 ../lib/puppet/provider/package/pkg.rb:241
6751
+ #: ../lib/puppet/provider/package/pkg.rb:237 ../lib/puppet/provider/package/pkg.rb:257
6752
6752
  msgid "Unable to update %{package}"
6753
6753
  msgstr ""
6754
6754
 
@@ -6784,11 +6784,11 @@ msgstr ""
6784
6784
  msgid "Package not in pkgutil catalog: %{package}"
6785
6785
  msgstr ""
6786
6786
 
6787
- #: ../lib/puppet/provider/package/portage.rb:215
6787
+ #: ../lib/puppet/provider/package/portage.rb:226
6788
6788
  msgid "No package found with the specified name [%{name}]"
6789
6789
  msgstr ""
6790
6790
 
6791
- #: ../lib/puppet/provider/package/portage.rb:219
6791
+ #: ../lib/puppet/provider/package/portage.rb:230
6792
6792
  msgid "More than one package with the specified name [%{search_value}], please use the category parameter to disambiguate"
6793
6793
  msgstr ""
6794
6794
 
@@ -7195,7 +7195,7 @@ msgstr ""
7195
7195
  msgid "Could not find resource %{resource} when converting %{message} resources"
7196
7196
  msgstr ""
7197
7197
 
7198
- #: ../lib/puppet/resource/status.rb:139 ../lib/puppet/transaction.rb:264
7198
+ #: ../lib/puppet/resource/status.rb:139 ../lib/puppet/transaction.rb:266
7199
7199
  msgid "Could not evaluate: %{detail}"
7200
7200
  msgstr ""
7201
7201
 
@@ -7339,53 +7339,57 @@ msgstr ""
7339
7339
  msgid "Using --configprint is deprecated. Use 'puppet config <subcommand>' instead."
7340
7340
  msgstr ""
7341
7341
 
7342
- #: ../lib/puppet/settings.rb:695
7342
+ #: ../lib/puppet/settings.rb:599
7343
+ msgid "Could not load %{file}: %{detail}"
7344
+ msgstr ""
7345
+
7346
+ #: ../lib/puppet/settings.rb:700
7343
7347
  msgid "Invalid setting type '%{type}'"
7344
7348
  msgstr ""
7345
7349
 
7346
- #: ../lib/puppet/settings.rb:839
7350
+ #: ../lib/puppet/settings.rb:844
7347
7351
  msgid "Unknown searchpath case: %{source_type} for the %{source} settings path element."
7348
7352
  msgstr ""
7349
7353
 
7350
- #: ../lib/puppet/settings.rb:901
7354
+ #: ../lib/puppet/settings.rb:906
7351
7355
  msgid "setting definition for '%{name}' is not a hash!"
7352
7356
  msgstr ""
7353
7357
 
7354
- #: ../lib/puppet/settings.rb:906
7358
+ #: ../lib/puppet/settings.rb:911
7355
7359
  msgid "Setting %{name} is already defined"
7356
7360
  msgstr ""
7357
7361
 
7358
- #: ../lib/puppet/settings.rb:910
7362
+ #: ../lib/puppet/settings.rb:915
7359
7363
  msgid "Setting %{name} is already using short name '%{short}'"
7360
7364
  msgstr ""
7361
7365
 
7362
- #: ../lib/puppet/settings.rb:1167
7366
+ #: ../lib/puppet/settings.rb:1172
7363
7367
  msgid "Setting %{name} is deprecated."
7364
7368
  msgstr ""
7365
7369
 
7366
7370
  #. TRANSLATORS 'puppet.conf' is a file name and should not be translated
7367
- #: ../lib/puppet/settings.rb:1172
7371
+ #: ../lib/puppet/settings.rb:1177
7368
7372
  msgid "Setting %{name} is deprecated in puppet.conf."
7369
7373
  msgstr ""
7370
7374
 
7371
- #: ../lib/puppet/settings.rb:1339
7375
+ #: ../lib/puppet/settings.rb:1344
7372
7376
  msgid "Error converting value for param '%{name}': %{detail}"
7373
7377
  msgstr ""
7374
7378
 
7375
- #: ../lib/puppet/settings.rb:1363
7379
+ #: ../lib/puppet/settings.rb:1368
7376
7380
  msgid "Could not find value for %{expression}"
7377
7381
  msgstr ""
7378
7382
 
7379
7383
  #. TRANSLATORS '$environment' is a Puppet specific variable and should not be translated
7380
- #: ../lib/puppet/settings.rb:1373
7384
+ #: ../lib/puppet/settings.rb:1378
7381
7385
  msgid "You cannot interpolate $environment within '%{setting_name}' when using directory environments."
7382
7386
  msgstr ""
7383
7387
 
7384
- #: ../lib/puppet/settings.rb:1374
7388
+ #: ../lib/puppet/settings.rb:1379
7385
7389
  msgid "Its value will remain %{value}."
7386
7390
  msgstr ""
7387
7391
 
7388
- #: ../lib/puppet/settings.rb:1405
7392
+ #: ../lib/puppet/settings.rb:1410
7389
7393
  msgid "Attempt to assign a value to unknown setting %{name}"
7390
7394
  msgstr ""
7391
7395
 
@@ -7823,64 +7827,64 @@ msgstr ""
7823
7827
  msgid "PP syntax checker: \"%{message}\""
7824
7828
  msgstr ""
7825
7829
 
7826
- #: ../lib/puppet/transaction.rb:84
7830
+ #: ../lib/puppet/transaction.rb:86
7827
7831
  msgid "Some pre-run checks failed"
7828
7832
  msgstr ""
7829
7833
 
7830
- #: ../lib/puppet/transaction.rb:100
7834
+ #: ../lib/puppet/transaction.rb:102
7831
7835
  msgid "Applying configuration version '%{version}'"
7832
7836
  msgstr ""
7833
7837
 
7834
- #: ../lib/puppet/transaction.rb:123
7838
+ #: ../lib/puppet/transaction.rb:125
7835
7839
  msgid "Provider %{name} is not functional on this host"
7836
7840
  msgstr ""
7837
7841
 
7838
- #: ../lib/puppet/transaction.rb:139
7842
+ #: ../lib/puppet/transaction.rb:141
7839
7843
  msgid "Could not find a suitable provider for %{type}"
7840
7844
  msgstr ""
7841
7845
 
7842
- #: ../lib/puppet/transaction.rb:146
7846
+ #: ../lib/puppet/transaction.rb:148
7843
7847
  msgid "post_resource_eval failed for provider %{provider}"
7844
7848
  msgstr ""
7845
7849
 
7846
- #: ../lib/puppet/transaction.rb:163
7850
+ #: ../lib/puppet/transaction.rb:165
7847
7851
  msgid "resource is part of a dependency cycle"
7848
7852
  msgstr ""
7849
7853
 
7850
- #: ../lib/puppet/transaction.rb:165
7854
+ #: ../lib/puppet/transaction.rb:167
7851
7855
  msgid "One or more resource dependency cycles detected in graph"
7852
7856
  msgstr ""
7853
7857
 
7854
- #: ../lib/puppet/transaction.rb:178
7858
+ #: ../lib/puppet/transaction.rb:180
7855
7859
  msgid "Somehow left a component in the relationship graph"
7856
7860
  msgstr ""
7857
7861
 
7858
- #: ../lib/puppet/transaction.rb:180
7862
+ #: ../lib/puppet/transaction.rb:182
7859
7863
  msgid "Starting to evaluate the resource"
7860
7864
  msgstr ""
7861
7865
 
7862
- #: ../lib/puppet/transaction.rb:182
7866
+ #: ../lib/puppet/transaction.rb:184
7863
7867
  msgid "Evaluated in %{seconds} seconds"
7864
7868
  msgstr ""
7865
7869
 
7866
- #: ../lib/puppet/transaction.rb:295
7870
+ #: ../lib/puppet/transaction.rb:297
7867
7871
  msgid "Dependency %{dep} has failures: %{status}"
7868
7872
  msgstr ""
7869
7873
 
7870
- #: ../lib/puppet/transaction.rb:315
7874
+ #: ../lib/puppet/transaction.rb:318
7871
7875
  msgid "Prefetch failed for %{type_name} provider '%{name}'"
7872
7876
  msgstr ""
7873
7877
 
7874
7878
  #. TRANSLATORS `prefetch` is a function name and should not be translated
7875
- #: ../lib/puppet/transaction.rb:365
7879
+ #: ../lib/puppet/transaction.rb:363 ../lib/puppet/transaction.rb:366
7876
7880
  msgid "Could not prefetch %{type_name} provider '%{name}': %{detail}"
7877
7881
  msgstr ""
7878
7882
 
7879
- #: ../lib/puppet/transaction.rb:394
7883
+ #: ../lib/puppet/transaction.rb:399
7880
7884
  msgid "Skipping because of failed dependencies"
7881
7885
  msgstr ""
7882
7886
 
7883
- #: ../lib/puppet/transaction.rb:399
7887
+ #: ../lib/puppet/transaction.rb:404
7884
7888
  msgid "Skipping because provider prefetch failed"
7885
7889
  msgstr ""
7886
7890
 
@@ -7919,11 +7923,11 @@ msgid_plural "Triggered '%{callback}' from %{count} events"
7919
7923
  msgstr[0] ""
7920
7924
  msgstr[1] ""
7921
7925
 
7922
- #: ../lib/puppet/transaction/event_manager.rb:154
7926
+ #: ../lib/puppet/transaction/event_manager.rb:157
7923
7927
  msgid "Failed to call %{callback}: %{detail}"
7924
7928
  msgstr ""
7925
7929
 
7926
- #: ../lib/puppet/transaction/event_manager.rb:164
7930
+ #: ../lib/puppet/transaction/event_manager.rb:176
7927
7931
  msgid "Would have triggered '%{callback}' from %{count} event"
7928
7932
  msgid_plural "Would have triggered '%{callback}' from %{count} events"
7929
7933
  msgstr[0] ""
@@ -8620,19 +8624,19 @@ msgstr ""
8620
8624
  msgid "Already a generated class named %{klassname}"
8621
8625
  msgstr ""
8622
8626
 
8623
- #: ../lib/puppet/util/command_line.rb:67
8627
+ #: ../lib/puppet/util/command_line.rb:71
8624
8628
  msgid "Could not initialize global default settings"
8625
8629
  msgstr ""
8626
8630
 
8627
- #: ../lib/puppet/util/command_line.rb:166
8631
+ #: ../lib/puppet/util/command_line.rb:169
8628
8632
  msgid "Error: Could not parse application options: invalid option: %{opt}"
8629
8633
  msgstr ""
8630
8634
 
8631
- #: ../lib/puppet/util/command_line.rb:169
8635
+ #: ../lib/puppet/util/command_line.rb:172
8632
8636
  msgid "See 'puppet help' for help on available puppet subcommands"
8633
8637
  msgstr ""
8634
8638
 
8635
- #: ../lib/puppet/util/command_line.rb:182
8639
+ #: ../lib/puppet/util/command_line.rb:185
8636
8640
  msgid "Error: Unknown Puppet subcommand '%{cmd}'"
8637
8641
  msgstr ""
8638
8642
 
@@ -9060,11 +9064,11 @@ msgstr ""
9060
9064
  msgid "Invalid syslog facility %{str}"
9061
9065
  msgstr ""
9062
9066
 
9063
- #: ../lib/puppet/util/log/destinations.rb:75
9067
+ #: ../lib/puppet/util/log/destinations.rb:76
9064
9068
  msgid "Creating log directory %{dir}"
9065
9069
  msgstr ""
9066
9070
 
9067
- #: ../lib/puppet/util/log/destinations.rb:101
9071
+ #: ../lib/puppet/util/log/destinations.rb:102
9068
9072
  msgid "Unable to set ownership to %{user}:%{group} for log file: %{path}"
9069
9073
  msgstr ""
9070
9074
 
@@ -9587,87 +9591,87 @@ msgstr ""
9587
9591
  msgid "Successfully resumed the %{service_name} service"
9588
9592
  msgstr ""
9589
9593
 
9590
- #: ../lib/puppet/util/windows/service.rb:372
9594
+ #: ../lib/puppet/util/windows/service.rb:373
9591
9595
  msgid "Unknown Service state '%{current_state}' for '%{service_name}'"
9592
9596
  msgstr ""
9593
9597
 
9594
- #: ../lib/puppet/util/windows/service.rb:389
9598
+ #: ../lib/puppet/util/windows/service.rb:391
9595
9599
  msgid "Unknown start type '%{start_type}' for '%{service_name}'"
9596
9600
  msgstr ""
9597
9601
 
9598
- #: ../lib/puppet/util/windows/service.rb:404
9602
+ #: ../lib/puppet/util/windows/service.rb:406
9599
9603
  msgid "Unknown start type %{start_type}"
9600
9604
  msgstr ""
9601
9605
 
9602
- #: ../lib/puppet/util/windows/service.rb:425
9606
+ #: ../lib/puppet/util/windows/service.rb:427
9603
9607
  msgid "Failed to update service configuration"
9604
9608
  msgstr ""
9605
9609
 
9606
- #: ../lib/puppet/util/windows/service.rb:485
9610
+ #: ../lib/puppet/util/windows/service.rb:487
9607
9611
  msgid "Failed to fetch services"
9608
9612
  msgstr ""
9609
9613
 
9610
- #: ../lib/puppet/util/windows/service.rb:534
9614
+ #: ../lib/puppet/util/windows/service.rb:536
9611
9615
  msgid "Failed to open a handle to the service"
9612
9616
  msgstr ""
9613
9617
 
9614
- #: ../lib/puppet/util/windows/service.rb:551
9618
+ #: ../lib/puppet/util/windows/service.rb:553
9615
9619
  msgid "Failed to open a handle to the service control manager"
9616
9620
  msgstr ""
9617
9621
 
9618
- #: ../lib/puppet/util/windows/service.rb:575
9622
+ #: ../lib/puppet/util/windows/service.rb:576
9619
9623
  msgid "The service is already in the %{final_state} state. No further work needs to be done."
9620
9624
  msgstr ""
9621
9625
 
9622
- #: ../lib/puppet/util/windows/service.rb:587
9626
+ #: ../lib/puppet/util/windows/service.rb:588
9623
9627
  msgid "The service must be in one of the %{valid_initial_states} states to perform this transition. It is currently in the %{current_state} state."
9624
9628
  msgstr ""
9625
9629
 
9626
- #: ../lib/puppet/util/windows/service.rb:598
9630
+ #: ../lib/puppet/util/windows/service.rb:599
9627
9631
  msgid "There is already a pending transition to the %{final_state} state for the %{service_name} service."
9628
9632
  msgstr ""
9629
9633
 
9630
- #: ../lib/puppet/util/windows/service.rb:614
9634
+ #: ../lib/puppet/util/windows/service.rb:615
9631
9635
  msgid "The service is in the %{pending_state} state, which is an unsafe pending state."
9632
9636
  msgstr ""
9633
9637
 
9634
- #: ../lib/puppet/util/windows/service.rb:619
9638
+ #: ../lib/puppet/util/windows/service.rb:620
9635
9639
  msgid "Transitioning the %{service_name} service from %{initial_state} to %{final_state}"
9636
9640
  msgstr ""
9637
9641
 
9638
- #: ../lib/puppet/util/windows/service.rb:623
9642
+ #: ../lib/puppet/util/windows/service.rb:624
9639
9643
  msgid "Waiting for the transition to finish"
9640
9644
  msgstr ""
9641
9645
 
9642
- #: ../lib/puppet/util/windows/service.rb:627
9646
+ #: ../lib/puppet/util/windows/service.rb:629
9643
9647
  msgid "Failed to transition the %{service_name} service to the %{final_state} state. Detail: %{detail}"
9644
9648
  msgstr ""
9645
9649
 
9646
- #: ../lib/puppet/util/windows/service.rb:666 ../lib/puppet/util/windows/service.rb:702
9650
+ #: ../lib/puppet/util/windows/service.rb:668 ../lib/puppet/util/windows/service.rb:704
9647
9651
  msgid "Service query failed"
9648
9652
  msgstr ""
9649
9653
 
9650
- #: ../lib/puppet/util/windows/service.rb:719
9654
+ #: ../lib/puppet/util/windows/service.rb:721
9651
9655
  msgid "Failed to send the %{control_signal} signal to the service. Its current state is %{current_state}. Reason for failure:"
9652
9656
  msgstr ""
9653
9657
 
9654
- #: ../lib/puppet/util/windows/service.rb:754
9658
+ #: ../lib/puppet/util/windows/service.rb:756
9655
9659
  msgid "The service transitioned to the %{pending_state} state."
9656
9660
  msgstr ""
9657
9661
 
9658
- #: ../lib/puppet/util/windows/service.rb:764
9662
+ #: ../lib/puppet/util/windows/service.rb:770
9659
9663
  msgid "Timed out while waiting for the service to transition from %{initial_state} to %{final_state} OR from %{initial_state} to %{pending_state} to %{final_state}. The service's current state is %{current_state}."
9660
9664
  msgstr ""
9661
9665
 
9662
- #: ../lib/puppet/util/windows/service.rb:779
9666
+ #: ../lib/puppet/util/windows/service.rb:785
9663
9667
  msgid "Waiting for the pending transition to the %{final_state} state to finish."
9664
9668
  msgstr ""
9665
9669
 
9666
- #: ../lib/puppet/util/windows/service.rb:792
9670
+ #: ../lib/puppet/util/windows/service.rb:799
9667
9671
  msgid "Unexpected transition to the %{current_state} state while waiting for the pending transition from %{pending_state} to %{final_state} to finish."
9668
9672
  msgstr ""
9669
9673
 
9670
- #: ../lib/puppet/util/windows/service.rb:806
9674
+ #: ../lib/puppet/util/windows/service.rb:813
9671
9675
  msgid "Timed out while waiting for the pending transition from %{pending_state} to %{final_state} to finish. The current state is %{current_state}."
9672
9676
  msgstr ""
9673
9677