puppet 7.10.0 → 7.13.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (192) hide show
  1. checksums.yaml +4 -4
  2. data/Gemfile +3 -3
  3. data/Gemfile.lock +20 -15
  4. data/ext/project_data.yaml +1 -1
  5. data/lib/puppet/application/agent.rb +4 -0
  6. data/lib/puppet/application/apply.rb +20 -2
  7. data/lib/puppet/application/lookup.rb +72 -24
  8. data/lib/puppet/application/resource.rb +15 -13
  9. data/lib/puppet/concurrent/thread_local_singleton.rb +6 -3
  10. data/lib/puppet/configurer.rb +98 -29
  11. data/lib/puppet/confine/variable.rb +1 -1
  12. data/lib/puppet/defaults.rb +17 -3
  13. data/lib/puppet/facter_impl.rb +96 -0
  14. data/lib/puppet/file_serving/metadata.rb +3 -0
  15. data/lib/puppet/file_serving/mount/file.rb +4 -4
  16. data/lib/puppet/file_system/file_impl.rb +10 -8
  17. data/lib/puppet/file_system/jruby.rb +1 -1
  18. data/lib/puppet/file_system/path_pattern.rb +10 -15
  19. data/lib/puppet/file_system/uniquefile.rb +1 -1
  20. data/lib/puppet/file_system/windows.rb +4 -4
  21. data/lib/puppet/file_system.rb +3 -2
  22. data/lib/puppet/forge.rb +1 -1
  23. data/lib/puppet/functions/versioncmp.rb +6 -2
  24. data/lib/puppet/graph/simple_graph.rb +2 -1
  25. data/lib/puppet/http/client.rb +1 -1
  26. data/lib/puppet/http/redirector.rb +5 -0
  27. data/lib/puppet/indirector/catalog/compiler.rb +3 -3
  28. data/lib/puppet/indirector/facts/facter.rb +6 -6
  29. data/lib/puppet/indirector/indirection.rb +1 -1
  30. data/lib/puppet/module_tool/applications/uninstaller.rb +1 -1
  31. data/lib/puppet/module_tool/applications/upgrader.rb +1 -1
  32. data/lib/puppet/pal/pal_impl.rb +1 -1
  33. data/lib/puppet/parser/resource.rb +1 -1
  34. data/lib/puppet/parser/scope.rb +8 -7
  35. data/lib/puppet/parser/templatewrapper.rb +1 -0
  36. data/lib/puppet/pops/evaluator/closure.rb +7 -5
  37. data/lib/puppet/pops/evaluator/runtime3_resource_support.rb +1 -0
  38. data/lib/puppet/pops/lookup/lookup_adapter.rb +3 -2
  39. data/lib/puppet/pops/model/ast.rb +1 -0
  40. data/lib/puppet/pops/model/factory.rb +14 -13
  41. data/lib/puppet/pops/parser/code_merger.rb +4 -4
  42. data/lib/puppet/pops/parser/egrammar.ra +4 -2
  43. data/lib/puppet/pops/parser/eparser.rb +909 -894
  44. data/lib/puppet/pops/parser/lexer2.rb +69 -68
  45. data/lib/puppet/pops/parser/slurp_support.rb +1 -0
  46. data/lib/puppet/pops/serialization/to_data_converter.rb +6 -18
  47. data/lib/puppet/pops/serialization/to_stringified_converter.rb +1 -1
  48. data/lib/puppet/pops/types/type_formatter.rb +7 -6
  49. data/lib/puppet/pops/types/types.rb +1 -1
  50. data/lib/puppet/pops/validation/checker4_0.rb +7 -2
  51. data/lib/puppet/provider/aix_object.rb +1 -1
  52. data/lib/puppet/provider/group/groupadd.rb +5 -2
  53. data/lib/puppet/provider/package/pkg.rb +11 -1
  54. data/lib/puppet/provider/package/puppet_gem.rb +1 -1
  55. data/lib/puppet/provider/package/puppetserver_gem.rb +1 -1
  56. data/lib/puppet/provider/package/yum.rb +1 -1
  57. data/lib/puppet/provider/service/base.rb +1 -1
  58. data/lib/puppet/provider/service/init.rb +10 -9
  59. data/lib/puppet/provider/service/launchd.rb +1 -1
  60. data/lib/puppet/provider/service/redhat.rb +1 -1
  61. data/lib/puppet/provider/service/smf.rb +3 -3
  62. data/lib/puppet/provider/service/systemd.rb +1 -1
  63. data/lib/puppet/provider/service/upstart.rb +5 -5
  64. data/lib/puppet/provider/user/aix.rb +44 -1
  65. data/lib/puppet/provider/user/directoryservice.rb +1 -1
  66. data/lib/puppet/provider/user/useradd.rb +30 -7
  67. data/lib/puppet/provider.rb +1 -1
  68. data/lib/puppet/reference/providers.rb +2 -2
  69. data/lib/puppet/resource/catalog.rb +1 -1
  70. data/lib/puppet/resource/type_collection.rb +2 -1
  71. data/lib/puppet/resource.rb +38 -5
  72. data/lib/puppet/runtime.rb +11 -1
  73. data/lib/puppet/settings/file_setting.rb +3 -8
  74. data/lib/puppet/settings.rb +2 -2
  75. data/lib/puppet/ssl/verifier.rb +3 -1
  76. data/lib/puppet/test/test_helper.rb +4 -1
  77. data/lib/puppet/transaction/persistence.rb +22 -12
  78. data/lib/puppet/type/exec.rb +9 -1
  79. data/lib/puppet/type/file/data_sync.rb +1 -1
  80. data/lib/puppet/type/file/group.rb +8 -1
  81. data/lib/puppet/type/file/owner.rb +8 -1
  82. data/lib/puppet/type/group.rb +0 -1
  83. data/lib/puppet/type/resources.rb +1 -1
  84. data/lib/puppet/type/service.rb +8 -3
  85. data/lib/puppet/type/user.rb +40 -39
  86. data/lib/puppet/util/autoload.rb +1 -1
  87. data/lib/puppet/util/command_line.rb +1 -1
  88. data/lib/puppet/util/filetype.rb +2 -2
  89. data/lib/puppet/util/json.rb +20 -0
  90. data/lib/puppet/util/log.rb +8 -4
  91. data/lib/puppet/util/logging.rb +1 -25
  92. data/lib/puppet/util/monkey_patches.rb +26 -2
  93. data/lib/puppet/util/package.rb +25 -16
  94. data/lib/puppet/util/pidlock.rb +1 -1
  95. data/lib/puppet/util/rdoc/parser/puppet_parser_core.rb +1 -1
  96. data/lib/puppet/util/suidmanager.rb +1 -2
  97. data/lib/puppet/util/tagging.rb +1 -0
  98. data/lib/puppet/util/windows/service.rb +0 -5
  99. data/lib/puppet/util/windows/user.rb +0 -1
  100. data/lib/puppet/util/windows.rb +3 -0
  101. data/lib/puppet/util/yaml.rb +11 -0
  102. data/lib/puppet/util.rb +4 -3
  103. data/lib/puppet/version.rb +1 -1
  104. data/lib/puppet.rb +3 -6
  105. data/locales/puppet.pot +265 -239
  106. data/man/man5/puppet.conf.5 +18 -2
  107. data/man/man8/puppet-agent.8 +4 -1
  108. data/man/man8/puppet-apply.8 +1 -1
  109. data/man/man8/puppet-catalog.8 +1 -1
  110. data/man/man8/puppet-config.8 +1 -1
  111. data/man/man8/puppet-describe.8 +1 -1
  112. data/man/man8/puppet-device.8 +1 -1
  113. data/man/man8/puppet-doc.8 +1 -1
  114. data/man/man8/puppet-epp.8 +1 -1
  115. data/man/man8/puppet-facts.8 +1 -1
  116. data/man/man8/puppet-filebucket.8 +1 -1
  117. data/man/man8/puppet-generate.8 +1 -1
  118. data/man/man8/puppet-help.8 +1 -1
  119. data/man/man8/puppet-lookup.8 +9 -6
  120. data/man/man8/puppet-module.8 +1 -1
  121. data/man/man8/puppet-node.8 +1 -1
  122. data/man/man8/puppet-parser.8 +1 -1
  123. data/man/man8/puppet-plugin.8 +1 -1
  124. data/man/man8/puppet-report.8 +1 -1
  125. data/man/man8/puppet-resource.8 +1 -1
  126. data/man/man8/puppet-script.8 +1 -1
  127. data/man/man8/puppet-ssl.8 +1 -1
  128. data/man/man8/puppet.8 +2 -2
  129. data/spec/fixtures/integration/application/agent/cached_deferred_catalog.json +2 -1
  130. data/spec/fixtures/unit/forge/bacula.json +1 -1
  131. data/spec/integration/application/agent_spec.rb +44 -0
  132. data/spec/integration/application/lookup_spec.rb +29 -6
  133. data/spec/integration/configurer_spec.rb +1 -1
  134. data/spec/integration/indirector/facts/facter_spec.rb +3 -3
  135. data/spec/integration/parser/pcore_resource_spec.rb +20 -0
  136. data/spec/integration/transaction/report_spec.rb +1 -1
  137. data/spec/integration/type/file_spec.rb +2 -2
  138. data/spec/integration/type/package_spec.rb +6 -6
  139. data/spec/integration/util/rdoc/parser_spec.rb +1 -1
  140. data/spec/integration/util/windows/process_spec.rb +1 -9
  141. data/spec/shared_contexts/l10n.rb +5 -0
  142. data/spec/unit/application/apply_spec.rb +76 -56
  143. data/spec/unit/application/lookup_spec.rb +131 -10
  144. data/spec/unit/application/resource_spec.rb +29 -0
  145. data/spec/unit/concurrent/thread_local_singleton_spec.rb +39 -0
  146. data/spec/unit/configurer_spec.rb +113 -28
  147. data/spec/unit/facter_impl_spec.rb +31 -0
  148. data/spec/unit/file_bucket/dipper_spec.rb +2 -2
  149. data/spec/unit/file_system/uniquefile_spec.rb +7 -1
  150. data/spec/unit/file_system_spec.rb +41 -4
  151. data/spec/unit/forge/module_release_spec.rb +3 -3
  152. data/spec/unit/functions/lookup_spec.rb +64 -0
  153. data/spec/unit/functions/versioncmp_spec.rb +40 -4
  154. data/spec/unit/http/client_spec.rb +58 -1
  155. data/spec/unit/indirector/indirection_spec.rb +10 -3
  156. data/spec/unit/network/formats_spec.rb +6 -0
  157. data/spec/unit/pops/parser/parse_containers_spec.rb +2 -2
  158. data/spec/unit/pops/serialization/to_from_hr_spec.rb +0 -58
  159. data/spec/unit/pops/serialization/to_stringified_spec.rb +5 -0
  160. data/spec/unit/pops/types/type_calculator_spec.rb +6 -0
  161. data/spec/unit/pops/validator/validator_spec.rb +5 -0
  162. data/spec/unit/provider/package/gem_spec.rb +1 -1
  163. data/spec/unit/provider/package/pip2_spec.rb +1 -1
  164. data/spec/unit/provider/package/pip3_spec.rb +1 -1
  165. data/spec/unit/provider/package/pip_spec.rb +1 -1
  166. data/spec/unit/provider/package/pkg_spec.rb +15 -0
  167. data/spec/unit/provider/package/puppet_gem_spec.rb +1 -1
  168. data/spec/unit/provider/package/puppetserver_gem_spec.rb +1 -1
  169. data/spec/unit/provider/service/gentoo_spec.rb +6 -5
  170. data/spec/unit/provider/service/init_spec.rb +15 -9
  171. data/spec/unit/provider/service/openwrt_spec.rb +21 -29
  172. data/spec/unit/provider/service/redhat_spec.rb +3 -2
  173. data/spec/unit/provider/user/aix_spec.rb +100 -0
  174. data/spec/unit/provider/user/directoryservice_spec.rb +1 -1
  175. data/spec/unit/provider/user/useradd_spec.rb +40 -0
  176. data/spec/unit/provider_spec.rb +4 -4
  177. data/spec/unit/puppet_spec.rb +12 -4
  178. data/spec/unit/resource/catalog_spec.rb +14 -1
  179. data/spec/unit/resource_spec.rb +58 -2
  180. data/spec/unit/settings/file_setting_spec.rb +10 -7
  181. data/spec/unit/transaction/persistence_spec.rb +51 -0
  182. data/spec/unit/type/file/group_spec.rb +7 -0
  183. data/spec/unit/type/file/owner_spec.rb +7 -0
  184. data/spec/unit/type/service_spec.rb +27 -0
  185. data/spec/unit/type/user_spec.rb +0 -45
  186. data/spec/unit/type_spec.rb +2 -2
  187. data/spec/unit/util/autoload_spec.rb +25 -8
  188. data/spec/unit/util/json_spec.rb +126 -0
  189. data/spec/unit/util/logging_spec.rb +2 -0
  190. data/spec/unit/util/yaml_spec.rb +37 -13
  191. data/tasks/parallel.rake +3 -3
  192. metadata +17 -4
data/locales/puppet.pot CHANGED
@@ -6,11 +6,11 @@
6
6
  #, fuzzy
7
7
  msgid ""
8
8
  msgstr ""
9
- "Project-Id-Version: Puppet automation framework 7.9.0-154-gc8aa8b2175\n"
9
+ "Project-Id-Version: Puppet automation framework 7.12.1-124-gf8ceb05064\n"
10
10
  "\n"
11
11
  "Report-Msgid-Bugs-To: https://tickets.puppetlabs.com\n"
12
- "POT-Creation-Date: 2021-08-11 13:52+0000\n"
13
- "PO-Revision-Date: 2021-08-11 13:52+0000\n"
12
+ "POT-Creation-Date: 2021-11-17 13:22+0000\n"
13
+ "PO-Revision-Date: 2021-11-17 13:22+0000\n"
14
14
  "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
15
15
  "Language-Team: LANGUAGE <LL@li.org>\n"
16
16
  "Language: \n"
@@ -28,11 +28,11 @@ msgstr ""
28
28
  msgid "See https://puppet.com/docs/puppet/%{minor_version}/deprecated_language.html"
29
29
  msgstr ""
30
30
 
31
- #: ../lib/hiera/scope.rb:46 ../lib/puppet/parser/scope.rb:534
31
+ #: ../lib/hiera/scope.rb:46 ../lib/puppet/parser/scope.rb:535
32
32
  msgid "Variable: %{name}"
33
33
  msgstr ""
34
34
 
35
- #: ../lib/hiera/scope.rb:47 ../lib/hiera/scope.rb:49 ../lib/puppet/parser/scope.rb:535 ../lib/puppet/parser/scope.rb:537
35
+ #: ../lib/hiera/scope.rb:47 ../lib/hiera/scope.rb:49 ../lib/puppet/parser/scope.rb:536 ../lib/puppet/parser/scope.rb:538
36
36
  msgid "Undefined variable '%{name}'; %{reason}"
37
37
  msgstr ""
38
38
 
@@ -48,21 +48,21 @@ msgstr ""
48
48
  msgid "Config file %{hiera_config} not found, using Hiera defaults"
49
49
  msgstr ""
50
50
 
51
- #: ../lib/puppet.rb:138
51
+ #: ../lib/puppet.rb:134
52
52
  msgid "Support for ruby version %{version} is deprecated and will be removed in a future release. See https://puppet.com/docs/puppet/latest/system_requirements.html for a list of supported ruby versions."
53
53
  msgstr ""
54
54
 
55
- #: ../lib/puppet.rb:224
55
+ #: ../lib/puppet.rb:220
56
56
  msgid "The environmentpath setting cannot be empty or nil."
57
57
  msgstr ""
58
58
 
59
59
  #. TRANSLATORS: `message` is an already translated string of why SSL failed to initialize
60
- #: ../lib/puppet.rb:250
60
+ #: ../lib/puppet.rb:246
61
61
  msgid "Failed to initialize SSL: %{message}"
62
62
  msgstr ""
63
63
 
64
64
  #. TRANSLATORS: `puppet agent -t` is a command and should not be translated
65
- #: ../lib/puppet.rb:252
65
+ #: ../lib/puppet.rb:248
66
66
  msgid "Run `puppet agent -t`"
67
67
  msgstr ""
68
68
 
@@ -184,57 +184,57 @@ msgstr ""
184
184
  msgid "The puppet agent daemon"
185
185
  msgstr ""
186
186
 
187
- #: ../lib/puppet/application/agent.rb:422
187
+ #: ../lib/puppet/application/agent.rb:426
188
188
  msgid "Fingerprint asked but neither the certificate, nor the certificate request have been issued"
189
189
  msgstr ""
190
190
 
191
- #: ../lib/puppet/application/agent.rb:427
191
+ #: ../lib/puppet/application/agent.rb:431
192
192
  msgid "Failed to generate fingerprint: %{message}"
193
193
  msgstr ""
194
194
 
195
- #: ../lib/puppet/application/agent.rb:450
195
+ #: ../lib/puppet/application/agent.rb:454
196
196
  msgid "Starting Puppet client version %{version}"
197
197
  msgstr ""
198
198
 
199
- #: ../lib/puppet/application/agent.rb:466
199
+ #: ../lib/puppet/application/agent.rb:470
200
200
  msgid "The puppet agent command does not take parameters"
201
201
  msgstr ""
202
202
 
203
- #: ../lib/puppet/application/apply.rb:35
203
+ #: ../lib/puppet/application/apply.rb:37
204
204
  msgid "Apply Puppet manifests locally"
205
205
  msgstr ""
206
206
 
207
207
  #. TRANSLATORS "puppet apply" is a program command and should not be translated
208
208
  #. TRANSLATORS "puppet apply" is a program command and should not be translated
209
- #: ../lib/puppet/application/apply.rb:209 ../lib/puppet/application/apply.rb:322
209
+ #: ../lib/puppet/application/apply.rb:212 ../lib/puppet/application/apply.rb:340
210
210
  msgid "For puppet apply"
211
211
  msgstr ""
212
212
 
213
- #: ../lib/puppet/application/apply.rb:217
213
+ #: ../lib/puppet/application/apply.rb:220
214
214
  msgid "%{file} is not readable"
215
215
  msgstr ""
216
216
 
217
- #: ../lib/puppet/application/apply.rb:288 ../lib/puppet/application/script.rb:241
217
+ #: ../lib/puppet/application/apply.rb:306 ../lib/puppet/application/script.rb:241
218
218
  msgid "Exiting"
219
219
  msgstr ""
220
220
 
221
- #: ../lib/puppet/application/apply.rb:332
221
+ #: ../lib/puppet/application/apply.rb:350
222
222
  msgid "Could not deserialize catalog from %{format}: %{detail}"
223
223
  msgstr ""
224
224
 
225
- #: ../lib/puppet/application/apply.rb:353 ../lib/puppet/application/script.rb:146
225
+ #: ../lib/puppet/application/apply.rb:371 ../lib/puppet/application/script.rb:146
226
226
  msgid "Could not find facts for %{node}"
227
227
  msgstr ""
228
228
 
229
- #: ../lib/puppet/application/apply.rb:365 ../lib/puppet/application/script.rb:154
229
+ #: ../lib/puppet/application/apply.rb:383 ../lib/puppet/application/script.rb:154
230
230
  msgid "Could not find node %{node}"
231
231
  msgstr ""
232
232
 
233
- #: ../lib/puppet/application/apply.rb:378 ../lib/puppet/application/script.rb:139
233
+ #: ../lib/puppet/application/apply.rb:396 ../lib/puppet/application/script.rb:139
234
234
  msgid "Could not find file %{manifest}"
235
235
  msgstr ""
236
236
 
237
- #: ../lib/puppet/application/apply.rb:379
237
+ #: ../lib/puppet/application/apply.rb:397
238
238
  msgid "Only one file can be applied per run. Skipping %{files}"
239
239
  msgstr ""
240
240
 
@@ -380,38 +380,40 @@ msgstr ""
380
380
  msgid "Run 'puppet lookup --help' for more details"
381
381
  msgstr ""
382
382
 
383
- #: ../lib/puppet/application/lookup.rb:60
384
- msgid ""
385
- "The --fact file only accepts yaml and json files.\n"
386
- "%{run_help}"
387
- msgstr ""
388
-
389
- #: ../lib/puppet/application/lookup.rb:105
383
+ #: ../lib/puppet/application/lookup.rb:102
390
384
  msgid "Interactive Hiera lookup"
391
385
  msgstr ""
392
386
 
393
- #: ../lib/puppet/application/lookup.rb:272
387
+ #: ../lib/puppet/application/lookup.rb:269
394
388
  msgid ""
395
389
  "The options %{deep_merge_opts} are only available with '--merge deep'\n"
396
390
  "%{run_help}"
397
391
  msgstr ""
398
392
 
399
- #: ../lib/puppet/application/lookup.rb:283
393
+ #: ../lib/puppet/application/lookup.rb:280
400
394
  msgid ""
401
395
  "The --merge option only accepts %{strategies}, or %{last_strategy}\n"
402
396
  "%{run_help}"
403
397
  msgstr ""
404
398
 
405
- #: ../lib/puppet/application/lookup.rb:308
399
+ #: ../lib/puppet/application/lookup.rb:305
406
400
  msgid "No keys were given to lookup."
407
401
  msgstr ""
408
402
 
409
- #: ../lib/puppet/application/lookup.rb:316
403
+ #: ../lib/puppet/application/lookup.rb:313
410
404
  msgid "Unknown rendering format '%{format}'"
411
405
  msgstr ""
412
406
 
413
- #: ../lib/puppet/application/lookup.rb:366 ../lib/puppet/face/epp.rb:530
414
- msgid "Incorrect formatted data in %{fact_file} given via the --facts flag"
407
+ #: ../lib/puppet/application/lookup.rb:354
408
+ msgid "Incorrectly formatted data in %{fact_file} given via the --facts flag (only accepts yaml and json files)"
409
+ msgstr ""
410
+
411
+ #: ../lib/puppet/application/lookup.rb:359
412
+ msgid "When overriding any of the %{trusted_facts_list} facts with %{fact_file} given via the --facts flag, they must all be overridden."
413
+ msgstr ""
414
+
415
+ #: ../lib/puppet/application/lookup.rb:372
416
+ msgid "No facts available for target node: %{node}"
415
417
  msgstr ""
416
418
 
417
419
  #: ../lib/puppet/application/resource.rb:34
@@ -426,7 +428,7 @@ msgstr ""
426
428
  msgid "Invalid parameter setting %{setting}"
427
429
  msgstr ""
428
430
 
429
- #: ../lib/puppet/application/resource.rb:240
431
+ #: ../lib/puppet/application/resource.rb:241
430
432
  msgid "Listing all file instances is not supported. Please specify a file or directory, e.g. puppet resource file /etc"
431
433
  msgstr ""
432
434
 
@@ -534,133 +536,149 @@ msgstr ""
534
536
  msgid "Not using cached catalog because its environment '%{catalog_env}' does not match '%{local_env}'"
535
537
  msgstr ""
536
538
 
537
- #: ../lib/puppet/configurer.rb:100 ../lib/puppet/configurer.rb:272
539
+ #: ../lib/puppet/configurer.rb:100 ../lib/puppet/configurer.rb:275
538
540
  msgid "Using cached catalog from environment '%{catalog_env}'"
539
541
  msgstr ""
540
542
 
541
- #: ../lib/puppet/configurer.rb:130
543
+ #: ../lib/puppet/configurer.rb:133
542
544
  msgid "The current total number of facts: %{size} exceeds the number of facts limit: %{max_size}"
543
545
  msgstr ""
544
546
 
545
- #: ../lib/puppet/configurer.rb:134
547
+ #: ../lib/puppet/configurer.rb:137
546
548
  msgid "Fact %{name} with length: '%{length}' exceeds the length limit: %{limit}"
547
549
  msgstr ""
548
550
 
549
- #: ../lib/puppet/configurer.rb:138
551
+ #: ../lib/puppet/configurer.rb:141
550
552
  msgid "The current number of top level facts: %{size} exceeds the top facts limit: %{max_size}"
551
553
  msgstr ""
552
554
 
553
- #: ../lib/puppet/configurer.rb:142
555
+ #: ../lib/puppet/configurer.rb:145
554
556
  msgid "Fact value '%{value}' with the value length: '%{length}' exceeds the value length limit: %{max_length}"
555
557
  msgstr ""
556
558
 
557
- #: ../lib/puppet/configurer.rb:146
559
+ #: ../lib/puppet/configurer.rb:149
558
560
  msgid "Payload with the current size of: '%{payload}' exceeds the payload size limit: %{max_size}"
559
561
  msgstr ""
560
562
 
561
- #: ../lib/puppet/configurer.rb:184
563
+ #: ../lib/puppet/configurer.rb:187
562
564
  msgid "The size of the payload is %{payload}"
563
565
  msgstr ""
564
566
 
565
- #: ../lib/puppet/configurer.rb:214
567
+ #: ../lib/puppet/configurer.rb:217
566
568
  msgid "The total number of facts registered is %{number_of_facts}"
567
569
  msgstr ""
568
570
 
569
- #: ../lib/puppet/configurer.rb:265
571
+ #: ../lib/puppet/configurer.rb:268
570
572
  msgid "Could not retrieve catalog; skipping run"
571
573
  msgstr ""
572
574
 
573
- #: ../lib/puppet/configurer.rb:281
575
+ #: ../lib/puppet/configurer.rb:284
574
576
  msgid "Applied catalog in %{seconds} seconds"
575
577
  msgstr ""
576
578
 
577
- #: ../lib/puppet/configurer.rb:315
579
+ #: ../lib/puppet/configurer.rb:318
578
580
  msgid "Could not select a functional puppet server from server_list: '%{server_list}'"
579
581
  msgstr ""
580
582
 
581
583
  #. TRANSLATORS 'server_list' is the name of a setting and should not be translated
582
- #: ../lib/puppet/configurer.rb:329
584
+ #: ../lib/puppet/configurer.rb:332
583
585
  msgid "Selected puppet server from the `server_list` setting: %{server}:%{port}"
584
586
  msgstr ""
585
587
 
586
- #: ../lib/puppet/configurer.rb:366
588
+ #: ../lib/puppet/configurer.rb:369
587
589
  msgid "Local environment: '%{local_env}' doesn't match the environment of the cached catalog '%{catalog_env}', switching agent to '%{catalog_env}'."
588
590
  msgstr ""
589
591
 
590
- #: ../lib/puppet/configurer.rb:389
592
+ #: ../lib/puppet/configurer.rb:392
591
593
  msgid "Environment not passed via CLI and no catalog was given, attempting to find out the last server-specified environment"
592
594
  msgstr ""
593
595
 
594
- #: ../lib/puppet/configurer.rb:394
596
+ #: ../lib/puppet/configurer.rb:396
597
+ msgid "Requesting environment from the server"
598
+ msgstr ""
599
+
600
+ #: ../lib/puppet/configurer.rb:406
595
601
  msgid "Could not find a usable environment in the lastrunfile. Either the file does not exist, does not have the required keys, or the values of 'initial_environment' and 'converged_environment' are identical."
596
602
  msgstr ""
597
603
 
598
- #: ../lib/puppet/configurer.rb:398
604
+ #: ../lib/puppet/configurer.rb:410
599
605
  msgid "Using environment '%{env}'"
600
606
  msgstr ""
601
607
 
602
- #: ../lib/puppet/configurer.rb:429
608
+ #: ../lib/puppet/configurer.rb:434
603
609
  msgid "Not using catalog because its environment '%{catalog_env}' does not match agent specified environment '%{local_env}' and strict_environment_mode is set"
604
610
  msgstr ""
605
611
 
606
- #: ../lib/puppet/configurer.rb:440
612
+ #: ../lib/puppet/configurer.rb:445
607
613
  msgid "Catalog environment didn't stabilize after %{tries} fetches, aborting run"
608
614
  msgstr ""
609
615
 
610
- #: ../lib/puppet/configurer.rb:442
616
+ #: ../lib/puppet/configurer.rb:447
611
617
  msgid "Local environment: '%{local_env}' doesn't match server specified environment '%{catalog_env}', restarting agent run with environment '%{catalog_env}'"
612
618
  msgstr ""
613
619
 
614
- #: ../lib/puppet/configurer.rb:505
620
+ #: ../lib/puppet/configurer.rb:503
615
621
  msgid "Failed to apply catalog: %{detail}"
616
622
  msgstr ""
617
623
 
618
- #: ../lib/puppet/configurer.rb:536
624
+ #: ../lib/puppet/configurer.rb:534
619
625
  msgid "Environment '%{environment}' not found on server, skipping initial pluginsync."
620
626
  msgstr ""
621
627
 
622
- #: ../lib/puppet/configurer.rb:553 ../lib/puppet/http/resolver/server_list.rb:64 ../lib/puppet/http/resolver/server_list.rb:68
628
+ #: ../lib/puppet/configurer.rb:551 ../lib/puppet/http/resolver/server_list.rb:64 ../lib/puppet/http/resolver/server_list.rb:68
623
629
  msgid "Puppet server %{host}:%{port} is unavailable: %{code} %{reason}"
624
630
  msgstr ""
625
631
 
626
632
  #. TRANSLATORS 'server_list' is the name of a setting and should not be translated
627
- #: ../lib/puppet/configurer.rb:557 ../lib/puppet/http/resolver/server_list.rb:73 ../lib/puppet/http/resolver/server_list.rb:76
633
+ #: ../lib/puppet/configurer.rb:555 ../lib/puppet/http/resolver/server_list.rb:73 ../lib/puppet/http/resolver/server_list.rb:76
628
634
  msgid "Unable to connect to server from server_list setting: %{detail}"
629
635
  msgstr ""
630
636
 
631
- #: ../lib/puppet/configurer.rb:573
637
+ #: ../lib/puppet/configurer.rb:580
638
+ msgid "Successfully loaded last environment from the lastrunfile"
639
+ msgstr ""
640
+
641
+ #: ../lib/puppet/configurer.rb:584
632
642
  msgid "Found last server-specified environment: %{environment}"
633
643
  msgstr ""
634
644
 
635
- #: ../lib/puppet/configurer.rb:576
645
+ #: ../lib/puppet/configurer.rb:587
636
646
  msgid "Could not find last server-specified environment: %{detail}"
637
647
  msgstr ""
638
648
 
639
- #: ../lib/puppet/configurer.rb:586 ../lib/puppet/face/report.rb:47
649
+ #: ../lib/puppet/configurer.rb:617
650
+ msgid "Local environment: '%{local_env}' doesn't match server specified node environment '%{node_env}', switching agent to '%{node_env}'."
651
+ msgstr ""
652
+
653
+ #: ../lib/puppet/configurer.rb:625
654
+ msgid "Unable to fetch my node definition, but the agent run will continue:"
655
+ msgstr ""
656
+
657
+ #: ../lib/puppet/configurer.rb:644 ../lib/puppet/face/report.rb:47
640
658
  msgid "Could not send report: %{detail}"
641
659
  msgstr ""
642
660
 
643
- #: ../lib/puppet/configurer.rb:595
661
+ #: ../lib/puppet/configurer.rb:653
644
662
  msgid "Could not save last run local report: %{detail}"
645
663
  msgstr ""
646
664
 
647
- #: ../lib/puppet/configurer.rb:614
665
+ #: ../lib/puppet/configurer.rb:672
648
666
  msgid "Uploading facts for %{node} to %{server}"
649
667
  msgstr ""
650
668
 
651
- #: ../lib/puppet/configurer.rb:622
669
+ #: ../lib/puppet/configurer.rb:680
652
670
  msgid "Failed to submit facts: %{detail}"
653
671
  msgstr ""
654
672
 
655
- #: ../lib/puppet/configurer.rb:637
673
+ #: ../lib/puppet/configurer.rb:695
656
674
  msgid "Could not run command from %{setting}: %{detail}"
657
675
  msgstr ""
658
676
 
659
- #: ../lib/puppet/configurer.rb:655
677
+ #: ../lib/puppet/configurer.rb:724
660
678
  msgid "Could not retrieve catalog from cache: %{detail}"
661
679
  msgstr ""
662
680
 
663
- #: ../lib/puppet/configurer.rb:677
681
+ #: ../lib/puppet/configurer.rb:746
664
682
  msgid "Could not retrieve catalog from remote server: %{detail}"
665
683
  msgstr ""
666
684
 
@@ -700,7 +718,7 @@ msgstr ""
700
718
  msgid "TrustedInformation expected a certificate, but none was given."
701
719
  msgstr ""
702
720
 
703
- #: ../lib/puppet/context/trusted_information.rb:104 ../lib/puppet/parser/scope.rb:835
721
+ #: ../lib/puppet/context/trusted_information.rb:104 ../lib/puppet/parser/scope.rb:836
704
722
  msgid "Unsupported data type: '%{klass}'"
705
723
  msgstr ""
706
724
 
@@ -751,16 +769,16 @@ msgstr ""
751
769
  msgid "Setting 'environment_data_provider' is deprecated."
752
770
  msgstr ""
753
771
 
754
- #: ../lib/puppet/defaults.rb:820
772
+ #: ../lib/puppet/defaults.rb:826
755
773
  msgid "Certificate names must be lower case"
756
774
  msgstr ""
757
775
 
758
- #: ../lib/puppet/defaults.rb:1079 ../lib/puppet/settings/enum_setting.rb:13 ../lib/puppet/settings/symbolic_enum_setting.rb:14
776
+ #: ../lib/puppet/defaults.rb:1085 ../lib/puppet/settings/enum_setting.rb:13 ../lib/puppet/settings/symbolic_enum_setting.rb:14
759
777
  msgid "Invalid value '%{value}' for parameter %{name}. Allowed values are '%{allowed_values}'"
760
778
  msgstr ""
761
779
 
762
780
  #. TRANSLATORS 'pluginsync' is a setting and should not be translated
763
- #: ../lib/puppet/defaults.rb:1944
781
+ #: ../lib/puppet/defaults.rb:1956
764
782
  msgid "Setting 'pluginsync' is deprecated."
765
783
  msgstr ""
766
784
 
@@ -1043,6 +1061,10 @@ msgstr ""
1043
1061
  msgid "--values option must evaluate to a Hash or undef, got: '%{values_class}'"
1044
1062
  msgstr ""
1045
1063
 
1064
+ #: ../lib/puppet/face/epp.rb:530
1065
+ msgid "Incorrect formatted data in %{fact_file} given via the --facts flag"
1066
+ msgstr ""
1067
+
1046
1068
  #: ../lib/puppet/face/facts.rb:8
1047
1069
  msgid "Retrieve and store facts."
1048
1070
  msgstr ""
@@ -2209,16 +2231,16 @@ msgstr ""
2209
2231
  msgid "appears to have a negative number of dependencies"
2210
2232
  msgstr ""
2211
2233
 
2212
- #: ../lib/puppet/graph/simple_graph.rb:66
2234
+ #: ../lib/puppet/graph/simple_graph.rb:67
2213
2235
  msgid "Got an event from invalid vertex %{source}"
2214
2236
  msgstr ""
2215
2237
 
2216
2238
  #. TRANSLATORS "negative or zero" refers to the count of paths
2217
- #: ../lib/puppet/graph/simple_graph.rb:200
2239
+ #: ../lib/puppet/graph/simple_graph.rb:201
2218
2240
  msgid "negative or zero max_paths"
2219
2241
  msgstr ""
2220
2242
 
2221
- #: ../lib/puppet/graph/simple_graph.rb:232
2243
+ #: ../lib/puppet/graph/simple_graph.rb:233
2222
2244
  msgid ""
2223
2245
  "Found %{num} dependency cycle:\n"
2224
2246
  msgid_plural ""
@@ -2226,12 +2248,12 @@ msgid_plural ""
2226
2248
  msgstr[0] ""
2227
2249
  msgstr[1] ""
2228
2250
 
2229
- #: ../lib/puppet/graph/simple_graph.rb:241
2251
+ #: ../lib/puppet/graph/simple_graph.rb:242
2230
2252
  msgid "Cycle graph written to %{filename}."
2231
2253
  msgstr ""
2232
2254
 
2233
2255
  #. TRANSLATORS '--graph' refers to a command line option and OmniGraffle and GraphViz are program names and should not be translated
2234
- #: ../lib/puppet/graph/simple_graph.rb:244
2256
+ #: ../lib/puppet/graph/simple_graph.rb:245
2235
2257
  msgid "Try the '--graph' option and opening the resulting '.dot' file in OmniGraffle or GraphViz"
2236
2258
  msgstr ""
2237
2259
 
@@ -2271,11 +2293,11 @@ msgstr ""
2271
2293
  msgid "Failed to close connection for %{site}: %{detail}"
2272
2294
  msgstr ""
2273
2295
 
2274
- #: ../lib/puppet/http/redirector.rb:70
2296
+ #: ../lib/puppet/http/redirector.rb:75
2275
2297
  msgid "Location response header is missing"
2276
2298
  msgstr ""
2277
2299
 
2278
- #: ../lib/puppet/http/redirector.rb:74
2300
+ #: ../lib/puppet/http/redirector.rb:79
2279
2301
  msgid "Location URI is invalid: %{detail}"
2280
2302
  msgstr ""
2281
2303
 
@@ -2893,8 +2915,8 @@ msgstr ""
2893
2915
  msgid "Option %{option} conflicts with existing option %{conflict} on %{face}"
2894
2916
  msgstr ""
2895
2917
 
2896
- #. TRANSLATORS 'Puppet.settings' should not be translated
2897
2918
  #. TRANSLATORS 'Puppet.settings' references to the Puppet settings options and should not be translated
2919
+ #. TRANSLATORS 'Puppet.settings' should not be translated
2898
2920
  #: ../lib/puppet/interface/action.rb:315 ../lib/puppet/interface/option_manager.rb:14
2899
2921
  msgid "Global option %{option} does not exist in Puppet.settings"
2900
2922
  msgstr ""
@@ -4353,111 +4375,111 @@ msgstr ""
4353
4375
  msgid "Duplicate parameter '%{param}' for on %{resource}"
4354
4376
  msgstr ""
4355
4377
 
4356
- #: ../lib/puppet/parser/scope.rb:155
4378
+ #: ../lib/puppet/parser/scope.rb:156
4357
4379
  msgid "Numerical variables cannot be changed. Attempt to set $%{name}"
4358
4380
  msgstr ""
4359
4381
 
4360
- #: ../lib/puppet/parser/scope.rb:160
4382
+ #: ../lib/puppet/parser/scope.rb:161
4361
4383
  msgid "Numerical variables cannot be deleted: Attempt to delete: $%{name}"
4362
4384
  msgstr ""
4363
4385
 
4364
- #: ../lib/puppet/parser/scope.rb:214
4386
+ #: ../lib/puppet/parser/scope.rb:215
4365
4387
  msgid "%{callee}: expects a value for parameter $%{to}"
4366
4388
  msgstr ""
4367
4389
 
4368
- #: ../lib/puppet/parser/scope.rb:215
4390
+ #: ../lib/puppet/parser/scope.rb:216
4369
4391
  msgid "%{callee}: default expression for $%{from} tries to illegally access not yet evaluated $%{to}"
4370
4392
  msgstr ""
4371
4393
 
4372
- #: ../lib/puppet/parser/scope.rb:234
4394
+ #: ../lib/puppet/parser/scope.rb:235
4373
4395
  msgid "Attempt to assign variable %{name} when evaluating parameters"
4374
4396
  msgstr ""
4375
4397
 
4376
- #: ../lib/puppet/parser/scope.rb:377
4398
+ #: ../lib/puppet/parser/scope.rb:378
4377
4399
  msgid "you must pass a compiler instance to a new scope object"
4378
4400
  msgstr ""
4379
4401
 
4380
- #: ../lib/puppet/parser/scope.rb:493
4402
+ #: ../lib/puppet/parser/scope.rb:494
4381
4403
  msgid "Scope variable name %{name} is a %{klass}, not a string"
4382
4404
  msgstr ""
4383
4405
 
4384
- #: ../lib/puppet/parser/scope.rb:655
4406
+ #: ../lib/puppet/parser/scope.rb:656
4385
4407
  msgid "class %{classname} could not be found"
4386
4408
  msgstr ""
4387
4409
 
4388
- #: ../lib/puppet/parser/scope.rb:657
4410
+ #: ../lib/puppet/parser/scope.rb:658
4389
4411
  msgid "class %{classname} has not been evaluated"
4390
4412
  msgstr ""
4391
4413
 
4392
- #: ../lib/puppet/parser/scope.rb:703
4414
+ #: ../lib/puppet/parser/scope.rb:704
4393
4415
  msgid "Default already defined for %{type} { %{param} }; cannot redefine"
4394
4416
  msgstr ""
4395
4417
 
4396
- #: ../lib/puppet/parser/scope.rb:763
4418
+ #: ../lib/puppet/parser/scope.rb:764
4397
4419
  msgid "Cannot assign to a numeric match result variable '$%{name}'"
4398
4420
  msgstr ""
4399
4421
 
4400
- #: ../lib/puppet/parser/scope.rb:766
4422
+ #: ../lib/puppet/parser/scope.rb:767
4401
4423
  msgid "Scope variable name %{name} is a %{class_type}, not a string"
4402
4424
  msgstr ""
4403
4425
 
4404
- #: ../lib/puppet/parser/scope.rb:771 ../lib/puppet/parser/scope.rb:776
4426
+ #: ../lib/puppet/parser/scope.rb:772 ../lib/puppet/parser/scope.rb:777
4405
4427
  msgid "Attempt to assign to a reserved variable name: '%{name}'"
4406
4428
  msgstr ""
4407
4429
 
4408
- #: ../lib/puppet/parser/scope.rb:781
4430
+ #: ../lib/puppet/parser/scope.rb:782
4409
4431
  msgid "Cannot reassign variable '$%{name}'"
4410
4432
  msgstr ""
4411
4433
 
4412
- #: ../lib/puppet/parser/scope.rb:1012
4434
+ #: ../lib/puppet/parser/scope.rb:1013
4413
4435
  msgid "Invalid regex match data. Got a %{klass}"
4414
4436
  msgstr ""
4415
4437
 
4416
- #: ../lib/puppet/parser/scope.rb:1020
4438
+ #: ../lib/puppet/parser/scope.rb:1021
4417
4439
  msgid "Scope#find_resource_type() is no longer supported, use Puppet::Pops::Evaluator::Runtime3ResourceSupport instead"
4418
4440
  msgstr ""
4419
4441
 
4420
- #: ../lib/puppet/parser/scope.rb:1025
4442
+ #: ../lib/puppet/parser/scope.rb:1026
4421
4443
  msgid "Scope#find_builtin_resource_type() is no longer supported, use Puppet::Pops::Evaluator::Runtime3ResourceSupport instead"
4422
4444
  msgstr ""
4423
4445
 
4424
- #: ../lib/puppet/parser/scope.rb:1030
4446
+ #: ../lib/puppet/parser/scope.rb:1031
4425
4447
  msgid "Scope#find_defined_resource_type() is no longer supported, use Puppet::Pops::Evaluator::Runtime3ResourceSupport instead"
4426
4448
  msgstr ""
4427
4449
 
4428
- #: ../lib/puppet/parser/scope.rb:1044
4450
+ #: ../lib/puppet/parser/scope.rb:1045
4429
4451
  msgid "Function %{name} not defined despite being loaded!"
4430
4452
  msgstr ""
4431
4453
 
4432
- #: ../lib/puppet/parser/scope.rb:1051
4454
+ #: ../lib/puppet/parser/scope.rb:1052
4433
4455
  msgid "Scope#resolve_type_and_title() is no longer supported, use Puppet::Pops::Evaluator::Runtime3ResourceSupport instead"
4434
4456
  msgstr ""
4435
4457
 
4436
- #: ../lib/puppet/parser/scope.rb:1071
4458
+ #: ../lib/puppet/parser/scope.rb:1072
4437
4459
  msgid "Cannot use undef as a class name"
4438
4460
  msgstr ""
4439
4461
 
4440
- #: ../lib/puppet/parser/scope.rb:1073
4462
+ #: ../lib/puppet/parser/scope.rb:1074
4441
4463
  msgid "Cannot use empty string as a class name"
4442
4464
  msgstr ""
4443
4465
 
4444
4466
  #. TRANSLATORS "Class" and "Type" are Puppet keywords and should not be translated
4445
- #: ../lib/puppet/parser/scope.rb:1082
4467
+ #: ../lib/puppet/parser/scope.rb:1083
4446
4468
  msgid "Cannot use an unspecific Class[] Type"
4447
4469
  msgstr ""
4448
4470
 
4449
4471
  #. TRANSLATORS "Resource" is a class name and should not be translated
4450
- #: ../lib/puppet/parser/scope.rb:1109
4472
+ #: ../lib/puppet/parser/scope.rb:1110
4451
4473
  msgid "Cannot use an unspecific Resource[] where a Resource['class', name] is expected"
4452
4474
  msgstr ""
4453
4475
 
4454
4476
  #. TRANSLATORS "Resource" is a class name and should not be translated
4455
- #: ../lib/puppet/parser/scope.rb:1113
4477
+ #: ../lib/puppet/parser/scope.rb:1114
4456
4478
  msgid "Cannot use a Resource[%{type_name}] where a Resource['class', name] is expected"
4457
4479
  msgstr ""
4458
4480
 
4459
4481
  #. TRANSLATORS "Resource" is a class name and should not be translated
4460
- #: ../lib/puppet/parser/scope.rb:1117
4482
+ #: ../lib/puppet/parser/scope.rb:1118
4461
4483
  msgid "Cannot use an unspecific Resource['class'] where a Resource['class', name] is expected"
4462
4484
  msgstr ""
4463
4485
 
@@ -4470,15 +4492,15 @@ msgstr ""
4470
4492
  msgid "having multiple named scopes is not supported when scripting"
4471
4493
  msgstr ""
4472
4494
 
4473
- #: ../lib/puppet/parser/templatewrapper.rb:66
4495
+ #: ../lib/puppet/parser/templatewrapper.rb:67
4474
4496
  msgid "Could not find template '%{filename}'"
4475
4497
  msgstr ""
4476
4498
 
4477
- #: ../lib/puppet/parser/templatewrapper.rb:83
4499
+ #: ../lib/puppet/parser/templatewrapper.rb:84
4478
4500
  msgid "Bound template variables for %{template_source} in %%{seconds} seconds"
4479
4501
  msgstr ""
4480
4502
 
4481
- #: ../lib/puppet/parser/templatewrapper.rb:91
4503
+ #: ../lib/puppet/parser/templatewrapper.rb:92
4482
4504
  msgid "Interpolated template %{template_source} in %%{seconds} seconds"
4483
4505
  msgstr ""
4484
4506
 
@@ -5618,47 +5640,47 @@ msgstr ""
5618
5640
  msgid "Lookup of key '%{key}' failed: %{detail}"
5619
5641
  msgstr ""
5620
5642
 
5621
- #: ../lib/puppet/pops/lookup/lookup_adapter.rb:295
5643
+ #: ../lib/puppet/pops/lookup/lookup_adapter.rb:296
5622
5644
  msgid "value of %{opts} must be a hash"
5623
5645
  msgstr ""
5624
5646
 
5625
- #: ../lib/puppet/pops/lookup/lookup_adapter.rb:302
5647
+ #: ../lib/puppet/pops/lookup/lookup_adapter.rb:303
5626
5648
  msgid "all %{opts} patterns must match a key starting with module name '%{module_name}'"
5627
5649
  msgstr ""
5628
5650
 
5629
- #: ../lib/puppet/pops/lookup/lookup_adapter.rb:306
5651
+ #: ../lib/puppet/pops/lookup/lookup_adapter.rb:307
5630
5652
  msgid "all %{opts} keys must start with module name '%{module_name}'"
5631
5653
  msgstr ""
5632
5654
 
5633
- #: ../lib/puppet/pops/lookup/lookup_adapter.rb:431
5655
+ #: ../lib/puppet/pops/lookup/lookup_adapter.rb:432
5634
5656
  msgid "Defining \"data_provider\": \"%{name}\" in metadata.json is deprecated. It is ignored since a '%{config}' with version >= 5 is present"
5635
5657
  msgstr ""
5636
5658
 
5637
- #: ../lib/puppet/pops/lookup/lookup_adapter.rb:441
5659
+ #: ../lib/puppet/pops/lookup/lookup_adapter.rb:442
5638
5660
  msgid "Defining \"data_provider\": \"%{name}\" in metadata.json is deprecated."
5639
5661
  msgstr ""
5640
5662
 
5641
- #: ../lib/puppet/pops/lookup/lookup_adapter.rb:442 ../lib/puppet/pops/lookup/lookup_adapter.rb:496
5663
+ #: ../lib/puppet/pops/lookup/lookup_adapter.rb:443 ../lib/puppet/pops/lookup/lookup_adapter.rb:497
5642
5664
  msgid "A '%{hiera_config}' file should be used instead"
5643
5665
  msgstr ""
5644
5666
 
5645
- #: ../lib/puppet/pops/lookup/lookup_adapter.rb:456
5667
+ #: ../lib/puppet/pops/lookup/lookup_adapter.rb:457
5646
5668
  msgid "Environment '%{env}', cannot find module_data_provider '%{provider}'"
5647
5669
  msgstr ""
5648
5670
 
5649
- #: ../lib/puppet/pops/lookup/lookup_adapter.rb:480
5671
+ #: ../lib/puppet/pops/lookup/lookup_adapter.rb:481
5650
5672
  msgid "Defining environment_data_provider='%{provider_name}' in environment.conf is deprecated"
5651
5673
  msgstr ""
5652
5674
 
5653
- #: ../lib/puppet/pops/lookup/lookup_adapter.rb:484
5675
+ #: ../lib/puppet/pops/lookup/lookup_adapter.rb:485
5654
5676
  msgid "The environment_data_provider='%{provider_name}' setting is ignored since '%{config_path}' version >= 5"
5655
5677
  msgstr ""
5656
5678
 
5657
- #: ../lib/puppet/pops/lookup/lookup_adapter.rb:495
5679
+ #: ../lib/puppet/pops/lookup/lookup_adapter.rb:496
5658
5680
  msgid "Defining environment_data_provider='%{provider_name}' in environment.conf is deprecated."
5659
5681
  msgstr ""
5660
5682
 
5661
- #: ../lib/puppet/pops/lookup/lookup_adapter.rb:511
5683
+ #: ../lib/puppet/pops/lookup/lookup_adapter.rb:512
5662
5684
  msgid "Environment '%{env}', cannot find environment_data_provider '%{provider}'"
5663
5685
  msgstr ""
5664
5686
 
@@ -5713,11 +5735,11 @@ msgid "Unacceptable transform - found an Object without a rule: %{klass}"
5713
5735
  msgstr ""
5714
5736
 
5715
5737
  #. TRANSLATORS 'NUMBER' refers to a method name and the 'name_or_numeric' was the passed in value and should not be translated
5716
- #: ../lib/puppet/pops/model/factory.rb:812
5738
+ #: ../lib/puppet/pops/model/factory.rb:813
5717
5739
  msgid "Internal Error, NUMBER token does not contain a valid number, %{name_or_numeric}"
5718
5740
  msgstr ""
5719
5741
 
5720
- #: ../lib/puppet/pops/model/factory.rb:1121
5742
+ #: ../lib/puppet/pops/model/factory.rb:1122
5721
5743
  msgid "can only concatenate strings, got %{class_name}"
5722
5744
  msgstr ""
5723
5745
 
@@ -6287,11 +6309,11 @@ msgstr ""
6287
6309
  msgid "No AIX group exists with a group name or gid of %{group}!"
6288
6310
  msgstr ""
6289
6311
 
6290
- #: ../lib/puppet/provider/group/groupadd.rb:11 ../lib/puppet/provider/group/pw.rb:14
6312
+ #: ../lib/puppet/provider/group/groupadd.rb:14 ../lib/puppet/provider/group/pw.rb:14
6291
6313
  msgid "GID must be an integer"
6292
6314
  msgstr ""
6293
6315
 
6294
- #: ../lib/puppet/provider/group/groupadd.rb:44
6316
+ #: ../lib/puppet/provider/group/groupadd.rb:47
6295
6317
  msgid "GID %{resource} already exists, use allowdupe to force group creation"
6296
6318
  msgstr ""
6297
6319
 
@@ -6644,7 +6666,11 @@ msgstr ""
6644
6666
  msgid "pkg warning: %{warnings}"
6645
6667
  msgstr ""
6646
6668
 
6647
- #: ../lib/puppet/provider/package/pkg.rb:245 ../lib/puppet/provider/package/pkg.rb:271
6669
+ #: ../lib/puppet/provider/package/pkg.rb:245
6670
+ msgid "Pkg could not install %{name} after %{tries} tries. Aborting run"
6671
+ msgstr ""
6672
+
6673
+ #: ../lib/puppet/provider/package/pkg.rb:255 ../lib/puppet/provider/package/pkg.rb:281
6648
6674
  msgid "Unable to update %{package}"
6649
6675
  msgstr ""
6650
6676
 
@@ -6968,40 +6994,40 @@ msgstr ""
6968
6994
  msgid "Invalid node name %{host}"
6969
6995
  msgstr ""
6970
6996
 
6971
- #: ../lib/puppet/resource.rb:47
6997
+ #: ../lib/puppet/resource.rb:57
6972
6998
  msgid "No resource type provided in serialized data"
6973
6999
  msgstr ""
6974
7000
 
6975
- #: ../lib/puppet/resource.rb:49
7001
+ #: ../lib/puppet/resource.rb:59
6976
7002
  msgid "No resource title provided in serialized data"
6977
7003
  msgstr ""
6978
7004
 
6979
7005
  #. TRANSLATORS 'Puppet::Resource.new' should not be translated
6980
- #: ../lib/puppet/resource.rb:276
7006
+ #: ../lib/puppet/resource.rb:299
6981
7007
  msgid "Puppet::Resource.new does not take a hash as the first argument."
6982
7008
  msgstr ""
6983
7009
 
6984
- #: ../lib/puppet/resource.rb:277
7010
+ #: ../lib/puppet/resource.rb:300
6985
7011
  msgid "Did you mean (%{type}, %{title}) ?"
6986
7012
  msgstr ""
6987
7013
 
6988
- #: ../lib/puppet/resource.rb:314
7014
+ #: ../lib/puppet/resource.rb:338
6989
7015
  msgid "Could not find declared class %{title}"
6990
7016
  msgstr ""
6991
7017
 
6992
- #: ../lib/puppet/resource.rb:316
7018
+ #: ../lib/puppet/resource.rb:340
6993
7019
  msgid "Invalid resource type %{type}"
6994
7020
  msgstr ""
6995
7021
 
6996
- #: ../lib/puppet/resource.rb:502
7022
+ #: ../lib/puppet/resource.rb:540
6997
7023
  msgid "no parameter named '%{name}'"
6998
7024
  msgstr ""
6999
7025
 
7000
- #: ../lib/puppet/resource.rb:547
7026
+ #: ../lib/puppet/resource.rb:585
7001
7027
  msgid "No title provided and %{type} is not a valid resource reference"
7002
7028
  msgstr ""
7003
7029
 
7004
- #: ../lib/puppet/resource.rb:621
7030
+ #: ../lib/puppet/resource.rb:659
7005
7031
  msgid "No set of title patterns matched the title \"%{title}\"."
7006
7032
  msgstr ""
7007
7033
 
@@ -7107,39 +7133,39 @@ msgstr ""
7107
7133
  msgid "%{param} is a metaparameter; please choose another parameter name in the %{name} definition"
7108
7134
  msgstr ""
7109
7135
 
7110
- #: ../lib/puppet/resource/type_collection.rb:63
7136
+ #: ../lib/puppet/resource/type_collection.rb:64
7111
7137
  msgid "Class '%{klass}' is already defined%{error}; cannot redefine"
7112
7138
  msgstr ""
7113
7139
 
7114
- #: ../lib/puppet/resource/type_collection.rb:64
7140
+ #: ../lib/puppet/resource/type_collection.rb:65
7115
7141
  msgid "Node '%{klass}' is already defined%{error}; cannot be redefined as a class"
7116
7142
  msgstr ""
7117
7143
 
7118
- #: ../lib/puppet/resource/type_collection.rb:65
7144
+ #: ../lib/puppet/resource/type_collection.rb:66
7119
7145
  msgid "Definition '%{klass}' is already defined%{error}; cannot be redefined as a class"
7120
7146
  msgstr ""
7121
7147
 
7122
- #: ../lib/puppet/resource/type_collection.rb:96
7148
+ #: ../lib/puppet/resource/type_collection.rb:97
7123
7149
  msgid "Node '%{name}' is already defined%{error}; cannot redefine"
7124
7150
  msgstr ""
7125
7151
 
7126
- #: ../lib/puppet/resource/type_collection.rb:97
7152
+ #: ../lib/puppet/resource/type_collection.rb:98
7127
7153
  msgid "Class '%{klass}' is already defined%{error}; cannot be redefined as a node"
7128
7154
  msgstr ""
7129
7155
 
7130
- #: ../lib/puppet/resource/type_collection.rb:132
7156
+ #: ../lib/puppet/resource/type_collection.rb:133
7131
7157
  msgid "'%{name}' is already defined%{error} as a class; cannot redefine as a definition"
7132
7158
  msgstr ""
7133
7159
 
7134
- #: ../lib/puppet/resource/type_collection.rb:133
7160
+ #: ../lib/puppet/resource/type_collection.rb:134
7135
7161
  msgid "Definition '%{name}' is already defined%{error}; cannot be redefined"
7136
7162
  msgstr ""
7137
7163
 
7138
- #: ../lib/puppet/resource/type_collection.rb:177
7164
+ #: ../lib/puppet/resource/type_collection.rb:178
7139
7165
  msgid "Execution of config_version command `%{cmd}` failed: %{message}"
7140
7166
  msgstr ""
7141
7167
 
7142
- #: ../lib/puppet/resource/type_collection.rb:198
7168
+ #: ../lib/puppet/resource/type_collection.rb:199
7143
7169
  msgid "Not attempting to load %{type} %{fqname} as this object was missing during a prior compilation"
7144
7170
  msgstr ""
7145
7171
 
@@ -7323,11 +7349,11 @@ msgstr ""
7323
7349
  msgid "Invalid settings in environment.conf at '%{path_to_conf_file}'. The following unknown setting(s) are being ignored: %{ignored_settings}"
7324
7350
  msgstr ""
7325
7351
 
7326
- #: ../lib/puppet/settings/file_setting.rb:183
7352
+ #: ../lib/puppet/settings/file_setting.rb:178
7327
7353
  msgid "Settings parameter '%{name}' is undefined"
7328
7354
  msgstr ""
7329
7355
 
7330
- #: ../lib/puppet/settings/file_setting.rb:219
7356
+ #: ../lib/puppet/settings/file_setting.rb:214
7331
7357
  msgid "The %{parameter} parameter for the setting '%{name}' must be either 'root' or 'service', not '%{value}'"
7332
7358
  msgstr ""
7333
7359
 
@@ -8024,56 +8050,56 @@ msgstr ""
8024
8050
  msgid "'%{cmd}' returned %{status} instead of one of [%{expected}]"
8025
8051
  msgstr ""
8026
8052
 
8027
- #: ../lib/puppet/type/exec.rb:208
8053
+ #: ../lib/puppet/type/exec.rb:216
8028
8054
  msgid "Command must be a String or Array<String>, got value of class %{klass}"
8029
8055
  msgstr ""
8030
8056
 
8031
- #: ../lib/puppet/type/exec.rb:241
8057
+ #: ../lib/puppet/type/exec.rb:249
8032
8058
  msgid "Unable to execute commands as other users on Windows"
8033
8059
  msgstr ""
8034
8060
 
8035
- #: ../lib/puppet/type/exec.rb:243
8061
+ #: ../lib/puppet/type/exec.rb:251
8036
8062
  msgid "Only root can execute commands as other users"
8037
8063
  msgstr ""
8038
8064
 
8039
- #: ../lib/puppet/type/exec.rb:299
8065
+ #: ../lib/puppet/type/exec.rb:307
8040
8066
  msgid "Invalid environment setting '%{value}'"
8041
8067
  msgstr ""
8042
8068
 
8043
- #: ../lib/puppet/type/exec.rb:312
8069
+ #: ../lib/puppet/type/exec.rb:320
8044
8070
  msgid "The umask specification is invalid: %{value}"
8045
8071
  msgstr ""
8046
8072
 
8047
- #: ../lib/puppet/type/exec.rb:328
8073
+ #: ../lib/puppet/type/exec.rb:336
8048
8074
  msgid "The timeout must be a number."
8049
8075
  msgstr ""
8050
8076
 
8051
- #: ../lib/puppet/type/exec.rb:345
8077
+ #: ../lib/puppet/type/exec.rb:353
8052
8078
  msgid "Tries must be an integer"
8053
8079
  msgstr ""
8054
8080
 
8055
- #: ../lib/puppet/type/exec.rb:349
8081
+ #: ../lib/puppet/type/exec.rb:357
8056
8082
  msgid "Tries must be an integer >= 1"
8057
8083
  msgstr ""
8058
8084
 
8059
- #: ../lib/puppet/type/exec.rb:362
8085
+ #: ../lib/puppet/type/exec.rb:370
8060
8086
  msgid "try_sleep must be a number"
8061
8087
  msgstr ""
8062
8088
 
8063
- #: ../lib/puppet/type/exec.rb:366
8089
+ #: ../lib/puppet/type/exec.rb:374
8064
8090
  msgid "try_sleep cannot be a negative number"
8065
8091
  msgstr ""
8066
8092
 
8067
8093
  #. TRANSLATORS 'creates' is a parameter name and should not be translated
8068
- #: ../lib/puppet/type/exec.rb:438
8094
+ #: ../lib/puppet/type/exec.rb:446
8069
8095
  msgid "Checking that 'creates' path '%{creates_path}' exists"
8070
8096
  msgstr ""
8071
8097
 
8072
- #: ../lib/puppet/type/exec.rb:490 ../lib/puppet/type/exec.rb:553
8098
+ #: ../lib/puppet/type/exec.rb:498 ../lib/puppet/type/exec.rb:561
8073
8099
  msgid "Check %{value} exceeded timeout"
8074
8100
  msgstr ""
8075
8101
 
8076
- #: ../lib/puppet/type/exec.rb:645
8102
+ #: ../lib/puppet/type/exec.rb:653
8077
8103
  msgid "'%{cmd}' won't be executed because of failed check '%{check}'"
8078
8104
  msgstr ""
8079
8105
 
@@ -8218,11 +8244,11 @@ msgstr ""
8218
8244
  msgid "Could not create %{type} filebucket: %{detail}"
8219
8245
  msgstr ""
8220
8246
 
8221
- #: ../lib/puppet/type/group.rb:60
8247
+ #: ../lib/puppet/type/group.rb:59
8222
8248
  msgid "GID cannot be deleted"
8223
8249
  msgstr ""
8224
8250
 
8225
- #: ../lib/puppet/type/group.rb:72
8251
+ #: ../lib/puppet/type/group.rb:71
8226
8252
  msgid "Invalid GID %{gid}"
8227
8253
  msgstr ""
8228
8254
 
@@ -8310,15 +8336,15 @@ msgstr ""
8310
8336
  msgid "%{value} is not a valid day of the week"
8311
8337
  msgstr ""
8312
8338
 
8313
- #: ../lib/puppet/type/service.rb:151 ../lib/puppet/type/user.rb:272
8339
+ #: ../lib/puppet/type/service.rb:151 ../lib/puppet/type/user.rb:271
8314
8340
  msgid "Passwords cannot include ':'"
8315
8341
  msgstr ""
8316
8342
 
8317
- #: ../lib/puppet/type/service.rb:278
8343
+ #: ../lib/puppet/type/service.rb:283
8318
8344
  msgid "\"%{value}\" is not a positive integer: the timeout parameter must be specified as a positive integer"
8319
8345
  msgstr ""
8320
8346
 
8321
- #: ../lib/puppet/type/service.rb:300
8347
+ #: ../lib/puppet/type/service.rb:305
8322
8348
  msgid "The 'logonaccount' parameter is mandatory when setting 'logonpassword'."
8323
8349
  msgstr ""
8324
8350
 
@@ -8353,81 +8379,81 @@ msgstr ""
8353
8379
  msgid "File does not exist"
8354
8380
  msgstr ""
8355
8381
 
8356
- #: ../lib/puppet/type/user.rb:183
8382
+ #: ../lib/puppet/type/user.rb:182
8357
8383
  msgid "Could not find group(s) %{groups}"
8358
8384
  msgstr ""
8359
8385
 
8360
- #: ../lib/puppet/type/user.rb:292
8386
+ #: ../lib/puppet/type/user.rb:291
8361
8387
  msgid "Password minimum age must be provided as a number."
8362
8388
  msgstr ""
8363
8389
 
8364
- #: ../lib/puppet/type/user.rb:311
8390
+ #: ../lib/puppet/type/user.rb:310
8365
8391
  msgid "Password maximum age must be provided as a number."
8366
8392
  msgstr ""
8367
8393
 
8368
- #: ../lib/puppet/type/user.rb:342
8394
+ #: ../lib/puppet/type/user.rb:341
8369
8395
  msgid "Group names must be provided, not GID numbers."
8370
8396
  msgstr ""
8371
8397
 
8372
- #: ../lib/puppet/type/user.rb:344
8398
+ #: ../lib/puppet/type/user.rb:343
8373
8399
  msgid "Group names must be provided as an array, not a comma-separated list."
8374
8400
  msgstr ""
8375
8401
 
8376
- #: ../lib/puppet/type/user.rb:345
8402
+ #: ../lib/puppet/type/user.rb:344
8377
8403
  msgid "Group names must not be empty. If you want to specify \"no groups\" pass an empty array"
8378
8404
  msgstr ""
8379
8405
 
8380
- #: ../lib/puppet/type/user.rb:438
8406
+ #: ../lib/puppet/type/user.rb:437
8381
8407
  msgid "User provider %{name} can not manage home directories"
8382
8408
  msgstr ""
8383
8409
 
8384
8410
  #. TRANSLATORS YYYY-MM-DD represents a date with a four-digit year, a two-digit month, and a two-digit day,
8385
8411
  #. TRANSLATORS separated by dashes.
8386
- #: ../lib/puppet/type/user.rb:455
8412
+ #: ../lib/puppet/type/user.rb:454
8387
8413
  msgid "Expiry dates must be YYYY-MM-DD or the string \"absent\""
8388
8414
  msgstr ""
8389
8415
 
8390
- #: ../lib/puppet/type/user.rb:522
8416
+ #: ../lib/puppet/type/user.rb:521
8391
8417
  msgid "Role names must be provided, not numbers"
8392
8418
  msgstr ""
8393
8419
 
8394
- #: ../lib/puppet/type/user.rb:524
8420
+ #: ../lib/puppet/type/user.rb:523
8395
8421
  msgid "Role names must be provided as an array, not a comma-separated list"
8396
8422
  msgstr ""
8397
8423
 
8398
- #: ../lib/puppet/type/user.rb:561
8424
+ #: ../lib/puppet/type/user.rb:560
8399
8425
  msgid "Auth names must be provided, not numbers"
8400
8426
  msgstr ""
8401
8427
 
8402
- #: ../lib/puppet/type/user.rb:563
8428
+ #: ../lib/puppet/type/user.rb:562
8403
8429
  msgid "Auth names must be provided as an array, not a comma-separated list"
8404
8430
  msgstr ""
8405
8431
 
8406
- #: ../lib/puppet/type/user.rb:587
8432
+ #: ../lib/puppet/type/user.rb:586
8407
8433
  msgid "Profile names must be provided, not numbers"
8408
8434
  msgstr ""
8409
8435
 
8410
- #: ../lib/puppet/type/user.rb:589
8436
+ #: ../lib/puppet/type/user.rb:588
8411
8437
  msgid "Profile names must be provided as an array, not a comma-separated list"
8412
8438
  msgstr ""
8413
8439
 
8414
- #: ../lib/puppet/type/user.rb:701
8440
+ #: ../lib/puppet/type/user.rb:700
8415
8441
  msgid "Ssh_authorized_key type is not available. Cannot purge SSH keys."
8416
8442
  msgstr ""
8417
8443
 
8418
- #: ../lib/puppet/type/user.rb:739
8444
+ #: ../lib/puppet/type/user.rb:738
8419
8445
  msgid "Each entry for purge_ssh_keys must be a string, not a %{klass}"
8420
8446
  msgstr ""
8421
8447
 
8422
- #: ../lib/puppet/type/user.rb:742
8448
+ #: ../lib/puppet/type/user.rb:741
8423
8449
  msgid "Paths to keyfiles must be absolute, not %{entry}"
8424
8450
  msgstr ""
8425
8451
 
8426
- #: ../lib/puppet/type/user.rb:746
8452
+ #: ../lib/puppet/type/user.rb:745
8427
8453
  msgid "purge_ssh_keys must be true, false, or an array of file names, not %{value}"
8428
8454
  msgstr ""
8429
8455
 
8430
- #: ../lib/puppet/type/user.rb:755
8456
+ #: ../lib/puppet/type/user.rb:754
8431
8457
  msgid "Class name must be provided."
8432
8458
  msgstr ""
8433
8459
 
@@ -8961,60 +8987,60 @@ msgid "Failed to set process priority to '%{priority}'"
8961
8987
  msgstr ""
8962
8988
 
8963
8989
  #. TRANSLATORS "Log.close_all" is a method name and should not be translated
8964
- #: ../lib/puppet/util/log.rb:67
8990
+ #: ../lib/puppet/util/log.rb:66
8965
8991
  msgid "Log.close_all failed to close %{destinations}"
8966
8992
  msgstr ""
8967
8993
 
8968
- #: ../lib/puppet/util/log.rb:86
8994
+ #: ../lib/puppet/util/log.rb:85
8969
8995
  msgid "Logs require a level"
8970
8996
  msgstr ""
8971
8997
 
8972
- #: ../lib/puppet/util/log.rb:87 ../lib/puppet/util/log.rb:378 ../lib/puppet/util/windows/eventlog.rb:99
8998
+ #: ../lib/puppet/util/log.rb:86 ../lib/puppet/util/log.rb:382 ../lib/puppet/util/windows/eventlog.rb:99
8973
8999
  msgid "Invalid log level %{level}"
8974
9000
  msgstr ""
8975
9001
 
8976
- #: ../lib/puppet/util/log.rb:109
9002
+ #: ../lib/puppet/util/log.rb:110
8977
9003
  msgid "Invalid loglevel %{level}"
8978
9004
  msgstr ""
8979
9005
 
8980
- #: ../lib/puppet/util/log.rb:136
9006
+ #: ../lib/puppet/util/log.rb:140
8981
9007
  msgid "Unknown destination type %{dest}"
8982
9008
  msgstr ""
8983
9009
 
8984
- #: ../lib/puppet/util/log.rb:176
9010
+ #: ../lib/puppet/util/log.rb:180
8985
9011
  msgid "Received a Log attribute with invalid encoding:%{log_message}"
8986
9012
  msgstr ""
8987
9013
 
8988
- #: ../lib/puppet/util/log.rb:178
9014
+ #: ../lib/puppet/util/log.rb:182
8989
9015
  msgid ""
8990
9016
  "Backtrace:\n"
8991
9017
  "%{backtrace}"
8992
9018
  msgstr ""
8993
9019
 
8994
- #: ../lib/puppet/util/log.rb:232
9020
+ #: ../lib/puppet/util/log.rb:236
8995
9021
  msgid "Reopening log files"
8996
9022
  msgstr ""
8997
9023
 
8998
9024
  #. TRANSLATORS 'Puppet::Util::Log' refers to a Puppet source code class
8999
- #: ../lib/puppet/util/log.rb:368
9025
+ #: ../lib/puppet/util/log.rb:372
9000
9026
  msgid "Puppet::Util::Log requires a message"
9001
9027
  msgstr ""
9002
9028
 
9003
9029
  #. TRANSLATORS 'Puppet::Util::Log' refers to a Puppet source code class
9004
- #: ../lib/puppet/util/log.rb:374
9030
+ #: ../lib/puppet/util/log.rb:378
9005
9031
  msgid "Puppet::Util::Log requires a log level"
9006
9032
  msgstr ""
9007
9033
 
9008
9034
  #. TRANSLATORS 'Puppet::Util::Log' refers to a Puppet source code class
9009
- #: ../lib/puppet/util/log.rb:376
9035
+ #: ../lib/puppet/util/log.rb:380
9010
9036
  msgid "Puppet::Util::Log requires a symbol or string"
9011
9037
  msgstr ""
9012
9038
 
9013
- #: ../lib/puppet/util/log.rb:407
9039
+ #: ../lib/puppet/util/log.rb:411
9014
9040
  msgid "Could not parse for environment %{environment}: %{msg}"
9015
9041
  msgstr ""
9016
9042
 
9017
- #: ../lib/puppet/util/log.rb:409
9043
+ #: ../lib/puppet/util/log.rb:413
9018
9044
  msgid "%{msg} on node %{node}"
9019
9045
  msgstr ""
9020
9046
 
@@ -9026,20 +9052,20 @@ msgstr ""
9026
9052
  msgid "Creating log directory %{dir}"
9027
9053
  msgstr ""
9028
9054
 
9029
- #: ../lib/puppet/util/logging.rb:81 ../lib/puppet/util/logging.rb:105
9055
+ #: ../lib/puppet/util/logging.rb:79 ../lib/puppet/util/logging.rb:103
9030
9056
  msgid "Wrapped exception:"
9031
9057
  msgstr ""
9032
9058
 
9033
9059
  #. TRANSLATORS the literals ":file", ":line", and ":key" should not be translated
9034
- #: ../lib/puppet/util/logging.rb:162
9060
+ #: ../lib/puppet/util/logging.rb:160
9035
9061
  msgid "Need either :file and :line, or :key"
9036
9062
  msgstr ""
9037
9063
 
9038
- #: ../lib/puppet/util/logging.rb:192
9064
+ #: ../lib/puppet/util/logging.rb:190
9039
9065
  msgid "(file & line not available)"
9040
9066
  msgstr ""
9041
9067
 
9042
- #: ../lib/puppet/util/logging.rb:294
9068
+ #: ../lib/puppet/util/logging.rb:270
9043
9069
  msgid "(location: %{location})"
9044
9070
  msgstr ""
9045
9071
 
@@ -9207,19 +9233,19 @@ msgstr ""
9207
9233
  msgid "Creating state file %{file}"
9208
9234
  msgstr ""
9209
9235
 
9210
- #: ../lib/puppet/util/suidmanager.rb:104
9236
+ #: ../lib/puppet/util/suidmanager.rb:103
9211
9237
  msgid "No such group %{group}"
9212
9238
  msgstr ""
9213
9239
 
9214
- #: ../lib/puppet/util/suidmanager.rb:120
9240
+ #: ../lib/puppet/util/suidmanager.rb:119
9215
9241
  msgid "No such user %{user}"
9216
9242
  msgstr ""
9217
9243
 
9218
- #: ../lib/puppet/util/suidmanager.rb:148
9244
+ #: ../lib/puppet/util/suidmanager.rb:147
9219
9245
  msgid "Invalid id type %{type}"
9220
9246
  msgstr ""
9221
9247
 
9222
- #: ../lib/puppet/util/suidmanager.rb:151
9248
+ #: ../lib/puppet/util/suidmanager.rb:150
9223
9249
  msgid "Invalid %{klass}: %{id}"
9224
9250
  msgstr ""
9225
9251
 
@@ -9259,7 +9285,7 @@ msgstr ""
9259
9285
  msgid "%{error}%{rest} in symbolic mode %{modification}"
9260
9286
  msgstr ""
9261
9287
 
9262
- #: ../lib/puppet/util/tagging.rb:27
9288
+ #: ../lib/puppet/util/tagging.rb:28
9263
9289
  msgid "Invalid tag '%{name}'"
9264
9290
  msgstr ""
9265
9291
 
@@ -9489,7 +9515,7 @@ msgstr ""
9489
9515
  msgid "An attempt to set mode %{mode} on item %{path} would result in the group, SYSTEM, to have less than Full Control rights. This attempt has been corrected to Full Control"
9490
9516
  msgstr ""
9491
9517
 
9492
- #: ../lib/puppet/util/windows/security.rb:433 ../lib/puppet/util/windows/security.rb:450 ../lib/puppet/util/windows/sid.rb:159 ../lib/puppet/util/windows/sid.rb:221 ../lib/puppet/util/windows/user.rb:59
9518
+ #: ../lib/puppet/util/windows/security.rb:433 ../lib/puppet/util/windows/security.rb:450 ../lib/puppet/util/windows/sid.rb:159 ../lib/puppet/util/windows/sid.rb:221 ../lib/puppet/util/windows/user.rb:58
9493
9519
  msgid "Invalid SID"
9494
9520
  msgstr ""
9495
9521
 
@@ -9529,119 +9555,119 @@ msgstr ""
9529
9555
  msgid "Failed to set security information"
9530
9556
  msgstr ""
9531
9557
 
9532
- #: ../lib/puppet/util/windows/service.rb:44
9558
+ #: ../lib/puppet/util/windows/service.rb:39
9533
9559
  msgid "Starting the %{service_name} service. Timeout set to: %{timeout} seconds"
9534
9560
  msgstr ""
9535
9561
 
9536
- #: ../lib/puppet/util/windows/service.rb:54
9562
+ #: ../lib/puppet/util/windows/service.rb:49
9537
9563
  msgid "Failed to start the service"
9538
9564
  msgstr ""
9539
9565
 
9540
- #: ../lib/puppet/util/windows/service.rb:58
9566
+ #: ../lib/puppet/util/windows/service.rb:53
9541
9567
  msgid "Successfully started the %{service_name} service"
9542
9568
  msgstr ""
9543
9569
 
9544
- #: ../lib/puppet/util/windows/service.rb:67
9570
+ #: ../lib/puppet/util/windows/service.rb:62
9545
9571
  msgid "Stopping the %{service_name} service. Timeout set to: %{timeout} seconds"
9546
9572
  msgstr ""
9547
9573
 
9548
- #: ../lib/puppet/util/windows/service.rb:75
9574
+ #: ../lib/puppet/util/windows/service.rb:70
9549
9575
  msgid "Successfully stopped the %{service_name} service"
9550
9576
  msgstr ""
9551
9577
 
9552
- #: ../lib/puppet/util/windows/service.rb:84
9578
+ #: ../lib/puppet/util/windows/service.rb:79
9553
9579
  msgid "Resuming the %{service_name} service. Timeout set to: %{timeout} seconds"
9554
9580
  msgstr ""
9555
9581
 
9556
- #: ../lib/puppet/util/windows/service.rb:100
9582
+ #: ../lib/puppet/util/windows/service.rb:95
9557
9583
  msgid "Successfully resumed the %{service_name} service"
9558
9584
  msgstr ""
9559
9585
 
9560
- #: ../lib/puppet/util/windows/service.rb:116
9586
+ #: ../lib/puppet/util/windows/service.rb:111
9561
9587
  msgid "Unknown Service state '%{current_state}' for '%{service_name}'"
9562
9588
  msgstr ""
9563
9589
 
9564
- #: ../lib/puppet/util/windows/service.rb:143
9590
+ #: ../lib/puppet/util/windows/service.rb:138
9565
9591
  msgid "Unknown start type '%{start_type}' for '%{service_name}'"
9566
9592
  msgstr ""
9567
9593
 
9568
- #: ../lib/puppet/util/windows/service.rb:193
9594
+ #: ../lib/puppet/util/windows/service.rb:188
9569
9595
  msgid "Failed to update service configuration"
9570
9596
  msgstr ""
9571
9597
 
9572
- #: ../lib/puppet/util/windows/service.rb:258
9598
+ #: ../lib/puppet/util/windows/service.rb:253
9573
9599
  msgid "Failed to fetch services"
9574
9600
  msgstr ""
9575
9601
 
9576
- #: ../lib/puppet/util/windows/service.rb:307
9602
+ #: ../lib/puppet/util/windows/service.rb:302
9577
9603
  msgid "Failed to open a handle to the service"
9578
9604
  msgstr ""
9579
9605
 
9580
- #: ../lib/puppet/util/windows/service.rb:324
9606
+ #: ../lib/puppet/util/windows/service.rb:319
9581
9607
  msgid "Failed to open a handle to the service control manager"
9582
9608
  msgstr ""
9583
9609
 
9584
- #: ../lib/puppet/util/windows/service.rb:347
9610
+ #: ../lib/puppet/util/windows/service.rb:342
9585
9611
  msgid "The service is already in the %{final_state} state. No further work needs to be done."
9586
9612
  msgstr ""
9587
9613
 
9588
- #: ../lib/puppet/util/windows/service.rb:359
9614
+ #: ../lib/puppet/util/windows/service.rb:354
9589
9615
  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."
9590
9616
  msgstr ""
9591
9617
 
9592
- #: ../lib/puppet/util/windows/service.rb:370
9618
+ #: ../lib/puppet/util/windows/service.rb:365
9593
9619
  msgid "There is already a pending transition to the %{final_state} state for the %{service_name} service."
9594
9620
  msgstr ""
9595
9621
 
9596
- #: ../lib/puppet/util/windows/service.rb:386
9622
+ #: ../lib/puppet/util/windows/service.rb:381
9597
9623
  msgid "The service is in the %{pending_state} state, which is an unsafe pending state."
9598
9624
  msgstr ""
9599
9625
 
9600
- #: ../lib/puppet/util/windows/service.rb:391
9626
+ #: ../lib/puppet/util/windows/service.rb:386
9601
9627
  msgid "Transitioning the %{service_name} service from %{initial_state} to %{final_state}"
9602
9628
  msgstr ""
9603
9629
 
9604
- #: ../lib/puppet/util/windows/service.rb:395
9630
+ #: ../lib/puppet/util/windows/service.rb:390
9605
9631
  msgid "Waiting for the transition to finish"
9606
9632
  msgstr ""
9607
9633
 
9608
- #: ../lib/puppet/util/windows/service.rb:400
9634
+ #: ../lib/puppet/util/windows/service.rb:395
9609
9635
  msgid "Failed to transition the %{service_name} service to the %{final_state} state. Detail: %{detail}"
9610
9636
  msgstr ""
9611
9637
 
9612
- #: ../lib/puppet/util/windows/service.rb:439 ../lib/puppet/util/windows/service.rb:475
9638
+ #: ../lib/puppet/util/windows/service.rb:434 ../lib/puppet/util/windows/service.rb:470
9613
9639
  msgid "Service query failed"
9614
9640
  msgstr ""
9615
9641
 
9616
- #: ../lib/puppet/util/windows/service.rb:518
9642
+ #: ../lib/puppet/util/windows/service.rb:513
9617
9643
  msgid "Service query for %{parameter_name} failed"
9618
9644
  msgstr ""
9619
9645
 
9620
- #: ../lib/puppet/util/windows/service.rb:541
9646
+ #: ../lib/puppet/util/windows/service.rb:536
9621
9647
  msgid "Failed to update service %{change} configuration"
9622
9648
  msgstr ""
9623
9649
 
9624
- #: ../lib/puppet/util/windows/service.rb:568
9650
+ #: ../lib/puppet/util/windows/service.rb:563
9625
9651
  msgid "Failed to send the %{control_signal} signal to the service. Its current state is %{current_state}. Reason for failure:"
9626
9652
  msgstr ""
9627
9653
 
9628
- #: ../lib/puppet/util/windows/service.rb:603
9654
+ #: ../lib/puppet/util/windows/service.rb:598
9629
9655
  msgid "The service transitioned to the %{pending_state} state."
9630
9656
  msgstr ""
9631
9657
 
9632
- #: ../lib/puppet/util/windows/service.rb:617
9658
+ #: ../lib/puppet/util/windows/service.rb:612
9633
9659
  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}."
9634
9660
  msgstr ""
9635
9661
 
9636
- #: ../lib/puppet/util/windows/service.rb:632
9662
+ #: ../lib/puppet/util/windows/service.rb:627
9637
9663
  msgid "Waiting for the pending transition to the %{final_state} state to finish."
9638
9664
  msgstr ""
9639
9665
 
9640
- #: ../lib/puppet/util/windows/service.rb:646
9666
+ #: ../lib/puppet/util/windows/service.rb:641
9641
9667
  msgid "Unexpected transition to the %{current_state} state while waiting for the pending transition from %{pending_state} to %{final_state} to finish."
9642
9668
  msgstr ""
9643
9669
 
9644
- #: ../lib/puppet/util/windows/service.rb:660
9670
+ #: ../lib/puppet/util/windows/service.rb:655
9645
9671
  msgid "Timed out while waiting for the pending transition from %{pending_state} to %{final_state} to finish. The current state is %{current_state}."
9646
9672
  msgstr ""
9647
9673
 
@@ -9661,23 +9687,23 @@ msgstr ""
9661
9687
  msgid "Failed to convert string SID: %{string_sid}"
9662
9688
  msgstr ""
9663
9689
 
9664
- #: ../lib/puppet/util/windows/user.rb:54
9690
+ #: ../lib/puppet/util/windows/user.rb:53
9665
9691
  msgid "Failed to create administrators SID"
9666
9692
  msgstr ""
9667
9693
 
9668
- #: ../lib/puppet/util/windows/user.rb:64
9694
+ #: ../lib/puppet/util/windows/user.rb:63
9669
9695
  msgid "Failed to check membership"
9670
9696
  msgstr ""
9671
9697
 
9672
- #: ../lib/puppet/util/windows/user.rb:104
9698
+ #: ../lib/puppet/util/windows/user.rb:103
9673
9699
  msgid "Failed to logon user %{name}"
9674
9700
  msgstr ""
9675
9701
 
9676
- #: ../lib/puppet/util/windows/user.rb:135
9702
+ #: ../lib/puppet/util/windows/user.rb:134
9677
9703
  msgid "Failed to load user profile %{user}"
9678
9704
  msgstr ""
9679
9705
 
9680
- #: ../lib/puppet/util/windows/user.rb:141
9706
+ #: ../lib/puppet/util/windows/user.rb:140
9681
9707
  msgid "Failed to unload user profile %{user}"
9682
9708
  msgstr ""
9683
9709