puppet 6.3.0-x86-mingw32 → 6.4.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.
- checksums.yaml +4 -4
- data/CODEOWNERS +30 -0
- data/Gemfile.lock +9 -9
- data/lib/puppet.rb +13 -0
- data/lib/puppet/application/agent.rb +8 -12
- data/lib/puppet/application/device.rb +2 -3
- data/lib/puppet/application/filebucket.rb +6 -1
- data/lib/puppet/application/ssl.rb +102 -55
- data/lib/puppet/configurer.rb +8 -7
- data/lib/puppet/defaults.rb +3 -1
- data/lib/puppet/file_system.rb +24 -4
- data/lib/puppet/file_system/file_impl.rb +25 -0
- data/lib/puppet/file_system/jruby.rb +23 -0
- data/lib/puppet/file_system/windows.rb +84 -0
- data/lib/puppet/indirector/rest.rb +4 -2
- data/lib/puppet/loaders.rb +1 -0
- data/lib/puppet/network/http.rb +1 -0
- data/lib/puppet/network/http/base_pool.rb +18 -0
- data/lib/puppet/network/http/connection.rb +49 -17
- data/lib/puppet/network/http/nocache_pool.rb +9 -4
- data/lib/puppet/network/http/pool.rb +10 -11
- data/lib/puppet/network/http/session.rb +3 -2
- data/lib/puppet/network/http_pool.rb +32 -0
- data/lib/puppet/pops/loader/generic_plan_instantiator.rb +28 -0
- data/lib/puppet/pops/loader/loader_paths.rb +46 -10
- data/lib/puppet/pops/loader/module_loaders.rb +10 -3
- data/lib/puppet/provider/file/windows.rb +49 -1
- data/lib/puppet/provider/package/windows.rb +5 -1
- data/lib/puppet/reports/http.rb +2 -1
- data/lib/puppet/rest/client.rb +7 -3
- data/lib/puppet/rest/routes.rb +9 -44
- data/lib/puppet/ssl.rb +6 -0
- data/lib/puppet/ssl/error.rb +26 -0
- data/lib/puppet/ssl/host.rb +9 -92
- data/lib/puppet/ssl/ssl_context.rb +30 -0
- data/lib/puppet/ssl/ssl_provider.rb +232 -0
- data/lib/puppet/ssl/state_machine.rb +261 -0
- data/lib/puppet/ssl/validator.rb +1 -0
- data/lib/puppet/ssl/validator/default_validator.rb +1 -0
- data/lib/puppet/ssl/validator/no_validator.rb +2 -0
- data/lib/puppet/ssl/verifier.rb +134 -0
- data/lib/puppet/ssl/verifier_adapter.rb +48 -0
- data/lib/puppet/test/test_helper.rb +2 -1
- data/lib/puppet/type/exec.rb +30 -6
- data/lib/puppet/type/file/mode.rb +6 -1
- data/lib/puppet/type/file/source.rb +2 -2
- data/lib/puppet/type/filebucket.rb +12 -8
- data/lib/puppet/type/user.rb +14 -1
- data/lib/puppet/util/connection.rb +10 -5
- data/lib/puppet/util/feature.rb +11 -2
- data/lib/puppet/util/http_proxy.rb +3 -2
- data/lib/puppet/util/pidlock.rb +1 -1
- data/lib/puppet/util/ssl.rb +1 -10
- data/lib/puppet/util/windows/security.rb +29 -8
- data/lib/puppet/version.rb +1 -1
- data/lib/puppet/x509.rb +7 -0
- data/lib/puppet/x509/cert_provider.rb +286 -0
- data/lib/puppet/x509/pem_store.rb +55 -0
- data/locales/ja/puppet.po +740 -590
- data/locales/puppet.pot +433 -208
- data/man/man5/puppet.conf.5 +6 -3
- data/man/man8/puppet-agent.8 +1 -1
- data/man/man8/puppet-apply.8 +1 -1
- data/man/man8/puppet-catalog.8 +1 -1
- data/man/man8/puppet-config.8 +1 -1
- data/man/man8/puppet-describe.8 +1 -1
- data/man/man8/puppet-device.8 +1 -1
- data/man/man8/puppet-doc.8 +1 -1
- data/man/man8/puppet-epp.8 +1 -1
- data/man/man8/puppet-facts.8 +1 -1
- data/man/man8/puppet-filebucket.8 +6 -2
- data/man/man8/puppet-generate.8 +1 -1
- data/man/man8/puppet-help.8 +1 -1
- data/man/man8/puppet-key.8 +1 -1
- data/man/man8/puppet-lookup.8 +1 -1
- data/man/man8/puppet-man.8 +1 -1
- data/man/man8/puppet-module.8 +1 -1
- data/man/man8/puppet-node.8 +1 -1
- data/man/man8/puppet-parser.8 +1 -1
- data/man/man8/puppet-plugin.8 +1 -1
- data/man/man8/puppet-report.8 +1 -1
- data/man/man8/puppet-resource.8 +1 -1
- data/man/man8/puppet-script.8 +1 -1
- data/man/man8/puppet-ssl.8 +5 -1
- data/man/man8/puppet-status.8 +1 -1
- data/man/man8/puppet.8 +2 -2
- data/spec/fixtures/ssl/127.0.0.1-key.pem +67 -0
- data/spec/fixtures/ssl/127.0.0.1.pem +48 -0
- data/spec/fixtures/ssl/bad-basic-constraints.pem +59 -0
- data/spec/fixtures/ssl/bad-int-basic-constraints.pem +59 -0
- data/spec/fixtures/ssl/ca.pem +59 -0
- data/spec/fixtures/ssl/crl.pem +30 -0
- data/spec/fixtures/ssl/encrypted-key.pem +70 -0
- data/spec/fixtures/ssl/intermediate-agent-crl.pem +31 -0
- data/spec/fixtures/ssl/intermediate-agent.pem +60 -0
- data/spec/fixtures/ssl/intermediate-crl.pem +36 -0
- data/spec/fixtures/ssl/intermediate.pem +60 -0
- data/spec/fixtures/ssl/netlock-arany-utf8.pem +23 -0
- data/spec/fixtures/ssl/pluto-key.pem +67 -0
- data/spec/fixtures/ssl/pluto.pem +44 -0
- data/spec/fixtures/ssl/request-key.pem +67 -0
- data/spec/fixtures/ssl/request.pem +39 -0
- data/spec/fixtures/ssl/revoked-key.pem +67 -0
- data/spec/fixtures/ssl/revoked.pem +44 -0
- data/spec/fixtures/ssl/signed-key.pem +67 -0
- data/spec/fixtures/ssl/signed.pem +44 -0
- data/spec/fixtures/ssl/tampered-cert.pem +44 -0
- data/spec/fixtures/ssl/tampered-csr.pem +39 -0
- data/spec/integration/network/http_pool_spec.rb +222 -0
- data/spec/integration/provider/file/windows_spec.rb +162 -0
- data/spec/integration/rest/client_spec.rb +73 -0
- data/spec/integration/type/file_spec.rb +0 -19
- data/spec/lib/puppet/test_ca.rb +87 -50
- data/spec/lib/puppet_spec/fixtures.rb +20 -0
- data/spec/lib/puppet_spec/https.rb +84 -0
- data/spec/unit/application/agent_spec.rb +29 -30
- data/spec/unit/application/device_spec.rb +12 -49
- data/spec/unit/application/ssl_spec.rb +24 -38
- data/spec/unit/configurer_spec.rb +11 -11
- data/spec/unit/file_system/uniquefile_spec.rb +6 -0
- data/spec/unit/file_system_spec.rb +214 -0
- data/spec/unit/indirector/rest_spec.rb +3 -3
- data/spec/unit/network/http/connection_spec.rb +30 -90
- data/spec/unit/network/http/factory_spec.rb +1 -0
- data/spec/unit/network/http/nocache_pool_spec.rb +8 -8
- data/spec/unit/network/http/pool_spec.rb +63 -33
- data/spec/unit/network/http/session_spec.rb +8 -1
- data/spec/unit/network/http_pool_spec.rb +36 -0
- data/spec/unit/pops/loaders/loader_spec.rb +26 -1
- data/spec/unit/provider/package/windows_spec.rb +12 -1
- data/spec/unit/reports/http_spec.rb +7 -7
- data/spec/unit/rest/client_spec.rb +4 -6
- data/spec/unit/ssl/host_spec.rb +39 -33
- data/spec/unit/ssl/ssl_provider_spec.rb +428 -0
- data/spec/unit/ssl/state_machine_spec.rb +502 -0
- data/spec/unit/ssl/verifier_spec.rb +123 -0
- data/spec/unit/type/exec_spec.rb +63 -0
- data/spec/unit/type/file/source_spec.rb +5 -5
- data/spec/unit/type/filebucket_spec.rb +8 -6
- data/spec/unit/util/feature_spec.rb +2 -2
- data/spec/unit/util/storage_spec.rb +19 -19
- data/spec/unit/x509/cert_provider_spec.rb +527 -0
- data/spec/unit/x509/pem_store_spec.rb +160 -0
- data/tasks/generate_cert_fixtures.rake +158 -0
- metadata +78 -4
- data/MAINTAINERS +0 -47
- data/lib/puppet/rest/ssl_context.rb +0 -13
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.
|
9
|
+
"Project-Id-Version: Puppet automation framework 6.3.0-193-g0da1ea8\n"
|
10
10
|
"\n"
|
11
11
|
"Report-Msgid-Bugs-To: https://tickets.puppetlabs.com\n"
|
12
|
-
"POT-Creation-Date: 2019-
|
13
|
-
"PO-Revision-Date: 2019-
|
12
|
+
"POT-Creation-Date: 2019-03-20 21:18+0000\n"
|
13
|
+
"PO-Revision-Date: 2019-03-20 21:18+0000\n"
|
14
14
|
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
15
15
|
"Language-Team: LANGUAGE <LL@li.org>\n"
|
16
16
|
"Language: \n"
|
@@ -60,6 +60,16 @@ msgstr ""
|
|
60
60
|
msgid "The environmentpath setting cannot be empty or nil."
|
61
61
|
msgstr ""
|
62
62
|
|
63
|
+
#. TRANSLATORS: `message` is an already translated string of why SSL failed to initialize
|
64
|
+
#: ../lib/puppet.rb:216
|
65
|
+
msgid "Failed to initialize SSL: %{message}"
|
66
|
+
msgstr ""
|
67
|
+
|
68
|
+
#. TRANSLATORS: `puppet agent -t` is a command and should not be translated
|
69
|
+
#: ../lib/puppet.rb:218
|
70
|
+
msgid "Run `puppet agent -t`"
|
71
|
+
msgstr ""
|
72
|
+
|
63
73
|
#: ../lib/puppet/agent.rb:41
|
64
74
|
msgid ""
|
65
75
|
"Skipping run of %{client_class}; administratively disabled (Reason: '%{disable_message}');\n"
|
@@ -176,19 +186,15 @@ msgstr ""
|
|
176
186
|
msgid "The puppet agent daemon"
|
177
187
|
msgstr ""
|
178
188
|
|
179
|
-
#: ../lib/puppet/application/agent.rb:
|
189
|
+
#: ../lib/puppet/application/agent.rb:365
|
180
190
|
msgid "Fingerprint asked but no certificate nor certificate request have yet been issued"
|
181
191
|
msgstr ""
|
182
192
|
|
183
|
-
#: ../lib/puppet/application/agent.rb:
|
184
|
-
msgid "Could not get fingerprint for digest '%{digest}'"
|
185
|
-
msgstr ""
|
186
|
-
|
187
|
-
#: ../lib/puppet/application/agent.rb:392
|
193
|
+
#: ../lib/puppet/application/agent.rb:388
|
188
194
|
msgid "Starting Puppet client version %{version}"
|
189
195
|
msgstr ""
|
190
196
|
|
191
|
-
#: ../lib/puppet/application/agent.rb:
|
197
|
+
#: ../lib/puppet/application/agent.rb:404
|
192
198
|
msgid "The puppet agent command does not take parameters"
|
193
199
|
msgstr ""
|
194
200
|
|
@@ -278,11 +284,11 @@ msgstr ""
|
|
278
284
|
msgid "starting applying configuration to %{target} at %{scheme}%{url_host}%{port}%{url_path}"
|
279
285
|
msgstr ""
|
280
286
|
|
281
|
-
#: ../lib/puppet/application/device.rb:
|
287
|
+
#: ../lib/puppet/application/device.rb:358 ../lib/puppet/application/resource.rb:196
|
282
288
|
msgid "You must specify the type to display"
|
283
289
|
msgstr ""
|
284
290
|
|
285
|
-
#: ../lib/puppet/application/device.rb:
|
291
|
+
#: ../lib/puppet/application/device.rb:359 ../lib/puppet/application/resource.rb:197
|
286
292
|
msgid "Could not find type %{type}"
|
287
293
|
msgstr ""
|
288
294
|
|
@@ -348,27 +354,27 @@ msgstr ""
|
|
348
354
|
msgid "Store and retrieve files in a filebucket"
|
349
355
|
msgstr ""
|
350
356
|
|
351
|
-
#: ../lib/puppet/application/filebucket.rb:
|
357
|
+
#: ../lib/puppet/application/filebucket.rb:208
|
352
358
|
msgid "You must specify a file to back up"
|
353
359
|
msgstr ""
|
354
360
|
|
355
|
-
#: ../lib/puppet/application/filebucket.rb:
|
361
|
+
#: ../lib/puppet/application/filebucket.rb:212
|
356
362
|
msgid "%{file}: no such file"
|
357
363
|
msgstr ""
|
358
364
|
|
359
|
-
#: ../lib/puppet/application/filebucket.rb:
|
365
|
+
#: ../lib/puppet/application/filebucket.rb:216
|
360
366
|
msgid "%{file}: cannot read file"
|
361
367
|
msgstr ""
|
362
368
|
|
363
|
-
#: ../lib/puppet/application/filebucket.rb:
|
369
|
+
#: ../lib/puppet/application/filebucket.rb:238 ../lib/puppet/application/filebucket.rb:261
|
364
370
|
msgid "Need exactly two arguments: filebucket diff <file_a> <file_b>"
|
365
371
|
msgstr ""
|
366
372
|
|
367
|
-
#: ../lib/puppet/application/filebucket.rb:
|
373
|
+
#: ../lib/puppet/application/filebucket.rb:258
|
368
374
|
msgid "Comparing %{checksum_a} %{checksum_b} %{file_a} %{file_b}"
|
369
375
|
msgstr ""
|
370
376
|
|
371
|
-
#: ../lib/puppet/application/filebucket.rb:
|
377
|
+
#: ../lib/puppet/application/filebucket.rb:272
|
372
378
|
msgid "Cancelling"
|
373
379
|
msgstr ""
|
374
380
|
|
@@ -442,67 +448,55 @@ msgstr ""
|
|
442
448
|
msgid "Manage SSL keys and certificates for puppet SSL clients"
|
443
449
|
msgstr ""
|
444
450
|
|
445
|
-
#: ../lib/puppet/application/ssl.rb:
|
451
|
+
#: ../lib/puppet/application/ssl.rb:102
|
446
452
|
msgid "An action must be specified."
|
447
453
|
msgstr ""
|
448
454
|
|
449
|
-
#: ../lib/puppet/application/ssl.rb:
|
455
|
+
#: ../lib/puppet/application/ssl.rb:123 ../lib/puppet/application/ssl.rb:130
|
450
456
|
msgid "The certificate for '%{name}' has not yet been signed"
|
451
457
|
msgstr ""
|
452
458
|
|
453
|
-
#: ../lib/puppet/application/ssl.rb:
|
454
|
-
msgid "
|
455
|
-
msgstr ""
|
456
|
-
|
457
|
-
#: ../lib/puppet/application/ssl.rb:127
|
458
|
-
msgid "Submitted certificate request for '%{name}' to https://%{server}:%{port}"
|
459
|
-
msgstr ""
|
460
|
-
|
461
|
-
#: ../lib/puppet/application/ssl.rb:131
|
462
|
-
msgid "Failed to submit certificate request: %{message}"
|
463
|
-
msgstr ""
|
464
|
-
|
465
|
-
#: ../lib/puppet/application/ssl.rb:137
|
466
|
-
msgid "Downloading certificate '%{name}' from https://%{server}:%{port}"
|
459
|
+
#: ../lib/puppet/application/ssl.rb:141
|
460
|
+
msgid "Completed SSL initialization"
|
467
461
|
msgstr ""
|
468
462
|
|
469
463
|
#: ../lib/puppet/application/ssl.rb:143
|
470
|
-
msgid "
|
464
|
+
msgid "Unknown action '%{action}'"
|
471
465
|
msgstr ""
|
472
466
|
|
473
|
-
#: ../lib/puppet/application/ssl.rb:
|
474
|
-
msgid "
|
467
|
+
#: ../lib/puppet/application/ssl.rb:150 ../lib/puppet/ssl/key.rb:24 ../lib/puppet/ssl/state_machine.rb:113
|
468
|
+
msgid "Creating a new SSL key for %{name}"
|
475
469
|
msgstr ""
|
476
470
|
|
477
|
-
#: ../lib/puppet/application/ssl.rb:
|
478
|
-
msgid "
|
471
|
+
#: ../lib/puppet/application/ssl.rb:158
|
472
|
+
msgid "Submitted certificate request for '%{name}' to https://%{server}:%{port}"
|
479
473
|
msgstr ""
|
480
474
|
|
481
|
-
#: ../lib/puppet/application/ssl.rb:
|
482
|
-
msgid "
|
475
|
+
#: ../lib/puppet/application/ssl.rb:163
|
476
|
+
msgid "Could not submit certificate request for '%{name}' to https://%{server}:%{port} due to a conflict on the server"
|
483
477
|
msgstr ""
|
484
478
|
|
485
|
-
#: ../lib/puppet/application/ssl.rb:
|
486
|
-
msgid "
|
479
|
+
#: ../lib/puppet/application/ssl.rb:165 ../lib/puppet/application/ssl.rb:168
|
480
|
+
msgid "Failed to submit certificate request: %{message}"
|
487
481
|
msgstr ""
|
488
482
|
|
489
|
-
#: ../lib/puppet/application/ssl.rb:
|
490
|
-
msgid "
|
483
|
+
#: ../lib/puppet/application/ssl.rb:174
|
484
|
+
msgid "Downloading certificate '%{name}' from https://%{server}:%{port}"
|
491
485
|
msgstr ""
|
492
486
|
|
493
|
-
#: ../lib/puppet/application/ssl.rb:
|
494
|
-
msgid "
|
487
|
+
#: ../lib/puppet/application/ssl.rb:181 ../lib/puppet/application/ssl.rb:189
|
488
|
+
msgid "Downloaded certificate '%{name}' with fingerprint %{fingerprint}"
|
495
489
|
msgstr ""
|
496
490
|
|
497
|
-
#: ../lib/puppet/application/ssl.rb:
|
498
|
-
msgid "
|
491
|
+
#: ../lib/puppet/application/ssl.rb:197 ../lib/puppet/application/ssl.rb:200
|
492
|
+
msgid "Failed to download certificate: %{message}"
|
499
493
|
msgstr ""
|
500
494
|
|
501
|
-
#: ../lib/puppet/application/ssl.rb:
|
495
|
+
#: ../lib/puppet/application/ssl.rb:227 ../lib/puppet/application/ssl.rb:230
|
502
496
|
msgid "Failed to connect to the CA to determine if certificate %{certname} has been cleaned"
|
503
497
|
msgstr ""
|
504
498
|
|
505
|
-
#: ../lib/puppet/application/ssl.rb:
|
499
|
+
#: ../lib/puppet/application/ssl.rb:234
|
506
500
|
msgid ""
|
507
501
|
"The certificate %{certname} must be cleaned from the CA first. To fix this,\n"
|
508
502
|
"run the following commands on the CA:\n"
|
@@ -510,7 +504,7 @@ msgid ""
|
|
510
504
|
" puppet ssl clean\n"
|
511
505
|
msgstr ""
|
512
506
|
|
513
|
-
#: ../lib/puppet/application/ssl.rb:
|
507
|
+
#: ../lib/puppet/application/ssl.rb:254
|
514
508
|
msgid "Removed %{label} %{path}"
|
515
509
|
msgstr ""
|
516
510
|
|
@@ -550,12 +544,12 @@ msgstr ""
|
|
550
544
|
msgid "Applied catalog in %{seconds} seconds"
|
551
545
|
msgstr ""
|
552
546
|
|
553
|
-
#: ../lib/puppet/configurer.rb:
|
554
|
-
msgid "
|
547
|
+
#: ../lib/puppet/configurer.rb:230
|
548
|
+
msgid "Could not select a functional puppet master from server_list: '%{server_list}'"
|
555
549
|
msgstr ""
|
556
550
|
|
557
|
-
#: ../lib/puppet/configurer.rb:
|
558
|
-
msgid "
|
551
|
+
#: ../lib/puppet/configurer.rb:232
|
552
|
+
msgid "Selected puppet server: %{server}:%{port}"
|
559
553
|
msgstr ""
|
560
554
|
|
561
555
|
#: ../lib/puppet/configurer.rb:264
|
@@ -590,31 +584,31 @@ msgstr ""
|
|
590
584
|
msgid "Failed to apply catalog: %{detail}"
|
591
585
|
msgstr ""
|
592
586
|
|
593
|
-
#: ../lib/puppet/configurer.rb:
|
587
|
+
#: ../lib/puppet/configurer.rb:403
|
594
588
|
msgid "Puppet server %{host}:%{port} is unavailable: %{code} %{reason}"
|
595
589
|
msgstr ""
|
596
590
|
|
597
|
-
#: ../lib/puppet/configurer.rb:
|
591
|
+
#: ../lib/puppet/configurer.rb:407
|
598
592
|
msgid "Puppet server %{host}:%{port} is unreachable"
|
599
593
|
msgstr ""
|
600
594
|
|
601
|
-
#: ../lib/puppet/configurer.rb:
|
595
|
+
#: ../lib/puppet/configurer.rb:419 ../lib/puppet/face/report.rb:47
|
602
596
|
msgid "Could not send report: %{detail}"
|
603
597
|
msgstr ""
|
604
598
|
|
605
|
-
#: ../lib/puppet/configurer.rb:
|
599
|
+
#: ../lib/puppet/configurer.rb:428
|
606
600
|
msgid "Could not save last run local report: %{detail}"
|
607
601
|
msgstr ""
|
608
602
|
|
609
|
-
#: ../lib/puppet/configurer.rb:
|
603
|
+
#: ../lib/puppet/configurer.rb:440
|
610
604
|
msgid "Could not run command from %{setting}: %{detail}"
|
611
605
|
msgstr ""
|
612
606
|
|
613
|
-
#: ../lib/puppet/configurer.rb:
|
607
|
+
#: ../lib/puppet/configurer.rb:458
|
614
608
|
msgid "Could not retrieve catalog from cache: %{detail}"
|
615
609
|
msgstr ""
|
616
610
|
|
617
|
-
#: ../lib/puppet/configurer.rb:
|
611
|
+
#: ../lib/puppet/configurer.rb:478
|
618
612
|
msgid "Could not retrieve catalog from remote server: %{detail}"
|
619
613
|
msgstr ""
|
620
614
|
|
@@ -687,25 +681,25 @@ msgid "Valid values are %{values}."
|
|
687
681
|
msgstr ""
|
688
682
|
|
689
683
|
#. TRANSLATORS 'data_binding_terminus' is a setting and should not be translated
|
690
|
-
#: ../lib/puppet/defaults.rb:
|
684
|
+
#: ../lib/puppet/defaults.rb:495
|
691
685
|
msgid "Setting 'data_binding_terminus' is deprecated."
|
692
686
|
msgstr ""
|
693
687
|
|
694
688
|
#. TRANSLATORS 'hiera' should not be translated
|
695
|
-
#: ../lib/puppet/defaults.rb:
|
689
|
+
#: ../lib/puppet/defaults.rb:497
|
696
690
|
msgid "Convert custom terminus to hiera 5 API."
|
697
691
|
msgstr ""
|
698
692
|
|
699
693
|
#. TRANSLATORS 'environment_data_provider' is a setting and should not be translated
|
700
|
-
#: ../lib/puppet/defaults.rb:
|
694
|
+
#: ../lib/puppet/defaults.rb:652
|
701
695
|
msgid "Setting 'environment_data_provider' is deprecated."
|
702
696
|
msgstr ""
|
703
697
|
|
704
|
-
#: ../lib/puppet/defaults.rb:
|
698
|
+
#: ../lib/puppet/defaults.rb:733
|
705
699
|
msgid "Certificate names must be lower case"
|
706
700
|
msgstr ""
|
707
701
|
|
708
|
-
#: ../lib/puppet/defaults.rb:
|
702
|
+
#: ../lib/puppet/defaults.rb:964 ../lib/puppet/settings/enum_setting.rb:13 ../lib/puppet/settings/symbolic_enum_setting.rb:14
|
709
703
|
msgid "Invalid value '%{value}' for parameter %{name}. Allowed values are '%{allowed_values}'"
|
710
704
|
msgstr ""
|
711
705
|
|
@@ -1746,6 +1740,10 @@ msgstr ""
|
|
1746
1740
|
msgid "Timeout waiting for exclusive lock on %{path}"
|
1747
1741
|
msgstr ""
|
1748
1742
|
|
1743
|
+
#: ../lib/puppet/file_system/jruby.rb:18 ../lib/puppet/file_system/windows.rb:126 ../lib/puppet/util.rb:642
|
1744
|
+
msgid "Is a directory: %{directory}"
|
1745
|
+
msgstr ""
|
1746
|
+
|
1749
1747
|
#: ../lib/puppet/file_system/memory_impl.rb:68
|
1750
1748
|
msgid "Unable to find registered object for %{path}"
|
1751
1749
|
msgstr ""
|
@@ -1782,15 +1780,15 @@ msgstr ""
|
|
1782
1780
|
msgid "cannot generate temporary name using `%{basename}' under `%{tmpdir}'"
|
1783
1781
|
msgstr ""
|
1784
1782
|
|
1785
|
-
#: ../lib/puppet/file_system/windows.rb:
|
1783
|
+
#: ../lib/puppet/file_system/windows.rb:49
|
1786
1784
|
msgid "%{dest} already exists and the :force option was not specified"
|
1787
1785
|
msgstr ""
|
1788
1786
|
|
1789
|
-
#: ../lib/puppet/file_system/windows.rb:
|
1787
|
+
#: ../lib/puppet/file_system/windows.rb:205
|
1790
1788
|
msgid "This version of Windows does not support symlinks. Windows Vista / 2008 or higher is required."
|
1791
1789
|
msgstr ""
|
1792
1790
|
|
1793
|
-
#: ../lib/puppet/file_system/windows.rb:
|
1791
|
+
#: ../lib/puppet/file_system/windows.rb:210
|
1794
1792
|
msgid "The current user does not have the necessary permission to manage symlinks."
|
1795
1793
|
msgstr ""
|
1796
1794
|
|
@@ -2419,7 +2417,7 @@ msgstr ""
|
|
2419
2417
|
msgid "You cannot save facts to the code store; it is only used for getting facts from a remote device"
|
2420
2418
|
msgstr ""
|
2421
2419
|
|
2422
|
-
#: ../lib/puppet/indirector/facts/rest.rb:8 ../lib/puppet/indirector/rest.rb:
|
2420
|
+
#: ../lib/puppet/indirector/facts/rest.rb:8 ../lib/puppet/indirector/rest.rb:186
|
2423
2421
|
msgid "PUT does not accept options"
|
2424
2422
|
msgstr ""
|
2425
2423
|
|
@@ -2670,24 +2668,24 @@ msgstr ""
|
|
2670
2668
|
msgid "Resource instance does not match request key"
|
2671
2669
|
msgstr ""
|
2672
2670
|
|
2673
|
-
#: ../lib/puppet/indirector/rest.rb:
|
2671
|
+
#: ../lib/puppet/indirector/rest.rb:138
|
2674
2672
|
msgid "Find %{uri} resulted in 404 with the message: %{body}"
|
2675
2673
|
msgstr ""
|
2676
2674
|
|
2677
|
-
#: ../lib/puppet/indirector/rest.rb:
|
2675
|
+
#: ../lib/puppet/indirector/rest.rb:171
|
2678
2676
|
msgid "DELETE does not accept options"
|
2679
2677
|
msgstr ""
|
2680
2678
|
|
2681
2679
|
#. TRANSLATORS "PSON" should not be translated
|
2682
|
-
#: ../lib/puppet/indirector/rest.rb:
|
2680
|
+
#: ../lib/puppet/indirector/rest.rb:223
|
2683
2681
|
msgid "Downgrading to PSON for future requests"
|
2684
2682
|
msgstr ""
|
2685
2683
|
|
2686
|
-
#: ../lib/puppet/indirector/rest.rb:
|
2684
|
+
#: ../lib/puppet/indirector/rest.rb:265 ../lib/puppet/rest/response.rb:30
|
2687
2685
|
msgid "Error %{code} on SERVER: %{returned_message}"
|
2688
2686
|
msgstr ""
|
2689
2687
|
|
2690
|
-
#: ../lib/puppet/indirector/rest.rb:
|
2688
|
+
#: ../lib/puppet/indirector/rest.rb:276
|
2691
2689
|
msgid "No content type in http response; cannot parse"
|
2692
2690
|
msgstr ""
|
2693
2691
|
|
@@ -3786,32 +3784,44 @@ msgstr ""
|
|
3786
3784
|
msgid "Unknown content encoding - %{encoding}"
|
3787
3785
|
msgstr ""
|
3788
3786
|
|
3789
|
-
#: ../lib/puppet/network/http/connection.rb:
|
3787
|
+
#: ../lib/puppet/network/http/connection.rb:56
|
3790
3788
|
msgid "Unrecognized option(s): %{opts}"
|
3791
3789
|
msgstr ""
|
3792
3790
|
|
3793
|
-
#: ../lib/puppet/network/http/connection.rb:
|
3791
|
+
#: ../lib/puppet/network/http/connection.rb:63
|
3792
|
+
msgid "Expected an instance of Puppet::SSL::Verifier but was passed a %{klass}"
|
3793
|
+
msgstr ""
|
3794
|
+
|
3795
|
+
#: ../lib/puppet/network/http/connection.rb:225
|
3794
3796
|
msgid "Too many HTTP redirections for %{host}:%{port}"
|
3795
3797
|
msgstr ""
|
3796
3798
|
|
3797
3799
|
#. TRANSLATORS: Used in the phrase:
|
3798
3800
|
#. "Received a response from the remote server."
|
3799
|
-
#: ../lib/puppet/network/http/connection.rb:
|
3801
|
+
#: ../lib/puppet/network/http/connection.rb:255
|
3800
3802
|
msgid "the remote server"
|
3801
3803
|
msgstr ""
|
3802
3804
|
|
3803
|
-
#: ../lib/puppet/network/http/connection.rb:
|
3805
|
+
#: ../lib/puppet/network/http/connection.rb:259
|
3804
3806
|
msgid "Received a %{status_code} response from %{server_hostname}, but the Retry-After header value of \"%{retry_after}\" could not be converted to an integer or RFC 2822 date."
|
3805
3807
|
msgstr ""
|
3806
3808
|
|
3807
|
-
#: ../lib/puppet/network/http/connection.rb:
|
3809
|
+
#: ../lib/puppet/network/http/connection.rb:270
|
3808
3810
|
msgid "Received a %{status_code} response from %{server_hostname}. Sleeping for %{retry_sleep} seconds before retrying the request."
|
3809
3811
|
msgstr ""
|
3810
3812
|
|
3811
|
-
#: ../lib/puppet/network/http/connection.rb:
|
3813
|
+
#: ../lib/puppet/network/http/connection.rb:332
|
3812
3814
|
msgid "request %{uri} interrupted after %{elapsed} seconds"
|
3813
3815
|
msgstr ""
|
3814
3816
|
|
3817
|
+
#: ../lib/puppet/network/http/connection.rb:334
|
3818
|
+
msgid "request %{uri} timed out after %{elapsed} seconds"
|
3819
|
+
msgstr ""
|
3820
|
+
|
3821
|
+
#: ../lib/puppet/network/http/connection.rb:336
|
3822
|
+
msgid "request %{uri} failed: %{msg}"
|
3823
|
+
msgstr ""
|
3824
|
+
|
3815
3825
|
#: ../lib/puppet/network/http/error.rb:23
|
3816
3826
|
msgid "Not Acceptable: %{message}"
|
3817
3827
|
msgstr ""
|
@@ -3872,6 +3882,16 @@ msgstr ""
|
|
3872
3882
|
msgid "Missing required Accept header"
|
3873
3883
|
msgstr ""
|
3874
3884
|
|
3885
|
+
#. TRANSLATORS 'ssl_context' is an argument and should not be translated
|
3886
|
+
#: ../lib/puppet/network/http_pool.rb:79
|
3887
|
+
msgid "An ssl_context is required when connecting to 'https://%{host}:%{port}'"
|
3888
|
+
msgstr ""
|
3889
|
+
|
3890
|
+
#. TRANSLATORS 'ssl_context' is an argument and should not be translated
|
3891
|
+
#: ../lib/puppet/network/http_pool.rb:87
|
3892
|
+
msgid "An ssl_context is unnecessary when connecting to 'http://%{host}:%{port}' and will be ignored"
|
3893
|
+
msgstr ""
|
3894
|
+
|
3875
3895
|
#: ../lib/puppet/network/rights.rb:58
|
3876
3896
|
msgid "Forbidden request: %{msg}"
|
3877
3897
|
msgstr ""
|
@@ -5532,6 +5552,14 @@ msgstr ""
|
|
5532
5552
|
msgid "Gem not found '%{gem_name}'"
|
5533
5553
|
msgstr ""
|
5534
5554
|
|
5555
|
+
#: ../lib/puppet/pops/loader/generic_plan_instantiator.rb:10
|
5556
|
+
msgid "Found multiple files for plan '%{plan_name}' but only one is allowed"
|
5557
|
+
msgstr ""
|
5558
|
+
|
5559
|
+
#: ../lib/puppet/pops/loader/generic_plan_instantiator.rb:20
|
5560
|
+
msgid "No instantiator is available to load plan from %{source_ref}"
|
5561
|
+
msgstr ""
|
5562
|
+
|
5535
5563
|
#. TRANSLATORS 'loadables' is a variable containing loadable modules and should not be translated
|
5536
5564
|
#: ../lib/puppet/pops/loader/module_loaders.rb:139
|
5537
5565
|
msgid "given loadables are not of supported loadable kind"
|
@@ -6395,14 +6423,19 @@ msgstr ""
|
|
6395
6423
|
msgid "Failed to set group to '%{should}': %{detail}"
|
6396
6424
|
msgstr ""
|
6397
6425
|
|
6398
|
-
#: ../lib/puppet/provider/file/posix.rb:131 ../lib/puppet/provider/file/windows.rb:
|
6426
|
+
#: ../lib/puppet/provider/file/posix.rb:131 ../lib/puppet/provider/file/windows.rb:78
|
6399
6427
|
msgid "failed to set mode %{mode} on %{path}: %{message}"
|
6400
6428
|
msgstr ""
|
6401
6429
|
|
6402
|
-
#: ../lib/puppet/provider/file/windows.rb:
|
6430
|
+
#: ../lib/puppet/provider/file/windows.rb:87
|
6403
6431
|
msgid "Can only manage owner, group, and mode on filesystems that support Windows ACLs, such as NTFS"
|
6404
6432
|
msgstr ""
|
6405
6433
|
|
6434
|
+
#. TRANSLATORS 'SYSTEM' is a Windows name and should not be translated
|
6435
|
+
#: ../lib/puppet/provider/file/windows.rb:129
|
6436
|
+
msgid "%{resource_name}: %{mode_part_type} set to SYSTEM. SYSTEM permissions cannot be set below FullControl ('7')"
|
6437
|
+
msgstr ""
|
6438
|
+
|
6406
6439
|
#: ../lib/puppet/provider/group/aix.rb:47
|
6407
6440
|
msgid "No AIX group exists with a group name or gid of %{group}!"
|
6408
6441
|
msgstr ""
|
@@ -6514,7 +6547,7 @@ msgstr ""
|
|
6514
6547
|
msgid "Could not list installed Packages: %{detail}"
|
6515
6548
|
msgstr ""
|
6516
6549
|
|
6517
|
-
#: ../lib/puppet/provider/package/aix.rb:139 ../lib/puppet/provider/package/yum.rb:
|
6550
|
+
#: ../lib/puppet/provider/package/aix.rb:139 ../lib/puppet/provider/package/yum.rb:247
|
6518
6551
|
msgid "Tried to get latest on a missing package"
|
6519
6552
|
msgstr ""
|
6520
6553
|
|
@@ -6546,7 +6579,7 @@ msgstr ""
|
|
6546
6579
|
msgid "No responsefile specified or non existent, not preseeding anything"
|
6547
6580
|
msgstr ""
|
6548
6581
|
|
6549
|
-
#: ../lib/puppet/provider/package/aptitude.rb:21 ../lib/puppet/provider/package/ports.rb:20 ../lib/puppet/provider/package/portupgrade.rb:93 ../lib/puppet/provider/package/portupgrade.rb:151 ../lib/puppet/provider/package/rug.rb:28 ../lib/puppet/provider/package/up2date.rb:17 ../lib/puppet/provider/package/yum.rb:
|
6582
|
+
#: ../lib/puppet/provider/package/aptitude.rb:21 ../lib/puppet/provider/package/ports.rb:20 ../lib/puppet/provider/package/portupgrade.rb:93 ../lib/puppet/provider/package/portupgrade.rb:151 ../lib/puppet/provider/package/rug.rb:28 ../lib/puppet/provider/package/up2date.rb:17 ../lib/puppet/provider/package/yum.rb:228 ../lib/puppet/provider/package/zypper.rb:109
|
6550
6583
|
msgid "Could not find package %{name}"
|
6551
6584
|
msgstr ""
|
6552
6585
|
|
@@ -6680,75 +6713,75 @@ msgstr ""
|
|
6680
6713
|
msgid "%{version} is not available for this package"
|
6681
6714
|
msgstr ""
|
6682
6715
|
|
6683
|
-
#: ../lib/puppet/provider/package/pacman.rb:
|
6716
|
+
#: ../lib/puppet/provider/package/pacman.rb:48
|
6684
6717
|
msgid "Could not find package '%{name}'"
|
6685
6718
|
msgstr ""
|
6686
6719
|
|
6687
|
-
#: ../lib/puppet/provider/package/pacman.rb:
|
6720
|
+
#: ../lib/puppet/provider/package/pacman.rb:84
|
6688
6721
|
msgid "Failed to match line '%{line}'"
|
6689
6722
|
msgstr ""
|
6690
6723
|
|
6691
|
-
#: ../lib/puppet/provider/package/pacman.rb:
|
6724
|
+
#: ../lib/puppet/provider/package/pacman.rb:90
|
6692
6725
|
msgid "Error getting installed packages"
|
6693
6726
|
msgstr ""
|
6694
6727
|
|
6695
|
-
#: ../lib/puppet/provider/package/pacman.rb:
|
6728
|
+
#: ../lib/puppet/provider/package/pacman.rb:175
|
6696
6729
|
msgid "%{resource_name} is a group, but allow_virtual is false."
|
6697
6730
|
msgstr ""
|
6698
6731
|
|
6699
|
-
#: ../lib/puppet/provider/package/pacman.rb:
|
6732
|
+
#: ../lib/puppet/provider/package/pacman.rb:202
|
6700
6733
|
msgid "Refusing to uninstall package group %{resource_name}, because allow_virtual is false."
|
6701
6734
|
msgstr ""
|
6702
6735
|
|
6703
|
-
#: ../lib/puppet/provider/package/pacman.rb:
|
6736
|
+
#: ../lib/puppet/provider/package/pacman.rb:232
|
6704
6737
|
msgid "Invalid source '%{source}': %{detail}"
|
6705
6738
|
msgstr ""
|
6706
6739
|
|
6707
|
-
#: ../lib/puppet/provider/package/pacman.rb:
|
6740
|
+
#: ../lib/puppet/provider/package/pacman.rb:241
|
6708
6741
|
msgid "puppet:// URL is not supported by pacman"
|
6709
6742
|
msgstr ""
|
6710
6743
|
|
6711
|
-
#: ../lib/puppet/provider/package/pacman.rb:
|
6744
|
+
#: ../lib/puppet/provider/package/pacman.rb:243
|
6712
6745
|
msgid "Source %{source} is not supported by pacman"
|
6713
6746
|
msgstr ""
|
6714
6747
|
|
6715
|
-
#: ../lib/puppet/provider/package/pacman.rb:
|
6748
|
+
#: ../lib/puppet/provider/package/pacman.rb:253
|
6716
6749
|
msgid "Refusing to install package group %{resource_name}, because allow_virtual is false."
|
6717
6750
|
msgstr ""
|
6718
6751
|
|
6719
|
-
#: ../lib/puppet/provider/package/pkg.rb:
|
6752
|
+
#: ../lib/puppet/provider/package/pkg.rb:53 ../lib/puppet/provider/package/pkg.rb:63
|
6720
6753
|
msgid "Unknown format %{resource_name}: %{full_flags}[%{bad_flag}]"
|
6721
6754
|
msgstr ""
|
6722
6755
|
|
6723
|
-
#: ../lib/puppet/provider/package/pkg.rb:
|
6756
|
+
#: ../lib/puppet/provider/package/pkg.rb:94
|
6724
6757
|
msgid "Unknown format %{resource_name}: %{state}"
|
6725
6758
|
msgstr ""
|
6726
6759
|
|
6727
|
-
#: ../lib/puppet/provider/package/pkg.rb:
|
6760
|
+
#: ../lib/puppet/provider/package/pkg.rb:113
|
6728
6761
|
msgid "Unknown line format %{resource_name}: %{parse_line}"
|
6729
6762
|
msgstr ""
|
6730
6763
|
|
6731
|
-
#: ../lib/puppet/provider/package/pkg.rb:
|
6764
|
+
#: ../lib/puppet/provider/package/pkg.rb:123
|
6732
6765
|
msgid "Unable to unfreeze %{package}"
|
6733
6766
|
msgstr ""
|
6734
6767
|
|
6735
|
-
#: ../lib/puppet/provider/package/pkg.rb:
|
6768
|
+
#: ../lib/puppet/provider/package/pkg.rb:158
|
6736
6769
|
msgid "Implicit version %{should} has %{n} possible matches"
|
6737
6770
|
msgstr ""
|
6738
6771
|
|
6739
|
-
#: ../lib/puppet/provider/package/pkg.rb:
|
6772
|
+
#: ../lib/puppet/provider/package/pkg.rb:170
|
6740
6773
|
msgid "Selecting version '%{version}' for implicit '%{should}'"
|
6741
6774
|
msgstr ""
|
6742
6775
|
|
6743
|
-
#: ../lib/puppet/provider/package/pkg.rb:
|
6776
|
+
#: ../lib/puppet/provider/package/pkg.rb:175
|
6744
6777
|
msgid "No version of %{name} matching %{should} is installable, even though the package is currently installed"
|
6745
6778
|
msgstr ""
|
6746
6779
|
|
6747
|
-
#: ../lib/puppet/provider/package/pkg.rb:
|
6780
|
+
#: ../lib/puppet/provider/package/pkg.rb:194
|
6748
6781
|
msgid "pkg warning: %{warnings}"
|
6749
6782
|
msgstr ""
|
6750
6783
|
|
6751
|
-
#: ../lib/puppet/provider/package/pkg.rb:
|
6784
|
+
#: ../lib/puppet/provider/package/pkg.rb:235 ../lib/puppet/provider/package/pkg.rb:255
|
6752
6785
|
msgid "Unable to update %{package}"
|
6753
6786
|
msgstr ""
|
6754
6787
|
|
@@ -6784,11 +6817,11 @@ msgstr ""
|
|
6784
6817
|
msgid "Package not in pkgutil catalog: %{package}"
|
6785
6818
|
msgstr ""
|
6786
6819
|
|
6787
|
-
#: ../lib/puppet/provider/package/portage.rb:
|
6820
|
+
#: ../lib/puppet/provider/package/portage.rb:225
|
6788
6821
|
msgid "No package found with the specified name [%{name}]"
|
6789
6822
|
msgstr ""
|
6790
6823
|
|
6791
|
-
#: ../lib/puppet/provider/package/portage.rb:
|
6824
|
+
#: ../lib/puppet/provider/package/portage.rb:229
|
6792
6825
|
msgid "More than one package with the specified name [%{search_value}], please use the category parameter to disambiguate"
|
6793
6826
|
msgstr ""
|
6794
6827
|
|
@@ -6808,11 +6841,11 @@ msgstr ""
|
|
6808
6841
|
msgid "portversion.latest() - fatal error with portversion: %{output}"
|
6809
6842
|
msgstr ""
|
6810
6843
|
|
6811
|
-
#: ../lib/puppet/provider/package/rpm.rb:
|
6844
|
+
#: ../lib/puppet/provider/package/rpm.rb:90
|
6812
6845
|
msgid "Failed to list packages"
|
6813
6846
|
msgstr ""
|
6814
6847
|
|
6815
|
-
#: ../lib/puppet/provider/package/rpm.rb:
|
6848
|
+
#: ../lib/puppet/provider/package/rpm.rb:130 ../lib/puppet/provider/package/rpm.rb:142
|
6816
6849
|
msgid "RPMs must specify a package source"
|
6817
6850
|
msgstr ""
|
6818
6851
|
|
@@ -6829,19 +6862,19 @@ msgstr ""
|
|
6829
6862
|
msgid "Package %{name} was not present after trying to install it"
|
6830
6863
|
msgstr ""
|
6831
6864
|
|
6832
|
-
#: ../lib/puppet/provider/package/windows.rb:
|
6865
|
+
#: ../lib/puppet/provider/package/windows.rb:97
|
6833
6866
|
msgid "The package %{operation}ed successfully and the system is rebooting now."
|
6834
6867
|
msgstr ""
|
6835
6868
|
|
6836
|
-
#: ../lib/puppet/provider/package/windows.rb:
|
6869
|
+
#: ../lib/puppet/provider/package/windows.rb:99
|
6837
6870
|
msgid "The package %{operation}ed successfully, but the system must be rebooted."
|
6838
6871
|
msgstr ""
|
6839
6872
|
|
6840
|
-
#: ../lib/puppet/provider/package/windows.rb:
|
6873
|
+
#: ../lib/puppet/provider/package/windows.rb:101
|
6841
6874
|
msgid "Failed to %{operation}"
|
6842
6875
|
msgstr ""
|
6843
6876
|
|
6844
|
-
#: ../lib/puppet/provider/package/windows.rb:
|
6877
|
+
#: ../lib/puppet/provider/package/windows.rb:107
|
6845
6878
|
msgid "The source parameter cannot be empty when using the Windows provider."
|
6846
6879
|
msgstr ""
|
6847
6880
|
|
@@ -6857,23 +6890,23 @@ msgstr ""
|
|
6857
6890
|
msgid "Don't know how to install '%{source}'"
|
6858
6891
|
msgstr ""
|
6859
6892
|
|
6860
|
-
#: ../lib/puppet/provider/package/yum.rb:
|
6893
|
+
#: ../lib/puppet/provider/package/yum.rb:28
|
6861
6894
|
msgid "The yum provider can only be used as root"
|
6862
6895
|
msgstr ""
|
6863
6896
|
|
6864
|
-
#: ../lib/puppet/provider/package/yum.rb:
|
6897
|
+
#: ../lib/puppet/provider/package/yum.rb:82
|
6865
6898
|
msgid "Could not check for updates, '%{cmd} check-update' exited with %{status}"
|
6866
6899
|
msgstr ""
|
6867
6900
|
|
6868
|
-
#: ../lib/puppet/provider/package/yum.rb:
|
6901
|
+
#: ../lib/puppet/provider/package/yum.rb:116
|
6869
6902
|
msgid "Failed to parse package name and architecture from '%{pkgname}'"
|
6870
6903
|
msgstr ""
|
6871
6904
|
|
6872
|
-
#: ../lib/puppet/provider/package/yum.rb:
|
6905
|
+
#: ../lib/puppet/provider/package/yum.rb:222
|
6873
6906
|
msgid "Could not find package %{wanted}"
|
6874
6907
|
msgstr ""
|
6875
6908
|
|
6876
|
-
#: ../lib/puppet/provider/package/yum.rb:
|
6909
|
+
#: ../lib/puppet/provider/package/yum.rb:233
|
6877
6910
|
msgid "Failed to update to version %{should}, got version %{version} instead"
|
6878
6911
|
msgstr ""
|
6879
6912
|
|
@@ -7048,7 +7081,7 @@ msgstr ""
|
|
7048
7081
|
msgid "You must pass a callback for non-NONE events"
|
7049
7082
|
msgstr ""
|
7050
7083
|
|
7051
|
-
#: ../lib/puppet/reports/http.rb:
|
7084
|
+
#: ../lib/puppet/reports/http.rb:35
|
7052
7085
|
msgid "Unable to submit report to %{url} [%{code}] %{message}"
|
7053
7086
|
msgstr ""
|
7054
7087
|
|
@@ -7319,15 +7352,15 @@ msgstr ""
|
|
7319
7352
|
msgid "Connection to cached server and port %{server}:%{port} failed: %{message}"
|
7320
7353
|
msgstr ""
|
7321
7354
|
|
7322
|
-
#: ../lib/puppet/rest/routes.rb:
|
7355
|
+
#: ../lib/puppet/rest/routes.rb:38
|
7323
7356
|
msgid "Downloaded certificate for %{name} from %{server}"
|
7324
7357
|
msgstr ""
|
7325
7358
|
|
7326
|
-
#: ../lib/puppet/rest/routes.rb:
|
7359
|
+
#: ../lib/puppet/rest/routes.rb:63
|
7327
7360
|
msgid "Downloaded certificate revocation list for %{name} from %{server}"
|
7328
7361
|
msgstr ""
|
7329
7362
|
|
7330
|
-
#: ../lib/puppet/rest/routes.rb:
|
7363
|
+
#: ../lib/puppet/rest/routes.rb:113
|
7331
7364
|
msgid "Downloaded existing certificate request for %{name} from %{server}"
|
7332
7365
|
msgstr ""
|
7333
7366
|
|
@@ -7531,7 +7564,7 @@ msgstr ""
|
|
7531
7564
|
msgid "%{name} has not declared what class it wraps"
|
7532
7565
|
msgstr ""
|
7533
7566
|
|
7534
|
-
#: ../lib/puppet/ssl/base.rb:32
|
7567
|
+
#: ../lib/puppet/ssl/base.rb:32 ../lib/puppet/x509/cert_provider.rb:276
|
7535
7568
|
msgid "Certname %{name} must not contain unprintable or non-ASCII characters"
|
7536
7569
|
msgstr ""
|
7537
7570
|
|
@@ -7619,15 +7652,27 @@ msgstr ""
|
|
7619
7652
|
msgid "unexpected attributes %{keys} in %{path}"
|
7620
7653
|
msgstr ""
|
7621
7654
|
|
7622
|
-
#: ../lib/puppet/ssl/
|
7655
|
+
#: ../lib/puppet/ssl/error.rb:18
|
7656
|
+
msgid "expected one of %{certnames}"
|
7657
|
+
msgstr ""
|
7658
|
+
|
7659
|
+
#: ../lib/puppet/ssl/error.rb:20
|
7660
|
+
msgid "expected %{certname}"
|
7661
|
+
msgstr ""
|
7662
|
+
|
7663
|
+
#: ../lib/puppet/ssl/error.rb:23
|
7664
|
+
msgid "Server hostname '%{host}' did not match server certificate; %{expected_certnames}"
|
7665
|
+
msgstr ""
|
7666
|
+
|
7667
|
+
#: ../lib/puppet/ssl/host.rb:164
|
7623
7668
|
msgid "No certificate to validate."
|
7624
7669
|
msgstr ""
|
7625
7670
|
|
7626
|
-
#: ../lib/puppet/ssl/host.rb:
|
7671
|
+
#: ../lib/puppet/ssl/host.rb:165
|
7627
7672
|
msgid "No private key with which to validate certificate with fingerprint: %{fingerprint}"
|
7628
7673
|
msgstr ""
|
7629
7674
|
|
7630
|
-
#: ../lib/puppet/ssl/host.rb:
|
7675
|
+
#: ../lib/puppet/ssl/host.rb:167
|
7631
7676
|
msgid ""
|
7632
7677
|
"The certificate retrieved from the master does not match the agent's private key. Did you forget to run as root?\n"
|
7633
7678
|
"Certificate fingerprint: %{fingerprint}\n"
|
@@ -7639,7 +7684,7 @@ msgid ""
|
|
7639
7684
|
" 2. puppet %{puppet_params}\n"
|
7640
7685
|
msgstr ""
|
7641
7686
|
|
7642
|
-
#: ../lib/puppet/ssl/host.rb:
|
7687
|
+
#: ../lib/puppet/ssl/host.rb:249
|
7643
7688
|
msgid ""
|
7644
7689
|
"The local CSR does not match the agent's public key.\n"
|
7645
7690
|
"CSR fingerprint: %{fingerprint}\n"
|
@@ -7651,7 +7696,7 @@ msgid ""
|
|
7651
7696
|
" 2. puppet %{puppet_params}\n"
|
7652
7697
|
msgstr ""
|
7653
7698
|
|
7654
|
-
#: ../lib/puppet/ssl/host.rb:
|
7699
|
+
#: ../lib/puppet/ssl/host.rb:265
|
7655
7700
|
msgid ""
|
7656
7701
|
"The CSR retrieved from the master does not match the agent's public key.\n"
|
7657
7702
|
"CSR fingerprint: %{fingerprint}\n"
|
@@ -7665,80 +7710,56 @@ msgid ""
|
|
7665
7710
|
" 2. puppet %{puppet_params}\n"
|
7666
7711
|
msgstr ""
|
7667
7712
|
|
7668
|
-
#: ../lib/puppet/ssl/host.rb:
|
7713
|
+
#: ../lib/puppet/ssl/host.rb:319 ../lib/puppet/ssl/host.rb:340
|
7669
7714
|
msgid "Could not request certificate: %{message}"
|
7670
7715
|
msgstr ""
|
7671
7716
|
|
7672
|
-
#: ../lib/puppet/ssl/host.rb:
|
7717
|
+
#: ../lib/puppet/ssl/host.rb:321
|
7673
7718
|
msgid "Exiting; failed to retrieve certificate and waitforcert is disabled"
|
7674
7719
|
msgstr ""
|
7675
7720
|
|
7676
|
-
#: ../lib/puppet/ssl/host.rb:
|
7721
|
+
#: ../lib/puppet/ssl/host.rb:330 ../lib/puppet/ssl/state_machine.rb:191
|
7677
7722
|
msgid "Exiting; no certificate found and waitforcert is disabled"
|
7678
7723
|
msgstr ""
|
7679
7724
|
|
7680
|
-
#: ../lib/puppet/ssl/host.rb:
|
7725
|
+
#: ../lib/puppet/ssl/host.rb:338
|
7681
7726
|
msgid "Did not receive certificate"
|
7682
7727
|
msgstr ""
|
7683
7728
|
|
7684
|
-
#: ../lib/puppet/ssl/host.rb:
|
7729
|
+
#: ../lib/puppet/ssl/host.rb:378
|
7685
7730
|
msgid "Response from the CA did not contain a valid certificate request: %{message}"
|
7686
7731
|
msgstr ""
|
7687
7732
|
|
7688
|
-
#: ../lib/puppet/ssl/host.rb:
|
7733
|
+
#: ../lib/puppet/ssl/host.rb:384
|
7689
7734
|
msgid "Could not download certificate request: %{message}"
|
7690
7735
|
msgstr ""
|
7691
7736
|
|
7692
|
-
#: ../lib/puppet/ssl/host.rb:
|
7737
|
+
#: ../lib/puppet/ssl/host.rb:411
|
7693
7738
|
msgid ""
|
7694
7739
|
"Failed attempting to load CRL from %{crl_path}! The CRL below caused the error '%{error}':\n"
|
7695
7740
|
"%{crl}"
|
7696
7741
|
msgstr ""
|
7697
7742
|
|
7698
|
-
#: ../lib/puppet/ssl/host.rb:
|
7699
|
-
msgid "The CA certificate at %{file_path} is invalid: %{message}"
|
7700
|
-
msgstr ""
|
7701
|
-
|
7702
|
-
#: ../lib/puppet/ssl/host.rb:464
|
7703
|
-
msgid "No valid PEM-encoded certificates."
|
7704
|
-
msgstr ""
|
7705
|
-
|
7706
|
-
#: ../lib/puppet/ssl/host.rb:471
|
7707
|
-
msgid "Could not parse certificate: %{message}"
|
7708
|
-
msgstr ""
|
7709
|
-
|
7710
|
-
#: ../lib/puppet/ssl/host.rb:494
|
7743
|
+
#: ../lib/puppet/ssl/host.rb:443 ../lib/puppet/ssl/state_machine.rb:91
|
7711
7744
|
msgid "Could not download CRLs: %{message}"
|
7712
7745
|
msgstr ""
|
7713
7746
|
|
7714
|
-
#: ../lib/puppet/ssl/host.rb:
|
7715
|
-
msgid "Response from the CA did not contain a valid CA certificate: %{message}"
|
7716
|
-
msgstr ""
|
7717
|
-
|
7718
|
-
#: ../lib/puppet/ssl/host.rb:516
|
7719
|
-
msgid "Could not download CA certificate: %{message}"
|
7720
|
-
msgstr ""
|
7721
|
-
|
7722
|
-
#: ../lib/puppet/ssl/host.rb:556
|
7747
|
+
#: ../lib/puppet/ssl/host.rb:473
|
7723
7748
|
msgid "The certificate at %{file_path} is invalid. Could not load."
|
7724
7749
|
msgstr ""
|
7725
7750
|
|
7726
|
-
#: ../lib/puppet/ssl/host.rb:
|
7751
|
+
#: ../lib/puppet/ssl/host.rb:494
|
7727
7752
|
msgid "Response from the CA did not contain a valid certificate for %{cert_name}."
|
7728
7753
|
msgstr ""
|
7729
7754
|
|
7730
|
-
#: ../lib/puppet/ssl/host.rb:
|
7755
|
+
#: ../lib/puppet/ssl/host.rb:498
|
7731
7756
|
msgid "No certificate for %{cert_name} on CA"
|
7732
7757
|
msgstr ""
|
7733
7758
|
|
7734
|
-
#: ../lib/puppet/ssl/host.rb:
|
7759
|
+
#: ../lib/puppet/ssl/host.rb:501
|
7735
7760
|
msgid "Could not download host certificate: %{message}"
|
7736
7761
|
msgstr ""
|
7737
7762
|
|
7738
|
-
#: ../lib/puppet/ssl/key.rb:24
|
7739
|
-
msgid "Creating a new SSL key for %{name}"
|
7740
|
-
msgstr ""
|
7741
|
-
|
7742
7763
|
#: ../lib/puppet/ssl/oids.rb:109
|
7743
7764
|
msgid "Error loading ssl custom OIDs mapping file from '%{custom_oid_file}': %{err}"
|
7744
7765
|
msgstr ""
|
@@ -7759,6 +7780,119 @@ msgstr ""
|
|
7759
7780
|
msgid "Error registering ssl custom OIDs mapping from file '%{custom_oid_file}': %{err}"
|
7760
7781
|
msgstr ""
|
7761
7782
|
|
7783
|
+
#: ../lib/puppet/ssl/ssl_provider.rb:65
|
7784
|
+
msgid "CA certs are missing"
|
7785
|
+
msgstr ""
|
7786
|
+
|
7787
|
+
#: ../lib/puppet/ssl/ssl_provider.rb:66
|
7788
|
+
msgid "CRLs are missing"
|
7789
|
+
msgstr ""
|
7790
|
+
|
7791
|
+
#: ../lib/puppet/ssl/ssl_provider.rb:67
|
7792
|
+
msgid "Private key is missing"
|
7793
|
+
msgstr ""
|
7794
|
+
|
7795
|
+
#: ../lib/puppet/ssl/ssl_provider.rb:68
|
7796
|
+
msgid "Client cert is missing"
|
7797
|
+
msgstr ""
|
7798
|
+
|
7799
|
+
#: ../lib/puppet/ssl/ssl_provider.rb:74
|
7800
|
+
msgid "Unsupported key '%{type}'"
|
7801
|
+
msgstr ""
|
7802
|
+
|
7803
|
+
#: ../lib/puppet/ssl/ssl_provider.rb:78
|
7804
|
+
msgid "The certificate for '%{name}' does not match its private key"
|
7805
|
+
msgstr ""
|
7806
|
+
|
7807
|
+
#: ../lib/puppet/ssl/ssl_provider.rb:125
|
7808
|
+
msgid "The CSR for host '%{name}' does not match the public key"
|
7809
|
+
msgstr ""
|
7810
|
+
|
7811
|
+
#: ../lib/puppet/ssl/ssl_provider.rb:189
|
7812
|
+
msgid "The issuer '%{issuer}' of certificate '%{subject}' cannot be found locally"
|
7813
|
+
msgstr ""
|
7814
|
+
|
7815
|
+
#: ../lib/puppet/ssl/ssl_provider.rb:205
|
7816
|
+
msgid "The certificate '%{subject}' is not yet valid, verify time is synchronized"
|
7817
|
+
msgstr ""
|
7818
|
+
|
7819
|
+
#: ../lib/puppet/ssl/ssl_provider.rb:207
|
7820
|
+
msgid "The certificate '%{subject}' has expired, verify time is synchronized"
|
7821
|
+
msgstr ""
|
7822
|
+
|
7823
|
+
#: ../lib/puppet/ssl/ssl_provider.rb:209
|
7824
|
+
msgid "The CRL issued by '%{issuer}' is not yet valid, verify time is synchronized"
|
7825
|
+
msgstr ""
|
7826
|
+
|
7827
|
+
#: ../lib/puppet/ssl/ssl_provider.rb:211
|
7828
|
+
msgid "The CRL issued by '%{issuer}' has expired, verify time is synchronized"
|
7829
|
+
msgstr ""
|
7830
|
+
|
7831
|
+
#: ../lib/puppet/ssl/ssl_provider.rb:213
|
7832
|
+
msgid "Invalid signature for certificate '%{subject}'"
|
7833
|
+
msgstr ""
|
7834
|
+
|
7835
|
+
#: ../lib/puppet/ssl/ssl_provider.rb:215
|
7836
|
+
msgid "Invalid signature for CRL issued by '%{issuer}'"
|
7837
|
+
msgstr ""
|
7838
|
+
|
7839
|
+
#: ../lib/puppet/ssl/ssl_provider.rb:217
|
7840
|
+
msgid "The issuer '%{issuer}' of certificate '%{subject}' is missing"
|
7841
|
+
msgstr ""
|
7842
|
+
|
7843
|
+
#: ../lib/puppet/ssl/ssl_provider.rb:220
|
7844
|
+
msgid "The CRL issued by '%{issuer}' is missing"
|
7845
|
+
msgstr ""
|
7846
|
+
|
7847
|
+
#: ../lib/puppet/ssl/ssl_provider.rb:222
|
7848
|
+
msgid "Certificate '%{subject}' is revoked"
|
7849
|
+
msgstr ""
|
7850
|
+
|
7851
|
+
#: ../lib/puppet/ssl/ssl_provider.rb:226
|
7852
|
+
msgid "Certificate '%{subject}' failed verification (%{err}): %{err_utf8}"
|
7853
|
+
msgstr ""
|
7854
|
+
|
7855
|
+
#: ../lib/puppet/ssl/state_machine.rb:52
|
7856
|
+
msgid "CA certificate is missing from the server"
|
7857
|
+
msgstr ""
|
7858
|
+
|
7859
|
+
#: ../lib/puppet/ssl/state_machine.rb:54
|
7860
|
+
msgid "Could not download CA certificate: %{message}"
|
7861
|
+
msgstr ""
|
7862
|
+
|
7863
|
+
#: ../lib/puppet/ssl/state_machine.rb:89
|
7864
|
+
msgid "CRL is missing from the server"
|
7865
|
+
msgstr ""
|
7866
|
+
|
7867
|
+
#: ../lib/puppet/ssl/state_machine.rb:147
|
7868
|
+
msgid "Failed to submit the CSR, HTTP response was %{code}"
|
7869
|
+
msgstr ""
|
7870
|
+
|
7871
|
+
#: ../lib/puppet/ssl/state_machine.rb:172
|
7872
|
+
msgid "Failed to parse certificate: %{message}"
|
7873
|
+
msgstr ""
|
7874
|
+
|
7875
|
+
#: ../lib/puppet/ssl/state_machine.rb:176
|
7876
|
+
msgid "Certificate for %{certname} has not been signed yet"
|
7877
|
+
msgstr ""
|
7878
|
+
|
7879
|
+
#: ../lib/puppet/ssl/state_machine.rb:178
|
7880
|
+
msgid "Failed to retrieve certificate for %{certname}: %{message}"
|
7881
|
+
msgstr ""
|
7882
|
+
|
7883
|
+
#: ../lib/puppet/ssl/state_machine.rb:236
|
7884
|
+
msgid "Verified client certificate '%{subject}' fingerprint %{digest}"
|
7885
|
+
msgstr ""
|
7886
|
+
|
7887
|
+
#: ../lib/puppet/ssl/state_machine.rb:238
|
7888
|
+
msgid "Verified CA certificate '%{subject}' fingerprint %{digest}"
|
7889
|
+
msgstr ""
|
7890
|
+
|
7891
|
+
#. TRANSLATORS: `error` is an untranslated message from openssl describing why a certificate in the server's chain is invalid, and `subject` is the identity/name of the failed certificate
|
7892
|
+
#: ../lib/puppet/ssl/verifier.rb:128
|
7893
|
+
msgid "certificate verify failed [%{error} for %{subject}]"
|
7894
|
+
msgstr ""
|
7895
|
+
|
7762
7896
|
#: ../lib/puppet/syntax_checkers/base64.rb:18
|
7763
7897
|
msgid "Base64 syntax checker: the text to check must be a String."
|
7764
7898
|
msgstr ""
|
@@ -8123,10 +8257,19 @@ msgstr ""
|
|
8123
8257
|
msgid "try_sleep cannot be a negative number"
|
8124
8258
|
msgstr ""
|
8125
8259
|
|
8126
|
-
|
8260
|
+
#. TRANSLATORS 'creates' is a parameter name and should not be translated
|
8261
|
+
#: ../lib/puppet/type/exec.rb:411
|
8262
|
+
msgid "Checking that 'creates' path '%{creates_path}' exists"
|
8263
|
+
msgstr ""
|
8264
|
+
|
8265
|
+
#: ../lib/puppet/type/exec.rb:456 ../lib/puppet/type/exec.rb:508
|
8127
8266
|
msgid "Check %{value} exceeded timeout"
|
8128
8267
|
msgstr ""
|
8129
8268
|
|
8269
|
+
#: ../lib/puppet/type/exec.rb:591
|
8270
|
+
msgid "'%{cmd}' won't be executed because of failed check '%{check}'"
|
8271
|
+
msgstr ""
|
8272
|
+
|
8130
8273
|
#: ../lib/puppet/type/file.rb:61
|
8131
8274
|
msgid "File paths must be fully qualified, not '%{path}'"
|
8132
8275
|
msgstr ""
|
@@ -8247,6 +8390,10 @@ msgstr ""
|
|
8247
8390
|
msgid "Ensure set to :present but file type is %{file_type} so no content will be synced"
|
8248
8391
|
msgstr ""
|
8249
8392
|
|
8393
|
+
#: ../lib/puppet/type/file/mode.rb:125
|
8394
|
+
msgid "Not managing symlink mode"
|
8395
|
+
msgstr ""
|
8396
|
+
|
8250
8397
|
#: ../lib/puppet/type/file/source.rb:135
|
8251
8398
|
msgid "No source for content was stored with the metadata"
|
8252
8399
|
msgstr ""
|
@@ -8256,15 +8403,15 @@ msgstr ""
|
|
8256
8403
|
msgid "The `source_permissions` parameter is deprecated. Explicitly set `owner`, `group`, and `mode`."
|
8257
8404
|
msgstr ""
|
8258
8405
|
|
8259
|
-
#: ../lib/puppet/type/filebucket.rb:
|
8406
|
+
#: ../lib/puppet/type/filebucket.rb:73
|
8260
8407
|
msgid "You can only have one filebucket path"
|
8261
8408
|
msgstr ""
|
8262
8409
|
|
8263
|
-
#: ../lib/puppet/type/filebucket.rb:
|
8410
|
+
#: ../lib/puppet/type/filebucket.rb:77
|
8264
8411
|
msgid "Filebucket paths must be absolute"
|
8265
8412
|
msgstr ""
|
8266
8413
|
|
8267
|
-
#: ../lib/puppet/type/filebucket.rb:
|
8414
|
+
#: ../lib/puppet/type/filebucket.rb:113
|
8268
8415
|
msgid "Could not create %{type} filebucket: %{detail}"
|
8269
8416
|
msgstr ""
|
8270
8417
|
|
@@ -8441,31 +8588,31 @@ msgstr ""
|
|
8441
8588
|
msgid "Profile names must be provided as an array, not a comma-separated list"
|
8442
8589
|
msgstr ""
|
8443
8590
|
|
8444
|
-
#: ../lib/puppet/type/user.rb:
|
8591
|
+
#: ../lib/puppet/type/user.rb:688
|
8445
8592
|
msgid "Ssh_authorized_key type is not available. Cannot purge SSH keys."
|
8446
8593
|
msgstr ""
|
8447
8594
|
|
8448
|
-
#: ../lib/puppet/type/user.rb:
|
8595
|
+
#: ../lib/puppet/type/user.rb:726
|
8449
8596
|
msgid "Each entry for purge_ssh_keys must be a string, not a %{klass}"
|
8450
8597
|
msgstr ""
|
8451
8598
|
|
8452
|
-
#: ../lib/puppet/type/user.rb:
|
8599
|
+
#: ../lib/puppet/type/user.rb:729
|
8453
8600
|
msgid "Paths to keyfiles must be absolute, not %{entry}"
|
8454
8601
|
msgstr ""
|
8455
8602
|
|
8456
|
-
#: ../lib/puppet/type/user.rb:
|
8603
|
+
#: ../lib/puppet/type/user.rb:733
|
8457
8604
|
msgid "purge_ssh_keys must be true, false, or an array of file names, not %{value}"
|
8458
8605
|
msgstr ""
|
8459
8606
|
|
8460
|
-
#: ../lib/puppet/type/user.rb:
|
8607
|
+
#: ../lib/puppet/type/user.rb:745
|
8461
8608
|
msgid "purge_ssh_keys can only be true for users with a defined home directory"
|
8462
8609
|
msgstr ""
|
8463
8610
|
|
8464
|
-
#: ../lib/puppet/type/user.rb:
|
8611
|
+
#: ../lib/puppet/type/user.rb:752
|
8465
8612
|
msgid "purge_ssh_keys value '%{value}' meta character ~ or %{home_placeholder} only allowed for users with a defined home directory"
|
8466
8613
|
msgstr ""
|
8467
8614
|
|
8468
|
-
#: ../lib/puppet/type/user.rb:
|
8615
|
+
#: ../lib/puppet/type/user.rb:767
|
8469
8616
|
msgid "Class name must be provided."
|
8470
8617
|
msgstr ""
|
8471
8618
|
|
@@ -8536,10 +8683,6 @@ msgstr ""
|
|
8536
8683
|
msgid "replace_file default_mode: %{default_mode} is invalid"
|
8537
8684
|
msgstr ""
|
8538
8685
|
|
8539
|
-
#: ../lib/puppet/util.rb:642
|
8540
|
-
msgid "Is a directory: %{directory}"
|
8541
|
-
msgstr ""
|
8542
|
-
|
8543
8686
|
#: ../lib/puppet/util/at_fork.rb:22
|
8544
8687
|
msgid "Failed to load Solaris implementation of the Puppet::Util::AtFork handler. Child process contract management will be unavailable, which means that agent runs executed by the puppet agent service will be killed when they attempt to restart the service."
|
8545
8688
|
msgstr ""
|
@@ -8837,16 +8980,20 @@ msgstr ""
|
|
8837
8980
|
msgid "Waiting for output; will sleep %{time_to_sleep} seconds"
|
8838
8981
|
msgstr ""
|
8839
8982
|
|
8840
|
-
#: ../lib/puppet/util/feature.rb:
|
8983
|
+
#: ../lib/puppet/util/feature.rb:91
|
8841
8984
|
msgid "Failed to load feature test for %{name}: %{detail}"
|
8842
8985
|
msgstr ""
|
8843
8986
|
|
8844
|
-
#: ../lib/puppet/util/feature.rb:
|
8987
|
+
#: ../lib/puppet/util/feature.rb:107
|
8845
8988
|
msgid "Libraries must be passed as strings not %{klass}"
|
8846
8989
|
msgstr ""
|
8847
8990
|
|
8848
|
-
#: ../lib/puppet/util/feature.rb:
|
8849
|
-
msgid "
|
8991
|
+
#: ../lib/puppet/util/feature.rb:117
|
8992
|
+
msgid "Could not find library '%{lib}' required to enable feature '%{name}'"
|
8993
|
+
msgstr ""
|
8994
|
+
|
8995
|
+
#: ../lib/puppet/util/feature.rb:121
|
8996
|
+
msgid "Exception occurred while loading library '%{lib}' required to enable feature '%{name}': %{detail}"
|
8850
8997
|
msgstr ""
|
8851
8998
|
|
8852
8999
|
#: ../lib/puppet/util/fileparsing.rb:43
|
@@ -8941,7 +9088,7 @@ msgstr ""
|
|
8941
9088
|
msgid "Could not write crontab for %{path}: %{detail}"
|
8942
9089
|
msgstr ""
|
8943
9090
|
|
8944
|
-
#: ../lib/puppet/util/http_proxy.rb:
|
9091
|
+
#: ../lib/puppet/util/http_proxy.rb:206
|
8945
9092
|
msgid "Too many HTTP redirections for %{uri}"
|
8946
9093
|
msgstr ""
|
8947
9094
|
|
@@ -9225,18 +9372,6 @@ msgstr ""
|
|
9225
9372
|
msgid "Sleeping for %{time} seconds (splay is enabled)"
|
9226
9373
|
msgstr ""
|
9227
9374
|
|
9228
|
-
#: ../lib/puppet/util/ssl.rb:81
|
9229
|
-
msgid "expected one of %{certnames}"
|
9230
|
-
msgstr ""
|
9231
|
-
|
9232
|
-
#: ../lib/puppet/util/ssl.rb:83
|
9233
|
-
msgid "expected %{certname}"
|
9234
|
-
msgstr ""
|
9235
|
-
|
9236
|
-
#: ../lib/puppet/util/ssl.rb:86
|
9237
|
-
msgid "Server hostname '%{host}' did not match server certificate; %{expected_certnames}"
|
9238
|
-
msgstr ""
|
9239
|
-
|
9240
9375
|
#: ../lib/puppet/util/storage.rb:53
|
9241
9376
|
msgid "Checksumfile %{filename} is not a file, ignoring"
|
9242
9377
|
msgstr ""
|
@@ -9514,52 +9649,72 @@ msgid "Failed to get volume information"
|
|
9514
9649
|
msgstr ""
|
9515
9650
|
|
9516
9651
|
#. TRANSLATORS 'SYSTEM' is a Windows name and should not be translated
|
9517
|
-
#: ../lib/puppet/util/windows/security.rb:
|
9652
|
+
#: ../lib/puppet/util/windows/security.rb:337
|
9653
|
+
msgid "Setting control rights for %{path} owner SYSTEM to less than Full Control rights. Setting SYSTEM rights to less than Full Control may have unintented consequences for operations on this file"
|
9654
|
+
msgstr ""
|
9655
|
+
|
9656
|
+
#. TRANSLATORS 'SYSTEM' is a Windows name and should not be translated
|
9657
|
+
#: ../lib/puppet/util/windows/security.rb:340
|
9658
|
+
msgid "%{path} owner and group both set to user SYSTEM, but group is not managed directly: SYSTEM user rights will be set to FullControl by group"
|
9659
|
+
msgstr ""
|
9660
|
+
|
9661
|
+
#. TRANSLATORS 'SYSTEM' is a Windows name and should not be translated
|
9662
|
+
#: ../lib/puppet/util/windows/security.rb:343
|
9518
9663
|
msgid "An attempt to set mode %{mode} on item %{path} would result in the owner, SYSTEM, to have less than Full Control rights. This attempt has been corrected to Full Control"
|
9519
9664
|
msgstr ""
|
9520
9665
|
|
9521
9666
|
#. TRANSLATORS 'SYSTEM' is a Windows name and should not be translated
|
9522
|
-
#: ../lib/puppet/util/windows/security.rb:
|
9667
|
+
#: ../lib/puppet/util/windows/security.rb:353
|
9668
|
+
msgid "Setting control rights for %{path} group SYSTEM to less than Full Control rights. Setting SYSTEM rights to less than Full Control may have unintented consequences for operations on this file"
|
9669
|
+
msgstr ""
|
9670
|
+
|
9671
|
+
#. TRANSLATORS 'SYSTEM' is a Windows name and should not be translated
|
9672
|
+
#: ../lib/puppet/util/windows/security.rb:356
|
9673
|
+
msgid "%{path} owner and group both set to user SYSTEM, but owner is not managed directly: SYSTEM user rights will be set to FullControl by owner"
|
9674
|
+
msgstr ""
|
9675
|
+
|
9676
|
+
#. TRANSLATORS 'SYSTEM' is a Windows name and should not be translated
|
9677
|
+
#: ../lib/puppet/util/windows/security.rb:359
|
9523
9678
|
msgid "An attempt to set mode %{mode} on item %{path} would result in the group, SYSTEM, to have less than Full Control rights. This attempt has been corrected to Full Control"
|
9524
9679
|
msgstr ""
|
9525
9680
|
|
9526
|
-
#: ../lib/puppet/util/windows/security.rb:
|
9681
|
+
#: ../lib/puppet/util/windows/security.rb:430 ../lib/puppet/util/windows/security.rb:447 ../lib/puppet/util/windows/sid.rb:154 ../lib/puppet/util/windows/sid.rb:216 ../lib/puppet/util/windows/user.rb:43
|
9527
9682
|
msgid "Invalid SID"
|
9528
9683
|
msgstr ""
|
9529
9684
|
|
9530
|
-
#: ../lib/puppet/util/windows/security.rb:
|
9685
|
+
#: ../lib/puppet/util/windows/security.rb:434 ../lib/puppet/util/windows/security.rb:451
|
9531
9686
|
msgid "Failed to add access control entry"
|
9532
9687
|
msgstr ""
|
9533
9688
|
|
9534
|
-
#: ../lib/puppet/util/windows/security.rb:
|
9689
|
+
#: ../lib/puppet/util/windows/security.rb:462 ../lib/puppet/util/windows/security.rb:644
|
9535
9690
|
msgid "Invalid DACL"
|
9536
9691
|
msgstr ""
|
9537
9692
|
|
9538
|
-
#: ../lib/puppet/util/windows/security.rb:
|
9693
|
+
#: ../lib/puppet/util/windows/security.rb:485
|
9539
9694
|
msgid "Unsupported access control entry type: 0x%{type}"
|
9540
9695
|
msgstr ""
|
9541
9696
|
|
9542
|
-
#: ../lib/puppet/util/windows/security.rb:
|
9697
|
+
#: ../lib/puppet/util/windows/security.rb:519
|
9543
9698
|
msgid "Failed to open '%{path}'"
|
9544
9699
|
msgstr ""
|
9545
9700
|
|
9546
|
-
#: ../lib/puppet/util/windows/security.rb:
|
9701
|
+
#: ../lib/puppet/util/windows/security.rb:566
|
9547
9702
|
msgid "Failed to adjust process privileges"
|
9548
9703
|
msgstr ""
|
9549
9704
|
|
9550
|
-
#: ../lib/puppet/util/windows/security.rb:
|
9705
|
+
#: ../lib/puppet/util/windows/security.rb:596
|
9551
9706
|
msgid "Failed to get security information"
|
9552
9707
|
msgstr ""
|
9553
9708
|
|
9554
|
-
#: ../lib/puppet/util/windows/security.rb:
|
9709
|
+
#: ../lib/puppet/util/windows/security.rb:607
|
9555
9710
|
msgid "Failed to get security descriptor control"
|
9556
9711
|
msgstr ""
|
9557
9712
|
|
9558
|
-
#: ../lib/puppet/util/windows/security.rb:
|
9713
|
+
#: ../lib/puppet/util/windows/security.rb:640
|
9559
9714
|
msgid "Failed to initialize ACL"
|
9560
9715
|
msgstr ""
|
9561
9716
|
|
9562
|
-
#: ../lib/puppet/util/windows/security.rb:
|
9717
|
+
#: ../lib/puppet/util/windows/security.rb:679
|
9563
9718
|
msgid "Failed to set security information"
|
9564
9719
|
msgstr ""
|
9565
9720
|
|
@@ -9714,3 +9869,73 @@ msgstr ""
|
|
9714
9869
|
#: ../lib/puppet/util/yaml.rb:47
|
9715
9870
|
msgid "Puppet::Util::Yaml.load_file is deprecated. Use safe_load_file instead."
|
9716
9871
|
msgstr ""
|
9872
|
+
|
9873
|
+
#: ../lib/puppet/x509/cert_provider.rb:34
|
9874
|
+
msgid "Failed to save CA certificates to '%{capath}'"
|
9875
|
+
msgstr ""
|
9876
|
+
|
9877
|
+
#: ../lib/puppet/x509/cert_provider.rb:47
|
9878
|
+
msgid "The CA certificates are missing from '%{path}'"
|
9879
|
+
msgstr ""
|
9880
|
+
|
9881
|
+
#: ../lib/puppet/x509/cert_provider.rb:51
|
9882
|
+
msgid "Failed to load CA certificates from '%{capath}'"
|
9883
|
+
msgstr ""
|
9884
|
+
|
9885
|
+
#. TRANSLATORS 'PEM' is an acronym and shouldn't be translated
|
9886
|
+
#: ../lib/puppet/x509/cert_provider.rb:62
|
9887
|
+
msgid "Failed to parse CA certificates as PEM"
|
9888
|
+
msgstr ""
|
9889
|
+
|
9890
|
+
#: ../lib/puppet/x509/cert_provider.rb:77
|
9891
|
+
msgid "Failed to save CRLs to '%{crlpath}'"
|
9892
|
+
msgstr ""
|
9893
|
+
|
9894
|
+
#: ../lib/puppet/x509/cert_provider.rb:90
|
9895
|
+
msgid "The CRL is missing from '%{path}'"
|
9896
|
+
msgstr ""
|
9897
|
+
|
9898
|
+
#: ../lib/puppet/x509/cert_provider.rb:94
|
9899
|
+
msgid "Failed to load CRLs from '%{crlpath}'"
|
9900
|
+
msgstr ""
|
9901
|
+
|
9902
|
+
#. TRANSLATORS 'PEM' is an acronym and shouldn't be translated
|
9903
|
+
#: ../lib/puppet/x509/cert_provider.rb:105
|
9904
|
+
msgid "Failed to parse CRLs as PEM"
|
9905
|
+
msgstr ""
|
9906
|
+
|
9907
|
+
#: ../lib/puppet/x509/cert_provider.rb:123
|
9908
|
+
msgid "Failed to save private key for '%{name}'"
|
9909
|
+
msgstr ""
|
9910
|
+
|
9911
|
+
#: ../lib/puppet/x509/cert_provider.rb:139
|
9912
|
+
msgid "The private key is missing from '%{path}'"
|
9913
|
+
msgstr ""
|
9914
|
+
|
9915
|
+
#: ../lib/puppet/x509/cert_provider.rb:143
|
9916
|
+
msgid "Failed to load private key for '%{name}'"
|
9917
|
+
msgstr ""
|
9918
|
+
|
9919
|
+
#: ../lib/puppet/x509/cert_provider.rb:169
|
9920
|
+
msgid "Failed to save client certificate for '%{name}'"
|
9921
|
+
msgstr ""
|
9922
|
+
|
9923
|
+
#: ../lib/puppet/x509/cert_provider.rb:184
|
9924
|
+
msgid "The client certificate is missing from '%{path}'"
|
9925
|
+
msgstr ""
|
9926
|
+
|
9927
|
+
#: ../lib/puppet/x509/cert_provider.rb:188
|
9928
|
+
msgid "Failed to load client certificate for '%{name}'"
|
9929
|
+
msgstr ""
|
9930
|
+
|
9931
|
+
#: ../lib/puppet/x509/cert_provider.rb:234
|
9932
|
+
msgid "Failed to save certificate request for '%{name}'"
|
9933
|
+
msgstr ""
|
9934
|
+
|
9935
|
+
#: ../lib/puppet/x509/cert_provider.rb:249
|
9936
|
+
msgid "Failed to load certificate request for '%{name}'"
|
9937
|
+
msgstr ""
|
9938
|
+
|
9939
|
+
#: ../lib/puppet/x509/cert_provider.rb:260
|
9940
|
+
msgid "Failed to delete certificate request for '%{name}'"
|
9941
|
+
msgstr ""
|