puppet 6.13.0 → 6.14.0
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/CONTRIBUTING.md +7 -13
- data/Gemfile.lock +6 -6
- data/README.md +15 -22
- data/lib/puppet.rb +1 -1
- data/lib/puppet/application/agent.rb +9 -11
- data/lib/puppet/application/describe.rb +7 -5
- data/lib/puppet/application/device.rb +2 -2
- data/lib/puppet/application/filebucket.rb +14 -1
- data/lib/puppet/application/ssl.rb +1 -1
- data/lib/puppet/configurer.rb +30 -41
- data/lib/puppet/configurer/plugin_handler.rb +10 -1
- data/lib/puppet/defaults.rb +7 -1
- data/lib/puppet/face/plugin.rb +1 -1
- data/lib/puppet/functions/eyaml_lookup_key.rb +13 -8
- data/lib/puppet/http.rb +1 -0
- data/lib/puppet/http/client.rb +69 -34
- data/lib/puppet/http/resolver/server_list.rb +2 -2
- data/lib/puppet/http/resolver/settings.rb +1 -1
- data/lib/puppet/http/resolver/srv.rb +1 -1
- data/lib/puppet/http/response.rb +6 -1
- data/lib/puppet/http/service.rb +30 -11
- data/lib/puppet/http/service/ca.rb +8 -8
- data/lib/puppet/http/service/compiler.rb +41 -10
- data/lib/puppet/http/service/file_server.rb +40 -20
- data/lib/puppet/http/service/report.rb +12 -15
- data/lib/puppet/http/session.rb +39 -1
- data/lib/puppet/indirector/catalog/rest.rb +33 -0
- data/lib/puppet/indirector/facts/rest.rb +41 -0
- data/lib/puppet/indirector/file_content/rest.rb +30 -0
- data/lib/puppet/indirector/file_metadata/rest.rb +50 -0
- data/lib/puppet/indirector/node/rest.rb +23 -0
- data/lib/puppet/indirector/report/rest.rb +19 -0
- data/lib/puppet/indirector/rest.rb +6 -0
- data/lib/puppet/indirector/status/rest.rb +17 -0
- data/lib/puppet/loaders.rb +6 -0
- data/lib/puppet/network/http/base_pool.rb +1 -1
- data/lib/puppet/network/http/pool.rb +6 -1
- data/lib/puppet/provider/group/groupadd.rb +9 -4
- data/lib/puppet/runtime.rb +8 -1
- data/lib/puppet/settings.rb +2 -0
- data/lib/puppet/settings/http_extra_headers_setting.rb +25 -0
- data/lib/puppet/ssl/state_machine.rb +4 -0
- data/lib/puppet/test/test_helper.rb +3 -1
- data/lib/puppet/type/file.rb +13 -0
- data/lib/puppet/type/file/source.rb +47 -58
- data/lib/puppet/version.rb +1 -1
- data/locales/puppet.pot +167 -160
- data/man/man5/puppet.conf.5 +11 -3
- data/man/man8/puppet-agent.8 +6 -6
- 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 +2 -2
- 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 +17 -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 +2 -2
- data/man/man8/puppet-status.8 +1 -1
- data/man/man8/puppet.8 +2 -2
- data/spec/fixtures/vcr/cassettes/Puppet_Type_File/when_sourcing/from_http/using_md5/should_fetch_if_not_on_the_local_disk.yml +1 -67
- data/spec/fixtures/vcr/cassettes/Puppet_Type_File/when_sourcing/from_http/using_md5/should_not_update_if_content_on_disk_is_up-to-date.yml +1 -69
- data/spec/fixtures/vcr/cassettes/Puppet_Type_File/when_sourcing/from_http/using_md5/should_update_if_content_differs_on_disk.yml +1 -69
- data/spec/fixtures/vcr/cassettes/Puppet_Type_File/when_sourcing/from_http/using_mtime/should_fetch_if_mtime_is_older_on_disk.yml +1 -67
- data/spec/fixtures/vcr/cassettes/Puppet_Type_File/when_sourcing/from_http/using_mtime/should_fetch_if_no_header_specified.yml +1 -65
- data/spec/fixtures/vcr/cassettes/Puppet_Type_File/when_sourcing/from_http/using_mtime/should_fetch_if_not_on_the_local_disk.yml +1 -67
- data/spec/fixtures/vcr/cassettes/Puppet_Type_File/when_sourcing/from_http/using_mtime/should_not_update_if_mtime_is_newer_on_disk.yml +1 -67
- data/spec/integration/faces/plugin_spec.rb +3 -1
- data/spec/integration/http/client_spec.rb +11 -0
- data/spec/integration/network/http_pool_spec.rb +9 -1
- data/spec/unit/application/describe_spec.rb +88 -50
- data/spec/unit/configurer/plugin_handler_spec.rb +36 -19
- data/spec/unit/configurer_spec.rb +16 -14
- data/spec/unit/face/plugin_spec.rb +12 -10
- data/spec/unit/functions/lookup_spec.rb +13 -0
- data/spec/unit/http/client_spec.rb +172 -1
- data/spec/unit/http/resolver_spec.rb +14 -2
- data/spec/unit/http/response_spec.rb +69 -0
- data/spec/unit/http/service/ca_spec.rb +28 -9
- data/spec/unit/http/service/compiler_spec.rb +151 -24
- data/spec/unit/http/service/file_server_spec.rb +65 -8
- data/spec/unit/http/service/report_spec.rb +17 -8
- data/spec/unit/http/service_spec.rb +92 -3
- data/spec/unit/http/session_spec.rb +104 -1
- data/spec/unit/indirector/catalog/rest_spec.rb +59 -2
- data/spec/unit/indirector/facts/rest_spec.rb +79 -24
- data/spec/unit/indirector/file_content/rest_spec.rb +53 -2
- data/spec/unit/indirector/file_metadata/rest_spec.rb +109 -2
- data/spec/unit/indirector/node/rest_spec.rb +57 -2
- data/spec/unit/indirector/report/rest_spec.rb +58 -51
- data/spec/unit/indirector/resource/ral_spec.rb +7 -8
- data/spec/unit/indirector/status/rest_spec.rb +43 -2
- data/spec/unit/network/http/pool_spec.rb +57 -11
- data/spec/unit/provider/group/groupadd_spec.rb +22 -8
- data/spec/unit/settings/autosign_setting_spec.rb +1 -1
- data/spec/unit/settings/http_extra_headers_spec.rb +64 -0
- data/spec/unit/ssl/state_machine_spec.rb +10 -0
- data/spec/unit/transaction_spec.rb +0 -2
- data/spec/unit/type/file/ensure_spec.rb +1 -2
- data/spec/unit/type/file/source_spec.rb +86 -35
- data/spec/unit/util/at_fork_spec.rb +1 -0
- data/spec/unit/util/pidlock_spec.rb +36 -24
- metadata +7 -3
- data/COMMITTERS.md +0 -244
data/lib/puppet/version.rb
CHANGED
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.13.0-112-g38edbcd2f7\n"
|
10
10
|
"\n"
|
11
11
|
"Report-Msgid-Bugs-To: https://tickets.puppetlabs.com\n"
|
12
|
-
"POT-Creation-Date: 2020-
|
13
|
-
"PO-Revision-Date: 2020-
|
12
|
+
"POT-Creation-Date: 2020-03-04 18:34+0000\n"
|
13
|
+
"PO-Revision-Date: 2020-03-04 18:34+0000\n"
|
14
14
|
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
15
15
|
"Language-Team: LANGUAGE <LL@li.org>\n"
|
16
16
|
"Language: \n"
|
@@ -48,21 +48,21 @@ msgstr ""
|
|
48
48
|
msgid "Config file %{hiera_config} not found, using Hiera defaults"
|
49
49
|
msgstr ""
|
50
50
|
|
51
|
-
#: ../lib/puppet.rb:
|
51
|
+
#: ../lib/puppet.rb:141
|
52
52
|
msgid "Support for ruby version %{version} is deprecated and will be removed in a future release. See https://puppet.com/docs/puppet/latest/system_requirements.html for a list of supported ruby versions."
|
53
53
|
msgstr ""
|
54
54
|
|
55
|
-
#: ../lib/puppet.rb:
|
55
|
+
#: ../lib/puppet.rb:203
|
56
56
|
msgid "The environmentpath setting cannot be empty or nil."
|
57
57
|
msgstr ""
|
58
58
|
|
59
59
|
#. TRANSLATORS: `message` is an already translated string of why SSL failed to initialize
|
60
|
-
#: ../lib/puppet.rb:
|
60
|
+
#: ../lib/puppet.rb:233
|
61
61
|
msgid "Failed to initialize SSL: %{message}"
|
62
62
|
msgstr ""
|
63
63
|
|
64
64
|
#. TRANSLATORS: `puppet agent -t` is a command and should not be translated
|
65
|
-
#: ../lib/puppet.rb:
|
65
|
+
#: ../lib/puppet.rb:235
|
66
66
|
msgid "Run `puppet agent -t`"
|
67
67
|
msgstr ""
|
68
68
|
|
@@ -182,19 +182,19 @@ msgstr ""
|
|
182
182
|
msgid "The puppet agent daemon"
|
183
183
|
msgstr ""
|
184
184
|
|
185
|
-
#: ../lib/puppet/application/agent.rb:
|
185
|
+
#: ../lib/puppet/application/agent.rb:397
|
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:
|
189
|
+
#: ../lib/puppet/application/agent.rb:402
|
190
190
|
msgid "Failed to generate fingerprint: %{message}"
|
191
191
|
msgstr ""
|
192
192
|
|
193
|
-
#: ../lib/puppet/application/agent.rb:
|
193
|
+
#: ../lib/puppet/application/agent.rb:425
|
194
194
|
msgid "Starting Puppet client version %{version}"
|
195
195
|
msgstr ""
|
196
196
|
|
197
|
-
#: ../lib/puppet/application/agent.rb:
|
197
|
+
#: ../lib/puppet/application/agent.rb:441
|
198
198
|
msgid "The puppet agent command does not take parameters"
|
199
199
|
msgstr ""
|
200
200
|
|
@@ -240,7 +240,7 @@ msgstr ""
|
|
240
240
|
msgid "Manage certificates and requests (Disabled)"
|
241
241
|
msgstr ""
|
242
242
|
|
243
|
-
#: ../lib/puppet/application/describe.rb:
|
243
|
+
#: ../lib/puppet/application/describe.rb:177
|
244
244
|
msgid "Display help about resource types"
|
245
245
|
msgstr ""
|
246
246
|
|
@@ -354,38 +354,38 @@ msgstr ""
|
|
354
354
|
msgid "Store and retrieve files in a filebucket"
|
355
355
|
msgstr ""
|
356
356
|
|
357
|
-
#: ../lib/puppet/application/filebucket.rb:
|
357
|
+
#: ../lib/puppet/application/filebucket.rb:221
|
358
358
|
msgid "You must specify a file to back up"
|
359
359
|
msgstr ""
|
360
360
|
|
361
|
-
#: ../lib/puppet/application/filebucket.rb:
|
361
|
+
#: ../lib/puppet/application/filebucket.rb:225
|
362
362
|
msgid "%{file}: no such file"
|
363
363
|
msgstr ""
|
364
364
|
|
365
|
-
#: ../lib/puppet/application/filebucket.rb:
|
365
|
+
#: ../lib/puppet/application/filebucket.rb:229
|
366
366
|
msgid "%{file}: cannot read file"
|
367
367
|
msgstr ""
|
368
368
|
|
369
|
-
#: ../lib/puppet/application/filebucket.rb:
|
369
|
+
#: ../lib/puppet/application/filebucket.rb:251 ../lib/puppet/application/filebucket.rb:274
|
370
370
|
msgid "Need exactly two arguments: filebucket diff <file_a> <file_b>"
|
371
371
|
msgstr ""
|
372
372
|
|
373
|
-
#: ../lib/puppet/application/filebucket.rb:
|
373
|
+
#: ../lib/puppet/application/filebucket.rb:271
|
374
374
|
msgid "Comparing %{checksum_a} %{checksum_b} %{file_a} %{file_b}"
|
375
375
|
msgstr ""
|
376
376
|
|
377
|
-
#: ../lib/puppet/application/filebucket.rb:
|
377
|
+
#: ../lib/puppet/application/filebucket.rb:285
|
378
378
|
msgid "Cancelling"
|
379
379
|
msgstr ""
|
380
380
|
|
381
381
|
#. TRANSLATORS 'server_list' is the name of a setting and should not be translated
|
382
|
-
#: ../lib/puppet/application/filebucket.rb:
|
382
|
+
#: ../lib/puppet/application/filebucket.rb:306
|
383
383
|
msgid "Selected server from first entry of the `server_list` setting: %{server}:%{port}"
|
384
384
|
msgstr ""
|
385
385
|
|
386
386
|
#. TRANSLATORS 'server' is the name of a setting and should not be translated
|
387
387
|
#. TRANSLATORS 'server' is the name of a setting and should not be translated
|
388
|
-
#: ../lib/puppet/application/filebucket.rb:
|
388
|
+
#: ../lib/puppet/application/filebucket.rb:313 ../lib/puppet/indirector/request.rb:218
|
389
389
|
msgid "Selected server from the `server` setting: %{server}"
|
390
390
|
msgstr ""
|
391
391
|
|
@@ -523,118 +523,113 @@ msgstr ""
|
|
523
523
|
msgid "Removed %{label} %{path}"
|
524
524
|
msgstr ""
|
525
525
|
|
526
|
-
#: ../lib/puppet/configurer.rb:
|
526
|
+
#: ../lib/puppet/configurer.rb:21
|
527
527
|
msgid "Puppet configuration client"
|
528
528
|
msgstr ""
|
529
529
|
|
530
|
-
#: ../lib/puppet/configurer.rb:
|
530
|
+
#: ../lib/puppet/configurer.rb:44
|
531
531
|
msgid "Removing corrupt state file %{file}: %{detail}"
|
532
532
|
msgstr ""
|
533
533
|
|
534
|
-
#: ../lib/puppet/configurer.rb:
|
534
|
+
#: ../lib/puppet/configurer.rb:49
|
535
535
|
msgid "Cannot remove %{file}: %{detail}"
|
536
536
|
msgstr ""
|
537
537
|
|
538
|
-
#: ../lib/puppet/configurer.rb:
|
538
|
+
#: ../lib/puppet/configurer.rb:72
|
539
539
|
msgid "Using cached catalog from environment '%{environment}'"
|
540
540
|
msgstr ""
|
541
541
|
|
542
|
-
#: ../lib/puppet/configurer.rb:
|
542
|
+
#: ../lib/puppet/configurer.rb:78
|
543
543
|
msgid "Not using cache on failed catalog"
|
544
544
|
msgstr ""
|
545
545
|
|
546
|
-
#: ../lib/puppet/configurer.rb:
|
546
|
+
#: ../lib/puppet/configurer.rb:87
|
547
547
|
msgid "Not using cached catalog because its environment '%{catalog_env}' does not match '%{local_env}'"
|
548
548
|
msgstr ""
|
549
549
|
|
550
|
-
#: ../lib/puppet/configurer.rb:
|
550
|
+
#: ../lib/puppet/configurer.rb:92 ../lib/puppet/configurer.rb:174
|
551
551
|
msgid "Using cached catalog from environment '%{catalog_env}'"
|
552
552
|
msgstr ""
|
553
553
|
|
554
|
-
#: ../lib/puppet/configurer.rb:
|
554
|
+
#: ../lib/puppet/configurer.rb:167
|
555
555
|
msgid "Could not retrieve catalog; skipping run"
|
556
556
|
msgstr ""
|
557
557
|
|
558
|
-
#: ../lib/puppet/configurer.rb:
|
558
|
+
#: ../lib/puppet/configurer.rb:183
|
559
559
|
msgid "Applied catalog in %{seconds} seconds"
|
560
560
|
msgstr ""
|
561
561
|
|
562
|
-
#: ../lib/puppet/configurer.rb:
|
562
|
+
#: ../lib/puppet/configurer.rb:219 ../lib/puppet/http/resolver/server_list.rb:19
|
563
563
|
msgid "Could not select a functional puppet master from server_list: '%{server_list}'"
|
564
564
|
msgstr ""
|
565
565
|
|
566
|
-
|
567
|
-
#: ../lib/puppet/configurer.rb:228
|
568
|
-
msgid "Selected puppet server from the `server_list` setting: %{server}:%{port}"
|
569
|
-
msgstr ""
|
570
|
-
|
571
|
-
#: ../lib/puppet/configurer.rb:260
|
566
|
+
#: ../lib/puppet/configurer.rb:252
|
572
567
|
msgid "Local environment: '%{local_env}' doesn't match the environment of the cached catalog '%{catalog_env}', switching agent to '%{catalog_env}'."
|
573
568
|
msgstr ""
|
574
569
|
|
575
|
-
#: ../lib/puppet/configurer.rb:
|
570
|
+
#: ../lib/puppet/configurer.rb:297
|
576
571
|
msgid "Local environment: '%{local_env}' doesn't match server specified node environment '%{node_env}', switching agent to '%{node_env}'."
|
577
572
|
msgstr ""
|
578
573
|
|
579
|
-
#: ../lib/puppet/configurer.rb:
|
574
|
+
#: ../lib/puppet/configurer.rb:303
|
580
575
|
msgid "Using configured environment '%{env}'"
|
581
576
|
msgstr ""
|
582
577
|
|
583
|
-
#: ../lib/puppet/configurer.rb:
|
578
|
+
#: ../lib/puppet/configurer.rb:307
|
584
579
|
msgid "Unable to fetch my node definition, but the agent run will continue:"
|
585
580
|
msgstr ""
|
586
581
|
|
587
|
-
#: ../lib/puppet/configurer.rb:
|
582
|
+
#: ../lib/puppet/configurer.rb:336
|
588
583
|
msgid "Not using catalog because its environment '%{catalog_env}' does not match agent specified environment '%{local_env}' and strict_environment_mode is set"
|
589
584
|
msgstr ""
|
590
585
|
|
591
|
-
#: ../lib/puppet/configurer.rb:
|
586
|
+
#: ../lib/puppet/configurer.rb:347
|
592
587
|
msgid "Catalog environment didn't stabilize after %{tries} fetches, aborting run"
|
593
588
|
msgstr ""
|
594
589
|
|
595
|
-
#: ../lib/puppet/configurer.rb:
|
590
|
+
#: ../lib/puppet/configurer.rb:349
|
596
591
|
msgid "Local environment: '%{local_env}' doesn't match server specified environment '%{catalog_env}', restarting agent run with environment '%{catalog_env}'"
|
597
592
|
msgstr ""
|
598
593
|
|
599
|
-
#: ../lib/puppet/configurer.rb:
|
594
|
+
#: ../lib/puppet/configurer.rb:390
|
600
595
|
msgid "Failed to apply catalog: %{detail}"
|
601
596
|
msgstr ""
|
602
597
|
|
603
|
-
#: ../lib/puppet/configurer.rb:
|
598
|
+
#: ../lib/puppet/configurer.rb:419 ../lib/puppet/http/resolver/server_list.rb:29
|
604
599
|
msgid "Puppet server %{host}:%{port} is unavailable: %{code} %{reason}"
|
605
600
|
msgstr ""
|
606
601
|
|
607
602
|
#. TRANSLATORS 'server_list' is the name of a setting and should not be translated
|
608
603
|
#. TRANSLATORS 'server_list' is the name of a setting and should not be translated
|
609
|
-
#: ../lib/puppet/configurer.rb:
|
604
|
+
#: ../lib/puppet/configurer.rb:423 ../lib/puppet/http/resolver/server_list.rb:35
|
610
605
|
msgid "Unable to connect to server from server_list setting: %{detail}"
|
611
606
|
msgstr ""
|
612
607
|
|
613
|
-
#: ../lib/puppet/configurer.rb:
|
608
|
+
#: ../lib/puppet/configurer.rb:434 ../lib/puppet/face/report.rb:47
|
614
609
|
msgid "Could not send report: %{detail}"
|
615
610
|
msgstr ""
|
616
611
|
|
617
|
-
#: ../lib/puppet/configurer.rb:
|
612
|
+
#: ../lib/puppet/configurer.rb:443
|
618
613
|
msgid "Could not save last run local report: %{detail}"
|
619
614
|
msgstr ""
|
620
615
|
|
621
|
-
#: ../lib/puppet/configurer.rb:
|
616
|
+
#: ../lib/puppet/configurer.rb:462
|
622
617
|
msgid "Uploading facts for %{node} to %{server}"
|
623
618
|
msgstr ""
|
624
619
|
|
625
|
-
#: ../lib/puppet/configurer.rb:
|
620
|
+
#: ../lib/puppet/configurer.rb:470
|
626
621
|
msgid "Failed to submit facts: %{detail}"
|
627
622
|
msgstr ""
|
628
623
|
|
629
|
-
#: ../lib/puppet/configurer.rb:
|
624
|
+
#: ../lib/puppet/configurer.rb:485
|
630
625
|
msgid "Could not run command from %{setting}: %{detail}"
|
631
626
|
msgstr ""
|
632
627
|
|
633
|
-
#: ../lib/puppet/configurer.rb:
|
628
|
+
#: ../lib/puppet/configurer.rb:503
|
634
629
|
msgid "Could not retrieve catalog from cache: %{detail}"
|
635
630
|
msgstr ""
|
636
631
|
|
637
|
-
#: ../lib/puppet/configurer.rb:
|
632
|
+
#: ../lib/puppet/configurer.rb:524
|
638
633
|
msgid "Could not retrieve catalog from remote server: %{detail}"
|
639
634
|
msgstr ""
|
640
635
|
|
@@ -698,38 +693,38 @@ msgstr ""
|
|
698
693
|
msgid "a data type can only have one implementation"
|
699
694
|
msgstr ""
|
700
695
|
|
701
|
-
#: ../lib/puppet/defaults.rb:
|
696
|
+
#: ../lib/puppet/defaults.rb:175
|
702
697
|
msgid "Cannot disable unrecognized warning types '%{invalid}'."
|
703
698
|
msgstr ""
|
704
699
|
|
705
|
-
#: ../lib/puppet/defaults.rb:
|
700
|
+
#: ../lib/puppet/defaults.rb:176
|
706
701
|
msgid "Valid values are '%{values}'."
|
707
702
|
msgstr ""
|
708
703
|
|
709
704
|
#. TRANSLATORS 'data_binding_terminus' is a setting and should not be translated
|
710
|
-
#: ../lib/puppet/defaults.rb:
|
705
|
+
#: ../lib/puppet/defaults.rb:544
|
711
706
|
msgid "Setting 'data_binding_terminus' is deprecated."
|
712
707
|
msgstr ""
|
713
708
|
|
714
709
|
#. TRANSLATORS 'hiera' should not be translated
|
715
|
-
#: ../lib/puppet/defaults.rb:
|
710
|
+
#: ../lib/puppet/defaults.rb:546
|
716
711
|
msgid "Convert custom terminus to hiera 5 API."
|
717
712
|
msgstr ""
|
718
713
|
|
719
714
|
#. TRANSLATORS 'environment_data_provider' is a setting and should not be translated
|
720
|
-
#: ../lib/puppet/defaults.rb:
|
715
|
+
#: ../lib/puppet/defaults.rb:736
|
721
716
|
msgid "Setting 'environment_data_provider' is deprecated."
|
722
717
|
msgstr ""
|
723
718
|
|
724
|
-
#: ../lib/puppet/defaults.rb:
|
719
|
+
#: ../lib/puppet/defaults.rb:817
|
725
720
|
msgid "Certificate names must be lower case"
|
726
721
|
msgstr ""
|
727
722
|
|
728
|
-
#: ../lib/puppet/defaults.rb:
|
723
|
+
#: ../lib/puppet/defaults.rb:1002
|
729
724
|
msgid "Setting 'ssl_client_ca_auth' is deprecated."
|
730
725
|
msgstr ""
|
731
726
|
|
732
|
-
#: ../lib/puppet/defaults.rb:
|
727
|
+
#: ../lib/puppet/defaults.rb:1081 ../lib/puppet/settings/enum_setting.rb:13 ../lib/puppet/settings/symbolic_enum_setting.rb:14
|
733
728
|
msgid "Invalid value '%{value}' for parameter %{name}. Allowed values are '%{allowed_values}'"
|
734
729
|
msgstr ""
|
735
730
|
|
@@ -1782,7 +1777,7 @@ msgstr ""
|
|
1782
1777
|
msgid "Is a directory: %{directory}"
|
1783
1778
|
msgstr ""
|
1784
1779
|
|
1785
|
-
#: ../lib/puppet/file_system/memory_impl.rb:
|
1780
|
+
#: ../lib/puppet/file_system/memory_impl.rb:81
|
1786
1781
|
msgid "Unable to find registered object for %{path}"
|
1787
1782
|
msgstr ""
|
1788
1783
|
|
@@ -2075,6 +2070,10 @@ msgstr ""
|
|
2075
2070
|
msgid "Unable to parse %{message}"
|
2076
2071
|
msgstr ""
|
2077
2072
|
|
2073
|
+
#: ../lib/puppet/functions/eyaml_lookup_key.rb:93
|
2074
|
+
msgid "hiera-eyaml backend error decrypting %{data} when looking up %{key} in %{path}. Error was %{message}"
|
2075
|
+
msgstr ""
|
2076
|
+
|
2078
2077
|
#: ../lib/puppet/functions/floor.rb:27
|
2079
2078
|
msgid "The floor() function's auto conversion of String to Float is deprecated - change to convert input before calling"
|
2080
2079
|
msgstr ""
|
@@ -2222,27 +2221,27 @@ msgstr ""
|
|
2222
2221
|
msgid "Try the '--graph' option and opening the resulting '.dot' file in OmniGraffle or GraphViz"
|
2223
2222
|
msgstr ""
|
2224
2223
|
|
2225
|
-
#: ../lib/puppet/http/client.rb:
|
2224
|
+
#: ../lib/puppet/http/client.rb:39
|
2226
2225
|
msgid "Request to %{uri} timed out connect operation after %{elapsed} seconds"
|
2227
2226
|
msgstr ""
|
2228
2227
|
|
2229
|
-
#: ../lib/puppet/http/client.rb:
|
2228
|
+
#: ../lib/puppet/http/client.rb:41
|
2230
2229
|
msgid "Request to %{uri} timed out read operation after %{elapsed} seconds"
|
2231
2230
|
msgstr ""
|
2232
2231
|
|
2233
|
-
#: ../lib/puppet/http/client.rb:
|
2232
|
+
#: ../lib/puppet/http/client.rb:43
|
2234
2233
|
msgid "Request to %{uri} interrupted after %{elapsed} seconds"
|
2235
2234
|
msgstr ""
|
2236
2235
|
|
2237
|
-
#: ../lib/puppet/http/client.rb:
|
2236
|
+
#: ../lib/puppet/http/client.rb:49
|
2238
2237
|
msgid "Request to %{uri} failed after %{elapsed} seconds: %{message}"
|
2239
2238
|
msgstr ""
|
2240
2239
|
|
2241
|
-
#: ../lib/puppet/http/client.rb:
|
2240
|
+
#: ../lib/puppet/http/client.rb:171
|
2242
2241
|
msgid "Sleeping for %{interval} seconds before retrying the request"
|
2243
2242
|
msgstr ""
|
2244
2243
|
|
2245
|
-
#: ../lib/puppet/http/client.rb:
|
2244
|
+
#: ../lib/puppet/http/client.rb:214 ../lib/puppet/indirector/request.rb:142
|
2246
2245
|
msgid "HTTP REST queries cannot handle values of type '%{klass}'"
|
2247
2246
|
msgstr ""
|
2248
2247
|
|
@@ -2266,12 +2265,20 @@ msgstr ""
|
|
2266
2265
|
msgid "Failed to parse Retry-After header '%{retry_after}' as an integer or RFC 2822 date"
|
2267
2266
|
msgstr ""
|
2268
2267
|
|
2269
|
-
#: ../lib/puppet/http/service.rb:
|
2268
|
+
#: ../lib/puppet/http/service.rb:53
|
2269
|
+
msgid "Ignoring extra header \"%{name}\" as it was previously set."
|
2270
|
+
msgstr ""
|
2271
|
+
|
2272
|
+
#: ../lib/puppet/http/service.rb:56
|
2273
|
+
msgid "Ignoring extra header \"%{name}\" as it has no value."
|
2274
|
+
msgstr ""
|
2275
|
+
|
2276
|
+
#: ../lib/puppet/http/service.rb:82 ../lib/puppet/indirector/rest.rb:282
|
2270
2277
|
msgid "No content type in http response; cannot parse"
|
2271
2278
|
msgstr ""
|
2272
2279
|
|
2273
2280
|
#. TRANSLATORS "pson", "preferred_serialization_format", and "puppetserver" should not be translated
|
2274
|
-
#: ../lib/puppet/http/service/report.rb:
|
2281
|
+
#: ../lib/puppet/http/service/report.rb:28
|
2275
2282
|
msgid "To submit reports to a server running puppetserver %{server_version}, set preferred_serialization_format to pson"
|
2276
2283
|
msgstr ""
|
2277
2284
|
|
@@ -2283,124 +2290,124 @@ msgstr ""
|
|
2283
2290
|
msgid "Already handling indirection for %{current}; cannot also handle %{next}"
|
2284
2291
|
msgstr ""
|
2285
2292
|
|
2286
|
-
#: ../lib/puppet/indirector/catalog/compiler.rb:
|
2293
|
+
#: ../lib/puppet/indirector/catalog/compiler.rb:26
|
2287
2294
|
msgid "Facts but no fact format provided for %{request}"
|
2288
2295
|
msgstr ""
|
2289
2296
|
|
2290
|
-
#: ../lib/puppet/indirector/catalog/compiler.rb:
|
2297
|
+
#: ../lib/puppet/indirector/catalog/compiler.rb:29
|
2291
2298
|
msgid "Found facts"
|
2292
2299
|
msgstr ""
|
2293
2300
|
|
2294
|
-
#: ../lib/puppet/indirector/catalog/compiler.rb:
|
2301
|
+
#: ../lib/puppet/indirector/catalog/compiler.rb:34
|
2295
2302
|
msgid "Catalog for %{request} was requested with fact definition for the wrong node (%{fact_name})."
|
2296
2303
|
msgstr ""
|
2297
2304
|
|
2298
|
-
#: ../lib/puppet/indirector/catalog/compiler.rb:
|
2305
|
+
#: ../lib/puppet/indirector/catalog/compiler.rb:71
|
2299
2306
|
msgid "Setup server facts for compiling"
|
2300
2307
|
msgstr ""
|
2301
2308
|
|
2302
|
-
#: ../lib/puppet/indirector/catalog/compiler.rb:
|
2309
|
+
#: ../lib/puppet/indirector/catalog/compiler.rb:95
|
2303
2310
|
msgid "Unsupported facts format"
|
2304
2311
|
msgstr ""
|
2305
2312
|
|
2306
2313
|
#. TRANSLATORS Inlining refers to adding additional metadata (in this case we are not inlining)
|
2307
|
-
#: ../lib/puppet/indirector/catalog/compiler.rb:
|
2314
|
+
#: ../lib/puppet/indirector/catalog/compiler.rb:136
|
2308
2315
|
msgid "Not inlining absent resource"
|
2309
2316
|
msgstr ""
|
2310
2317
|
|
2311
2318
|
#. TRANSLATORS Inlining refers to adding additional metadata (in this case we are not inlining)
|
2312
|
-
#: ../lib/puppet/indirector/catalog/compiler.rb:
|
2319
|
+
#: ../lib/puppet/indirector/catalog/compiler.rb:139
|
2313
2320
|
msgid "Not inlining resource without sources"
|
2314
2321
|
msgstr ""
|
2315
2322
|
|
2316
2323
|
#. TRANSLATORS Inlining refers to adding additional metadata (in this case we are not inlining)
|
2317
|
-
#: ../lib/puppet/indirector/catalog/compiler.rb:
|
2324
|
+
#: ../lib/puppet/indirector/catalog/compiler.rb:142
|
2318
2325
|
msgid "Not inlining unsupported source scheme"
|
2319
2326
|
msgstr ""
|
2320
2327
|
|
2321
2328
|
#. TRANSLATORS Inlining refers to adding additional metadata (in this case we are not inlining)
|
2322
|
-
#: ../lib/puppet/indirector/catalog/compiler.rb:
|
2329
|
+
#: ../lib/puppet/indirector/catalog/compiler.rb:164
|
2323
2330
|
msgid "Not inlining file outside environment"
|
2324
2331
|
msgstr ""
|
2325
2332
|
|
2326
2333
|
#. TRANSLATORS Inlining refers to adding additional metadata
|
2327
|
-
#: ../lib/puppet/indirector/catalog/compiler.rb:
|
2334
|
+
#: ../lib/puppet/indirector/catalog/compiler.rb:170
|
2328
2335
|
msgid "Inlining file metadata"
|
2329
2336
|
msgstr ""
|
2330
2337
|
|
2331
|
-
#: ../lib/puppet/indirector/catalog/compiler.rb:
|
2338
|
+
#: ../lib/puppet/indirector/catalog/compiler.rb:259
|
2332
2339
|
msgid "Could not get metadata for %{resource}"
|
2333
2340
|
msgstr ""
|
2334
2341
|
|
2335
|
-
#: ../lib/puppet/indirector/catalog/compiler.rb:
|
2342
|
+
#: ../lib/puppet/indirector/catalog/compiler.rb:280
|
2336
2343
|
msgid "Unable to find a common checksum type between agent '%{agent_type}' and master '%{master_type}'."
|
2337
2344
|
msgstr ""
|
2338
2345
|
|
2339
|
-
#: ../lib/puppet/indirector/catalog/compiler.rb:
|
2346
|
+
#: ../lib/puppet/indirector/catalog/compiler.rb:287
|
2340
2347
|
msgid "Compiled static catalog for %{node} in environment %{environment} in %%{seconds} seconds"
|
2341
2348
|
msgstr ""
|
2342
2349
|
|
2343
|
-
#: ../lib/puppet/indirector/catalog/compiler.rb:
|
2350
|
+
#: ../lib/puppet/indirector/catalog/compiler.rb:288
|
2344
2351
|
msgid "Compiled static catalog for %{node} in environment %{environment}"
|
2345
2352
|
msgstr ""
|
2346
2353
|
|
2347
|
-
#: ../lib/puppet/indirector/catalog/compiler.rb:
|
2354
|
+
#: ../lib/puppet/indirector/catalog/compiler.rb:290
|
2348
2355
|
msgid "Compiled static catalog for %{node} in %%{seconds} seconds"
|
2349
2356
|
msgstr ""
|
2350
2357
|
|
2351
|
-
#: ../lib/puppet/indirector/catalog/compiler.rb:
|
2358
|
+
#: ../lib/puppet/indirector/catalog/compiler.rb:291
|
2352
2359
|
msgid "Compiled static catalog for %{node}"
|
2353
2360
|
msgstr ""
|
2354
2361
|
|
2355
|
-
#: ../lib/puppet/indirector/catalog/compiler.rb:
|
2362
|
+
#: ../lib/puppet/indirector/catalog/compiler.rb:296
|
2356
2363
|
msgid "Compiled catalog for %{node} in environment %{environment} in %%{seconds} seconds"
|
2357
2364
|
msgstr ""
|
2358
2365
|
|
2359
|
-
#: ../lib/puppet/indirector/catalog/compiler.rb:
|
2366
|
+
#: ../lib/puppet/indirector/catalog/compiler.rb:297
|
2360
2367
|
msgid "Compiled catalog for %{node} in environment %{environment}"
|
2361
2368
|
msgstr ""
|
2362
2369
|
|
2363
|
-
#: ../lib/puppet/indirector/catalog/compiler.rb:
|
2370
|
+
#: ../lib/puppet/indirector/catalog/compiler.rb:299
|
2364
2371
|
msgid "Compiled catalog for %{node} in %%{seconds} seconds"
|
2365
2372
|
msgstr ""
|
2366
2373
|
|
2367
|
-
#: ../lib/puppet/indirector/catalog/compiler.rb:
|
2374
|
+
#: ../lib/puppet/indirector/catalog/compiler.rb:300
|
2368
2375
|
msgid "Compiled catalog for %{node}"
|
2369
2376
|
msgstr ""
|
2370
2377
|
|
2371
2378
|
#. TRANSLATORS Inlined refers to adding additional metadata
|
2372
|
-
#: ../lib/puppet/indirector/catalog/compiler.rb:
|
2379
|
+
#: ../lib/puppet/indirector/catalog/compiler.rb:322
|
2373
2380
|
msgid "Inlined resource metadata into static catalog for %{node} in environment %{environment} in %%{seconds} seconds"
|
2374
2381
|
msgstr ""
|
2375
2382
|
|
2376
2383
|
#. TRANSLATORS Inlined refers to adding additional metadata
|
2377
|
-
#: ../lib/puppet/indirector/catalog/compiler.rb:
|
2384
|
+
#: ../lib/puppet/indirector/catalog/compiler.rb:324
|
2378
2385
|
msgid "Inlined resource metadata into static catalog for %{node} in environment %{environment}"
|
2379
2386
|
msgstr ""
|
2380
2387
|
|
2381
2388
|
#. TRANSLATORS Inlined refers to adding additional metadata
|
2382
|
-
#: ../lib/puppet/indirector/catalog/compiler.rb:
|
2389
|
+
#: ../lib/puppet/indirector/catalog/compiler.rb:327
|
2383
2390
|
msgid "Inlined resource metadata into static catalog for %{node} in %%{seconds} seconds"
|
2384
2391
|
msgstr ""
|
2385
2392
|
|
2386
2393
|
#. TRANSLATORS Inlined refers to adding additional metadata
|
2387
|
-
#: ../lib/puppet/indirector/catalog/compiler.rb:
|
2394
|
+
#: ../lib/puppet/indirector/catalog/compiler.rb:329
|
2388
2395
|
msgid "Inlined resource metadata into static catalog for %{node}"
|
2389
2396
|
msgstr ""
|
2390
2397
|
|
2391
|
-
#: ../lib/puppet/indirector/catalog/compiler.rb:
|
2398
|
+
#: ../lib/puppet/indirector/catalog/compiler.rb:346
|
2392
2399
|
msgid "Found node information"
|
2393
2400
|
msgstr ""
|
2394
2401
|
|
2395
|
-
#: ../lib/puppet/indirector/catalog/compiler.rb:
|
2402
|
+
#: ../lib/puppet/indirector/catalog/compiler.rb:354
|
2396
2403
|
msgid "Failed when searching for node %{name}: %{detail}"
|
2397
2404
|
msgstr ""
|
2398
2405
|
|
2399
|
-
#: ../lib/puppet/indirector/catalog/compiler.rb:
|
2406
|
+
#: ../lib/puppet/indirector/catalog/compiler.rb:374
|
2400
2407
|
msgid "Invalid option use_node for a remote request"
|
2401
2408
|
msgstr ""
|
2402
2409
|
|
2403
|
-
#: ../lib/puppet/indirector/catalog/compiler.rb:
|
2410
|
+
#: ../lib/puppet/indirector/catalog/compiler.rb:393
|
2404
2411
|
msgid "Could not find node '%{name}'; cannot compile"
|
2405
2412
|
msgstr ""
|
2406
2413
|
|
@@ -2420,6 +2427,10 @@ msgstr ""
|
|
2420
2427
|
msgid "Unable to serialize catalog to json, retrying with pson"
|
2421
2428
|
msgstr ""
|
2422
2429
|
|
2430
|
+
#: ../lib/puppet/indirector/catalog/rest.rb:33 ../lib/puppet/indirector/facts/rest.rb:21 ../lib/puppet/indirector/file_content/rest.rb:33 ../lib/puppet/indirector/file_metadata/rest.rb:29 ../lib/puppet/indirector/node/rest.rb:24 ../lib/puppet/indirector/rest.rb:144 ../lib/puppet/indirector/status/rest.rb:20
|
2431
|
+
msgid "Find %{uri} resulted in 404 with the message: %{body}"
|
2432
|
+
msgstr ""
|
2433
|
+
|
2423
2434
|
#: ../lib/puppet/indirector/exec.rb:11
|
2424
2435
|
msgid "Exec commands must be an array"
|
2425
2436
|
msgstr ""
|
@@ -2520,7 +2531,7 @@ msgstr ""
|
|
2520
2531
|
msgid "You cannot save facts to the code store; it is only used for getting facts from a remote device"
|
2521
2532
|
msgstr ""
|
2522
2533
|
|
2523
|
-
#: ../lib/puppet/indirector/facts/rest.rb:
|
2534
|
+
#: ../lib/puppet/indirector/facts/rest.rb:29 ../lib/puppet/indirector/rest.rb:192
|
2524
2535
|
msgid "PUT does not accept options"
|
2525
2536
|
msgstr ""
|
2526
2537
|
|
@@ -2747,7 +2758,7 @@ msgstr ""
|
|
2747
2758
|
msgid "No report named '%{name}'"
|
2748
2759
|
msgstr ""
|
2749
2760
|
|
2750
|
-
#: ../lib/puppet/indirector/report/rest.rb:
|
2761
|
+
#: ../lib/puppet/indirector/report/rest.rb:36
|
2751
2762
|
msgid "Server version %{version} does not accept reports in '%{format}', use `preferred_serialization_format=pson`"
|
2752
2763
|
msgstr ""
|
2753
2764
|
|
@@ -2786,20 +2797,16 @@ msgstr ""
|
|
2786
2797
|
msgid "Resource instance does not match request key"
|
2787
2798
|
msgstr ""
|
2788
2799
|
|
2789
|
-
#: ../lib/puppet/indirector/rest.rb:
|
2790
|
-
msgid "Find %{uri} resulted in 404 with the message: %{body}"
|
2791
|
-
msgstr ""
|
2792
|
-
|
2793
|
-
#: ../lib/puppet/indirector/rest.rb:171
|
2800
|
+
#: ../lib/puppet/indirector/rest.rb:177
|
2794
2801
|
msgid "DELETE does not accept options"
|
2795
2802
|
msgstr ""
|
2796
2803
|
|
2797
2804
|
#. TRANSLATORS "PSON" should not be translated
|
2798
|
-
#: ../lib/puppet/indirector/rest.rb:
|
2805
|
+
#: ../lib/puppet/indirector/rest.rb:229
|
2799
2806
|
msgid "Downgrading to PSON for future requests"
|
2800
2807
|
msgstr ""
|
2801
2808
|
|
2802
|
-
#: ../lib/puppet/indirector/rest.rb:
|
2809
|
+
#: ../lib/puppet/indirector/rest.rb:271 ../lib/puppet/rest/response.rb:31
|
2803
2810
|
msgid "Error %{code} on SERVER: %{returned_message}"
|
2804
2811
|
msgstr ""
|
2805
2812
|
|
@@ -3930,33 +3937,33 @@ msgstr ""
|
|
3930
3937
|
msgid "Expected an instance of Puppet::SSL::Verifier but was passed a %{klass}"
|
3931
3938
|
msgstr ""
|
3932
3939
|
|
3933
|
-
#: ../lib/puppet/network/http/connection.rb:
|
3940
|
+
#: ../lib/puppet/network/http/connection.rb:229
|
3934
3941
|
msgid "Too many HTTP redirections for %{host}:%{port}"
|
3935
3942
|
msgstr ""
|
3936
3943
|
|
3937
3944
|
#. TRANSLATORS: Used in the phrase:
|
3938
3945
|
#. "Received a response from the remote server."
|
3939
|
-
#: ../lib/puppet/network/http/connection.rb:
|
3946
|
+
#: ../lib/puppet/network/http/connection.rb:259
|
3940
3947
|
msgid "the remote server"
|
3941
3948
|
msgstr ""
|
3942
3949
|
|
3943
|
-
#: ../lib/puppet/network/http/connection.rb:
|
3950
|
+
#: ../lib/puppet/network/http/connection.rb:263
|
3944
3951
|
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."
|
3945
3952
|
msgstr ""
|
3946
3953
|
|
3947
|
-
#: ../lib/puppet/network/http/connection.rb:
|
3954
|
+
#: ../lib/puppet/network/http/connection.rb:274
|
3948
3955
|
msgid "Received a %{status_code} response from %{server_hostname}. Sleeping for %{retry_sleep} seconds before retrying the request."
|
3949
3956
|
msgstr ""
|
3950
3957
|
|
3951
|
-
#: ../lib/puppet/network/http/connection.rb:
|
3958
|
+
#: ../lib/puppet/network/http/connection.rb:335
|
3952
3959
|
msgid "request %{uri} interrupted after %{elapsed} seconds"
|
3953
3960
|
msgstr ""
|
3954
3961
|
|
3955
|
-
#: ../lib/puppet/network/http/connection.rb:
|
3962
|
+
#: ../lib/puppet/network/http/connection.rb:337
|
3956
3963
|
msgid "request %{uri} timed out after %{elapsed} seconds"
|
3957
3964
|
msgstr ""
|
3958
3965
|
|
3959
|
-
#: ../lib/puppet/network/http/connection.rb:
|
3966
|
+
#: ../lib/puppet/network/http/connection.rb:339
|
3960
3967
|
msgid "request %{uri} failed: %{msg}"
|
3961
3968
|
msgstr ""
|
3962
3969
|
|
@@ -4004,7 +4011,7 @@ msgstr ""
|
|
4004
4011
|
msgid "Could not resolve %{ip}: %{detail}"
|
4005
4012
|
msgstr ""
|
4006
4013
|
|
4007
|
-
#: ../lib/puppet/network/http/pool.rb:
|
4014
|
+
#: ../lib/puppet/network/http/pool.rb:68
|
4008
4015
|
msgid "Failed to close connection for %{site}: %{detail}"
|
4009
4016
|
msgstr ""
|
4010
4017
|
|
@@ -6586,7 +6593,7 @@ msgstr ""
|
|
6586
6593
|
msgid "GID must be an integer"
|
6587
6594
|
msgstr ""
|
6588
6595
|
|
6589
|
-
#: ../lib/puppet/provider/group/groupadd.rb:
|
6596
|
+
#: ../lib/puppet/provider/group/groupadd.rb:44
|
6590
6597
|
msgid "GID %{resource} already exists, use allowdupe to force group creation"
|
6591
6598
|
msgstr ""
|
6592
6599
|
|
@@ -7530,73 +7537,73 @@ msgstr ""
|
|
7530
7537
|
msgid "Downloaded existing certificate request for %{name} from %{server}"
|
7531
7538
|
msgstr ""
|
7532
7539
|
|
7533
|
-
#: ../lib/puppet/settings.rb:
|
7540
|
+
#: ../lib/puppet/settings.rb:98
|
7534
7541
|
msgid "New environment loaders generated from the requested section."
|
7535
7542
|
msgstr ""
|
7536
7543
|
|
7537
|
-
#: ../lib/puppet/settings.rb:
|
7544
|
+
#: ../lib/puppet/settings.rb:300
|
7538
7545
|
msgid "Attempting to initialize global default settings more than once!"
|
7539
7546
|
msgstr ""
|
7540
7547
|
|
7541
|
-
#: ../lib/puppet/settings.rb:
|
7548
|
+
#: ../lib/puppet/settings.rb:500
|
7542
7549
|
msgid "Using --configprint is deprecated. Use 'puppet config <subcommand>' instead."
|
7543
7550
|
msgstr ""
|
7544
7551
|
|
7545
|
-
#: ../lib/puppet/settings.rb:
|
7552
|
+
#: ../lib/puppet/settings.rb:642
|
7546
7553
|
msgid "Could not load %{file}: %{detail}"
|
7547
7554
|
msgstr ""
|
7548
7555
|
|
7549
|
-
#: ../lib/puppet/settings.rb:
|
7556
|
+
#: ../lib/puppet/settings.rb:748
|
7550
7557
|
msgid "Invalid setting type '%{type}'"
|
7551
7558
|
msgstr ""
|
7552
7559
|
|
7553
|
-
#: ../lib/puppet/settings.rb:
|
7560
|
+
#: ../lib/puppet/settings.rb:894
|
7554
7561
|
msgid "Unknown searchpath case: %{source_type} for the %{source} settings path element."
|
7555
7562
|
msgstr ""
|
7556
7563
|
|
7557
|
-
#: ../lib/puppet/settings.rb:
|
7564
|
+
#: ../lib/puppet/settings.rb:957
|
7558
7565
|
msgid "setting definition for '%{name}' is not a hash!"
|
7559
7566
|
msgstr ""
|
7560
7567
|
|
7561
|
-
#: ../lib/puppet/settings.rb:
|
7568
|
+
#: ../lib/puppet/settings.rb:962
|
7562
7569
|
msgid "Setting %{name} is already defined"
|
7563
7570
|
msgstr ""
|
7564
7571
|
|
7565
|
-
#: ../lib/puppet/settings.rb:
|
7572
|
+
#: ../lib/puppet/settings.rb:968
|
7566
7573
|
msgid "Setting %{name} is already using short name '%{short}'"
|
7567
7574
|
msgstr ""
|
7568
7575
|
|
7569
|
-
#: ../lib/puppet/settings.rb:
|
7576
|
+
#: ../lib/puppet/settings.rb:1227
|
7570
7577
|
msgid "Setting %{name} is deprecated."
|
7571
7578
|
msgstr ""
|
7572
7579
|
|
7573
7580
|
#. TRANSLATORS 'puppet.conf' is a file name and should not be translated
|
7574
|
-
#: ../lib/puppet/settings.rb:
|
7581
|
+
#: ../lib/puppet/settings.rb:1232
|
7575
7582
|
msgid "Setting %{name} is deprecated in puppet.conf."
|
7576
7583
|
msgstr ""
|
7577
7584
|
|
7578
|
-
#: ../lib/puppet/settings.rb:
|
7585
|
+
#: ../lib/puppet/settings.rb:1403
|
7579
7586
|
msgid "Error converting value for param '%{name}': %{detail}"
|
7580
7587
|
msgstr ""
|
7581
7588
|
|
7582
|
-
#: ../lib/puppet/settings.rb:
|
7589
|
+
#: ../lib/puppet/settings.rb:1427
|
7583
7590
|
msgid "Could not find value for %{expression}"
|
7584
7591
|
msgstr ""
|
7585
7592
|
|
7586
7593
|
#. TRANSLATORS '$environment' is a Puppet specific variable and should not be translated
|
7587
|
-
#: ../lib/puppet/settings.rb:
|
7594
|
+
#: ../lib/puppet/settings.rb:1437
|
7588
7595
|
msgid "You cannot interpolate $environment within '%{setting_name}' when using directory environments."
|
7589
7596
|
msgstr ""
|
7590
7597
|
|
7591
|
-
#: ../lib/puppet/settings.rb:
|
7598
|
+
#: ../lib/puppet/settings.rb:1438
|
7592
7599
|
msgid "Its value will remain %{value}."
|
7593
7600
|
msgstr ""
|
7594
7601
|
|
7595
|
-
#: ../lib/puppet/settings.rb:
|
7602
|
+
#: ../lib/puppet/settings.rb:1469
|
7596
7603
|
msgid "Attempt to assign a value to unknown setting %{name}"
|
7597
7604
|
msgstr ""
|
7598
7605
|
|
7599
|
-
#: ../lib/puppet/settings/array_setting.rb:14
|
7606
|
+
#: ../lib/puppet/settings/array_setting.rb:14 ../lib/puppet/settings/http_extra_headers_setting.rb:21
|
7600
7607
|
msgid "Expected an Array or String, got a %{klass}"
|
7601
7608
|
msgstr ""
|
7602
7609
|
|
@@ -7710,6 +7717,10 @@ msgstr ""
|
|
7710
7717
|
msgid "The %{parameter} parameter for the setting '%{name}' must be either 'root' or 'service', not '%{value}'"
|
7711
7718
|
msgstr ""
|
7712
7719
|
|
7720
|
+
#: ../lib/puppet/settings/http_extra_headers_setting.rb:12
|
7721
|
+
msgid "Expected an Array, String, or Hash, got a %{klass}"
|
7722
|
+
msgstr ""
|
7723
|
+
|
7713
7724
|
#: ../lib/puppet/settings/priority_setting.rb:39
|
7714
7725
|
msgid "Invalid priority format '%{value}' for parameter: %{name}"
|
7715
7726
|
msgstr ""
|
@@ -8102,15 +8113,15 @@ msgstr ""
|
|
8102
8113
|
msgid "Will try again in %{time} seconds."
|
8103
8114
|
msgstr ""
|
8104
8115
|
|
8105
|
-
#: ../lib/puppet/ssl/state_machine.rb:
|
8116
|
+
#: ../lib/puppet/ssl/state_machine.rb:383
|
8106
8117
|
msgid "Verified client certificate '%{subject}' fingerprint %{digest}"
|
8107
8118
|
msgstr ""
|
8108
8119
|
|
8109
|
-
#: ../lib/puppet/ssl/state_machine.rb:
|
8120
|
+
#: ../lib/puppet/ssl/state_machine.rb:385
|
8110
8121
|
msgid "Verified CA certificate '%{subject}' fingerprint %{digest}"
|
8111
8122
|
msgstr ""
|
8112
8123
|
|
8113
|
-
#: ../lib/puppet/ssl/state_machine.rb:
|
8124
|
+
#: ../lib/puppet/ssl/state_machine.rb:425
|
8114
8125
|
msgid "Another puppet instance is already running; exiting"
|
8115
8126
|
msgstr ""
|
8116
8127
|
|
@@ -8508,86 +8519,86 @@ msgstr ""
|
|
8508
8519
|
msgid "File paths must be fully qualified, not '%{path}'"
|
8509
8520
|
msgstr ""
|
8510
8521
|
|
8511
|
-
#: ../lib/puppet/type/file.rb:
|
8522
|
+
#: ../lib/puppet/type/file.rb:142
|
8512
8523
|
msgid "Invalid backup type %{value}"
|
8513
8524
|
msgstr ""
|
8514
8525
|
|
8515
|
-
#: ../lib/puppet/type/file.rb:
|
8526
|
+
#: ../lib/puppet/type/file.rb:186 ../lib/puppet/type/tidy.rb:48
|
8516
8527
|
msgid "Invalid recurse value %{value}"
|
8517
8528
|
msgstr ""
|
8518
8529
|
|
8519
|
-
#: ../lib/puppet/type/file.rb:
|
8530
|
+
#: ../lib/puppet/type/file.rb:218
|
8520
8531
|
msgid "Invalid recurselimit value %{value}"
|
8521
8532
|
msgstr ""
|
8522
8533
|
|
8523
|
-
#: ../lib/puppet/type/file.rb:
|
8534
|
+
#: ../lib/puppet/type/file.rb:414
|
8524
8535
|
msgid "You cannot specify more than one of %{creators}"
|
8525
8536
|
msgstr ""
|
8526
8537
|
|
8527
|
-
#: ../lib/puppet/type/file.rb:
|
8538
|
+
#: ../lib/puppet/type/file.rb:416
|
8528
8539
|
msgid "You cannot specify a remote recursion without a source"
|
8529
8540
|
msgstr ""
|
8530
8541
|
|
8531
|
-
#: ../lib/puppet/type/file.rb:
|
8542
|
+
#: ../lib/puppet/type/file.rb:418
|
8532
8543
|
msgid "You cannot specify source when using checksum 'none'"
|
8533
8544
|
msgstr ""
|
8534
8545
|
|
8535
|
-
#: ../lib/puppet/type/file.rb:
|
8546
|
+
#: ../lib/puppet/type/file.rb:421
|
8536
8547
|
msgid "You cannot specify content when using checksum '%{checksum_type}'"
|
8537
8548
|
msgstr ""
|
8538
8549
|
|
8539
|
-
#: ../lib/puppet/type/file.rb:
|
8550
|
+
#: ../lib/puppet/type/file.rb:424
|
8540
8551
|
msgid "Possible error: recurselimit is set but not recurse, no recursion will happen"
|
8541
8552
|
msgstr ""
|
8542
8553
|
|
8543
|
-
#: ../lib/puppet/type/file.rb:
|
8554
|
+
#: ../lib/puppet/type/file.rb:432
|
8544
8555
|
msgid "Checksum value '%{value}' is not a valid checksum type %{checksum}"
|
8545
8556
|
msgstr ""
|
8546
8557
|
|
8547
|
-
#: ../lib/puppet/type/file.rb:
|
8558
|
+
#: ../lib/puppet/type/file.rb:435
|
8548
8559
|
msgid "Checksum value is ignored unless content or source are specified"
|
8549
8560
|
msgstr ""
|
8550
8561
|
|
8551
|
-
#: ../lib/puppet/type/file.rb:
|
8562
|
+
#: ../lib/puppet/type/file.rb:473
|
8552
8563
|
msgid "Can not find filebucket for backups without a catalog"
|
8553
8564
|
msgstr ""
|
8554
8565
|
|
8555
|
-
#: ../lib/puppet/type/file.rb:
|
8566
|
+
#: ../lib/puppet/type/file.rb:478
|
8556
8567
|
msgid "Could not find filebucket %{backup} specified in backup"
|
8557
8568
|
msgstr ""
|
8558
8569
|
|
8559
|
-
#: ../lib/puppet/type/file.rb:
|
8570
|
+
#: ../lib/puppet/type/file.rb:776
|
8560
8571
|
msgid "Could not back up file of type %{current_type}"
|
8561
8572
|
msgstr ""
|
8562
8573
|
|
8563
|
-
#: ../lib/puppet/type/file.rb:
|
8574
|
+
#: ../lib/puppet/type/file.rb:791
|
8564
8575
|
msgid "Could not remove files of type %{current_type}"
|
8565
8576
|
msgstr ""
|
8566
8577
|
|
8567
8578
|
#. TRANSLATORS "source_permissions => ignore" should not be translated
|
8568
|
-
#: ../lib/puppet/type/file.rb:
|
8579
|
+
#: ../lib/puppet/type/file.rb:802
|
8569
8580
|
msgid "Copying owner/mode/group from the source file on Windows is not supported; use source_permissions => ignore."
|
8570
8581
|
msgstr ""
|
8571
8582
|
|
8572
8583
|
#. TRANSLATORS "stat" is a program name and should not be translated
|
8573
|
-
#: ../lib/puppet/type/file.rb:
|
8584
|
+
#: ../lib/puppet/type/file.rb:883 ../lib/puppet/type/tidy.rb:352
|
8574
8585
|
msgid "Could not stat; permission denied"
|
8575
8586
|
msgstr ""
|
8576
8587
|
|
8577
|
-
#: ../lib/puppet/type/file.rb:
|
8588
|
+
#: ../lib/puppet/type/file.rb:886
|
8578
8589
|
msgid "Could not stat; invalid pathname"
|
8579
8590
|
msgstr ""
|
8580
8591
|
|
8581
|
-
#: ../lib/puppet/type/file.rb:
|
8592
|
+
#: ../lib/puppet/type/file.rb:1014
|
8582
8593
|
msgid "Not removing directory; use 'force' to override"
|
8583
8594
|
msgstr ""
|
8584
8595
|
|
8585
8596
|
#. TRANSLATORS refers to a file which could not be backed up
|
8586
|
-
#: ../lib/puppet/type/file.rb:
|
8597
|
+
#: ../lib/puppet/type/file.rb:1039
|
8587
8598
|
msgid "Could not back up; will not remove"
|
8588
8599
|
msgstr ""
|
8589
8600
|
|
8590
|
-
#: ../lib/puppet/type/file.rb:
|
8601
|
+
#: ../lib/puppet/type/file.rb:1053
|
8591
8602
|
msgid "File written to disk did not match checksum; discarding changes (%{content_checksum} vs %{newsum})"
|
8592
8603
|
msgstr ""
|
8593
8604
|
|
@@ -8628,12 +8639,8 @@ msgstr ""
|
|
8628
8639
|
msgid "Not managing symlink mode"
|
8629
8640
|
msgstr ""
|
8630
8641
|
|
8631
|
-
#: ../lib/puppet/type/file/source.rb:135
|
8632
|
-
msgid "No source for content was stored with the metadata"
|
8633
|
-
msgstr ""
|
8634
|
-
|
8635
8642
|
#. TRANSLATORS "source_permissions" is a parameter name and should not be translated
|
8636
|
-
#: ../lib/puppet/type/file/source.rb:
|
8643
|
+
#: ../lib/puppet/type/file/source.rb:351
|
8637
8644
|
msgid "The `source_permissions` parameter is deprecated. Explicitly set `owner`, `group`, and `mode`."
|
8638
8645
|
msgstr ""
|
8639
8646
|
|