puppet 6.7.2-x86-mingw32 → 6.8.0-x86-mingw32

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

Potentially problematic release.


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

Files changed (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.rb +1 -0
  22. data/lib/puppet/pops/lookup/key_recorder.rb +18 -0
  23. data/lib/puppet/pops/lookup/lookup_adapter.rb +7 -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
@@ -13,7 +13,7 @@ require 'pathname'
13
13
 
14
14
  module Puppet::Util::SELinux
15
15
 
16
- def selinux_support?
16
+ def self.selinux_support?
17
17
  return false unless defined?(Selinux)
18
18
  if Selinux.is_selinux_enabled == 1
19
19
  return true
@@ -21,6 +21,10 @@ module Puppet::Util::SELinux
21
21
  false
22
22
  end
23
23
 
24
+ def selinux_support?
25
+ Puppet::Util::SELinux.selinux_support?
26
+ end
27
+
24
28
  # Retrieve and return the full context of the file. If we don't have
25
29
  # SELinux support or if the SELinux call fails then return nil.
26
30
  def get_selinux_current_context(file)
@@ -200,6 +200,7 @@ module Puppet::Util::Windows::Security
200
200
  well_known_world_sid = Puppet::Util::Windows::SID::Everyone
201
201
  well_known_nobody_sid = Puppet::Util::Windows::SID::Nobody
202
202
  well_known_system_sid = Puppet::Util::Windows::SID::LocalSystem
203
+ well_known_app_packages_sid = Puppet::Util::Windows::SID::AllAppPackages
203
204
 
204
205
  mode = S_ISYSTEM_MISSING
205
206
 
@@ -234,6 +235,7 @@ module Puppet::Util::Windows::Security
234
235
  if (ace.mask & FILE::FILE_APPEND_DATA).nonzero?
235
236
  mode |= S_ISVTX
236
237
  end
238
+ when well_known_app_packages_sid
237
239
  when well_known_system_sid
238
240
  else
239
241
  #puts "Warning, unable to map SID into POSIX mode: #{ace.sid}"
@@ -46,6 +46,7 @@ module Puppet::Util::Windows
46
46
  PrintOperators = 'S-1-5-32-550'
47
47
  BackupOperators = 'S-1-5-32-551'
48
48
  Replicators = 'S-1-5-32-552'
49
+ AllAppPackages = 'S-1-15-2-1'
49
50
 
50
51
  # Convert an account name, e.g. 'Administrators' into a SID string,
51
52
  # e.g. 'S-1-5-32-544'. The name can be specified as 'Administrators',
@@ -6,7 +6,7 @@
6
6
  # Raketasks and such to set the version based on the output of `git describe`
7
7
 
8
8
  module Puppet
9
- PUPPETVERSION = '6.7.2'
9
+ PUPPETVERSION = '6.8.0'
10
10
 
11
11
  ##
12
12
  # version is a public API method intended to always provide a fast and
@@ -191,22 +191,20 @@ class Puppet::X509::CertProvider
191
191
  # and corrected in https://github.com/ruby/openssl/commit/a896c3d1dfa090e92dec1abf8ac12843af6af721
192
192
  password ||= ' '
193
193
 
194
- if Puppet::Util::Platform.jruby?
195
- begin
196
- if pem =~ EC_HEADER
197
- OpenSSL::PKey::EC.new(pem, password)
198
- else
199
- OpenSSL::PKey::RSA.new(pem, password)
200
- end
201
- rescue OpenSSL::PKey::PKeyError => e
202
- if e.message =~ /Neither PUB key nor PRIV key/
203
- raise OpenSSL::PKey::PKeyError, "Could not parse PKey: no start line"
204
- else
205
- raise e
206
- end
194
+ # Can't use OpenSSL::PKey.read, because it's broken in MRI 2.3, doesn't exist
195
+ # in JRuby 9.1, and is broken in JRuby 9.2
196
+ begin
197
+ if pem =~ EC_HEADER
198
+ OpenSSL::PKey::EC.new(pem, password)
199
+ else
200
+ OpenSSL::PKey::RSA.new(pem, password)
201
+ end
202
+ rescue OpenSSL::PKey::PKeyError => e
203
+ if e.message =~ /Neither PUB key nor PRIV key/
204
+ raise OpenSSL::PKey::PKeyError, "Could not parse PKey: no start line"
205
+ else
206
+ raise e
207
207
  end
208
- else
209
- OpenSSL::PKey.read(pem, password)
210
208
  end
211
209
  end
212
210
 
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