puppet 6.0.4-x86-mingw32 → 6.0.5-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/Gemfile.lock +15 -15
- data/Rakefile +3 -1
- data/ext/solaris/smf/svc-puppetd +8 -1
- data/ext/solaris/smf/svc-puppetmasterd +8 -1
- data/lib/puppet/application/device.rb +48 -32
- data/lib/puppet/application/ssl.rb +31 -17
- data/lib/puppet/defaults.rb +2 -1
- data/lib/puppet/face/config.rb +1 -1
- data/lib/puppet/forge.rb +4 -1
- data/lib/puppet/pops/evaluator/collectors/abstract_collector.rb +3 -1
- data/lib/puppet/pops/model/pn_transformer.rb +5 -0
- data/lib/puppet/pops/types/p_timespan_type.rb +2 -2
- data/lib/puppet/pops/types/string_converter.rb +11 -2
- data/lib/puppet/provider/package/dnf.rb +2 -1
- data/lib/puppet/provider/package/windows/exe_package.rb +13 -0
- data/lib/puppet/provider/package/windows/msi_package.rb +8 -0
- data/lib/puppet/provider/package/windows/package.rb +9 -1
- data/lib/puppet/provider/package/yum.rb +1 -1
- data/lib/puppet/provider/parsedfile.rb +25 -4
- data/lib/puppet/provider/service/smf.rb +54 -0
- data/lib/puppet/provider/service/systemd.rb +2 -0
- data/lib/puppet/provider/service/upstart.rb +1 -0
- data/lib/puppet/rest/route.rb +1 -1
- data/lib/puppet/ssl/host.rb +23 -11
- data/lib/puppet/transaction.rb +4 -1
- data/lib/puppet/transaction/event_manager.rb +13 -1
- data/lib/puppet/transaction/resource_harness.rb +3 -1
- data/lib/puppet/util/command_line.rb +2 -3
- data/lib/puppet/util/filetype.rb +36 -4
- data/lib/puppet/util/selinux.rb +1 -1
- data/lib/puppet/util/windows/api_types.rb +1 -1
- data/lib/puppet/util/windows/registry.rb +29 -5
- data/lib/puppet/util/windows/service.rb +106 -99
- data/lib/puppet/version.rb +1 -1
- data/locales/ja/puppet.po +232 -183
- data/locales/puppet.pot +145 -117
- data/man/man5/puppet.conf.5 +3 -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 +2 -2
- data/man/man8/puppet-describe.8 +1 -1
- data/man/man8/puppet-device.8 +23 -19
- 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 +1 -1
- 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 +6 -3
- data/man/man8/puppet-status.8 +1 -1
- data/man/man8/puppet.8 +2 -2
- data/spec/fixtures/unit/provider/service/smf/svcs_fmri.out +6 -0
- data/spec/fixtures/unit/provider/service/smf/svcs_multiple_fmris.out +13 -0
- data/spec/integration/ssl/key_spec.rb +0 -4
- data/spec/integration/transaction_spec.rb +559 -0
- data/spec/integration/util/windows/registry_spec.rb +39 -0
- data/spec/unit/application/device_spec.rb +10 -7
- data/spec/unit/application/lookup_spec.rb +2 -1
- data/spec/unit/application/ssl_spec.rb +21 -2
- data/spec/unit/forge/forge_spec.rb +4 -2
- data/spec/unit/functions/logging_spec.rb +10 -3
- data/spec/unit/indirector/yaml_spec.rb +1 -1
- data/spec/unit/pops/loaders/loader_spec.rb +6 -7
- data/spec/unit/pops/model/pn_transformer_spec.rb +4 -0
- data/spec/unit/pops/types/p_timespan_type_spec.rb +22 -0
- data/spec/unit/pops/types/p_timestamp_type_spec.rb +19 -0
- data/spec/unit/pops/types/string_converter_spec.rb +20 -0
- data/spec/unit/provider/group/ldap_spec.rb +22 -25
- data/spec/unit/provider/group/pw_spec.rb +7 -10
- data/spec/unit/provider/nameservice/directoryservice_spec.rb +97 -103
- data/spec/unit/provider/package/aix_spec.rb +5 -8
- data/spec/unit/provider/package/apt_spec.rb +3 -6
- data/spec/unit/provider/package/dnf_spec.rb +36 -37
- data/spec/unit/provider/package/dpkg_spec.rb +18 -21
- data/spec/unit/provider/package/freebsd_spec.rb +4 -7
- data/spec/unit/provider/package/gem_spec.rb +41 -41
- data/spec/unit/provider/package/hpux_spec.rb +7 -10
- data/spec/unit/provider/package/macports_spec.rb +13 -15
- data/spec/unit/provider/package/nim_spec.rb +3 -10
- data/spec/unit/provider/package/openbsd_spec.rb +14 -17
- data/spec/unit/provider/package/pip3_spec.rb +3 -6
- data/spec/unit/provider/package/pip_spec.rb +45 -49
- data/spec/unit/provider/package/pkgin_spec.rb +13 -18
- data/spec/unit/provider/package/pkgng_spec.rb +21 -24
- data/spec/unit/provider/package/puppet_gem_spec.rb +6 -9
- data/spec/unit/provider/package/tdnf_spec.rb +9 -12
- data/spec/unit/provider/package/yum_spec.rb +30 -16
- data/spec/unit/provider/package/zypper_spec.rb +17 -19
- data/spec/unit/provider/service/bsd_spec.rb +7 -9
- data/spec/unit/provider/service/daemontools_spec.rb +12 -16
- data/spec/unit/provider/service/debian_spec.rb +6 -10
- data/spec/unit/provider/service/freebsd_spec.rb +2 -2
- data/spec/unit/provider/service/openbsd_spec.rb +13 -17
- data/spec/unit/provider/service/rcng_spec.rb +2 -4
- data/spec/unit/provider/service/redhat_spec.rb +12 -11
- data/spec/unit/provider/service/runit_spec.rb +7 -14
- data/spec/unit/provider/service/smf_spec.rb +77 -13
- data/spec/unit/provider/service/src_spec.rb +11 -16
- data/spec/unit/provider/service/systemd_spec.rb +18 -0
- data/spec/unit/provider/user/hpux_spec.rb +3 -5
- data/spec/unit/provider/user/ldap_spec.rb +29 -32
- data/spec/unit/provider/user/pw_spec.rb +10 -13
- data/spec/unit/rest/route_spec.rb +1 -1
- data/spec/unit/ssl/host_spec.rb +21 -0
- data/spec/unit/ssl/key_spec.rb +2 -4
- data/spec/unit/transaction/event_manager_spec.rb +12 -1
- data/spec/unit/transaction/resource_harness_spec.rb +18 -0
- data/spec/unit/transaction_spec.rb +25 -0
- data/spec/unit/util/filetype_spec.rb +13 -5
- data/spec/unit/util/logging_spec.rb +0 -41
- data/spec/unit/util/monkey_patches_spec.rb +18 -5
- data/spec/unit/util/selinux_spec.rb +4 -0
- metadata +8 -2
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.0.
|
9
|
+
"Project-Id-Version: Puppet automation framework 6.0.4-147-ge097be0\n"
|
10
10
|
"\n"
|
11
11
|
"Report-Msgid-Bugs-To: https://tickets.puppetlabs.com\n"
|
12
|
-
"POT-Creation-Date: 2018-
|
13
|
-
"PO-Revision-Date: 2018-
|
12
|
+
"POT-Creation-Date: 2018-12-11 23:05+0000\n"
|
13
|
+
"PO-Revision-Date: 2018-12-11 23:05+0000\n"
|
14
14
|
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
15
15
|
"Language-Team: LANGUAGE <LL@li.org>\n"
|
16
16
|
"Language: \n"
|
@@ -164,7 +164,7 @@ msgstr ""
|
|
164
164
|
msgid "No help available for puppet %{app_name}"
|
165
165
|
msgstr ""
|
166
166
|
|
167
|
-
#: ../lib/puppet/application/agent.rb:24 ../lib/puppet/application/device.rb:
|
167
|
+
#: ../lib/puppet/application/agent.rb:24 ../lib/puppet/application/device.rb:23
|
168
168
|
msgid "Cancelling startup"
|
169
169
|
msgstr ""
|
170
170
|
|
@@ -234,51 +234,51 @@ msgstr ""
|
|
234
234
|
msgid "Display help about resource types"
|
235
235
|
msgstr ""
|
236
236
|
|
237
|
-
#: ../lib/puppet/application/device.rb:
|
237
|
+
#: ../lib/puppet/application/device.rb:82
|
238
238
|
msgid "Manage remote network devices"
|
239
239
|
msgstr ""
|
240
240
|
|
241
|
-
#: ../lib/puppet/application/device.rb:
|
241
|
+
#: ../lib/puppet/application/device.rb:226
|
242
242
|
msgid "resource command requires target"
|
243
243
|
msgstr ""
|
244
244
|
|
245
|
-
#: ../lib/puppet/application/device.rb:
|
245
|
+
#: ../lib/puppet/application/device.rb:229
|
246
246
|
msgid "facts command requires target"
|
247
247
|
msgstr ""
|
248
248
|
|
249
|
-
#: ../lib/puppet/application/device.rb:
|
249
|
+
#: ../lib/puppet/application/device.rb:232
|
250
250
|
msgid "missing argument: --target is required when using --apply"
|
251
251
|
msgstr ""
|
252
252
|
|
253
|
-
#: ../lib/puppet/application/device.rb:
|
253
|
+
#: ../lib/puppet/application/device.rb:233
|
254
254
|
msgid "%{file} does not exist, cannot apply"
|
255
255
|
msgstr ""
|
256
256
|
|
257
|
-
#: ../lib/puppet/application/device.rb:
|
257
|
+
#: ../lib/puppet/application/device.rb:250
|
258
258
|
msgid "Target device / certificate '%{target}' not found in %{config}"
|
259
259
|
msgstr ""
|
260
260
|
|
261
|
-
#: ../lib/puppet/application/device.rb:
|
261
|
+
#: ../lib/puppet/application/device.rb:252
|
262
262
|
msgid "No device found in %{config}"
|
263
263
|
msgstr ""
|
264
264
|
|
265
|
-
#: ../lib/puppet/application/device.rb:
|
265
|
+
#: ../lib/puppet/application/device.rb:278
|
266
266
|
msgid "retrieving resource: %{resource} from %{target} at %{scheme}%{url_host}%{port}%{url_path}"
|
267
267
|
msgstr ""
|
268
268
|
|
269
|
-
#: ../lib/puppet/application/device.rb:
|
269
|
+
#: ../lib/puppet/application/device.rb:293
|
270
270
|
msgid "retrieving facts from %{target} at %{scheme}%{url_host}%{port}%{url_path}"
|
271
271
|
msgstr ""
|
272
272
|
|
273
|
-
#: ../lib/puppet/application/device.rb:
|
273
|
+
#: ../lib/puppet/application/device.rb:318
|
274
274
|
msgid "starting applying configuration to %{target} at %{scheme}%{url_host}%{port}%{url_path}"
|
275
275
|
msgstr ""
|
276
276
|
|
277
|
-
#: ../lib/puppet/application/device.rb:
|
277
|
+
#: ../lib/puppet/application/device.rb:356 ../lib/puppet/application/resource.rb:196
|
278
278
|
msgid "You must specify the type to display"
|
279
279
|
msgstr ""
|
280
280
|
|
281
|
-
#: ../lib/puppet/application/device.rb:
|
281
|
+
#: ../lib/puppet/application/device.rb:357 ../lib/puppet/application/resource.rb:197
|
282
282
|
msgid "Could not find type %{type}"
|
283
283
|
msgstr ""
|
284
284
|
|
@@ -438,67 +438,67 @@ msgstr ""
|
|
438
438
|
msgid "Manage SSL keys and certificates for puppet SSL clients"
|
439
439
|
msgstr ""
|
440
440
|
|
441
|
-
#: ../lib/puppet/application/ssl.rb:
|
441
|
+
#: ../lib/puppet/application/ssl.rb:86
|
442
442
|
msgid "An action must be specified."
|
443
443
|
msgstr ""
|
444
444
|
|
445
|
-
#: ../lib/puppet/application/ssl.rb:
|
445
|
+
#: ../lib/puppet/application/ssl.rb:107 ../lib/puppet/application/ssl.rb:112
|
446
446
|
msgid "The certificate for '%{name}' has not yet been signed"
|
447
447
|
msgstr ""
|
448
448
|
|
449
|
-
#: ../lib/puppet/application/ssl.rb:
|
449
|
+
#: ../lib/puppet/application/ssl.rb:119
|
450
450
|
msgid "Unknown action '%{action}'"
|
451
451
|
msgstr ""
|
452
452
|
|
453
|
-
#: ../lib/puppet/application/ssl.rb:
|
453
|
+
#: ../lib/puppet/application/ssl.rb:127
|
454
454
|
msgid "Submitted certificate request for '%{name}' to https://%{server}:%{port}"
|
455
455
|
msgstr ""
|
456
456
|
|
457
|
-
#: ../lib/puppet/application/ssl.rb:
|
457
|
+
#: ../lib/puppet/application/ssl.rb:131
|
458
458
|
msgid "Failed to submit certificate request: %{message}"
|
459
459
|
msgstr ""
|
460
460
|
|
461
|
-
#: ../lib/puppet/application/ssl.rb:
|
461
|
+
#: ../lib/puppet/application/ssl.rb:137
|
462
462
|
msgid "Downloading certificate '%{name}' from https://%{server}:%{port}"
|
463
463
|
msgstr ""
|
464
464
|
|
465
|
-
#: ../lib/puppet/application/ssl.rb:
|
465
|
+
#: ../lib/puppet/application/ssl.rb:143
|
466
466
|
msgid "Downloaded certificate '%{name}' with fingerprint %{fingerprint}"
|
467
467
|
msgstr ""
|
468
468
|
|
469
|
-
#: ../lib/puppet/application/ssl.rb:
|
469
|
+
#: ../lib/puppet/application/ssl.rb:148
|
470
470
|
msgid "Failed to download certificate: %{message}"
|
471
471
|
msgstr ""
|
472
472
|
|
473
|
-
#: ../lib/puppet/application/ssl.rb:
|
473
|
+
#: ../lib/puppet/application/ssl.rb:155
|
474
474
|
msgid "The host's private key is missing"
|
475
475
|
msgstr ""
|
476
476
|
|
477
|
-
#: ../lib/puppet/application/ssl.rb:
|
477
|
+
#: ../lib/puppet/application/ssl.rb:158
|
478
478
|
msgid "The host's certificate is missing"
|
479
479
|
msgstr ""
|
480
480
|
|
481
|
-
#: ../lib/puppet/application/ssl.rb:
|
481
|
+
#: ../lib/puppet/application/ssl.rb:161
|
482
482
|
msgid "The host's key does not match the certificate"
|
483
483
|
msgstr ""
|
484
484
|
|
485
|
-
#: ../lib/puppet/application/ssl.rb:
|
485
|
+
#: ../lib/puppet/application/ssl.rb:166
|
486
486
|
msgid "Failed to verify certificate '%{name}': %{message} (%{error})"
|
487
487
|
msgstr ""
|
488
488
|
|
489
|
-
#: ../lib/puppet/application/ssl.rb:
|
489
|
+
#: ../lib/puppet/application/ssl.rb:171
|
490
490
|
msgid "Verified certificate '%{name}'"
|
491
491
|
msgstr ""
|
492
492
|
|
493
|
-
#: ../lib/puppet/application/ssl.rb:
|
493
|
+
#: ../lib/puppet/application/ssl.rb:179
|
494
494
|
msgid "Verify failed: %{message}"
|
495
495
|
msgstr ""
|
496
496
|
|
497
|
-
#: ../lib/puppet/application/ssl.rb:
|
497
|
+
#: ../lib/puppet/application/ssl.rb:189
|
498
498
|
msgid "Failed to connect to the CA to determine if certificate %{certname} has been cleaned"
|
499
499
|
msgstr ""
|
500
500
|
|
501
|
-
#: ../lib/puppet/application/ssl.rb:
|
501
|
+
#: ../lib/puppet/application/ssl.rb:193
|
502
502
|
msgid ""
|
503
503
|
"The certificate %{certname} must be cleaned from the CA first. To fix this,\n"
|
504
504
|
"run the following commands on the CA:\n"
|
@@ -506,7 +506,7 @@ msgid ""
|
|
506
506
|
" puppet ssl clean\n"
|
507
507
|
msgstr ""
|
508
508
|
|
509
|
-
#: ../lib/puppet/application/ssl.rb:
|
509
|
+
#: ../lib/puppet/application/ssl.rb:213
|
510
510
|
msgid "Removed %{label} %{path}"
|
511
511
|
msgstr ""
|
512
512
|
|
@@ -701,15 +701,15 @@ msgstr ""
|
|
701
701
|
msgid "Certificate names must be lower case"
|
702
702
|
msgstr ""
|
703
703
|
|
704
|
-
#: ../lib/puppet/defaults.rb:
|
704
|
+
#: ../lib/puppet/defaults.rb:962 ../lib/puppet/settings/enum_setting.rb:13 ../lib/puppet/settings/symbolic_enum_setting.rb:14
|
705
705
|
msgid "Invalid value '%{value}' for parameter %{name}. Allowed values are '%{allowed_values}'"
|
706
706
|
msgstr ""
|
707
707
|
|
708
|
-
#: ../lib/puppet/defaults.rb:
|
708
|
+
#: ../lib/puppet/defaults.rb:1459 ../lib/puppet/defaults.rb:1474
|
709
709
|
msgid "Attempted to set both server and server_list."
|
710
710
|
msgstr ""
|
711
711
|
|
712
|
-
#: ../lib/puppet/defaults.rb:
|
712
|
+
#: ../lib/puppet/defaults.rb:1460 ../lib/puppet/defaults.rb:1475
|
713
713
|
msgid "Server setting will not be used."
|
714
714
|
msgstr ""
|
715
715
|
|
@@ -772,7 +772,7 @@ msgid "Examine Puppet's current settings."
|
|
772
772
|
msgstr ""
|
773
773
|
|
774
774
|
#: ../lib/puppet/face/config.rb:38
|
775
|
-
msgid "
|
775
|
+
msgid "all | <setting> [<setting> ...]"
|
776
776
|
msgstr ""
|
777
777
|
|
778
778
|
#: ../lib/puppet/face/config.rb:83
|
@@ -6762,15 +6762,15 @@ msgstr ""
|
|
6762
6762
|
msgid "The source parameter cannot be empty when using the Windows provider."
|
6763
6763
|
msgstr ""
|
6764
6764
|
|
6765
|
-
#: ../lib/puppet/provider/package/windows/package.rb:
|
6765
|
+
#: ../lib/puppet/provider/package/windows/package.rb:61
|
6766
6766
|
msgid "The source parameter is required when using the Windows provider."
|
6767
6767
|
msgstr ""
|
6768
6768
|
|
6769
|
-
#: ../lib/puppet/provider/package/windows/package.rb:
|
6769
|
+
#: ../lib/puppet/provider/package/windows/package.rb:69
|
6770
6770
|
msgid "The source does not exist: '%{source}'"
|
6771
6771
|
msgstr ""
|
6772
6772
|
|
6773
|
-
#: ../lib/puppet/provider/package/windows/package.rb:
|
6773
|
+
#: ../lib/puppet/provider/package/windows/package.rb:72
|
6774
6774
|
msgid "Don't know how to install '%{source}'"
|
6775
6775
|
msgstr ""
|
6776
6776
|
|
@@ -6794,23 +6794,27 @@ msgstr ""
|
|
6794
6794
|
msgid "Failed to update to version %{should}, got version %{version} instead"
|
6795
6795
|
msgstr ""
|
6796
6796
|
|
6797
|
-
#: ../lib/puppet/provider/parsedfile.rb:
|
6797
|
+
#: ../lib/puppet/provider/parsedfile.rb:52
|
6798
6798
|
msgid "Invalid filetype %{type}"
|
6799
6799
|
msgstr ""
|
6800
6800
|
|
6801
|
-
#: ../lib/puppet/provider/parsedfile.rb:
|
6801
|
+
#: ../lib/puppet/provider/parsedfile.rb:99
|
6802
|
+
msgid "Failed to read %{target}'s records when prefetching them. Reason: %{detail}"
|
6803
|
+
msgstr ""
|
6804
|
+
|
6805
|
+
#: ../lib/puppet/provider/parsedfile.rb:287
|
6802
6806
|
msgid "Could not prefetch %{resource} provider '%{name}' target '%{target}': %{detail}. Treating as empty"
|
6803
6807
|
msgstr ""
|
6804
6808
|
|
6805
|
-
#: ../lib/puppet/provider/parsedfile.rb:
|
6809
|
+
#: ../lib/puppet/provider/parsedfile.rb:301
|
6806
6810
|
msgid "Prefetching %{target} for provider %{name} returned nil"
|
6807
6811
|
msgstr ""
|
6808
6812
|
|
6809
|
-
#: ../lib/puppet/provider/parsedfile.rb:
|
6813
|
+
#: ../lib/puppet/provider/parsedfile.rb:374
|
6810
6814
|
msgid "Parsed Providers must define a default target"
|
6811
6815
|
msgstr ""
|
6812
6816
|
|
6813
|
-
#: ../lib/puppet/provider/parsedfile.rb:
|
6817
|
+
#: ../lib/puppet/provider/parsedfile.rb:463
|
6814
6818
|
msgid "Somehow got told to prefetch with no resource set"
|
6815
6819
|
msgstr ""
|
6816
6820
|
|
@@ -6840,6 +6844,18 @@ msgstr ""
|
|
6840
6844
|
msgid "Waiting 5 seconds for runsvdir to discover service %{service}"
|
6841
6845
|
msgstr ""
|
6842
6846
|
|
6847
|
+
#: ../lib/puppet/provider/service/smf.rb:68
|
6848
|
+
msgid "Failed to get the FMRI of the %{service} service: The pattern '%{service}' matches multiple FMRIs! These are the FMRIs it matches: %{all_fmris}"
|
6849
|
+
msgstr ""
|
6850
|
+
|
6851
|
+
#: ../lib/puppet/provider/service/smf.rb:83
|
6852
|
+
msgid "Cannot query if the %{service} service is complete: The concept of complete/incomplete services was introduced in Solaris 11.1. You are on a Solaris %{release} machine."
|
6853
|
+
msgstr ""
|
6854
|
+
|
6855
|
+
#: ../lib/puppet/provider/service/smf.rb:182
|
6856
|
+
msgid "The %{service} service is incomplete so its status will be reported as :stopped. See `svcs -xv %{fmri}` for more details."
|
6857
|
+
msgstr ""
|
6858
|
+
|
6843
6859
|
#: ../lib/puppet/provider/service/windows.rb:22
|
6844
6860
|
msgid "Cannot enable %{resource_name}, error was: %{detail}"
|
6845
6861
|
msgstr ""
|
@@ -7516,15 +7532,15 @@ msgstr ""
|
|
7516
7532
|
msgid "unexpected attributes %{keys} in %{path}"
|
7517
7533
|
msgstr ""
|
7518
7534
|
|
7519
|
-
#: ../lib/puppet/ssl/host.rb:
|
7535
|
+
#: ../lib/puppet/ssl/host.rb:165
|
7520
7536
|
msgid "No certificate to validate."
|
7521
7537
|
msgstr ""
|
7522
7538
|
|
7523
|
-
#: ../lib/puppet/ssl/host.rb:
|
7539
|
+
#: ../lib/puppet/ssl/host.rb:166
|
7524
7540
|
msgid "No private key with which to validate certificate with fingerprint: %{fingerprint}"
|
7525
7541
|
msgstr ""
|
7526
7542
|
|
7527
|
-
#: ../lib/puppet/ssl/host.rb:
|
7543
|
+
#: ../lib/puppet/ssl/host.rb:168
|
7528
7544
|
msgid ""
|
7529
7545
|
"The certificate retrieved from the master does not match the agent's private key. Did you forget to run as root?\n"
|
7530
7546
|
"Certificate fingerprint: %{fingerprint}\n"
|
@@ -7532,11 +7548,11 @@ msgid ""
|
|
7532
7548
|
"On the master:\n"
|
7533
7549
|
" puppetserver ca clean --certname %{cert_name}\n"
|
7534
7550
|
"On the agent:\n"
|
7535
|
-
" 1. puppet ssl clean\n"
|
7536
|
-
" 2. puppet
|
7551
|
+
" 1. puppet ssl clean %{clean_params}\n"
|
7552
|
+
" 2. puppet %{puppet_params}\n"
|
7537
7553
|
msgstr ""
|
7538
7554
|
|
7539
|
-
#: ../lib/puppet/ssl/host.rb:
|
7555
|
+
#: ../lib/puppet/ssl/host.rb:250
|
7540
7556
|
msgid ""
|
7541
7557
|
"The local CSR does not match the agent's public key.\n"
|
7542
7558
|
"CSR fingerprint: %{fingerprint}\n"
|
@@ -7544,11 +7560,11 @@ msgid ""
|
|
7544
7560
|
"Agent public key: %{agent_public_key}\n"
|
7545
7561
|
"To fix this, remove the CSR from the agent and then start a puppet run, which will automatically regenerate a CSR.\n"
|
7546
7562
|
"On the agent:\n"
|
7547
|
-
" 1. puppet ssl clean\n"
|
7548
|
-
" 2. puppet
|
7563
|
+
" 1. puppet ssl clean %{clean_params}\n"
|
7564
|
+
" 2. puppet %{puppet_params}\n"
|
7549
7565
|
msgstr ""
|
7550
7566
|
|
7551
|
-
#: ../lib/puppet/ssl/host.rb:
|
7567
|
+
#: ../lib/puppet/ssl/host.rb:266
|
7552
7568
|
msgid ""
|
7553
7569
|
"The CSR retrieved from the master does not match the agent's public key.\n"
|
7554
7570
|
"CSR fingerprint: %{fingerprint}\n"
|
@@ -7558,77 +7574,77 @@ msgid ""
|
|
7558
7574
|
"On the master:\n"
|
7559
7575
|
" puppetserver ca clean --certname %{cert_name}\n"
|
7560
7576
|
"On the agent:\n"
|
7561
|
-
" 1. puppet ssl clean\n"
|
7562
|
-
" 2. puppet
|
7577
|
+
" 1. puppet ssl clean %{clean_params}\n"
|
7578
|
+
" 2. puppet %{puppet_params}\n"
|
7563
7579
|
msgstr ""
|
7564
7580
|
|
7565
|
-
#: ../lib/puppet/ssl/host.rb:
|
7581
|
+
#: ../lib/puppet/ssl/host.rb:320 ../lib/puppet/ssl/host.rb:341
|
7566
7582
|
msgid "Could not request certificate: %{message}"
|
7567
7583
|
msgstr ""
|
7568
7584
|
|
7569
|
-
#: ../lib/puppet/ssl/host.rb:
|
7585
|
+
#: ../lib/puppet/ssl/host.rb:322
|
7570
7586
|
msgid "Exiting; failed to retrieve certificate and waitforcert is disabled"
|
7571
7587
|
msgstr ""
|
7572
7588
|
|
7573
|
-
#: ../lib/puppet/ssl/host.rb:
|
7589
|
+
#: ../lib/puppet/ssl/host.rb:331
|
7574
7590
|
msgid "Exiting; no certificate found and waitforcert is disabled"
|
7575
7591
|
msgstr ""
|
7576
7592
|
|
7577
|
-
#: ../lib/puppet/ssl/host.rb:
|
7593
|
+
#: ../lib/puppet/ssl/host.rb:339
|
7578
7594
|
msgid "Did not receive certificate"
|
7579
7595
|
msgstr ""
|
7580
7596
|
|
7581
|
-
#: ../lib/puppet/ssl/host.rb:
|
7597
|
+
#: ../lib/puppet/ssl/host.rb:379
|
7582
7598
|
msgid "Response from the CA did not contain a valid certificate request: %{message}"
|
7583
7599
|
msgstr ""
|
7584
7600
|
|
7585
|
-
#: ../lib/puppet/ssl/host.rb:
|
7601
|
+
#: ../lib/puppet/ssl/host.rb:385
|
7586
7602
|
msgid "Could not download certificate request: %{message}"
|
7587
7603
|
msgstr ""
|
7588
7604
|
|
7589
|
-
#: ../lib/puppet/ssl/host.rb:
|
7605
|
+
#: ../lib/puppet/ssl/host.rb:412
|
7590
7606
|
msgid ""
|
7591
7607
|
"Failed attempting to load CRL from %{crl_path}! The CRL below caused the error '%{error}':\n"
|
7592
7608
|
"%{crl}"
|
7593
7609
|
msgstr ""
|
7594
7610
|
|
7595
|
-
#: ../lib/puppet/ssl/host.rb:
|
7611
|
+
#: ../lib/puppet/ssl/host.rb:440
|
7596
7612
|
msgid "The CA certificate at %{file_path} is invalid: %{message}"
|
7597
7613
|
msgstr ""
|
7598
7614
|
|
7599
|
-
#: ../lib/puppet/ssl/host.rb:
|
7615
|
+
#: ../lib/puppet/ssl/host.rb:464
|
7600
7616
|
msgid "No valid PEM-encoded certificates."
|
7601
7617
|
msgstr ""
|
7602
7618
|
|
7603
|
-
#: ../lib/puppet/ssl/host.rb:
|
7619
|
+
#: ../lib/puppet/ssl/host.rb:471
|
7604
7620
|
msgid "Could not parse certificate: %{message}"
|
7605
7621
|
msgstr ""
|
7606
7622
|
|
7607
|
-
#: ../lib/puppet/ssl/host.rb:
|
7623
|
+
#: ../lib/puppet/ssl/host.rb:494
|
7608
7624
|
msgid "Could not download CRLs: %{message}"
|
7609
7625
|
msgstr ""
|
7610
7626
|
|
7611
|
-
#: ../lib/puppet/ssl/host.rb:
|
7627
|
+
#: ../lib/puppet/ssl/host.rb:513
|
7612
7628
|
msgid "Response from the CA did not contain a valid CA certificate: %{message}"
|
7613
7629
|
msgstr ""
|
7614
7630
|
|
7615
|
-
#: ../lib/puppet/ssl/host.rb:
|
7631
|
+
#: ../lib/puppet/ssl/host.rb:516
|
7616
7632
|
msgid "Could not download CA certificate: %{message}"
|
7617
7633
|
msgstr ""
|
7618
7634
|
|
7619
|
-
#: ../lib/puppet/ssl/host.rb:
|
7635
|
+
#: ../lib/puppet/ssl/host.rb:556
|
7620
7636
|
msgid "The certificate at %{file_path} is invalid. Could not load."
|
7621
7637
|
msgstr ""
|
7622
7638
|
|
7623
|
-
#: ../lib/puppet/ssl/host.rb:
|
7639
|
+
#: ../lib/puppet/ssl/host.rb:577
|
7624
7640
|
msgid "Response from the CA did not contain a valid certificate for %{cert_name}."
|
7625
7641
|
msgstr ""
|
7626
7642
|
|
7627
|
-
#: ../lib/puppet/ssl/host.rb:
|
7643
|
+
#: ../lib/puppet/ssl/host.rb:581
|
7628
7644
|
msgid "No certificate for %{cert_name} on CA"
|
7629
7645
|
msgstr ""
|
7630
7646
|
|
7631
|
-
#: ../lib/puppet/ssl/host.rb:
|
7647
|
+
#: ../lib/puppet/ssl/host.rb:584
|
7632
7648
|
msgid "Could not download host certificate: %{message}"
|
7633
7649
|
msgstr ""
|
7634
7650
|
|
@@ -7834,23 +7850,27 @@ msgstr ""
|
|
7834
7850
|
msgid "change from %s to %s failed: "
|
7835
7851
|
msgstr ""
|
7836
7852
|
|
7837
|
-
#: ../lib/puppet/transaction/resource_harness.rb:
|
7853
|
+
#: ../lib/puppet/transaction/resource_harness.rb:162
|
7854
|
+
msgid "could not create change error message for %{name}"
|
7855
|
+
msgstr ""
|
7856
|
+
|
7857
|
+
#: ../lib/puppet/transaction/resource_harness.rb:214
|
7838
7858
|
msgid "audit change: previously recorded value %s has been changed to %s"
|
7839
7859
|
msgstr ""
|
7840
7860
|
|
7841
|
-
#: ../lib/puppet/transaction/resource_harness.rb:
|
7861
|
+
#: ../lib/puppet/transaction/resource_harness.rb:224
|
7842
7862
|
msgid " (previously recorded value was %s)"
|
7843
7863
|
msgstr ""
|
7844
7864
|
|
7845
|
-
#: ../lib/puppet/transaction/resource_harness.rb:
|
7865
|
+
#: ../lib/puppet/transaction/resource_harness.rb:231
|
7846
7866
|
msgid "current_value %s, should be %s (noop)"
|
7847
7867
|
msgstr ""
|
7848
7868
|
|
7849
|
-
#: ../lib/puppet/transaction/resource_harness.rb:
|
7869
|
+
#: ../lib/puppet/transaction/resource_harness.rb:240
|
7850
7870
|
msgid "changed %s to %s"
|
7851
7871
|
msgstr ""
|
7852
7872
|
|
7853
|
-
#: ../lib/puppet/transaction/resource_harness.rb:
|
7873
|
+
#: ../lib/puppet/transaction/resource_harness.rb:263
|
7854
7874
|
msgid "audit change: newly-recorded value %s"
|
7855
7875
|
msgstr ""
|
7856
7876
|
|
@@ -8485,15 +8505,15 @@ msgstr ""
|
|
8485
8505
|
msgid "Could not initialize global default settings"
|
8486
8506
|
msgstr ""
|
8487
8507
|
|
8488
|
-
#: ../lib/puppet/util/command_line.rb:
|
8508
|
+
#: ../lib/puppet/util/command_line.rb:165
|
8489
8509
|
msgid "Error: Could not parse application options: invalid option: %{opt}"
|
8490
8510
|
msgstr ""
|
8491
8511
|
|
8492
|
-
#: ../lib/puppet/util/command_line.rb:
|
8512
|
+
#: ../lib/puppet/util/command_line.rb:168
|
8493
8513
|
msgid "See 'puppet help' for help on available puppet subcommands"
|
8494
8514
|
msgstr ""
|
8495
8515
|
|
8496
|
-
#: ../lib/puppet/util/command_line.rb:
|
8516
|
+
#: ../lib/puppet/util/command_line.rb:181
|
8497
8517
|
msgid "Error: Unknown Puppet subcommand '%{cmd}'"
|
8498
8518
|
msgstr ""
|
8499
8519
|
|
@@ -8774,19 +8794,27 @@ msgstr ""
|
|
8774
8794
|
msgid "Could not retrieve user %{user}: %{detail}"
|
8775
8795
|
msgstr ""
|
8776
8796
|
|
8777
|
-
#: ../lib/puppet/util/filetype.rb:
|
8778
|
-
msgid "
|
8797
|
+
#: ../lib/puppet/util/filetype.rb:195 ../lib/puppet/util/filetype.rb:260 ../lib/puppet/util/filetype.rb:311
|
8798
|
+
msgid "The %{path} user does not exist. Treating their crontab file as empty in case Puppet creates them in the middle of the run."
|
8779
8799
|
msgstr ""
|
8780
8800
|
|
8781
|
-
#: ../lib/puppet/util/filetype.rb:
|
8801
|
+
#: ../lib/puppet/util/filetype.rb:206 ../lib/puppet/util/filetype.rb:271 ../lib/puppet/util/filetype.rb:322
|
8802
|
+
msgid "The %{path} user is not authorized to use cron. Their crontab file is treated as empty in case Puppet authorizes them in the middle of the run (by, for example, modifying the cron.deny or cron.allow files)."
|
8803
|
+
msgstr ""
|
8804
|
+
|
8805
|
+
#: ../lib/puppet/util/filetype.rb:210 ../lib/puppet/util/filetype.rb:275 ../lib/puppet/util/filetype.rb:326
|
8782
8806
|
msgid "Could not read crontab for %{path}: %{detail}"
|
8783
8807
|
msgstr ""
|
8784
8808
|
|
8785
|
-
#: ../lib/puppet/util/filetype.rb:
|
8809
|
+
#: ../lib/puppet/util/filetype.rb:232
|
8810
|
+
msgid "Cannot write the %{path} user's crontab: The user does not exist"
|
8811
|
+
msgstr ""
|
8812
|
+
|
8813
|
+
#: ../lib/puppet/util/filetype.rb:283 ../lib/puppet/util/filetype.rb:334
|
8786
8814
|
msgid "Could not remove crontab for %{path}: %{detail}"
|
8787
8815
|
msgstr ""
|
8788
8816
|
|
8789
|
-
#: ../lib/puppet/util/filetype.rb:
|
8817
|
+
#: ../lib/puppet/util/filetype.rb:298 ../lib/puppet/util/filetype.rb:350
|
8790
8818
|
msgid "Could not write crontab for %{path}: %{detail}"
|
8791
8819
|
msgstr ""
|
8792
8820
|
|
@@ -9318,39 +9346,39 @@ msgstr ""
|
|
9318
9346
|
msgid "Failed to open registry key '%{key}\\%{path}'"
|
9319
9347
|
msgstr ""
|
9320
9348
|
|
9321
|
-
#: ../lib/puppet/util/windows/registry.rb:
|
9349
|
+
#: ../lib/puppet/util/windows/registry.rb:128
|
9322
9350
|
msgid "Failed to enumerate %{key} registry keys at index %{index}"
|
9323
9351
|
msgstr ""
|
9324
9352
|
|
9325
|
-
#: ../lib/puppet/util/windows/registry.rb:
|
9353
|
+
#: ../lib/puppet/util/windows/registry.rb:159
|
9326
9354
|
msgid "Failed to enumerate %{key} registry values at index %{index}"
|
9327
9355
|
msgstr ""
|
9328
9356
|
|
9329
|
-
#: ../lib/puppet/util/windows/registry.rb:
|
9357
|
+
#: ../lib/puppet/util/windows/registry.rb:189
|
9330
9358
|
msgid "Failed to query registry %{key} for sizes"
|
9331
9359
|
msgstr ""
|
9332
9360
|
|
9333
|
-
#: ../lib/puppet/util/windows/registry.rb:
|
9361
|
+
#: ../lib/puppet/util/windows/registry.rb:225
|
9334
9362
|
msgid "Type mismatch (expect %{rtype} but %{type} present)"
|
9335
9363
|
msgstr ""
|
9336
9364
|
|
9337
|
-
#: ../lib/puppet/util/windows/registry.rb:
|
9365
|
+
#: ../lib/puppet/util/windows/registry.rb:247
|
9338
9366
|
msgid "Type %{type} is not supported."
|
9339
9367
|
msgstr ""
|
9340
9368
|
|
9341
|
-
#: ../lib/puppet/util/windows/registry.rb:
|
9369
|
+
#: ../lib/puppet/util/windows/registry.rb:252
|
9342
9370
|
msgid "A value in the registry key %{parent_key_name}%{key} is corrupt or invalid"
|
9343
9371
|
msgstr ""
|
9344
9372
|
|
9345
|
-
#: ../lib/puppet/util/windows/registry.rb:
|
9373
|
+
#: ../lib/puppet/util/windows/registry.rb:274
|
9346
9374
|
msgid "Failed to read registry value %{value} at %{key}"
|
9347
9375
|
msgstr ""
|
9348
9376
|
|
9349
|
-
#: ../lib/puppet/util/windows/registry.rb:
|
9377
|
+
#: ../lib/puppet/util/windows/registry.rb:292
|
9350
9378
|
msgid "Failed to delete registry value %{name} at %{key}"
|
9351
9379
|
msgstr ""
|
9352
9380
|
|
9353
|
-
#: ../lib/puppet/util/windows/registry.rb:
|
9381
|
+
#: ../lib/puppet/util/windows/registry.rb:307
|
9354
9382
|
msgid "Failed to delete registry key %{name} at %{key}"
|
9355
9383
|
msgstr ""
|
9356
9384
|
|
@@ -9440,87 +9468,87 @@ msgstr ""
|
|
9440
9468
|
msgid "Successfully resumed the %{service_name} service"
|
9441
9469
|
msgstr ""
|
9442
9470
|
|
9443
|
-
#: ../lib/puppet/util/windows/service.rb:
|
9471
|
+
#: ../lib/puppet/util/windows/service.rb:370
|
9444
9472
|
msgid "Unknown Service state '%{current_state}' for '%{service_name}'"
|
9445
9473
|
msgstr ""
|
9446
9474
|
|
9447
|
-
#: ../lib/puppet/util/windows/service.rb:
|
9475
|
+
#: ../lib/puppet/util/windows/service.rb:388
|
9448
9476
|
msgid "Unknown start type '%{start_type}' for '%{service_name}'"
|
9449
9477
|
msgstr ""
|
9450
9478
|
|
9451
|
-
#: ../lib/puppet/util/windows/service.rb:
|
9479
|
+
#: ../lib/puppet/util/windows/service.rb:403
|
9452
9480
|
msgid "Unknown start type %{start_type}"
|
9453
9481
|
msgstr ""
|
9454
9482
|
|
9455
|
-
#: ../lib/puppet/util/windows/service.rb:
|
9483
|
+
#: ../lib/puppet/util/windows/service.rb:424
|
9456
9484
|
msgid "Failed to update service configuration"
|
9457
9485
|
msgstr ""
|
9458
9486
|
|
9459
|
-
#: ../lib/puppet/util/windows/service.rb:
|
9487
|
+
#: ../lib/puppet/util/windows/service.rb:484
|
9460
9488
|
msgid "Failed to fetch services"
|
9461
9489
|
msgstr ""
|
9462
9490
|
|
9463
|
-
#: ../lib/puppet/util/windows/service.rb:
|
9491
|
+
#: ../lib/puppet/util/windows/service.rb:533
|
9464
9492
|
msgid "Failed to open a handle to the service"
|
9465
9493
|
msgstr ""
|
9466
9494
|
|
9467
|
-
#: ../lib/puppet/util/windows/service.rb:
|
9495
|
+
#: ../lib/puppet/util/windows/service.rb:550
|
9468
9496
|
msgid "Failed to open a handle to the service control manager"
|
9469
9497
|
msgstr ""
|
9470
9498
|
|
9471
|
-
#: ../lib/puppet/util/windows/service.rb:
|
9499
|
+
#: ../lib/puppet/util/windows/service.rb:572
|
9472
9500
|
msgid "The service is already in the %{final_state} state. No further work needs to be done."
|
9473
9501
|
msgstr ""
|
9474
9502
|
|
9475
|
-
#: ../lib/puppet/util/windows/service.rb:
|
9503
|
+
#: ../lib/puppet/util/windows/service.rb:584
|
9476
9504
|
msgid "The service must be in one of the %{valid_initial_states} states to perform this transition. It is currently in the %{current_state} state."
|
9477
9505
|
msgstr ""
|
9478
9506
|
|
9479
|
-
#: ../lib/puppet/util/windows/service.rb:
|
9507
|
+
#: ../lib/puppet/util/windows/service.rb:595
|
9480
9508
|
msgid "There is already a pending transition to the %{final_state} state for the %{service_name} service."
|
9481
9509
|
msgstr ""
|
9482
9510
|
|
9483
|
-
#: ../lib/puppet/util/windows/service.rb:
|
9511
|
+
#: ../lib/puppet/util/windows/service.rb:611
|
9484
9512
|
msgid "The service is in the %{pending_state} state, which is an unsafe pending state."
|
9485
9513
|
msgstr ""
|
9486
9514
|
|
9487
|
-
#: ../lib/puppet/util/windows/service.rb:
|
9515
|
+
#: ../lib/puppet/util/windows/service.rb:616
|
9488
9516
|
msgid "Transitioning the %{service_name} service from %{initial_state} to %{final_state}"
|
9489
9517
|
msgstr ""
|
9490
9518
|
|
9491
|
-
#: ../lib/puppet/util/windows/service.rb:
|
9519
|
+
#: ../lib/puppet/util/windows/service.rb:620
|
9492
9520
|
msgid "Waiting for the transition to finish"
|
9493
9521
|
msgstr ""
|
9494
9522
|
|
9495
|
-
#: ../lib/puppet/util/windows/service.rb:
|
9523
|
+
#: ../lib/puppet/util/windows/service.rb:625
|
9496
9524
|
msgid "Failed to transition the %{service_name} service to the %{final_state} state. Detail: %{detail}"
|
9497
9525
|
msgstr ""
|
9498
9526
|
|
9499
|
-
#: ../lib/puppet/util/windows/service.rb:
|
9527
|
+
#: ../lib/puppet/util/windows/service.rb:664 ../lib/puppet/util/windows/service.rb:700
|
9500
9528
|
msgid "Service query failed"
|
9501
9529
|
msgstr ""
|
9502
9530
|
|
9503
|
-
#: ../lib/puppet/util/windows/service.rb:
|
9504
|
-
msgid "Failed to send the %{control_signal} signal to the service. Its current state is %{current_state}.
|
9531
|
+
#: ../lib/puppet/util/windows/service.rb:717
|
9532
|
+
msgid "Failed to send the %{control_signal} signal to the service. Its current state is %{current_state}. Reason for failure:"
|
9505
9533
|
msgstr ""
|
9506
9534
|
|
9507
|
-
#: ../lib/puppet/util/windows/service.rb:
|
9535
|
+
#: ../lib/puppet/util/windows/service.rb:751
|
9508
9536
|
msgid "The service transitioned to the %{pending_state} state."
|
9509
9537
|
msgstr ""
|
9510
9538
|
|
9511
|
-
#: ../lib/puppet/util/windows/service.rb:
|
9539
|
+
#: ../lib/puppet/util/windows/service.rb:765
|
9512
9540
|
msgid "Timed out while waiting for the service to transition from %{initial_state} to %{final_state} OR from %{initial_state} to %{pending_state} to %{final_state}. The service's current state is %{current_state}."
|
9513
9541
|
msgstr ""
|
9514
9542
|
|
9515
|
-
#: ../lib/puppet/util/windows/service.rb:
|
9543
|
+
#: ../lib/puppet/util/windows/service.rb:779
|
9516
9544
|
msgid "Waiting for the pending transition to the %{final_state} state to finish."
|
9517
9545
|
msgstr ""
|
9518
9546
|
|
9519
|
-
#: ../lib/puppet/util/windows/service.rb:
|
9547
|
+
#: ../lib/puppet/util/windows/service.rb:793
|
9520
9548
|
msgid "Unexpected transition to the %{current_state} state while waiting for the pending transition from %{pending_state} to %{final_state} to finish."
|
9521
9549
|
msgstr ""
|
9522
9550
|
|
9523
|
-
#: ../lib/puppet/util/windows/service.rb:
|
9551
|
+
#: ../lib/puppet/util/windows/service.rb:807
|
9524
9552
|
msgid "Timed out while waiting for the pending transition from %{pending_state} to %{final_state} to finish. The current state is %{current_state}."
|
9525
9553
|
msgstr ""
|
9526
9554
|
|