puppet 6.0.4 → 6.0.5

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 (125) hide show
  1. checksums.yaml +4 -4
  2. data/Gemfile.lock +15 -15
  3. data/Rakefile +3 -1
  4. data/ext/solaris/smf/svc-puppetd +8 -1
  5. data/ext/solaris/smf/svc-puppetmasterd +8 -1
  6. data/lib/puppet/application/device.rb +48 -32
  7. data/lib/puppet/application/ssl.rb +31 -17
  8. data/lib/puppet/defaults.rb +2 -1
  9. data/lib/puppet/face/config.rb +1 -1
  10. data/lib/puppet/forge.rb +4 -1
  11. data/lib/puppet/pops/evaluator/collectors/abstract_collector.rb +3 -1
  12. data/lib/puppet/pops/model/pn_transformer.rb +5 -0
  13. data/lib/puppet/pops/types/p_timespan_type.rb +2 -2
  14. data/lib/puppet/pops/types/string_converter.rb +11 -2
  15. data/lib/puppet/provider/package/dnf.rb +2 -1
  16. data/lib/puppet/provider/package/windows/exe_package.rb +13 -0
  17. data/lib/puppet/provider/package/windows/msi_package.rb +8 -0
  18. data/lib/puppet/provider/package/windows/package.rb +9 -1
  19. data/lib/puppet/provider/package/yum.rb +1 -1
  20. data/lib/puppet/provider/parsedfile.rb +25 -4
  21. data/lib/puppet/provider/service/smf.rb +54 -0
  22. data/lib/puppet/provider/service/systemd.rb +2 -0
  23. data/lib/puppet/provider/service/upstart.rb +1 -0
  24. data/lib/puppet/rest/route.rb +1 -1
  25. data/lib/puppet/ssl/host.rb +23 -11
  26. data/lib/puppet/transaction.rb +4 -1
  27. data/lib/puppet/transaction/event_manager.rb +13 -1
  28. data/lib/puppet/transaction/resource_harness.rb +3 -1
  29. data/lib/puppet/util/command_line.rb +2 -3
  30. data/lib/puppet/util/filetype.rb +36 -4
  31. data/lib/puppet/util/selinux.rb +1 -1
  32. data/lib/puppet/util/windows/api_types.rb +1 -1
  33. data/lib/puppet/util/windows/registry.rb +29 -5
  34. data/lib/puppet/util/windows/service.rb +106 -99
  35. data/lib/puppet/version.rb +1 -1
  36. data/locales/ja/puppet.po +232 -183
  37. data/locales/puppet.pot +145 -117
  38. data/man/man5/puppet.conf.5 +3 -3
  39. data/man/man8/puppet-agent.8 +1 -1
  40. data/man/man8/puppet-apply.8 +1 -1
  41. data/man/man8/puppet-catalog.8 +1 -1
  42. data/man/man8/puppet-config.8 +2 -2
  43. data/man/man8/puppet-describe.8 +1 -1
  44. data/man/man8/puppet-device.8 +23 -19
  45. data/man/man8/puppet-doc.8 +1 -1
  46. data/man/man8/puppet-epp.8 +1 -1
  47. data/man/man8/puppet-facts.8 +1 -1
  48. data/man/man8/puppet-filebucket.8 +1 -1
  49. data/man/man8/puppet-generate.8 +1 -1
  50. data/man/man8/puppet-help.8 +1 -1
  51. data/man/man8/puppet-key.8 +1 -1
  52. data/man/man8/puppet-lookup.8 +1 -1
  53. data/man/man8/puppet-man.8 +1 -1
  54. data/man/man8/puppet-module.8 +1 -1
  55. data/man/man8/puppet-node.8 +1 -1
  56. data/man/man8/puppet-parser.8 +1 -1
  57. data/man/man8/puppet-plugin.8 +1 -1
  58. data/man/man8/puppet-report.8 +1 -1
  59. data/man/man8/puppet-resource.8 +1 -1
  60. data/man/man8/puppet-script.8 +1 -1
  61. data/man/man8/puppet-ssl.8 +6 -3
  62. data/man/man8/puppet-status.8 +1 -1
  63. data/man/man8/puppet.8 +2 -2
  64. data/spec/fixtures/unit/provider/service/smf/svcs_fmri.out +6 -0
  65. data/spec/fixtures/unit/provider/service/smf/svcs_multiple_fmris.out +13 -0
  66. data/spec/integration/ssl/key_spec.rb +0 -4
  67. data/spec/integration/transaction_spec.rb +559 -0
  68. data/spec/integration/util/windows/registry_spec.rb +39 -0
  69. data/spec/unit/application/device_spec.rb +10 -7
  70. data/spec/unit/application/lookup_spec.rb +2 -1
  71. data/spec/unit/application/ssl_spec.rb +21 -2
  72. data/spec/unit/forge/forge_spec.rb +4 -2
  73. data/spec/unit/functions/logging_spec.rb +10 -3
  74. data/spec/unit/indirector/yaml_spec.rb +1 -1
  75. data/spec/unit/pops/loaders/loader_spec.rb +6 -7
  76. data/spec/unit/pops/model/pn_transformer_spec.rb +4 -0
  77. data/spec/unit/pops/types/p_timespan_type_spec.rb +22 -0
  78. data/spec/unit/pops/types/p_timestamp_type_spec.rb +19 -0
  79. data/spec/unit/pops/types/string_converter_spec.rb +20 -0
  80. data/spec/unit/provider/group/ldap_spec.rb +22 -25
  81. data/spec/unit/provider/group/pw_spec.rb +7 -10
  82. data/spec/unit/provider/nameservice/directoryservice_spec.rb +97 -103
  83. data/spec/unit/provider/package/aix_spec.rb +5 -8
  84. data/spec/unit/provider/package/apt_spec.rb +3 -6
  85. data/spec/unit/provider/package/dnf_spec.rb +36 -37
  86. data/spec/unit/provider/package/dpkg_spec.rb +18 -21
  87. data/spec/unit/provider/package/freebsd_spec.rb +4 -7
  88. data/spec/unit/provider/package/gem_spec.rb +41 -41
  89. data/spec/unit/provider/package/hpux_spec.rb +7 -10
  90. data/spec/unit/provider/package/macports_spec.rb +13 -15
  91. data/spec/unit/provider/package/nim_spec.rb +3 -10
  92. data/spec/unit/provider/package/openbsd_spec.rb +14 -17
  93. data/spec/unit/provider/package/pip3_spec.rb +3 -6
  94. data/spec/unit/provider/package/pip_spec.rb +45 -49
  95. data/spec/unit/provider/package/pkgin_spec.rb +13 -18
  96. data/spec/unit/provider/package/pkgng_spec.rb +21 -24
  97. data/spec/unit/provider/package/puppet_gem_spec.rb +6 -9
  98. data/spec/unit/provider/package/tdnf_spec.rb +9 -12
  99. data/spec/unit/provider/package/yum_spec.rb +30 -16
  100. data/spec/unit/provider/package/zypper_spec.rb +17 -19
  101. data/spec/unit/provider/service/bsd_spec.rb +7 -9
  102. data/spec/unit/provider/service/daemontools_spec.rb +12 -16
  103. data/spec/unit/provider/service/debian_spec.rb +6 -10
  104. data/spec/unit/provider/service/freebsd_spec.rb +2 -2
  105. data/spec/unit/provider/service/openbsd_spec.rb +13 -17
  106. data/spec/unit/provider/service/rcng_spec.rb +2 -4
  107. data/spec/unit/provider/service/redhat_spec.rb +12 -11
  108. data/spec/unit/provider/service/runit_spec.rb +7 -14
  109. data/spec/unit/provider/service/smf_spec.rb +77 -13
  110. data/spec/unit/provider/service/src_spec.rb +11 -16
  111. data/spec/unit/provider/service/systemd_spec.rb +18 -0
  112. data/spec/unit/provider/user/hpux_spec.rb +3 -5
  113. data/spec/unit/provider/user/ldap_spec.rb +29 -32
  114. data/spec/unit/provider/user/pw_spec.rb +10 -13
  115. data/spec/unit/rest/route_spec.rb +1 -1
  116. data/spec/unit/ssl/host_spec.rb +21 -0
  117. data/spec/unit/ssl/key_spec.rb +2 -4
  118. data/spec/unit/transaction/event_manager_spec.rb +12 -1
  119. data/spec/unit/transaction/resource_harness_spec.rb +18 -0
  120. data/spec/unit/transaction_spec.rb +25 -0
  121. data/spec/unit/util/filetype_spec.rb +13 -5
  122. data/spec/unit/util/logging_spec.rb +0 -41
  123. data/spec/unit/util/monkey_patches_spec.rb +18 -5
  124. data/spec/unit/util/selinux_spec.rb +4 -0
  125. metadata +8 -2
@@ -6,11 +6,11 @@
6
6
  #, fuzzy
7
7
  msgid ""
8
8
  msgstr ""
9
- "Project-Id-Version: Puppet automation framework 6.0.3-60-g553a5ff\n"
9
+ "Project-Id-Version: Puppet automation framework 6.0.4-147-ge097be0\n"
10
10
  "\n"
11
11
  "Report-Msgid-Bugs-To: https://tickets.puppetlabs.com\n"
12
- "POT-Creation-Date: 2018-10-30 23:20+0000\n"
13
- "PO-Revision-Date: 2018-10-30 23:20+0000\n"
12
+ "POT-Creation-Date: 2018-12-11 23:05+0000\n"
13
+ "PO-Revision-Date: 2018-12-11 23:05+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
 
@@ -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:226
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:229
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:232
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:233
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:250
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:252
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:278
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:293
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:318
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:356 ../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:357 ../lib/puppet/application/resource.rb:197
282
282
  msgid "Could not find type %{type}"
283
283
  msgstr ""
284
284
 
@@ -438,67 +438,67 @@ msgstr ""
438
438
  msgid "Manage SSL keys and certificates for puppet SSL clients"
439
439
  msgstr ""
440
440
 
441
- #: ../lib/puppet/application/ssl.rb:80
441
+ #: ../lib/puppet/application/ssl.rb:86
442
442
  msgid "An action must be specified."
443
443
  msgstr ""
444
444
 
445
- #: ../lib/puppet/application/ssl.rb:92 ../lib/puppet/application/ssl.rb:97
445
+ #: ../lib/puppet/application/ssl.rb:107 ../lib/puppet/application/ssl.rb:112
446
446
  msgid "The certificate for '%{name}' has not yet been signed"
447
447
  msgstr ""
448
448
 
449
- #: ../lib/puppet/application/ssl.rb:104
449
+ #: ../lib/puppet/application/ssl.rb:119
450
450
  msgid "Unknown action '%{action}'"
451
451
  msgstr ""
452
452
 
453
- #: ../lib/puppet/application/ssl.rb:112
453
+ #: ../lib/puppet/application/ssl.rb:127
454
454
  msgid "Submitted certificate request for '%{name}' to https://%{server}:%{port}"
455
455
  msgstr ""
456
456
 
457
- #: ../lib/puppet/application/ssl.rb:116
457
+ #: ../lib/puppet/application/ssl.rb:131
458
458
  msgid "Failed to submit certificate request: %{message}"
459
459
  msgstr ""
460
460
 
461
- #: ../lib/puppet/application/ssl.rb:122
461
+ #: ../lib/puppet/application/ssl.rb:137
462
462
  msgid "Downloading certificate '%{name}' from https://%{server}:%{port}"
463
463
  msgstr ""
464
464
 
465
- #: ../lib/puppet/application/ssl.rb:128
465
+ #: ../lib/puppet/application/ssl.rb:143
466
466
  msgid "Downloaded certificate '%{name}' with fingerprint %{fingerprint}"
467
467
  msgstr ""
468
468
 
469
- #: ../lib/puppet/application/ssl.rb:133
469
+ #: ../lib/puppet/application/ssl.rb:148
470
470
  msgid "Failed to download certificate: %{message}"
471
471
  msgstr ""
472
472
 
473
- #: ../lib/puppet/application/ssl.rb:140
473
+ #: ../lib/puppet/application/ssl.rb:155
474
474
  msgid "The host's private key is missing"
475
475
  msgstr ""
476
476
 
477
- #: ../lib/puppet/application/ssl.rb:143
477
+ #: ../lib/puppet/application/ssl.rb:158
478
478
  msgid "The host's certificate is missing"
479
479
  msgstr ""
480
480
 
481
- #: ../lib/puppet/application/ssl.rb:146
481
+ #: ../lib/puppet/application/ssl.rb:161
482
482
  msgid "The host's key does not match the certificate"
483
483
  msgstr ""
484
484
 
485
- #: ../lib/puppet/application/ssl.rb:151
485
+ #: ../lib/puppet/application/ssl.rb:166
486
486
  msgid "Failed to verify certificate '%{name}': %{message} (%{error})"
487
487
  msgstr ""
488
488
 
489
- #: ../lib/puppet/application/ssl.rb:156
489
+ #: ../lib/puppet/application/ssl.rb:171
490
490
  msgid "Verified certificate '%{name}'"
491
491
  msgstr ""
492
492
 
493
- #: ../lib/puppet/application/ssl.rb:164
493
+ #: ../lib/puppet/application/ssl.rb:179
494
494
  msgid "Verify failed: %{message}"
495
495
  msgstr ""
496
496
 
497
- #: ../lib/puppet/application/ssl.rb:174
497
+ #: ../lib/puppet/application/ssl.rb:189
498
498
  msgid "Failed to connect to the CA to determine if certificate %{certname} has been cleaned"
499
499
  msgstr ""
500
500
 
501
- #: ../lib/puppet/application/ssl.rb:178
501
+ #: ../lib/puppet/application/ssl.rb:193
502
502
  msgid ""
503
503
  "The certificate %{certname} must be cleaned from the CA first. To fix this,\n"
504
504
  "run the following commands on the CA:\n"
@@ -506,7 +506,7 @@ msgid ""
506
506
  " puppet ssl clean\n"
507
507
  msgstr ""
508
508
 
509
- #: ../lib/puppet/application/ssl.rb:199
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
 
@@ -772,7 +772,7 @@ msgid "Examine Puppet's current settings."
772
772
  msgstr ""
773
773
 
774
774
  #: ../lib/puppet/face/config.rb:38
775
- msgid "(all | <setting> [<setting> ...]"
775
+ msgid "all | <setting> [<setting> ...]"
776
776
  msgstr ""
777
777
 
778
778
  #: ../lib/puppet/face/config.rb:83
@@ -6762,15 +6762,15 @@ msgstr ""
6762
6762
  msgid "The source parameter cannot be empty when using the Windows provider."
6763
6763
  msgstr ""
6764
6764
 
6765
- #: ../lib/puppet/provider/package/windows/package.rb:53
6765
+ #: ../lib/puppet/provider/package/windows/package.rb:61
6766
6766
  msgid "The source parameter is required when using the Windows provider."
6767
6767
  msgstr ""
6768
6768
 
6769
- #: ../lib/puppet/provider/package/windows/package.rb:61
6769
+ #: ../lib/puppet/provider/package/windows/package.rb:69
6770
6770
  msgid "The source does not exist: '%{source}'"
6771
6771
  msgstr ""
6772
6772
 
6773
- #: ../lib/puppet/provider/package/windows/package.rb:64
6773
+ #: ../lib/puppet/provider/package/windows/package.rb:72
6774
6774
  msgid "Don't know how to install '%{source}'"
6775
6775
  msgstr ""
6776
6776
 
@@ -6794,23 +6794,27 @@ msgstr ""
6794
6794
  msgid "Failed to update to version %{should}, got version %{version} instead"
6795
6795
  msgstr ""
6796
6796
 
6797
- #: ../lib/puppet/provider/parsedfile.rb:46
6797
+ #: ../lib/puppet/provider/parsedfile.rb:52
6798
6798
  msgid "Invalid filetype %{type}"
6799
6799
  msgstr ""
6800
6800
 
6801
- #: ../lib/puppet/provider/parsedfile.rb:268
6801
+ #: ../lib/puppet/provider/parsedfile.rb:99
6802
+ msgid "Failed to read %{target}'s records when prefetching them. Reason: %{detail}"
6803
+ msgstr ""
6804
+
6805
+ #: ../lib/puppet/provider/parsedfile.rb:287
6802
6806
  msgid "Could not prefetch %{resource} provider '%{name}' target '%{target}': %{detail}. Treating as empty"
6803
6807
  msgstr ""
6804
6808
 
6805
- #: ../lib/puppet/provider/parsedfile.rb:280
6809
+ #: ../lib/puppet/provider/parsedfile.rb:301
6806
6810
  msgid "Prefetching %{target} for provider %{name} returned nil"
6807
6811
  msgstr ""
6808
6812
 
6809
- #: ../lib/puppet/provider/parsedfile.rb:353
6813
+ #: ../lib/puppet/provider/parsedfile.rb:374
6810
6814
  msgid "Parsed Providers must define a default target"
6811
6815
  msgstr ""
6812
6816
 
6813
- #: ../lib/puppet/provider/parsedfile.rb:442
6817
+ #: ../lib/puppet/provider/parsedfile.rb:463
6814
6818
  msgid "Somehow got told to prefetch with no resource set"
6815
6819
  msgstr ""
6816
6820
 
@@ -6840,6 +6844,18 @@ msgstr ""
6840
6844
  msgid "Waiting 5 seconds for runsvdir to discover service %{service}"
6841
6845
  msgstr ""
6842
6846
 
6847
+ #: ../lib/puppet/provider/service/smf.rb:68
6848
+ msgid "Failed to get the FMRI of the %{service} service: The pattern '%{service}' matches multiple FMRIs! These are the FMRIs it matches: %{all_fmris}"
6849
+ msgstr ""
6850
+
6851
+ #: ../lib/puppet/provider/service/smf.rb:83
6852
+ msgid "Cannot query if the %{service} service is complete: The concept of complete/incomplete services was introduced in Solaris 11.1. You are on a Solaris %{release} machine."
6853
+ msgstr ""
6854
+
6855
+ #: ../lib/puppet/provider/service/smf.rb:182
6856
+ msgid "The %{service} service is incomplete so its status will be reported as :stopped. See `svcs -xv %{fmri}` for more details."
6857
+ msgstr ""
6858
+
6843
6859
  #: ../lib/puppet/provider/service/windows.rb:22
6844
6860
  msgid "Cannot enable %{resource_name}, error was: %{detail}"
6845
6861
  msgstr ""
@@ -7516,15 +7532,15 @@ msgstr ""
7516
7532
  msgid "unexpected attributes %{keys} in %{path}"
7517
7533
  msgstr ""
7518
7534
 
7519
- #: ../lib/puppet/ssl/host.rb:154
7535
+ #: ../lib/puppet/ssl/host.rb:165
7520
7536
  msgid "No certificate to validate."
7521
7537
  msgstr ""
7522
7538
 
7523
- #: ../lib/puppet/ssl/host.rb:155
7539
+ #: ../lib/puppet/ssl/host.rb:166
7524
7540
  msgid "No private key with which to validate certificate with fingerprint: %{fingerprint}"
7525
7541
  msgstr ""
7526
7542
 
7527
- #: ../lib/puppet/ssl/host.rb:157
7543
+ #: ../lib/puppet/ssl/host.rb:168
7528
7544
  msgid ""
7529
7545
  "The certificate retrieved from the master does not match the agent's private key. Did you forget to run as root?\n"
7530
7546
  "Certificate fingerprint: %{fingerprint}\n"
@@ -7532,11 +7548,11 @@ msgid ""
7532
7548
  "On the master:\n"
7533
7549
  " puppetserver ca clean --certname %{cert_name}\n"
7534
7550
  "On the agent:\n"
7535
- " 1. puppet ssl clean\n"
7536
- " 2. puppet agent -t\n"
7551
+ " 1. puppet ssl clean %{clean_params}\n"
7552
+ " 2. puppet %{puppet_params}\n"
7537
7553
  msgstr ""
7538
7554
 
7539
- #: ../lib/puppet/ssl/host.rb:239
7555
+ #: ../lib/puppet/ssl/host.rb:250
7540
7556
  msgid ""
7541
7557
  "The local CSR does not match the agent's public key.\n"
7542
7558
  "CSR fingerprint: %{fingerprint}\n"
@@ -7544,11 +7560,11 @@ msgid ""
7544
7560
  "Agent public key: %{agent_public_key}\n"
7545
7561
  "To fix this, remove the CSR from the agent and then start a puppet run, which will automatically regenerate a CSR.\n"
7546
7562
  "On the agent:\n"
7547
- " 1. puppet ssl clean\n"
7548
- " 2. puppet agent -t\n"
7563
+ " 1. puppet ssl clean %{clean_params}\n"
7564
+ " 2. puppet %{puppet_params}\n"
7549
7565
  msgstr ""
7550
7566
 
7551
- #: ../lib/puppet/ssl/host.rb:255
7567
+ #: ../lib/puppet/ssl/host.rb:266
7552
7568
  msgid ""
7553
7569
  "The CSR retrieved from the master does not match the agent's public key.\n"
7554
7570
  "CSR fingerprint: %{fingerprint}\n"
@@ -7558,77 +7574,77 @@ msgid ""
7558
7574
  "On the master:\n"
7559
7575
  " puppetserver ca clean --certname %{cert_name}\n"
7560
7576
  "On the agent:\n"
7561
- " 1. puppet ssl clean\n"
7562
- " 2. puppet agent -t\n"
7577
+ " 1. puppet ssl clean %{clean_params}\n"
7578
+ " 2. puppet %{puppet_params}\n"
7563
7579
  msgstr ""
7564
7580
 
7565
- #: ../lib/puppet/ssl/host.rb:308 ../lib/puppet/ssl/host.rb:329
7581
+ #: ../lib/puppet/ssl/host.rb:320 ../lib/puppet/ssl/host.rb:341
7566
7582
  msgid "Could not request certificate: %{message}"
7567
7583
  msgstr ""
7568
7584
 
7569
- #: ../lib/puppet/ssl/host.rb:310
7585
+ #: ../lib/puppet/ssl/host.rb:322
7570
7586
  msgid "Exiting; failed to retrieve certificate and waitforcert is disabled"
7571
7587
  msgstr ""
7572
7588
 
7573
- #: ../lib/puppet/ssl/host.rb:319
7589
+ #: ../lib/puppet/ssl/host.rb:331
7574
7590
  msgid "Exiting; no certificate found and waitforcert is disabled"
7575
7591
  msgstr ""
7576
7592
 
7577
- #: ../lib/puppet/ssl/host.rb:327
7593
+ #: ../lib/puppet/ssl/host.rb:339
7578
7594
  msgid "Did not receive certificate"
7579
7595
  msgstr ""
7580
7596
 
7581
- #: ../lib/puppet/ssl/host.rb:367
7597
+ #: ../lib/puppet/ssl/host.rb:379
7582
7598
  msgid "Response from the CA did not contain a valid certificate request: %{message}"
7583
7599
  msgstr ""
7584
7600
 
7585
- #: ../lib/puppet/ssl/host.rb:373
7601
+ #: ../lib/puppet/ssl/host.rb:385
7586
7602
  msgid "Could not download certificate request: %{message}"
7587
7603
  msgstr ""
7588
7604
 
7589
- #: ../lib/puppet/ssl/host.rb:400
7605
+ #: ../lib/puppet/ssl/host.rb:412
7590
7606
  msgid ""
7591
7607
  "Failed attempting to load CRL from %{crl_path}! The CRL below caused the error '%{error}':\n"
7592
7608
  "%{crl}"
7593
7609
  msgstr ""
7594
7610
 
7595
- #: ../lib/puppet/ssl/host.rb:428
7611
+ #: ../lib/puppet/ssl/host.rb:440
7596
7612
  msgid "The CA certificate at %{file_path} is invalid: %{message}"
7597
7613
  msgstr ""
7598
7614
 
7599
- #: ../lib/puppet/ssl/host.rb:452
7615
+ #: ../lib/puppet/ssl/host.rb:464
7600
7616
  msgid "No valid PEM-encoded certificates."
7601
7617
  msgstr ""
7602
7618
 
7603
- #: ../lib/puppet/ssl/host.rb:459
7619
+ #: ../lib/puppet/ssl/host.rb:471
7604
7620
  msgid "Could not parse certificate: %{message}"
7605
7621
  msgstr ""
7606
7622
 
7607
- #: ../lib/puppet/ssl/host.rb:482
7623
+ #: ../lib/puppet/ssl/host.rb:494
7608
7624
  msgid "Could not download CRLs: %{message}"
7609
7625
  msgstr ""
7610
7626
 
7611
- #: ../lib/puppet/ssl/host.rb:501
7627
+ #: ../lib/puppet/ssl/host.rb:513
7612
7628
  msgid "Response from the CA did not contain a valid CA certificate: %{message}"
7613
7629
  msgstr ""
7614
7630
 
7615
- #: ../lib/puppet/ssl/host.rb:504
7631
+ #: ../lib/puppet/ssl/host.rb:516
7616
7632
  msgid "Could not download CA certificate: %{message}"
7617
7633
  msgstr ""
7618
7634
 
7619
- #: ../lib/puppet/ssl/host.rb:544
7635
+ #: ../lib/puppet/ssl/host.rb:556
7620
7636
  msgid "The certificate at %{file_path} is invalid. Could not load."
7621
7637
  msgstr ""
7622
7638
 
7623
- #: ../lib/puppet/ssl/host.rb:565
7639
+ #: ../lib/puppet/ssl/host.rb:577
7624
7640
  msgid "Response from the CA did not contain a valid certificate for %{cert_name}."
7625
7641
  msgstr ""
7626
7642
 
7627
- #: ../lib/puppet/ssl/host.rb:569
7643
+ #: ../lib/puppet/ssl/host.rb:581
7628
7644
  msgid "No certificate for %{cert_name} on CA"
7629
7645
  msgstr ""
7630
7646
 
7631
- #: ../lib/puppet/ssl/host.rb:572
7647
+ #: ../lib/puppet/ssl/host.rb:584
7632
7648
  msgid "Could not download host certificate: %{message}"
7633
7649
  msgstr ""
7634
7650
 
@@ -7834,23 +7850,27 @@ msgstr ""
7834
7850
  msgid "change from %s to %s failed: "
7835
7851
  msgstr ""
7836
7852
 
7837
- #: ../lib/puppet/transaction/resource_harness.rb:212
7853
+ #: ../lib/puppet/transaction/resource_harness.rb:162
7854
+ msgid "could not create change error message for %{name}"
7855
+ msgstr ""
7856
+
7857
+ #: ../lib/puppet/transaction/resource_harness.rb:214
7838
7858
  msgid "audit change: previously recorded value %s has been changed to %s"
7839
7859
  msgstr ""
7840
7860
 
7841
- #: ../lib/puppet/transaction/resource_harness.rb:222
7861
+ #: ../lib/puppet/transaction/resource_harness.rb:224
7842
7862
  msgid " (previously recorded value was %s)"
7843
7863
  msgstr ""
7844
7864
 
7845
- #: ../lib/puppet/transaction/resource_harness.rb:229
7865
+ #: ../lib/puppet/transaction/resource_harness.rb:231
7846
7866
  msgid "current_value %s, should be %s (noop)"
7847
7867
  msgstr ""
7848
7868
 
7849
- #: ../lib/puppet/transaction/resource_harness.rb:238
7869
+ #: ../lib/puppet/transaction/resource_harness.rb:240
7850
7870
  msgid "changed %s to %s"
7851
7871
  msgstr ""
7852
7872
 
7853
- #: ../lib/puppet/transaction/resource_harness.rb:261
7873
+ #: ../lib/puppet/transaction/resource_harness.rb:263
7854
7874
  msgid "audit change: newly-recorded value %s"
7855
7875
  msgstr ""
7856
7876
 
@@ -8485,15 +8505,15 @@ msgstr ""
8485
8505
  msgid "Could not initialize global default settings"
8486
8506
  msgstr ""
8487
8507
 
8488
- #: ../lib/puppet/util/command_line.rb:166
8508
+ #: ../lib/puppet/util/command_line.rb:165
8489
8509
  msgid "Error: Could not parse application options: invalid option: %{opt}"
8490
8510
  msgstr ""
8491
8511
 
8492
- #: ../lib/puppet/util/command_line.rb:169
8512
+ #: ../lib/puppet/util/command_line.rb:168
8493
8513
  msgid "See 'puppet help' for help on available puppet subcommands"
8494
8514
  msgstr ""
8495
8515
 
8496
- #: ../lib/puppet/util/command_line.rb:182
8516
+ #: ../lib/puppet/util/command_line.rb:181
8497
8517
  msgid "Error: Unknown Puppet subcommand '%{cmd}'"
8498
8518
  msgstr ""
8499
8519
 
@@ -8774,19 +8794,27 @@ msgstr ""
8774
8794
  msgid "Could not retrieve user %{user}: %{detail}"
8775
8795
  msgstr ""
8776
8796
 
8777
- #: ../lib/puppet/util/filetype.rb:200 ../lib/puppet/util/filetype.rb:249 ../lib/puppet/util/filetype.rb:292
8778
- msgid "User %{path} not authorized to use cron"
8797
+ #: ../lib/puppet/util/filetype.rb:195 ../lib/puppet/util/filetype.rb:260 ../lib/puppet/util/filetype.rb:311
8798
+ msgid "The %{path} user does not exist. Treating their crontab file as empty in case Puppet creates them in the middle of the run."
8779
8799
  msgstr ""
8780
8800
 
8781
- #: ../lib/puppet/util/filetype.rb:202 ../lib/puppet/util/filetype.rb:251 ../lib/puppet/util/filetype.rb:294
8801
+ #: ../lib/puppet/util/filetype.rb:206 ../lib/puppet/util/filetype.rb:271 ../lib/puppet/util/filetype.rb:322
8802
+ msgid "The %{path} user is not authorized to use cron. Their crontab file is treated as empty in case Puppet authorizes them in the middle of the run (by, for example, modifying the cron.deny or cron.allow files)."
8803
+ msgstr ""
8804
+
8805
+ #: ../lib/puppet/util/filetype.rb:210 ../lib/puppet/util/filetype.rb:275 ../lib/puppet/util/filetype.rb:326
8782
8806
  msgid "Could not read crontab for %{path}: %{detail}"
8783
8807
  msgstr ""
8784
8808
 
8785
- #: ../lib/puppet/util/filetype.rb:259 ../lib/puppet/util/filetype.rb:302
8809
+ #: ../lib/puppet/util/filetype.rb:232
8810
+ msgid "Cannot write the %{path} user's crontab: The user does not exist"
8811
+ msgstr ""
8812
+
8813
+ #: ../lib/puppet/util/filetype.rb:283 ../lib/puppet/util/filetype.rb:334
8786
8814
  msgid "Could not remove crontab for %{path}: %{detail}"
8787
8815
  msgstr ""
8788
8816
 
8789
- #: ../lib/puppet/util/filetype.rb:274 ../lib/puppet/util/filetype.rb:318
8817
+ #: ../lib/puppet/util/filetype.rb:298 ../lib/puppet/util/filetype.rb:350
8790
8818
  msgid "Could not write crontab for %{path}: %{detail}"
8791
8819
  msgstr ""
8792
8820
 
@@ -9318,39 +9346,39 @@ msgstr ""
9318
9346
  msgid "Failed to open registry key '%{key}\\%{path}'"
9319
9347
  msgstr ""
9320
9348
 
9321
- #: ../lib/puppet/util/windows/registry.rb:106
9349
+ #: ../lib/puppet/util/windows/registry.rb:128
9322
9350
  msgid "Failed to enumerate %{key} registry keys at index %{index}"
9323
9351
  msgstr ""
9324
9352
 
9325
- #: ../lib/puppet/util/windows/registry.rb:137
9353
+ #: ../lib/puppet/util/windows/registry.rb:159
9326
9354
  msgid "Failed to enumerate %{key} registry values at index %{index}"
9327
9355
  msgstr ""
9328
9356
 
9329
- #: ../lib/puppet/util/windows/registry.rb:167
9357
+ #: ../lib/puppet/util/windows/registry.rb:189
9330
9358
  msgid "Failed to query registry %{key} for sizes"
9331
9359
  msgstr ""
9332
9360
 
9333
- #: ../lib/puppet/util/windows/registry.rb:203
9361
+ #: ../lib/puppet/util/windows/registry.rb:225
9334
9362
  msgid "Type mismatch (expect %{rtype} but %{type} present)"
9335
9363
  msgstr ""
9336
9364
 
9337
- #: ../lib/puppet/util/windows/registry.rb:225
9365
+ #: ../lib/puppet/util/windows/registry.rb:247
9338
9366
  msgid "Type %{type} is not supported."
9339
9367
  msgstr ""
9340
9368
 
9341
- #: ../lib/puppet/util/windows/registry.rb:230
9369
+ #: ../lib/puppet/util/windows/registry.rb:252
9342
9370
  msgid "A value in the registry key %{parent_key_name}%{key} is corrupt or invalid"
9343
9371
  msgstr ""
9344
9372
 
9345
- #: ../lib/puppet/util/windows/registry.rb:250
9373
+ #: ../lib/puppet/util/windows/registry.rb:274
9346
9374
  msgid "Failed to read registry value %{value} at %{key}"
9347
9375
  msgstr ""
9348
9376
 
9349
- #: ../lib/puppet/util/windows/registry.rb:268
9377
+ #: ../lib/puppet/util/windows/registry.rb:292
9350
9378
  msgid "Failed to delete registry value %{name} at %{key}"
9351
9379
  msgstr ""
9352
9380
 
9353
- #: ../lib/puppet/util/windows/registry.rb:283
9381
+ #: ../lib/puppet/util/windows/registry.rb:307
9354
9382
  msgid "Failed to delete registry key %{name} at %{key}"
9355
9383
  msgstr ""
9356
9384
 
@@ -9440,87 +9468,87 @@ msgstr ""
9440
9468
  msgid "Successfully resumed the %{service_name} service"
9441
9469
  msgstr ""
9442
9470
 
9443
- #: ../lib/puppet/util/windows/service.rb:369
9471
+ #: ../lib/puppet/util/windows/service.rb:370
9444
9472
  msgid "Unknown Service state '%{current_state}' for '%{service_name}'"
9445
9473
  msgstr ""
9446
9474
 
9447
- #: ../lib/puppet/util/windows/service.rb:386
9475
+ #: ../lib/puppet/util/windows/service.rb:388
9448
9476
  msgid "Unknown start type '%{start_type}' for '%{service_name}'"
9449
9477
  msgstr ""
9450
9478
 
9451
- #: ../lib/puppet/util/windows/service.rb:401
9479
+ #: ../lib/puppet/util/windows/service.rb:403
9452
9480
  msgid "Unknown start type %{start_type}"
9453
9481
  msgstr ""
9454
9482
 
9455
- #: ../lib/puppet/util/windows/service.rb:422
9483
+ #: ../lib/puppet/util/windows/service.rb:424
9456
9484
  msgid "Failed to update service configuration"
9457
9485
  msgstr ""
9458
9486
 
9459
- #: ../lib/puppet/util/windows/service.rb:482
9487
+ #: ../lib/puppet/util/windows/service.rb:484
9460
9488
  msgid "Failed to fetch services"
9461
9489
  msgstr ""
9462
9490
 
9463
- #: ../lib/puppet/util/windows/service.rb:531
9491
+ #: ../lib/puppet/util/windows/service.rb:533
9464
9492
  msgid "Failed to open a handle to the service"
9465
9493
  msgstr ""
9466
9494
 
9467
- #: ../lib/puppet/util/windows/service.rb:548
9495
+ #: ../lib/puppet/util/windows/service.rb:550
9468
9496
  msgid "Failed to open a handle to the service control manager"
9469
9497
  msgstr ""
9470
9498
 
9471
- #: ../lib/puppet/util/windows/service.rb:571
9499
+ #: ../lib/puppet/util/windows/service.rb:572
9472
9500
  msgid "The service is already in the %{final_state} state. No further work needs to be done."
9473
9501
  msgstr ""
9474
9502
 
9475
- #: ../lib/puppet/util/windows/service.rb:583
9503
+ #: ../lib/puppet/util/windows/service.rb:584
9476
9504
  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."
9477
9505
  msgstr ""
9478
9506
 
9479
- #: ../lib/puppet/util/windows/service.rb:594
9507
+ #: ../lib/puppet/util/windows/service.rb:595
9480
9508
  msgid "There is already a pending transition to the %{final_state} state for the %{service_name} service."
9481
9509
  msgstr ""
9482
9510
 
9483
- #: ../lib/puppet/util/windows/service.rb:610
9511
+ #: ../lib/puppet/util/windows/service.rb:611
9484
9512
  msgid "The service is in the %{pending_state} state, which is an unsafe pending state."
9485
9513
  msgstr ""
9486
9514
 
9487
- #: ../lib/puppet/util/windows/service.rb:615
9515
+ #: ../lib/puppet/util/windows/service.rb:616
9488
9516
  msgid "Transitioning the %{service_name} service from %{initial_state} to %{final_state}"
9489
9517
  msgstr ""
9490
9518
 
9491
- #: ../lib/puppet/util/windows/service.rb:619
9519
+ #: ../lib/puppet/util/windows/service.rb:620
9492
9520
  msgid "Waiting for the transition to finish"
9493
9521
  msgstr ""
9494
9522
 
9495
- #: ../lib/puppet/util/windows/service.rb:623
9523
+ #: ../lib/puppet/util/windows/service.rb:625
9496
9524
  msgid "Failed to transition the %{service_name} service to the %{final_state} state. Detail: %{detail}"
9497
9525
  msgstr ""
9498
9526
 
9499
- #: ../lib/puppet/util/windows/service.rb:662 ../lib/puppet/util/windows/service.rb:698
9527
+ #: ../lib/puppet/util/windows/service.rb:664 ../lib/puppet/util/windows/service.rb:700
9500
9528
  msgid "Service query failed"
9501
9529
  msgstr ""
9502
9530
 
9503
- #: ../lib/puppet/util/windows/service.rb:715
9504
- msgid "Failed to send the %{control_signal} signal to the service. Its current state is %{current_state}. Failed with"
9531
+ #: ../lib/puppet/util/windows/service.rb:717
9532
+ msgid "Failed to send the %{control_signal} signal to the service. Its current state is %{current_state}. Reason for failure:"
9505
9533
  msgstr ""
9506
9534
 
9507
- #: ../lib/puppet/util/windows/service.rb:749
9535
+ #: ../lib/puppet/util/windows/service.rb:751
9508
9536
  msgid "The service transitioned to the %{pending_state} state."
9509
9537
  msgstr ""
9510
9538
 
9511
- #: ../lib/puppet/util/windows/service.rb:759
9539
+ #: ../lib/puppet/util/windows/service.rb:765
9512
9540
  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}."
9513
9541
  msgstr ""
9514
9542
 
9515
- #: ../lib/puppet/util/windows/service.rb:773
9543
+ #: ../lib/puppet/util/windows/service.rb:779
9516
9544
  msgid "Waiting for the pending transition to the %{final_state} state to finish."
9517
9545
  msgstr ""
9518
9546
 
9519
- #: ../lib/puppet/util/windows/service.rb:786
9547
+ #: ../lib/puppet/util/windows/service.rb:793
9520
9548
  msgid "Unexpected transition to the %{current_state} state while waiting for the pending transition from %{pending_state} to %{final_state} to finish."
9521
9549
  msgstr ""
9522
9550
 
9523
- #: ../lib/puppet/util/windows/service.rb:800
9551
+ #: ../lib/puppet/util/windows/service.rb:807
9524
9552
  msgid "Timed out while waiting for the pending transition from %{pending_state} to %{final_state} to finish. The current state is %{current_state}."
9525
9553
  msgstr ""
9526
9554