puppet 6.7.2-universal-darwin → 6.8.0-universal-darwin

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 (89) hide show
  1. checksums.yaml +4 -4
  2. data/CODEOWNERS +9 -9
  3. data/Gemfile +1 -1
  4. data/Gemfile.lock +7 -7
  5. data/install.rb +3 -21
  6. data/lib/puppet/application/agent.rb +17 -13
  7. data/lib/puppet/application/device.rb +10 -0
  8. data/lib/puppet/defaults.rb +21 -6
  9. data/lib/puppet/face/facts.rb +1 -1
  10. data/lib/puppet/face/parser.rb +3 -2
  11. data/lib/puppet/forge.rb +19 -4
  12. data/lib/puppet/indirector/certificate/file.rb +1 -0
  13. data/lib/puppet/indirector/certificate/rest.rb +1 -0
  14. data/lib/puppet/indirector/certificate_request/file.rb +1 -0
  15. data/lib/puppet/indirector/certificate_request/memory.rb +1 -0
  16. data/lib/puppet/indirector/certificate_request/rest.rb +1 -0
  17. data/lib/puppet/indirector/key/file.rb +1 -0
  18. data/lib/puppet/indirector/key/memory.rb +1 -0
  19. data/lib/puppet/module_tool/applications/installer.rb +0 -3
  20. data/lib/puppet/network/http/factory.rb +1 -11
  21. data/lib/puppet/pops/lookup/key_recorder.rb +18 -0
  22. data/lib/puppet/pops/lookup/lookup_adapter.rb +7 -0
  23. data/lib/puppet/pops/lookup.rb +1 -0
  24. data/lib/puppet/provider/file/posix.rb +5 -0
  25. data/lib/puppet/provider/nameservice.rb +10 -3
  26. data/lib/puppet/provider/package/apt.rb +1 -1
  27. data/lib/puppet/provider/package/dpkg.rb +17 -3
  28. data/lib/puppet/provider/service/launchd.rb +20 -5
  29. data/lib/puppet/provider/service/systemd.rb +5 -10
  30. data/lib/puppet/provider/user/pw.rb +12 -3
  31. data/lib/puppet/provider/user/user_role_add.rb +4 -0
  32. data/lib/puppet/provider/user/useradd.rb +25 -11
  33. data/lib/puppet/ssl/certificate.rb +2 -0
  34. data/lib/puppet/ssl/host.rb +3 -0
  35. data/lib/puppet/ssl/key.rb +2 -0
  36. data/lib/puppet/util/http_proxy.rb +17 -3
  37. data/lib/puppet/util/monkey_patches.rb +0 -16
  38. data/lib/puppet/util/selinux.rb +5 -1
  39. data/lib/puppet/util/windows/security.rb +2 -0
  40. data/lib/puppet/util/windows/sid.rb +1 -0
  41. data/lib/puppet/version.rb +1 -1
  42. data/lib/puppet/x509/cert_provider.rb +13 -15
  43. data/locales/puppet.pot +77 -65
  44. data/man/man5/puppet.conf.5 +20 -4
  45. data/man/man8/puppet-agent.8 +24 -7
  46. data/man/man8/puppet-apply.8 +1 -1
  47. data/man/man8/puppet-catalog.8 +1 -1
  48. data/man/man8/puppet-config.8 +1 -1
  49. data/man/man8/puppet-describe.8 +1 -1
  50. data/man/man8/puppet-device.8 +1 -1
  51. data/man/man8/puppet-doc.8 +1 -1
  52. data/man/man8/puppet-epp.8 +1 -1
  53. data/man/man8/puppet-facts.8 +1 -1
  54. data/man/man8/puppet-filebucket.8 +1 -1
  55. data/man/man8/puppet-generate.8 +1 -1
  56. data/man/man8/puppet-help.8 +1 -1
  57. data/man/man8/puppet-key.8 +1 -1
  58. data/man/man8/puppet-lookup.8 +1 -1
  59. data/man/man8/puppet-man.8 +1 -1
  60. data/man/man8/puppet-module.8 +1 -1
  61. data/man/man8/puppet-node.8 +1 -1
  62. data/man/man8/puppet-parser.8 +1 -1
  63. data/man/man8/puppet-plugin.8 +1 -1
  64. data/man/man8/puppet-report.8 +1 -1
  65. data/man/man8/puppet-resource.8 +1 -1
  66. data/man/man8/puppet-script.8 +1 -1
  67. data/man/man8/puppet-ssl.8 +1 -1
  68. data/man/man8/puppet-status.8 +1 -1
  69. data/man/man8/puppet.8 +2 -2
  70. data/spec/integration/provider/service/systemd_spec.rb +7 -5
  71. data/spec/integration/type/file_spec.rb +28 -0
  72. data/spec/unit/application/device_spec.rb +26 -0
  73. data/spec/unit/face/facts_spec.rb +9 -0
  74. data/spec/unit/face/parser_spec.rb +17 -5
  75. data/spec/unit/forge/module_release_spec.rb +66 -31
  76. data/spec/unit/module_tool/applications/installer_spec.rb +0 -9
  77. data/spec/unit/network/http/factory_spec.rb +27 -5
  78. data/spec/unit/provider/package/dpkg_spec.rb +84 -4
  79. data/spec/unit/provider/service/launchd_spec.rb +28 -0
  80. data/spec/unit/provider/service/systemd_spec.rb +14 -0
  81. data/spec/unit/provider/user/pw_spec.rb +37 -0
  82. data/spec/unit/provider/user/useradd_spec.rb +42 -0
  83. data/spec/unit/transaction_spec.rb +18 -0
  84. data/spec/unit/util/http_proxy_spec.rb +24 -1
  85. data/spec/unit/x509/cert_provider_spec.rb +1 -1
  86. metadata +4 -7
  87. data/ext/windows/eventlog/Rakefile +0 -32
  88. data/ext/windows/eventlog/puppetres.dll +0 -0
  89. data/ext/windows/eventlog/puppetres.mc +0 -18
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 6.6.0-15-gcd8d2d0\n"
9
+ "Project-Id-Version: Puppet automation framework 6.7.1-42-gc60d6aa\n"
10
10
  "\n"
11
11
  "Report-Msgid-Bugs-To: https://tickets.puppetlabs.com\n"
12
- "POT-Creation-Date: 2019-06-28 23:18+0000\n"
13
- "PO-Revision-Date: 2019-06-28 23:18+0000\n"
12
+ "POT-Creation-Date: 2019-07-25 21:35+0000\n"
13
+ "PO-Revision-Date: 2019-07-25 21:35+0000\n"
14
14
  "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
15
15
  "Language-Team: LANGUAGE <LL@li.org>\n"
16
16
  "Language: \n"
@@ -182,19 +182,19 @@ msgstr ""
182
182
  msgid "The puppet agent daemon"
183
183
  msgstr ""
184
184
 
185
- #: ../lib/puppet/application/agent.rb:371
185
+ #: ../lib/puppet/application/agent.rb:375
186
186
  msgid "Fingerprint asked but neither the certificate, nor the certificate request have been issued"
187
187
  msgstr ""
188
188
 
189
- #: ../lib/puppet/application/agent.rb:376
189
+ #: ../lib/puppet/application/agent.rb:380
190
190
  msgid "Failed to generate fingerprint: %{message}"
191
191
  msgstr ""
192
192
 
193
- #: ../lib/puppet/application/agent.rb:399
193
+ #: ../lib/puppet/application/agent.rb:403
194
194
  msgid "Starting Puppet client version %{version}"
195
195
  msgstr ""
196
196
 
197
- #: ../lib/puppet/application/agent.rb:415
197
+ #: ../lib/puppet/application/agent.rb:419
198
198
  msgid "The puppet agent command does not take parameters"
199
199
  msgstr ""
200
200
 
@@ -479,7 +479,7 @@ msgstr ""
479
479
  msgid "Creating a new EC SSL key for %{name} using curve %{curve}"
480
480
  msgstr ""
481
481
 
482
- #: ../lib/puppet/application/ssl.rb:156 ../lib/puppet/ssl/key.rb:24
482
+ #: ../lib/puppet/application/ssl.rb:156 ../lib/puppet/ssl/key.rb:26
483
483
  msgid "Creating a new SSL key for %{name}"
484
484
  msgstr ""
485
485
 
@@ -716,7 +716,11 @@ msgstr ""
716
716
  msgid "Certificate names must be lower case"
717
717
  msgstr ""
718
718
 
719
- #: ../lib/puppet/defaults.rb:1010 ../lib/puppet/settings/enum_setting.rb:13 ../lib/puppet/settings/symbolic_enum_setting.rb:14
719
+ #: ../lib/puppet/defaults.rb:934
720
+ msgid "Setting 'ssl_client_ca_auth' is deprecated."
721
+ msgstr ""
722
+
723
+ #: ../lib/puppet/defaults.rb:1013 ../lib/puppet/settings/enum_setting.rb:13 ../lib/puppet/settings/symbolic_enum_setting.rb:14
720
724
  msgid "Invalid value '%{value}' for parameter %{name}. Allowed values are '%{allowed_values}'"
721
725
  msgstr ""
722
726
 
@@ -892,11 +896,11 @@ msgstr ""
892
896
  msgid "Outputs a dump of the internal template parse tree for debugging"
893
897
  msgstr ""
894
898
 
895
- #: ../lib/puppet/face/epp.rb:108 ../lib/puppet/face/parser.rb:105
899
+ #: ../lib/puppet/face/epp.rb:108 ../lib/puppet/face/parser.rb:106
896
900
  msgid "A dump of the resulting AST model unless there are syntax or validation errors."
897
901
  msgstr ""
898
902
 
899
- #: ../lib/puppet/face/epp.rb:137 ../lib/puppet/face/epp.rb:309 ../lib/puppet/face/parser.rb:126
903
+ #: ../lib/puppet/face/epp.rb:137 ../lib/puppet/face/epp.rb:309 ../lib/puppet/face/parser.rb:127
900
904
  msgid "<source>"
901
905
  msgstr ""
902
906
 
@@ -908,15 +912,15 @@ msgstr ""
908
912
  msgid "Whether or not to validate the parsed result, if no-validate only syntax errors are reported."
909
913
  msgstr ""
910
914
 
911
- #: ../lib/puppet/face/epp.rb:146 ../lib/puppet/face/parser.rb:135
915
+ #: ../lib/puppet/face/epp.rb:146 ../lib/puppet/face/parser.rb:136
912
916
  msgid "<old, pn, or json>"
913
917
  msgstr ""
914
918
 
915
- #: ../lib/puppet/face/epp.rb:147 ../lib/puppet/face/parser.rb:136
919
+ #: ../lib/puppet/face/epp.rb:147 ../lib/puppet/face/parser.rb:137
916
920
  msgid "Get result in 'old' (deprecated format), 'pn' (new format), or 'json' (new format in JSON)."
917
921
  msgstr ""
918
922
 
919
- #: ../lib/puppet/face/epp.rb:151 ../lib/puppet/face/parser.rb:140
923
+ #: ../lib/puppet/face/epp.rb:151 ../lib/puppet/face/parser.rb:141
920
924
  msgid "Pretty print output. Only applicable together with --format pn or json"
921
925
  msgstr ""
922
926
 
@@ -924,7 +928,7 @@ msgstr ""
924
928
  msgid "Whether or not to show a file name header between files."
925
929
  msgstr ""
926
930
 
927
- #: ../lib/puppet/face/epp.rb:179 ../lib/puppet/face/parser.rb:152
931
+ #: ../lib/puppet/face/epp.rb:179 ../lib/puppet/face/parser.rb:153
928
932
  msgid "No input to parse given on command line or stdin"
929
933
  msgstr ""
930
934
 
@@ -1413,34 +1417,34 @@ msgstr ""
1413
1417
  msgid "Nothing, or the first syntax error encountered."
1414
1418
  msgstr ""
1415
1419
 
1416
- #: ../lib/puppet/face/parser.rb:49
1420
+ #: ../lib/puppet/face/parser.rb:50
1417
1421
  msgid "No manifest specified. Validating the default manifest %{manifest}"
1418
1422
  msgstr ""
1419
1423
 
1420
- #: ../lib/puppet/face/parser.rb:65
1424
+ #: ../lib/puppet/face/parser.rb:66
1421
1425
  msgid ""
1422
1426
  "One or more file(s) specified did not exist:\n"
1423
1427
  "%{files}"
1424
1428
  msgstr ""
1425
1429
 
1426
- #: ../lib/puppet/face/parser.rb:103
1430
+ #: ../lib/puppet/face/parser.rb:104
1427
1431
  msgid "Outputs a dump of the internal parse tree for debugging"
1428
1432
  msgstr ""
1429
1433
 
1430
- #: ../lib/puppet/face/parser.rb:128
1434
+ #: ../lib/puppet/face/parser.rb:129
1431
1435
  msgid "dump one source expression given on the command line."
1432
1436
  msgstr ""
1433
1437
 
1434
- #: ../lib/puppet/face/parser.rb:132
1438
+ #: ../lib/puppet/face/parser.rb:133
1435
1439
  msgid "Whether or not to validate the parsed result, if no-validate only syntax errors are reported"
1436
1440
  msgstr ""
1437
1441
 
1438
- #: ../lib/puppet/face/parser.rb:168
1442
+ #: ../lib/puppet/face/parser.rb:169
1439
1443
  msgid ""
1440
1444
  "One or more file(s) specified did not exist:\n"
1441
1445
  msgstr ""
1442
1446
 
1443
- #: ../lib/puppet/face/parser.rb:214
1447
+ #: ../lib/puppet/face/parser.rb:215
1444
1448
  msgid "For puppet parser validate"
1445
1449
  msgstr ""
1446
1450
 
@@ -1829,15 +1833,23 @@ msgstr ""
1829
1833
  msgid "Exception was: %{detail}"
1830
1834
  msgstr ""
1831
1835
 
1832
- #: ../lib/puppet/forge.rb:206
1833
- msgid "Downloaded release for %{name} did not match expected checksum"
1836
+ #: ../lib/puppet/forge.rb:183
1837
+ msgid "Forge module is missing SHA256 and MD5 checksums"
1838
+ msgstr ""
1839
+
1840
+ #: ../lib/puppet/forge.rb:217
1841
+ msgid "Module install using MD5 is prohibited in FIPS mode."
1834
1842
  msgstr ""
1835
1843
 
1836
- #: ../lib/puppet/forge.rb:214 ../lib/puppet/module_tool/applications/unpacker.rb:58 ../lib/puppet/module_tool/local_tarball.rb:86
1844
+ #: ../lib/puppet/forge.rb:221
1845
+ msgid "Downloaded release for %{name} did not match expected checksum %{checksum}"
1846
+ msgstr ""
1847
+
1848
+ #: ../lib/puppet/forge.rb:229 ../lib/puppet/module_tool/applications/unpacker.rb:58 ../lib/puppet/module_tool/local_tarball.rb:86
1837
1849
  msgid "Could not extract contents of module archive: %{message}"
1838
1850
  msgstr ""
1839
1851
 
1840
- #: ../lib/puppet/forge.rb:231
1852
+ #: ../lib/puppet/forge.rb:246
1841
1853
  msgid "Cannot consider release %{name}-%{version}: %{error}"
1842
1854
  msgstr ""
1843
1855
 
@@ -2608,11 +2620,11 @@ msgstr ""
2608
2620
  msgid "Could not parse JSON data for %{name} %{key}: %{detail}"
2609
2621
  msgstr ""
2610
2622
 
2611
- #: ../lib/puppet/indirector/key/file.rb:28
2623
+ #: ../lib/puppet/indirector/key/file.rb:29
2612
2624
  msgid "Could not remove %{request} public key: %{detail}"
2613
2625
  msgstr ""
2614
2626
 
2615
- #: ../lib/puppet/indirector/key/file.rb:42
2627
+ #: ../lib/puppet/indirector/key/file.rb:43
2616
2628
  msgid "Could not write %{request}: %{detail}"
2617
2629
  msgstr ""
2618
2630
 
@@ -3203,23 +3215,19 @@ msgstr ""
3203
3215
  msgid "No file containing checksums found."
3204
3216
  msgstr ""
3205
3217
 
3206
- #: ../lib/puppet/module_tool/applications/installer.rb:55
3207
- msgid "Module install is prohibited in FIPS mode."
3208
- msgstr ""
3209
-
3210
- #: ../lib/puppet/module_tool/applications/installer.rb:85 ../lib/puppet/module_tool/applications/upgrader.rb:102
3218
+ #: ../lib/puppet/module_tool/applications/installer.rb:82 ../lib/puppet/module_tool/applications/upgrader.rb:102
3211
3219
  msgid "Downloading from %{host} ..."
3212
3220
  msgstr ""
3213
3221
 
3214
- #: ../lib/puppet/module_tool/applications/installer.rb:131 ../lib/puppet/module_tool/applications/upgrader.rb:140
3222
+ #: ../lib/puppet/module_tool/applications/installer.rb:128 ../lib/puppet/module_tool/applications/upgrader.rb:140
3215
3223
  msgid "Resolving dependencies ..."
3216
3224
  msgstr ""
3217
3225
 
3218
- #: ../lib/puppet/module_tool/applications/installer.rb:161
3226
+ #: ../lib/puppet/module_tool/applications/installer.rb:158
3219
3227
  msgid "Preparing to install ..."
3220
3228
  msgstr ""
3221
3229
 
3222
- #: ../lib/puppet/module_tool/applications/installer.rb:164
3230
+ #: ../lib/puppet/module_tool/applications/installer.rb:161
3223
3231
  msgid "Installing -- do not interrupt ..."
3224
3232
  msgstr ""
3225
3233
 
@@ -4044,50 +4052,50 @@ msgstr ""
4044
4052
  msgid "manifest_file or code_string cannot be given when configured_by_env is true"
4045
4053
  msgstr ""
4046
4054
 
4047
- #: ../lib/puppet/pal/pal_impl.rb:206
4055
+ #: ../lib/puppet/pal/pal_impl.rb:214
4048
4056
  msgid "temporary environment name"
4049
4057
  msgstr ""
4050
4058
 
4051
4059
  #. TRANSLATORS: do not translate variable name string in these assertions
4052
- #: ../lib/puppet/pal/pal_impl.rb:211
4060
+ #: ../lib/puppet/pal/pal_impl.rb:219
4053
4061
  msgid "A block must be given to 'in_tmp_environment'"
4054
4062
  msgstr ""
4055
4063
 
4056
4064
  #. TRANSLATORS terms in the assertions below are names of terms in code
4057
- #: ../lib/puppet/pal/pal_impl.rb:265
4065
+ #: ../lib/puppet/pal/pal_impl.rb:273
4058
4066
  msgid "A block must be given to 'in_environment'"
4059
4067
  msgstr ""
4060
4068
 
4061
4069
  #. TRANSLATORS 'in_environment' is a name, do not translate
4062
- #: ../lib/puppet/pal/pal_impl.rb:270
4070
+ #: ../lib/puppet/pal/pal_impl.rb:278
4063
4071
  msgid "The environment directory '%{env_dir}' does not exist"
4064
4072
  msgstr ""
4065
4073
 
4066
- #: ../lib/puppet/pal/pal_impl.rb:293
4074
+ #: ../lib/puppet/pal/pal_impl.rb:301
4067
4075
  msgid "No directory found for the environment '%{env_name}' on the path '%{envpath}'"
4068
4076
  msgstr ""
4069
4077
 
4070
- #: ../lib/puppet/pal/pal_impl.rb:347
4078
+ #: ../lib/puppet/pal/pal_impl.rb:355
4071
4079
  msgid "Given variables must be a hash, got %{type}"
4072
4080
  msgstr ""
4073
4081
 
4074
- #: ../lib/puppet/pal/pal_impl.rb:353
4082
+ #: ../lib/puppet/pal/pal_impl.rb:361
4075
4083
  msgid "Given variable '%{varname}' has illegal name"
4076
4084
  msgstr ""
4077
4085
 
4078
- #: ../lib/puppet/pal/pal_impl.rb:357
4086
+ #: ../lib/puppet/pal/pal_impl.rb:365
4079
4087
  msgid "Given value for '%{varname}' has illegal type - got: %{type}"
4080
4088
  msgstr ""
4081
4089
 
4082
- #: ../lib/puppet/pal/pal_impl.rb:497
4090
+ #: ../lib/puppet/pal/pal_impl.rb:505
4083
4091
  msgid "Puppet Pal: %{what}"
4084
4092
  msgstr ""
4085
4093
 
4086
- #: ../lib/puppet/pal/pal_impl.rb:511
4094
+ #: ../lib/puppet/pal/pal_impl.rb:519
4087
4095
  msgid "Cannot use '%{a_term}' and '%{b_term}' at the same time"
4088
4096
  msgstr ""
4089
4097
 
4090
- #: ../lib/puppet/pal/pal_impl.rb:518
4098
+ #: ../lib/puppet/pal/pal_impl.rb:526
4091
4099
  msgid "A block must be given"
4092
4100
  msgstr ""
4093
4101
 
@@ -6671,11 +6679,11 @@ msgstr ""
6671
6679
  msgid "Cannot match %{line}"
6672
6680
  msgstr ""
6673
6681
 
6674
- #: ../lib/puppet/provider/package/dpkg.rb:85
6682
+ #: ../lib/puppet/provider/package/dpkg.rb:87
6675
6683
  msgid "You cannot install dpkg packages without a source"
6676
6684
  msgstr ""
6677
6685
 
6678
- #: ../lib/puppet/provider/package/dpkg.rb:110
6686
+ #: ../lib/puppet/provider/package/dpkg.rb:112
6679
6687
  msgid "source doesn't contain named package, but %{name}"
6680
6688
  msgstr ""
6681
6689
 
@@ -7736,15 +7744,15 @@ msgstr ""
7736
7744
  msgid "Server hostname '%{host}' did not match server certificate; %{expected_certnames}"
7737
7745
  msgstr ""
7738
7746
 
7739
- #: ../lib/puppet/ssl/host.rb:152
7747
+ #: ../lib/puppet/ssl/host.rb:154
7740
7748
  msgid "No certificate to validate."
7741
7749
  msgstr ""
7742
7750
 
7743
- #: ../lib/puppet/ssl/host.rb:153
7751
+ #: ../lib/puppet/ssl/host.rb:155
7744
7752
  msgid "No private key with which to validate certificate with fingerprint: %{fingerprint}"
7745
7753
  msgstr ""
7746
7754
 
7747
- #: ../lib/puppet/ssl/host.rb:155
7755
+ #: ../lib/puppet/ssl/host.rb:157
7748
7756
  msgid ""
7749
7757
  "The certificate retrieved from the master does not match the agent's private key. Did you forget to run as root?\n"
7750
7758
  "Certificate fingerprint: %{fingerprint}\n"
@@ -7756,7 +7764,7 @@ msgid ""
7756
7764
  " 2. puppet %{puppet_params}\n"
7757
7765
  msgstr ""
7758
7766
 
7759
- #: ../lib/puppet/ssl/host.rb:210
7767
+ #: ../lib/puppet/ssl/host.rb:212
7760
7768
  msgid ""
7761
7769
  "The CSR retrieved from the master does not match the agent's public key.\n"
7762
7770
  "CSR fingerprint: %{fingerprint}\n"
@@ -7770,53 +7778,57 @@ msgid ""
7770
7778
  " 2. puppet %{puppet_params}\n"
7771
7779
  msgstr ""
7772
7780
 
7773
- #: ../lib/puppet/ssl/host.rb:264 ../lib/puppet/ssl/host.rb:285
7781
+ #: ../lib/puppet/ssl/host.rb:235
7782
+ msgid "Puppet::SSL::Host is deprecated and will be removed in a future release of Puppet."
7783
+ msgstr ""
7784
+
7785
+ #: ../lib/puppet/ssl/host.rb:267 ../lib/puppet/ssl/host.rb:288
7774
7786
  msgid "Could not request certificate: %{message}"
7775
7787
  msgstr ""
7776
7788
 
7777
- #: ../lib/puppet/ssl/host.rb:266
7789
+ #: ../lib/puppet/ssl/host.rb:269
7778
7790
  msgid "Exiting; failed to retrieve certificate and waitforcert is disabled"
7779
7791
  msgstr ""
7780
7792
 
7781
- #: ../lib/puppet/ssl/host.rb:275
7793
+ #: ../lib/puppet/ssl/host.rb:278
7782
7794
  msgid "Exiting; no certificate found and waitforcert is disabled"
7783
7795
  msgstr ""
7784
7796
 
7785
- #: ../lib/puppet/ssl/host.rb:283
7797
+ #: ../lib/puppet/ssl/host.rb:286
7786
7798
  msgid "Did not receive certificate"
7787
7799
  msgstr ""
7788
7800
 
7789
- #: ../lib/puppet/ssl/host.rb:323
7801
+ #: ../lib/puppet/ssl/host.rb:326
7790
7802
  msgid "Response from the CA did not contain a valid certificate request: %{message}"
7791
7803
  msgstr ""
7792
7804
 
7793
- #: ../lib/puppet/ssl/host.rb:329
7805
+ #: ../lib/puppet/ssl/host.rb:332
7794
7806
  msgid "Could not download certificate request: %{message}"
7795
7807
  msgstr ""
7796
7808
 
7797
- #: ../lib/puppet/ssl/host.rb:356
7809
+ #: ../lib/puppet/ssl/host.rb:359
7798
7810
  msgid ""
7799
7811
  "Failed attempting to load CRL from %{crl_path}! The CRL below caused the error '%{error}':\n"
7800
7812
  "%{crl}"
7801
7813
  msgstr ""
7802
7814
 
7803
- #: ../lib/puppet/ssl/host.rb:388 ../lib/puppet/ssl/state_machine.rb:119
7815
+ #: ../lib/puppet/ssl/host.rb:391 ../lib/puppet/ssl/state_machine.rb:119
7804
7816
  msgid "Could not download CRLs: %{message}"
7805
7817
  msgstr ""
7806
7818
 
7807
- #: ../lib/puppet/ssl/host.rb:422
7819
+ #: ../lib/puppet/ssl/host.rb:425
7808
7820
  msgid "The certificate at %{file_path} is invalid. Could not load."
7809
7821
  msgstr ""
7810
7822
 
7811
- #: ../lib/puppet/ssl/host.rb:443
7823
+ #: ../lib/puppet/ssl/host.rb:446
7812
7824
  msgid "Response from the CA did not contain a valid certificate for %{cert_name}."
7813
7825
  msgstr ""
7814
7826
 
7815
- #: ../lib/puppet/ssl/host.rb:447
7827
+ #: ../lib/puppet/ssl/host.rb:450
7816
7828
  msgid "No certificate for %{cert_name} on CA"
7817
7829
  msgstr ""
7818
7830
 
7819
- #: ../lib/puppet/ssl/host.rb:450
7831
+ #: ../lib/puppet/ssl/host.rb:453
7820
7832
  msgid "Could not download host certificate: %{message}"
7821
7833
  msgstr ""
7822
7834
 
@@ -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" "July 2019" "Puppet, Inc." "Puppet manual"
4
+ .TH "PUPPETCONF" "5" "August 2019" "Puppet, Inc." "Puppet manual"
5
5
  \fBThis page is autogenerated; any changes will get overwritten\fR
6
6
  .
7
7
  .SH "Configuration settings"
@@ -453,6 +453,14 @@ Boolean; whether to generate the default schedule resources\. Setting this to fa
453
453
  .
454
454
  .IP "" 0
455
455
  .
456
+ .SS "deviceconfdir"
457
+ The root directory of devices\' $confdir\.
458
+ .
459
+ .IP "\(bu" 4
460
+ \fIDefault\fR: $confdir/devices
461
+ .
462
+ .IP "" 0
463
+ .
456
464
  .SS "deviceconfig"
457
465
  Path to the device config file for puppet device\.
458
466
  .
@@ -592,7 +600,7 @@ You should change this setting once your Puppet deployment is doing non\-trivial
592
600
  We recommend setting this to \fBunlimited\fR and explicitly refreshing your Puppet master as part of your code deployment process\.
593
601
  .
594
602
  .IP "\(bu" 4
595
- With Puppet Server, you should refresh environments by calling the \fBenvironment\-cache\fR API endpoint\. See the docs for the Puppet Server administrative API\.
603
+ With Puppet Server, you should refresh environments by calling the \fBenvironment\-cache\fR API endpoint\. See the docs for the Puppet Server administrative API \fIhttps://puppet\.com/docs/puppetserver/latest/admin\-api/v1/environment\-cache\.html\fR\.
596
604
  .
597
605
  .IP "" 0
598
606
  .
@@ -896,7 +904,7 @@ The time to wait for data to be read from an HTTP connection\. If nothing is rea
896
904
  The HTTP User\-Agent string to send when making network requests\.
897
905
  .
898
906
  .IP "\(bu" 4
899
- \fIDefault\fR: Puppet/6\.7\.0 Ruby/2\.4\.1\-p111 (x86_64\-linux)
907
+ \fIDefault\fR: Puppet/6\.8\.0 Ruby/2\.4\.1\-p111 (x86_64\-linux)
900
908
  .
901
909
  .IP "" 0
902
910
  .
@@ -1229,6 +1237,14 @@ The short name for the EC curve used to generate the EC private key\. Valid valu
1229
1237
  .
1230
1238
  .IP "" 0
1231
1239
  .
1240
+ .SS "no_proxy"
1241
+ List of domain names that should not go through \fBhttp_proxy_host\fR\. Environment variable no_proxy or NO_PROXY will override this value\.
1242
+ .
1243
+ .IP "\(bu" 4
1244
+ \fIDefault\fR: localhost, 127\.0\.0\.1
1245
+ .
1246
+ .IP "" 0
1247
+ .
1232
1248
  .SS "node_cache_terminus"
1233
1249
  How to store cached nodes\. Valid values are (none), \'json\', \'msgpack\', or \'yaml\'\.
1234
1250
  .
@@ -1700,7 +1716,7 @@ A lock file to indicate that the ssl bootstrap process is currently in progress\
1700
1716
  .IP "" 0
1701
1717
  .
1702
1718
  .SS "ssl_server_ca_auth"
1703
- Certificate authorities who issue client certificates\. SSL clients will not be considered authentic unless they possess a certificate issued by an authority listed in this file\. If this setting has no value then the Puppet master\'s CA certificate (localcacert) will be used\.
1719
+ The setting is deprecated and has no effect\. Ensure all root and intermediate certificate authorities used to issue client certificates are contained in the server\'s \fBcacert\fR file on the server\.
1704
1720
  .
1705
1721
  .TP
1706
1722
  \fIDefault\fR:
@@ -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 "PUPPET\-AGENT" "8" "July 2019" "Puppet, Inc." "Puppet manual"
4
+ .TH "PUPPET\-AGENT" "8" "August 2019" "Puppet, Inc." "Puppet manual"
5
5
  .
6
6
  .SH "NAME"
7
7
  \fBpuppet\-agent\fR \- The puppet agent daemon
@@ -22,19 +22,36 @@ This is the main puppet client\. Its job is to retrieve the local machine\'s con
22
22
  Once the client has a signed certificate, it will retrieve its configuration and apply it\.
23
23
  .
24
24
  .SH "USAGE NOTES"
25
- \'puppet agent\' does its best to find a compromise between interactive use and daemon use\. Run with no arguments and no configuration, it will go into the background, attempt to get a signed certificate, and retrieve and apply its configuration every 30 minutes\.
25
+ \'puppet agent\' does its best to find a compromise between interactive use and daemon use\. If you run it with no arguments and no configuration, it goes into the background, attempts to get a signed certificate, and retrieves and applies its configuration every 30 minutes\.
26
26
  .
27
27
  .P
28
- Some flags are meant specifically for interactive use \-\- in particular, \'test\', \'tags\' and \'fingerprint\' are useful\.
28
+ Some flags are meant specifically for interactive use \-\-\- in particular, \'test\', \'tags\' and \'fingerprint\' are useful\.
29
29
  .
30
30
  .P
31
- \'\-\-test\' does a single run in the foreground with verbose logging, then exits\. It will also exit if it can\'t get a valid catalog\. The exit code after running with \'\-\-test\' is 0 if the catalog was successfully applied, and 1 if the run either failed or wasn\'t attempted (due to another run already in progress)\.
31
+ \'\-\-test\' runs once in the foreground with verbose logging, then exits\. It also exits if it can\'t get a valid catalog\. \fB\-\-test\fR includes the \'\-\-detailed\-exitcodes\' option by default and exits with one of the following exit codes:
32
+ .
33
+ .IP "\(bu" 4
34
+ 0: The run succeeded with no changes or failures; the system was already in the desired state\.
35
+ .
36
+ .IP "\(bu" 4
37
+ 1: The run failed, or wasn\'t attempted due to another run already in progress\.
38
+ .
39
+ .IP "\(bu" 4
40
+ 2: The run succeeded, and some resources were changed\.
41
+ .
42
+ .IP "\(bu" 4
43
+ 4: The run succeeded, and some resources failed\.
44
+ .
45
+ .IP "\(bu" 4
46
+ 6: The run succeeded, and included both changes and failures\.
47
+ .
48
+ .IP "" 0
32
49
  .
33
50
  .P
34
- \'\-\-tags\' allows you to specify what portions of a configuration you want to apply\. Puppet elements are tagged with all of the class or definition names that contain them, and you can use the \'tags\' flag to specify one of these names, causing only configuration elements contained within that class or definition to be applied\. This is very useful when you are testing new configurations \-\- for instance, if you are just starting to manage \'ntpd\', you would put all of the new elements into an \'ntpd\' class, and call puppet with \'\-\-tags ntpd\', which would only apply that small portion of the configuration during your testing, rather than applying the whole thing\.
51
+ \'\-\-tags\' allows you to specify what portions of a configuration you want to apply\. Puppet elements are tagged with all of the class or definition names that contain them, and you can use the \'tags\' flag to specify one of these names, causing only configuration elements contained within that class or definition to be applied\. This is very useful when you are testing new configurations \-\-\- for instance, if you are just starting to manage \'ntpd\', you would put all of the new elements into an \'ntpd\' class, and call puppet with \'\-\-tags ntpd\', which would only apply that small portion of the configuration during your testing, rather than applying the whole thing\.
35
52
  .
36
53
  .P
37
- \'\-\-fingerprint\' is a one\-time flag\. In this mode \'puppet agent\' will run once and display on the console (and in the log) the current certificate (or certificate request) fingerprint\. Providing the \'\-\-digest\' option allows to use a different digest algorithm to generate the fingerprint\. The main use is to verify that before signing a certificate request on the master, the certificate request the master received is the same as the one the client sent (to prevent against man\-in\-the\-middle attacks when signing certificates)\.
54
+ \'\-\-fingerprint\' is a one\-time flag\. In this mode \'puppet agent\' runs once and displays on the console (and in the log) the current certificate (or certificate request) fingerprint\. Providing the \'\-\-digest\' option allows to use a different digest algorithm to generate the fingerprint\. The main use is to verify that before signing a certificate request on the master, the certificate request the master received is the same as the one the client sent (to prevent against man\-in\-the\-middle attacks when signing certificates)\.
38
55
  .
39
56
  .SH "OPTIONS"
40
57
  Note that any Puppet setting that\'s valid in the configuration file is also a valid long argument\. For example, \'server\' is a valid setting, so you can specify \'\-\-server \fIservername\fR\' as an argument\. Boolean settings translate into \'\-\-setting\' and \'\-\-no\-setting\' pairs\.
@@ -60,7 +77,7 @@ Enable full debugging\.
60
77
  .
61
78
  .TP
62
79
  \-\-detailed\-exitcodes
63
- Provide extra information about the run via exit codes; only works if \'\-\-test\' or \'\-\-onetime\' is also specified\. If enabled, \'puppet agent\' will use the following exit codes:
80
+ Provide extra information about the run via exit codes; works only if \'\-\-test\' or \'\-\-onetime\' is also specified\. If enabled, \'puppet agent\' uses the following exit codes:
64
81
  .
65
82
  .IP
66
83
  0: The run succeeded with no changes or failures; the system was already in the desired state\.
@@ -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 "PUPPET\-APPLY" "8" "July 2019" "Puppet, Inc." "Puppet manual"
4
+ .TH "PUPPET\-APPLY" "8" "August 2019" "Puppet, Inc." "Puppet manual"
5
5
  .
6
6
  .SH "NAME"
7
7
  \fBpuppet\-apply\fR \- Apply Puppet manifests locally
@@ -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 "PUPPET\-CATALOG" "8" "July 2019" "Puppet, Inc." "Puppet manual"
4
+ .TH "PUPPET\-CATALOG" "8" "August 2019" "Puppet, Inc." "Puppet manual"
5
5
  .
6
6
  .SH "NAME"
7
7
  \fBpuppet\-catalog\fR \- Compile, save, view, and convert catalogs\.
@@ -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 "PUPPET\-CONFIG" "8" "July 2019" "Puppet, Inc." "Puppet manual"
4
+ .TH "PUPPET\-CONFIG" "8" "August 2019" "Puppet, Inc." "Puppet manual"
5
5
  .
6
6
  .SH "NAME"
7
7
  \fBpuppet\-config\fR \- Interact with Puppet\'s settings\.
@@ -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 "PUPPET\-DESCRIBE" "8" "July 2019" "Puppet, Inc." "Puppet manual"
4
+ .TH "PUPPET\-DESCRIBE" "8" "August 2019" "Puppet, Inc." "Puppet manual"
5
5
  .
6
6
  .SH "NAME"
7
7
  \fBpuppet\-describe\fR \- Display help about resource types
@@ -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 "PUPPET\-DEVICE" "8" "July 2019" "Puppet, Inc." "Puppet manual"
4
+ .TH "PUPPET\-DEVICE" "8" "August 2019" "Puppet, Inc." "Puppet manual"
5
5
  .
6
6
  .SH "NAME"
7
7
  \fBpuppet\-device\fR \- Manage remote network devices
@@ -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 "PUPPET\-DOC" "8" "July 2019" "Puppet, Inc." "Puppet manual"
4
+ .TH "PUPPET\-DOC" "8" "August 2019" "Puppet, Inc." "Puppet manual"
5
5
  .
6
6
  .SH "NAME"
7
7
  \fBpuppet\-doc\fR \- Generate Puppet references
@@ -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 "PUPPET\-EPP" "8" "July 2019" "Puppet, Inc." "Puppet manual"
4
+ .TH "PUPPET\-EPP" "8" "August 2019" "Puppet, Inc." "Puppet manual"
5
5
  .
6
6
  .SH "NAME"
7
7
  \fBpuppet\-epp\fR \- Interact directly with the EPP template parser/renderer\.
@@ -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 "PUPPET\-FACTS" "8" "July 2019" "Puppet, Inc." "Puppet manual"
4
+ .TH "PUPPET\-FACTS" "8" "August 2019" "Puppet, Inc." "Puppet manual"
5
5
  .
6
6
  .SH "NAME"
7
7
  \fBpuppet\-facts\fR \- Retrieve and store facts\.
@@ -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 "PUPPET\-FILEBUCKET" "8" "July 2019" "Puppet, Inc." "Puppet manual"
4
+ .TH "PUPPET\-FILEBUCKET" "8" "August 2019" "Puppet, Inc." "Puppet manual"
5
5
  .
6
6
  .SH "NAME"
7
7
  \fBpuppet\-filebucket\fR \- Store and retrieve files in a filebucket
@@ -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 "PUPPET\-GENERATE" "8" "July 2019" "Puppet, Inc." "Puppet manual"
4
+ .TH "PUPPET\-GENERATE" "8" "August 2019" "Puppet, Inc." "Puppet manual"
5
5
  .
6
6
  .SH "NAME"
7
7
  \fBpuppet\-generate\fR \- Generates Puppet code from Ruby definitions\.
@@ -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 "PUPPET\-HELP" "8" "July 2019" "Puppet, Inc." "Puppet manual"
4
+ .TH "PUPPET\-HELP" "8" "August 2019" "Puppet, Inc." "Puppet manual"
5
5
  .
6
6
  .SH "NAME"
7
7
  \fBpuppet\-help\fR \- Display Puppet help\.
@@ -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 "PUPPET\-KEY" "8" "July 2019" "Puppet, Inc." "Puppet manual"
4
+ .TH "PUPPET\-KEY" "8" "August 2019" "Puppet, Inc." "Puppet manual"
5
5
  .
6
6
  .SH "NAME"
7
7
  \fBpuppet\-key\fR \- Create, save, and remove certificate keys\.
@@ -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 "LOOKUP" "8" "July 2019" "Puppet, Inc." "Puppet manual"
4
+ .TH "LOOKUP" "8" "August 2019" "Puppet, Inc." "Puppet manual"
5
5
  .
6
6
  .SH "NAME"
7
7
  \fBlookup\fR \- Interactive Hiera lookup