puppet 5.5.14 → 5.5.16

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 (83) hide show
  1. checksums.yaml +4 -4
  2. data/Gemfile +2 -0
  3. data/Gemfile.lock +18 -17
  4. data/ext/solaris/smf/puppet.xml +2 -0
  5. data/lib/hiera/scope.rb +7 -0
  6. data/lib/puppet.rb +1 -1
  7. data/lib/puppet/application/device.rb +22 -10
  8. data/lib/puppet/configurer.rb +23 -38
  9. data/lib/puppet/network/http/connection.rb +2 -0
  10. data/lib/puppet/pops/types/types.rb +5 -3
  11. data/lib/puppet/provider.rb +1 -2
  12. data/lib/puppet/provider/cron/crontab.rb +1 -1
  13. data/lib/puppet/provider/package.rb +2 -0
  14. data/lib/puppet/provider/package/dpkg.rb +15 -2
  15. data/lib/puppet/provider/package/gem.rb +65 -29
  16. data/lib/puppet/provider/package/pip.rb +136 -111
  17. data/lib/puppet/provider/package/pip3.rb +1 -1
  18. data/lib/puppet/provider/package/puppet_gem.rb +1 -1
  19. data/lib/puppet/provider/package/rpm.rb +27 -16
  20. data/lib/puppet/provider/package/yum.rb +1 -1
  21. data/lib/puppet/provider/package_targetable.rb +68 -0
  22. data/lib/puppet/provider/service/upstart.rb +8 -8
  23. data/lib/puppet/provider/user/useradd.rb +16 -13
  24. data/lib/puppet/settings/server_list_setting.rb +9 -0
  25. data/lib/puppet/ssl/validator/default_validator.rb +30 -0
  26. data/lib/puppet/type/package.rb +46 -9
  27. data/lib/puppet/util/pidlock.rb +15 -1
  28. data/lib/puppet/util/windows/process.rb +70 -0
  29. data/lib/puppet/util/windows/registry.rb +7 -1
  30. data/lib/puppet/util/windows/user.rb +14 -4
  31. data/lib/puppet/version.rb +1 -1
  32. data/locales/puppet.pot +81 -78
  33. data/man/man5/puppet.conf.5 +2 -2
  34. data/man/man8/puppet-agent.8 +1 -1
  35. data/man/man8/puppet-apply.8 +1 -1
  36. data/man/man8/puppet-ca.8 +1 -1
  37. data/man/man8/puppet-catalog.8 +1 -1
  38. data/man/man8/puppet-cert.8 +1 -1
  39. data/man/man8/puppet-certificate.8 +1 -1
  40. data/man/man8/puppet-certificate_request.8 +1 -1
  41. data/man/man8/puppet-certificate_revocation_list.8 +1 -1
  42. data/man/man8/puppet-config.8 +1 -1
  43. data/man/man8/puppet-describe.8 +1 -1
  44. data/man/man8/puppet-device.8 +1 -1
  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-master.8 +1 -1
  55. data/man/man8/puppet-module.8 +1 -1
  56. data/man/man8/puppet-node.8 +1 -1
  57. data/man/man8/puppet-parser.8 +1 -1
  58. data/man/man8/puppet-plugin.8 +1 -1
  59. data/man/man8/puppet-report.8 +1 -1
  60. data/man/man8/puppet-resource.8 +1 -1
  61. data/man/man8/puppet-script.8 +1 -1
  62. data/man/man8/puppet-status.8 +1 -1
  63. data/man/man8/puppet.8 +2 -2
  64. data/spec/integration/network/http_pool_spec.rb +120 -0
  65. data/spec/integration/type/package_spec.rb +1 -1
  66. data/spec/integration/util/windows/registry_spec.rb +52 -0
  67. data/spec/integration/util/windows/user_spec.rb +19 -0
  68. data/spec/lib/puppet_spec/https.rb +166 -0
  69. data/spec/unit/configurer_spec.rb +49 -13
  70. data/spec/unit/functions/new_spec.rb +15 -0
  71. data/spec/unit/hiera/scope_spec.rb +7 -0
  72. data/spec/unit/network/http/connection_spec.rb +0 -130
  73. data/spec/unit/provider/package/dpkg_spec.rb +18 -1
  74. data/spec/unit/provider/package/gem_spec.rb +101 -48
  75. data/spec/unit/provider/package/pip3_spec.rb +17 -0
  76. data/spec/unit/provider/package/pip_spec.rb +59 -68
  77. data/spec/unit/provider/package/puppet_gem_spec.rb +22 -6
  78. data/spec/unit/provider/package/rpm_spec.rb +116 -27
  79. data/spec/unit/provider/service/upstart_spec.rb +3 -19
  80. data/spec/unit/settings/server_list_setting_spec.rb +21 -0
  81. data/spec/unit/ssl/validator_spec.rb +2 -0
  82. data/spec/unit/util/pidlock_spec.rb +46 -0
  83. metadata +9 -2
@@ -6,7 +6,7 @@
6
6
  # Raketasks and such to set the version based on the output of `git describe`
7
7
 
8
8
  module Puppet
9
- PUPPETVERSION = '5.5.14'
9
+ PUPPETVERSION = '5.5.16'
10
10
 
11
11
  ##
12
12
  # version is a public API method intended to always provide a fast and
@@ -6,11 +6,11 @@
6
6
  #, fuzzy
7
7
  msgid ""
8
8
  msgstr ""
9
- "Project-Id-Version: Puppet automation framework 5.5.12-15-gc8eb177\n"
9
+ "Project-Id-Version: Puppet automation framework 5.5.14-76-g2064e7d\n"
10
10
  "\n"
11
11
  "Report-Msgid-Bugs-To: https://tickets.puppetlabs.com\n"
12
- "POT-Creation-Date: 2019-04-02 16:46+0000\n"
13
- "PO-Revision-Date: 2019-04-02 16:46+0000\n"
12
+ "POT-Creation-Date: 2019-06-17 20:46+0000\n"
13
+ "PO-Revision-Date: 2019-06-17 20:46+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:43 ../lib/puppet/parser/scope.rb:537
31
+ #: ../lib/hiera/scope.rb:46 ../lib/puppet/parser/scope.rb:537
32
32
  msgid "Variable: %{name}"
33
33
  msgstr ""
34
34
 
35
- #: ../lib/hiera/scope.rb:44 ../lib/hiera/scope.rb:46 ../lib/puppet/parser/scope.rb:538 ../lib/puppet/parser/scope.rb:540
35
+ #: ../lib/hiera/scope.rb:47 ../lib/hiera/scope.rb:49 ../lib/puppet/parser/scope.rb:538 ../lib/puppet/parser/scope.rb:540
36
36
  msgid "Undefined variable '%{name}'; %{reason}"
37
37
  msgstr ""
38
38
 
@@ -48,10 +48,6 @@ msgstr ""
48
48
  msgid "Config file %{hiera_config} not found, using Hiera defaults"
49
49
  msgstr ""
50
50
 
51
- #: ../lib/puppet.rb:4
52
- msgid "Puppet %{version} requires ruby 1.9.3 or greater."
53
- msgstr ""
54
-
55
51
  #: ../lib/puppet.rb:130
56
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."
57
53
  msgstr ""
@@ -277,23 +273,23 @@ msgstr ""
277
273
  msgid "No device found in %{config}"
278
274
  msgstr ""
279
275
 
280
- #: ../lib/puppet/application/device.rb:278
276
+ #: ../lib/puppet/application/device.rb:297
281
277
  msgid "retrieving resource: %{resource} from %{target} at %{scheme}%{url_host}%{port}%{url_path}"
282
278
  msgstr ""
283
279
 
284
- #: ../lib/puppet/application/device.rb:293
280
+ #: ../lib/puppet/application/device.rb:312
285
281
  msgid "retrieving facts from %{target} at %{scheme}%{url_host}%{port}%{url_path}"
286
282
  msgstr ""
287
283
 
288
- #: ../lib/puppet/application/device.rb:318
284
+ #: ../lib/puppet/application/device.rb:337
289
285
  msgid "starting applying configuration to %{target} at %{scheme}%{url_host}%{port}%{url_path}"
290
286
  msgstr ""
291
287
 
292
- #: ../lib/puppet/application/device.rb:356 ../lib/puppet/application/resource.rb:196
288
+ #: ../lib/puppet/application/device.rb:368 ../lib/puppet/application/resource.rb:196
293
289
  msgid "You must specify the type to display"
294
290
  msgstr ""
295
291
 
296
- #: ../lib/puppet/application/device.rb:357 ../lib/puppet/application/resource.rb:197
292
+ #: ../lib/puppet/application/device.rb:369 ../lib/puppet/application/resource.rb:197
297
293
  msgid "Could not find type %{type}"
298
294
  msgstr ""
299
295
 
@@ -536,74 +532,73 @@ msgstr ""
536
532
  msgid "Applied catalog in %{seconds} seconds"
537
533
  msgstr ""
538
534
 
539
- #: ../lib/puppet/configurer.rb:225
535
+ #: ../lib/puppet/configurer.rb:224
540
536
  msgid "Could not select a functional puppet master from server_list: '%{server_list}'"
541
537
  msgstr ""
542
538
 
543
539
  #. TRANSLATORS 'server_list' is the name of a setting and should not be translated
544
- #: ../lib/puppet/configurer.rb:228
545
- msgid "Selected server from the `server_list` setting: %{server}:%{port}"
540
+ #: ../lib/puppet/configurer.rb:227
541
+ msgid "Selected puppet server from the `server_list` setting: %{server}:%{port}"
546
542
  msgstr ""
547
543
 
548
- #: ../lib/puppet/configurer.rb:260
544
+ #: ../lib/puppet/configurer.rb:259
549
545
  msgid "Local environment: '%{local_env}' doesn't match the environment of the cached catalog '%{catalog_env}', switching agent to '%{catalog_env}'."
550
546
  msgstr ""
551
547
 
552
- #: ../lib/puppet/configurer.rb:305
548
+ #: ../lib/puppet/configurer.rb:304
553
549
  msgid "Local environment: '%{local_env}' doesn't match server specified node environment '%{node_env}', switching agent to '%{node_env}'."
554
550
  msgstr ""
555
551
 
556
- #: ../lib/puppet/configurer.rb:310
552
+ #: ../lib/puppet/configurer.rb:309
557
553
  msgid "Using configured environment '%{env}'"
558
554
  msgstr ""
559
555
 
560
- #: ../lib/puppet/configurer.rb:314
556
+ #: ../lib/puppet/configurer.rb:313
561
557
  msgid "Unable to fetch my node definition, but the agent run will continue:"
562
558
  msgstr ""
563
559
 
564
- #: ../lib/puppet/configurer.rb:338
560
+ #: ../lib/puppet/configurer.rb:337
565
561
  msgid "Not using catalog because its environment '%{catalog_env}' does not match agent specified environment '%{local_env}' and strict_environment_mode is set"
566
562
  msgstr ""
567
563
 
568
- #: ../lib/puppet/configurer.rb:349
564
+ #: ../lib/puppet/configurer.rb:348
569
565
  msgid "Catalog environment didn't stabilize after %{tries} fetches, aborting run"
570
566
  msgstr ""
571
567
 
572
- #: ../lib/puppet/configurer.rb:351
568
+ #: ../lib/puppet/configurer.rb:350
573
569
  msgid "Local environment: '%{local_env}' doesn't match server specified environment '%{catalog_env}', restarting agent run with environment '%{catalog_env}'"
574
570
  msgstr ""
575
571
 
576
- #: ../lib/puppet/configurer.rb:370
572
+ #: ../lib/puppet/configurer.rb:369
577
573
  msgid "Failed to apply catalog: %{detail}"
578
574
  msgstr ""
579
575
 
580
- #. TRANSLATORS 'server_list' is the name of a setting and should not be translated
581
- #: ../lib/puppet/configurer.rb:405
582
- msgid "Unable to connect to server from server_list setting: %{detail}"
576
+ #: ../lib/puppet/configurer.rb:392
577
+ msgid "Puppet server %{host}:%{port} is unavailable: %{code} %{reason}"
583
578
  msgstr ""
584
579
 
585
580
  #. TRANSLATORS 'server_list' is the name of a setting and should not be translated
586
- #: ../lib/puppet/configurer.rb:412
587
- msgid "Selected functional server from the `server_list` setting: %{server}"
581
+ #: ../lib/puppet/configurer.rb:396
582
+ msgid "Unable to connect to server from server_list setting: %{detail}"
588
583
  msgstr ""
589
584
 
590
- #: ../lib/puppet/configurer.rb:424 ../lib/puppet/face/report.rb:47
585
+ #: ../lib/puppet/configurer.rb:408 ../lib/puppet/face/report.rb:47
591
586
  msgid "Could not send report: %{detail}"
592
587
  msgstr ""
593
588
 
594
- #: ../lib/puppet/configurer.rb:433
589
+ #: ../lib/puppet/configurer.rb:417
595
590
  msgid "Could not save last run local report: %{detail}"
596
591
  msgstr ""
597
592
 
598
- #: ../lib/puppet/configurer.rb:445
593
+ #: ../lib/puppet/configurer.rb:429
599
594
  msgid "Could not run command from %{setting}: %{detail}"
600
595
  msgstr ""
601
596
 
602
- #: ../lib/puppet/configurer.rb:463
597
+ #: ../lib/puppet/configurer.rb:447
603
598
  msgid "Could not retrieve catalog from cache: %{detail}"
604
599
  msgstr ""
605
600
 
606
- #: ../lib/puppet/configurer.rb:483
601
+ #: ../lib/puppet/configurer.rb:467
607
602
  msgid "Could not retrieve catalog from remote server: %{detail}"
608
603
  msgstr ""
609
604
 
@@ -4145,15 +4140,15 @@ msgstr ""
4145
4140
  msgid "request %{uri} failed: %{msg}"
4146
4141
  msgstr ""
4147
4142
 
4148
- #: ../lib/puppet/network/http/connection.rb:346
4143
+ #: ../lib/puppet/network/http/connection.rb:348 ../lib/puppet/ssl/validator/default_validator.rb:101
4149
4144
  msgid "expected one of %{certnames}"
4150
4145
  msgstr ""
4151
4146
 
4152
- #: ../lib/puppet/network/http/connection.rb:348
4147
+ #: ../lib/puppet/network/http/connection.rb:350 ../lib/puppet/ssl/validator/default_validator.rb:103
4153
4148
  msgid "expected %{certname}"
4154
4149
  msgstr ""
4155
4150
 
4156
- #: ../lib/puppet/network/http/connection.rb:351
4151
+ #: ../lib/puppet/network/http/connection.rb:353 ../lib/puppet/ssl/validator/default_validator.rb:106
4157
4152
  msgid "Server hostname '%{host}' did not match server certificate; %{expected_certnames}"
4158
4153
  msgstr ""
4159
4154
 
@@ -6439,65 +6434,65 @@ msgstr ""
6439
6434
  msgid "Unknown type <%{type}>"
6440
6435
  msgstr ""
6441
6436
 
6442
- #: ../lib/puppet/pops/types/types.rb:928
6437
+ #: ../lib/puppet/pops/types/types.rb:930
6443
6438
  msgid "The string '%{str}' cannot be converted to Numeric"
6444
6439
  msgstr ""
6445
6440
 
6446
- #: ../lib/puppet/pops/types/types.rb:931
6441
+ #: ../lib/puppet/pops/types/types.rb:933
6447
6442
  msgid "Value of type %{type} cannot be converted to Numeric"
6448
6443
  msgstr ""
6449
6444
 
6450
- #: ../lib/puppet/pops/types/types.rb:1169
6445
+ #: ../lib/puppet/pops/types/types.rb:1171
6451
6446
  msgid "The string '%{str}' cannot be converted to Integer"
6452
6447
  msgstr ""
6453
6448
 
6454
- #: ../lib/puppet/pops/types/types.rb:1172
6449
+ #: ../lib/puppet/pops/types/types.rb:1174
6455
6450
  msgid "Value of type %{type} cannot be converted to Integer"
6456
6451
  msgstr ""
6457
6452
 
6458
- #: ../lib/puppet/pops/types/types.rb:1180
6453
+ #: ../lib/puppet/pops/types/types.rb:1182
6459
6454
  msgid "Illegal radix: %{radix}, expected 2, 8, 10, 16, or default"
6460
6455
  msgstr ""
6461
6456
 
6462
- #: ../lib/puppet/pops/types/types.rb:1293
6457
+ #: ../lib/puppet/pops/types/types.rb:1295
6463
6458
  msgid "The string '%{str}' cannot be converted to Float"
6464
6459
  msgstr ""
6465
6460
 
6466
- #: ../lib/puppet/pops/types/types.rb:1296
6461
+ #: ../lib/puppet/pops/types/types.rb:1298
6467
6462
  msgid "Value of type %{type} cannot be converted to Float"
6468
6463
  msgstr ""
6469
6464
 
6470
6465
  #. TRANSLATORS 'PStringType#initialize' is a class and method name and should not be translated
6471
- #: ../lib/puppet/pops/types/types.rb:1513
6466
+ #: ../lib/puppet/pops/types/types.rb:1515
6472
6467
  msgid "Passing more than one argument to PStringType#initialize is deprecated"
6473
6468
  msgstr ""
6474
6469
 
6475
6470
  #. TRANSLATORS 'PStringType#values' and '#value' are classes and method names and should not be translated
6476
- #: ../lib/puppet/pops/types/types.rb:1567
6471
+ #: ../lib/puppet/pops/types/types.rb:1569
6477
6472
  msgid "Method PStringType#values is deprecated. Use #value instead"
6478
6473
  msgstr ""
6479
6474
 
6480
- #: ../lib/puppet/pops/types/types.rb:1915
6475
+ #: ../lib/puppet/pops/types/types.rb:1917
6481
6476
  msgid "The string '%{str}' cannot be converted to Boolean"
6482
6477
  msgstr ""
6483
6478
 
6484
- #: ../lib/puppet/pops/types/types.rb:1918
6479
+ #: ../lib/puppet/pops/types/types.rb:1920
6485
6480
  msgid "Value of type %{type} cannot be converted to Boolean"
6486
6481
  msgstr ""
6487
6482
 
6488
- #: ../lib/puppet/pops/types/types.rb:2646
6483
+ #: ../lib/puppet/pops/types/types.rb:2648
6489
6484
  msgid "Value of type %{type} cannot be converted to Array"
6490
6485
  msgstr ""
6491
6486
 
6492
- #: ../lib/puppet/pops/types/types.rb:2716
6487
+ #: ../lib/puppet/pops/types/types.rb:2718
6493
6488
  msgid "Puppet::Pops::Types::PHashType#element_type is deprecated, use #value_type instead"
6494
6489
  msgstr ""
6495
6490
 
6496
- #: ../lib/puppet/pops/types/types.rb:2853
6491
+ #: ../lib/puppet/pops/types/types.rb:2855
6497
6492
  msgid "odd number of arguments for Hash"
6498
6493
  msgstr ""
6499
6494
 
6500
- #: ../lib/puppet/pops/types/types.rb:2864
6495
+ #: ../lib/puppet/pops/types/types.rb:2866
6501
6496
  msgid "Value of type %{type} cannot be converted to Hash"
6502
6497
  msgstr ""
6503
6498
 
@@ -6581,7 +6576,7 @@ msgid "No command %{command} defined for provider %{provider}"
6581
6576
  msgstr ""
6582
6577
 
6583
6578
  #: ../lib/puppet/provider.rb:387
6584
- msgid "Provider %{provider} has not defined the 'instances' class method"
6579
+ msgid "To support listing resources of this type the '%{provider}' provider needs to implement an 'instances' class method returning the current set of resources. We recommend porting your module to the simpler Resource API instead: https://puppet.com/search/docs?keys=resource+api"
6585
6580
  msgstr ""
6586
6581
 
6587
6582
  #: ../lib/puppet/provider.rb:459
@@ -7035,7 +7030,7 @@ msgstr ""
7035
7030
  msgid "You cannot install dpkg packages without a source"
7036
7031
  msgstr ""
7037
7032
 
7038
- #: ../lib/puppet/provider/package/dpkg.rb:108
7033
+ #: ../lib/puppet/provider/package/dpkg.rb:107
7039
7034
  msgid "source doesn't contain named package, but %{name}"
7040
7035
  msgstr ""
7041
7036
 
@@ -7043,27 +7038,27 @@ msgstr ""
7043
7038
  msgid "source is defined but does not have trailing slash, ignoring %{source}"
7044
7039
  msgstr ""
7045
7040
 
7046
- #: ../lib/puppet/provider/package/gem.rb:42
7041
+ #: ../lib/puppet/provider/package/gem.rb:94
7047
7042
  msgid "Could not list gems: %{detail}"
7048
7043
  msgstr ""
7049
7044
 
7050
- #: ../lib/puppet/provider/package/gem.rb:68
7045
+ #: ../lib/puppet/provider/package/gem.rb:120
7051
7046
  msgid "Could not match %{desc}"
7052
7047
  msgstr ""
7053
7048
 
7054
- #: ../lib/puppet/provider/package/gem.rb:109
7049
+ #: ../lib/puppet/provider/package/gem.rb:168
7055
7050
  msgid "Invalid source '%{uri}': %{detail}"
7056
7051
  msgstr ""
7057
7052
 
7058
- #: ../lib/puppet/provider/package/gem.rb:120
7053
+ #: ../lib/puppet/provider/package/gem.rb:179
7059
7054
  msgid "puppet:// URLs are not supported as gem sources"
7060
7055
  msgstr ""
7061
7056
 
7062
- #: ../lib/puppet/provider/package/gem.rb:136
7057
+ #: ../lib/puppet/provider/package/gem.rb:195
7063
7058
  msgid "Could not install: %{output}"
7064
7059
  msgstr ""
7065
7060
 
7066
- #: ../lib/puppet/provider/package/gem.rb:161
7061
+ #: ../lib/puppet/provider/package/gem.rb:221
7067
7062
  msgid "Could not uninstall: %{output}"
7068
7063
  msgstr ""
7069
7064
 
@@ -7334,6 +7329,14 @@ msgstr ""
7334
7329
  msgid "Failed to update to version %{should}, got version %{version} instead"
7335
7330
  msgstr ""
7336
7331
 
7332
+ #: ../lib/puppet/provider/package_targetable.rb:53
7333
+ msgid "Provider %{name} package command is not functional on this host"
7334
+ msgstr ""
7335
+
7336
+ #: ../lib/puppet/provider/package_targetable.rb:56
7337
+ msgid "Provider %{name} package command '%{cmd}' does not exist on this host"
7338
+ msgstr ""
7339
+
7337
7340
  #: ../lib/puppet/provider/parsedfile.rb:52
7338
7341
  msgid "Invalid filetype %{type}"
7339
7342
  msgstr ""
@@ -7968,7 +7971,7 @@ msgstr ""
7968
7971
  msgid "Invalid priority format '%{value}' for parameter: %{name}"
7969
7972
  msgstr ""
7970
7973
 
7971
- #: ../lib/puppet/settings/server_list_setting.rb:16
7974
+ #: ../lib/puppet/settings/server_list_setting.rb:25
7972
7975
  msgid "Expected an Array of String, got a %{klass}"
7973
7976
  msgstr ""
7974
7977
 
@@ -8450,7 +8453,7 @@ msgstr[1] ""
8450
8453
  msgid "Failed to call %{callback}: %{detail}"
8451
8454
  msgstr ""
8452
8455
 
8453
- #: ../lib/puppet/transaction/event_manager.rb:171
8456
+ #: ../lib/puppet/transaction/event_manager.rb:172
8454
8457
  msgid "Would have triggered '%{callback}' from %{count} event"
8455
8458
  msgid_plural "Would have triggered '%{callback}' from %{count} events"
8456
8459
  msgstr[0] ""
@@ -8907,15 +8910,15 @@ msgstr ""
8907
8910
  msgid "name must not contain whitespace: %{value}"
8908
8911
  msgstr ""
8909
8912
 
8910
- #: ../lib/puppet/type/package.rb:114 ../lib/puppet/type/package.rb:128
8913
+ #: ../lib/puppet/type/package.rb:116 ../lib/puppet/type/package.rb:130
8911
8914
  msgid "Could not update: %{detail}"
8912
8915
  msgstr ""
8913
8916
 
8914
- #: ../lib/puppet/type/package.rb:163
8917
+ #: ../lib/puppet/type/package.rb:165
8915
8918
  msgid "Could not get latest version: %{detail}"
8916
8919
  msgstr ""
8917
8920
 
8918
- #: ../lib/puppet/type/package.rb:263
8921
+ #: ../lib/puppet/type/package.rb:265
8919
8922
  msgid "Name must be a String not %{klass}"
8920
8923
  msgstr ""
8921
8924
 
@@ -8967,15 +8970,15 @@ msgstr ""
8967
8970
  msgid "Assuming upper limit should be that time the next day"
8968
8971
  msgstr ""
8969
8972
 
8970
- #: ../lib/puppet/type/schedule.rb:329
8973
+ #: ../lib/puppet/type/schedule.rb:333
8971
8974
  msgid "Repeat must be a number"
8972
8975
  msgstr ""
8973
8976
 
8974
- #: ../lib/puppet/type/schedule.rb:338
8977
+ #: ../lib/puppet/type/schedule.rb:342
8975
8978
  msgid "Repeat must be 1 unless periodmatch is 'distance', not '%{period}'"
8976
8979
  msgstr ""
8977
8980
 
8978
- #: ../lib/puppet/type/schedule.rb:382
8981
+ #: ../lib/puppet/type/schedule.rb:386
8979
8982
  msgid "%{value} is not a valid day of the week"
8980
8983
  msgstr ""
8981
8984
 
@@ -10206,27 +10209,27 @@ msgstr ""
10206
10209
  msgid "Failed to call LookupAccountSidW with bytes: %{sid_bytes}"
10207
10210
  msgstr ""
10208
10211
 
10209
- #: ../lib/puppet/util/windows/process.rb:44
10212
+ #: ../lib/puppet/util/windows/process.rb:48
10210
10213
  msgid "Failed to get child process exit code"
10211
10214
  msgstr ""
10212
10215
 
10213
- #: ../lib/puppet/util/windows/process.rb:237
10216
+ #: ../lib/puppet/util/windows/process.rb:287
10214
10217
  msgid "GetVersionEx failed"
10215
10218
  msgstr ""
10216
10219
 
10217
- #: ../lib/puppet/util/windows/process.rb:266
10220
+ #: ../lib/puppet/util/windows/process.rb:316
10218
10221
  msgid "Discarding environment variable %{string} which contains invalid bytes"
10219
10222
  msgstr ""
10220
10223
 
10221
- #: ../lib/puppet/util/windows/process.rb:282
10224
+ #: ../lib/puppet/util/windows/process.rb:332
10222
10225
  msgid "environment variable name must not be nil or empty"
10223
10226
  msgstr ""
10224
10227
 
10225
- #: ../lib/puppet/util/windows/process.rb:287
10228
+ #: ../lib/puppet/util/windows/process.rb:337
10226
10229
  msgid "Failed to remove environment variable: %{name}"
10227
10230
  msgstr ""
10228
10231
 
10229
- #: ../lib/puppet/util/windows/process.rb:292
10232
+ #: ../lib/puppet/util/windows/process.rb:342
10230
10233
  msgid "Failed to set environment variable: %{name}"
10231
10234
  msgstr ""
10232
10235
 
@@ -10544,15 +10547,15 @@ msgstr ""
10544
10547
  msgid "Failed to check membership"
10545
10548
  msgstr ""
10546
10549
 
10547
- #: ../lib/puppet/util/windows/user.rb:86
10550
+ #: ../lib/puppet/util/windows/user.rb:88
10548
10551
  msgid "Failed to logon user %{name}"
10549
10552
  msgstr ""
10550
10553
 
10551
- #: ../lib/puppet/util/windows/user.rb:110
10554
+ #: ../lib/puppet/util/windows/user.rb:120
10552
10555
  msgid "Failed to load user profile %{user}"
10553
10556
  msgstr ""
10554
10557
 
10555
- #: ../lib/puppet/util/windows/user.rb:116
10558
+ #: ../lib/puppet/util/windows/user.rb:126
10556
10559
  msgid "Failed to unload user profile %{user}"
10557
10560
  msgstr ""
10558
10561
 
@@ -1,7 +1,7 @@
1
1
  .\" generated with Ronn/v0.7.3
2
2
  .\" http://github.com/rtomayko/ronn/tree/0.7.3
3
3
  .
4
- .TH "PUPPETCONF" "5" "April 2019" "Puppet, Inc." "Puppet manual"
4
+ .TH "PUPPETCONF" "5" "July 2019" "Puppet, Inc." "Puppet manual"
5
5
  \fBThis page is autogenerated; any changes will get overwritten\fR
6
6
  .
7
7
  .SH "Configuration settings"
@@ -938,7 +938,7 @@ The time to wait for one block to be read from an HTTP connection\. If nothing i
938
938
  The HTTP User\-Agent string to send when making network requests\.
939
939
  .
940
940
  .IP "\(bu" 4
941
- \fIDefault\fR: Puppet/5\.5\.14 Ruby/2\.4\.1\-p111 (x86_64\-linux)
941
+ \fIDefault\fR: Puppet/5\.5\.16 Ruby/2\.4\.1\-p111 (x86_64\-linux)
942
942
  .
943
943
  .IP "" 0
944
944
  .