puppet 6.23.0-universal-darwin → 6.24.0-universal-darwin
Sign up to get free protection for your applications and to get access to all the features.
Potentially problematic release.
This version of puppet might be problematic. Click here for more details.
- checksums.yaml +4 -4
- data/CONTRIBUTING.md +5 -5
- data/Gemfile.lock +8 -8
- data/README.md +4 -4
- data/ext/project_data.yaml +1 -0
- data/lib/puppet/application/filebucket.rb +1 -0
- data/lib/puppet/application/resource.rb +15 -2
- data/lib/puppet/application/ssl.rb +1 -0
- data/lib/puppet/environments.rb +10 -0
- data/lib/puppet/face/help/action.erb +1 -0
- data/lib/puppet/face/help/face.erb +1 -0
- data/lib/puppet/face/node/clean.rb +11 -0
- data/lib/puppet/file_system/file_impl.rb +1 -1
- data/lib/puppet/file_system/windows.rb +2 -2
- data/lib/puppet/forge.rb +3 -3
- data/lib/puppet/functions/empty.rb +8 -0
- data/lib/puppet/functions/strftime.rb +1 -0
- data/lib/puppet/functions/unwrap.rb +17 -2
- data/lib/puppet/indirector/resource/ral.rb +6 -1
- data/lib/puppet/interface/documentation.rb +1 -0
- data/lib/puppet/module_tool/applications/installer.rb +4 -0
- data/lib/puppet/module_tool/errors/shared.rb +17 -0
- data/lib/puppet/pops/types/type_mismatch_describer.rb +1 -1
- data/lib/puppet/provider/exec/posix.rb +16 -4
- data/lib/puppet/provider/package/pip.rb +15 -3
- data/lib/puppet/provider/parsedfile.rb +3 -0
- data/lib/puppet/settings.rb +30 -7
- data/lib/puppet/type/exec.rb +16 -3
- data/lib/puppet/type/file/mode.rb +6 -0
- data/lib/puppet/type/tidy.rb +1 -1
- data/lib/puppet/util/symbolic_file_mode.rb +29 -17
- data/lib/puppet/util/windows/sid.rb +3 -1
- data/lib/puppet/version.rb +1 -1
- data/lib/puppet.rb +3 -3
- data/locales/puppet.pot +154 -134
- data/man/man5/puppet.conf.5 +2 -2
- data/man/man8/puppet-agent.8 +1 -1
- data/man/man8/puppet-apply.8 +1 -1
- data/man/man8/puppet-catalog.8 +9 -9
- 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 +8 -8
- 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 +7 -7
- 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 +5 -5
- data/man/man8/puppet-parser.8 +1 -1
- data/man/man8/puppet-plugin.8 +1 -1
- data/man/man8/puppet-report.8 +5 -5
- data/man/man8/puppet-resource.8 +1 -1
- data/man/man8/puppet-script.8 +1 -1
- data/man/man8/puppet-ssl.8 +1 -1
- data/man/man8/puppet-status.8 +4 -4
- data/man/man8/puppet.8 +2 -2
- data/spec/fixtures/ssl/127.0.0.1-key.pem +106 -106
- data/spec/fixtures/ssl/127.0.0.1.pem +48 -48
- data/spec/fixtures/ssl/bad-basic-constraints.pem +54 -54
- data/spec/fixtures/ssl/bad-int-basic-constraints.pem +51 -51
- data/spec/fixtures/ssl/ca.pem +52 -52
- data/spec/fixtures/ssl/crl.pem +25 -25
- data/spec/fixtures/ssl/ec-key.pem +11 -11
- data/spec/fixtures/ssl/ec.pem +32 -32
- data/spec/fixtures/ssl/encrypted-ec-key.pem +12 -12
- data/spec/fixtures/ssl/encrypted-key.pem +107 -107
- data/spec/fixtures/ssl/intermediate-agent-crl.pem +25 -25
- data/spec/fixtures/ssl/intermediate-agent.pem +54 -54
- data/spec/fixtures/ssl/intermediate-crl.pem +28 -28
- data/spec/fixtures/ssl/intermediate.pem +51 -51
- data/spec/fixtures/ssl/oid-key.pem +117 -0
- data/spec/fixtures/ssl/oid.pem +69 -0
- data/spec/fixtures/ssl/pluto-key.pem +106 -106
- data/spec/fixtures/ssl/pluto.pem +50 -50
- data/spec/fixtures/ssl/request-key.pem +106 -106
- data/spec/fixtures/ssl/request.pem +45 -45
- data/spec/fixtures/ssl/revoked-key.pem +106 -106
- data/spec/fixtures/ssl/revoked.pem +49 -49
- data/spec/fixtures/ssl/signed-key.pem +106 -106
- data/spec/fixtures/ssl/signed.pem +47 -47
- data/spec/fixtures/ssl/tampered-cert.pem +49 -49
- data/spec/fixtures/ssl/tampered-csr.pem +45 -45
- data/spec/fixtures/ssl/trusted_oid_mapping.yaml +5 -0
- data/spec/fixtures/ssl/unknown-127.0.0.1-key.pem +106 -106
- data/spec/fixtures/ssl/unknown-127.0.0.1.pem +48 -48
- data/spec/fixtures/ssl/unknown-ca-key.pem +106 -106
- data/spec/fixtures/ssl/unknown-ca.pem +52 -52
- data/spec/integration/application/filebucket_spec.rb +11 -0
- data/spec/integration/application/module_spec.rb +21 -0
- data/spec/integration/application/resource_spec.rb +35 -1
- data/spec/integration/application/ssl_spec.rb +20 -0
- data/spec/integration/environments/settings_interpolation_spec.rb +0 -4
- data/spec/integration/indirector/facts/facter_spec.rb +90 -36
- data/spec/integration/type/exec_spec.rb +70 -45
- data/spec/lib/puppet/test_ca.rb +5 -0
- data/spec/lib/puppet_spec/settings.rb +1 -0
- data/spec/unit/environments_spec.rb +35 -0
- data/spec/unit/file_system_spec.rb +6 -0
- data/spec/unit/functions/assert_type_spec.rb +1 -1
- data/spec/unit/functions/empty_spec.rb +10 -0
- data/spec/unit/functions/unwrap_spec.rb +8 -0
- data/spec/unit/functions4_spec.rb +2 -2
- data/spec/unit/indirector/resource/ral_spec.rb +40 -75
- data/spec/unit/module_tool/applications/installer_spec.rb +12 -0
- data/spec/unit/parser/templatewrapper_spec.rb +12 -2
- data/spec/unit/provider/package/pip_spec.rb +37 -0
- data/spec/unit/provider/parsedfile_spec.rb +10 -0
- data/spec/unit/settings_spec.rb +97 -56
- data/spec/unit/type/exec_spec.rb +76 -29
- data/spec/unit/type/file/source_spec.rb +4 -4
- data/spec/unit/type/tidy_spec.rb +7 -0
- data/spec/unit/util/windows/sid_spec.rb +39 -4
- data/tasks/generate_cert_fixtures.rake +10 -1
- metadata +12 -3
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.23.0-71-gd3d8d38898\n"
|
10
10
|
"\n"
|
11
11
|
"Report-Msgid-Bugs-To: https://tickets.puppetlabs.com\n"
|
12
|
-
"POT-Creation-Date: 2021-
|
13
|
-
"PO-Revision-Date: 2021-
|
12
|
+
"POT-Creation-Date: 2021-07-06 11:17+0000\n"
|
13
|
+
"PO-Revision-Date: 2021-07-06 11:17+0000\n"
|
14
14
|
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
15
15
|
"Language-Team: LANGUAGE <LL@li.org>\n"
|
16
16
|
"Language: \n"
|
@@ -286,11 +286,11 @@ msgstr ""
|
|
286
286
|
msgid "starting applying configuration to %{target} at %{scheme}%{url_host}%{port}%{url_path}"
|
287
287
|
msgstr ""
|
288
288
|
|
289
|
-
#: ../lib/puppet/application/device.rb:394 ../lib/puppet/application/resource.rb:
|
289
|
+
#: ../lib/puppet/application/device.rb:394 ../lib/puppet/application/resource.rb:201
|
290
290
|
msgid "You must specify the type to display"
|
291
291
|
msgstr ""
|
292
292
|
|
293
|
-
#: ../lib/puppet/application/device.rb:395 ../lib/puppet/application/resource.rb:
|
293
|
+
#: ../lib/puppet/application/device.rb:395 ../lib/puppet/application/resource.rb:202
|
294
294
|
msgid "Could not find type %{type}"
|
295
295
|
msgstr ""
|
296
296
|
|
@@ -352,31 +352,31 @@ msgstr ""
|
|
352
352
|
msgid "Try 'puppet help %{face} %{action}' for usage"
|
353
353
|
msgstr ""
|
354
354
|
|
355
|
-
#: ../lib/puppet/application/filebucket.rb:
|
355
|
+
#: ../lib/puppet/application/filebucket.rb:17
|
356
356
|
msgid "Store and retrieve files in a filebucket"
|
357
357
|
msgstr ""
|
358
358
|
|
359
|
-
#: ../lib/puppet/application/filebucket.rb:
|
359
|
+
#: ../lib/puppet/application/filebucket.rb:222
|
360
360
|
msgid "You must specify a file to back up"
|
361
361
|
msgstr ""
|
362
362
|
|
363
|
-
#: ../lib/puppet/application/filebucket.rb:
|
363
|
+
#: ../lib/puppet/application/filebucket.rb:226
|
364
364
|
msgid "%{file}: no such file"
|
365
365
|
msgstr ""
|
366
366
|
|
367
|
-
#: ../lib/puppet/application/filebucket.rb:
|
367
|
+
#: ../lib/puppet/application/filebucket.rb:230
|
368
368
|
msgid "%{file}: cannot read file"
|
369
369
|
msgstr ""
|
370
370
|
|
371
|
-
#: ../lib/puppet/application/filebucket.rb:
|
371
|
+
#: ../lib/puppet/application/filebucket.rb:252 ../lib/puppet/application/filebucket.rb:275
|
372
372
|
msgid "Need exactly two arguments: filebucket diff <file_a> <file_b>"
|
373
373
|
msgstr ""
|
374
374
|
|
375
|
-
#: ../lib/puppet/application/filebucket.rb:
|
375
|
+
#: ../lib/puppet/application/filebucket.rb:272
|
376
376
|
msgid "Comparing %{checksum_a} %{checksum_b} %{file_a} %{file_b}"
|
377
377
|
msgstr ""
|
378
378
|
|
379
|
-
#: ../lib/puppet/application/filebucket.rb:
|
379
|
+
#: ../lib/puppet/application/filebucket.rb:286
|
380
380
|
msgid "Cancelling"
|
381
381
|
msgstr ""
|
382
382
|
|
@@ -418,19 +418,19 @@ msgstr ""
|
|
418
418
|
msgid "Incorrect formatted data in %{fact_file} given via the --facts flag"
|
419
419
|
msgstr ""
|
420
420
|
|
421
|
-
#: ../lib/puppet/application/resource.rb:
|
421
|
+
#: ../lib/puppet/application/resource.rb:34
|
422
422
|
msgid "The resource abstraction layer shell"
|
423
423
|
msgstr ""
|
424
424
|
|
425
|
-
#: ../lib/puppet/application/resource.rb:
|
425
|
+
#: ../lib/puppet/application/resource.rb:145
|
426
426
|
msgid "Editing with Yaml output is not supported"
|
427
427
|
msgstr ""
|
428
428
|
|
429
|
-
#: ../lib/puppet/application/resource.rb:
|
429
|
+
#: ../lib/puppet/application/resource.rb:209
|
430
430
|
msgid "Invalid parameter setting %{setting}"
|
431
431
|
msgstr ""
|
432
432
|
|
433
|
-
#: ../lib/puppet/application/resource.rb:
|
433
|
+
#: ../lib/puppet/application/resource.rb:240
|
434
434
|
msgid "Listing all file instances is not supported. Please specify a file or directory, e.g. puppet resource file /etc"
|
435
435
|
msgstr ""
|
436
436
|
|
@@ -454,55 +454,55 @@ msgstr ""
|
|
454
454
|
msgid "An action must be specified."
|
455
455
|
msgstr ""
|
456
456
|
|
457
|
-
#: ../lib/puppet/application/ssl.rb:
|
457
|
+
#: ../lib/puppet/application/ssl.rb:130 ../lib/puppet/application/ssl.rb:137
|
458
458
|
msgid "The certificate for '%{name}' has not yet been signed"
|
459
459
|
msgstr ""
|
460
460
|
|
461
|
-
#: ../lib/puppet/application/ssl.rb:
|
461
|
+
#: ../lib/puppet/application/ssl.rb:148
|
462
462
|
msgid "Completed SSL initialization"
|
463
463
|
msgstr ""
|
464
464
|
|
465
|
-
#: ../lib/puppet/application/ssl.rb:
|
465
|
+
#: ../lib/puppet/application/ssl.rb:152
|
466
466
|
msgid "Unknown action '%{action}'"
|
467
467
|
msgstr ""
|
468
468
|
|
469
|
-
#: ../lib/puppet/application/ssl.rb:
|
469
|
+
#: ../lib/puppet/application/ssl.rb:166 ../lib/puppet/ssl/state_machine.rb:180
|
470
470
|
msgid "Creating a new EC SSL key for %{name} using curve %{curve}"
|
471
471
|
msgstr ""
|
472
472
|
|
473
|
-
#: ../lib/puppet/application/ssl.rb:
|
473
|
+
#: ../lib/puppet/application/ssl.rb:169 ../lib/puppet/ssl/key.rb:26
|
474
474
|
msgid "Creating a new SSL key for %{name}"
|
475
475
|
msgstr ""
|
476
476
|
|
477
|
-
#: ../lib/puppet/application/ssl.rb:
|
477
|
+
#: ../lib/puppet/application/ssl.rb:179
|
478
478
|
msgid "Submitted certificate request for '%{name}' to %{url}"
|
479
479
|
msgstr ""
|
480
480
|
|
481
|
-
#: ../lib/puppet/application/ssl.rb:
|
481
|
+
#: ../lib/puppet/application/ssl.rb:182
|
482
482
|
msgid "Could not submit certificate request for '%{name}' to %{url} due to a conflict on the server"
|
483
483
|
msgstr ""
|
484
484
|
|
485
|
-
#: ../lib/puppet/application/ssl.rb:
|
485
|
+
#: ../lib/puppet/application/ssl.rb:184 ../lib/puppet/application/ssl.rb:187
|
486
486
|
msgid "Failed to submit certificate request: %{message}"
|
487
487
|
msgstr ""
|
488
488
|
|
489
|
-
#: ../lib/puppet/application/ssl.rb:
|
489
|
+
#: ../lib/puppet/application/ssl.rb:195
|
490
490
|
msgid "Downloading certificate '%{name}' from %{url}"
|
491
491
|
msgstr ""
|
492
492
|
|
493
|
-
#: ../lib/puppet/application/ssl.rb:
|
493
|
+
#: ../lib/puppet/application/ssl.rb:199
|
494
494
|
msgid "Downloaded certificate '%{name}' with fingerprint %{fingerprint}"
|
495
495
|
msgstr ""
|
496
496
|
|
497
|
-
#: ../lib/puppet/application/ssl.rb:
|
497
|
+
#: ../lib/puppet/application/ssl.rb:212 ../lib/puppet/application/ssl.rb:215
|
498
498
|
msgid "Failed to download certificate: %{message}"
|
499
499
|
msgstr ""
|
500
500
|
|
501
|
-
#: ../lib/puppet/application/ssl.rb:
|
501
|
+
#: ../lib/puppet/application/ssl.rb:244 ../lib/puppet/application/ssl.rb:247
|
502
502
|
msgid "Failed to connect to the CA to determine if certificate %{certname} has been cleaned"
|
503
503
|
msgstr ""
|
504
504
|
|
505
|
-
#: ../lib/puppet/application/ssl.rb:
|
505
|
+
#: ../lib/puppet/application/ssl.rb:251
|
506
506
|
msgid ""
|
507
507
|
"The certificate %{certname} must be cleaned from the CA first. To fix this,\n"
|
508
508
|
"run the following commands on the CA:\n"
|
@@ -510,7 +510,7 @@ msgid ""
|
|
510
510
|
" puppet ssl clean\n"
|
511
511
|
msgstr ""
|
512
512
|
|
513
|
-
#: ../lib/puppet/application/ssl.rb:
|
513
|
+
#: ../lib/puppet/application/ssl.rb:274
|
514
514
|
msgid "Removed %{label} %{path}"
|
515
515
|
msgstr ""
|
516
516
|
|
@@ -2136,7 +2136,7 @@ msgstr ""
|
|
2136
2136
|
msgid "The given data requires an Integer index at %{walked_path}, got '%{type}'"
|
2137
2137
|
msgstr ""
|
2138
2138
|
|
2139
|
-
#: ../lib/puppet/functions/empty.rb:
|
2139
|
+
#: ../lib/puppet/functions/empty.rb:82
|
2140
2140
|
msgid "Calling function empty() with %{arg_type} value is deprecated."
|
2141
2141
|
msgstr ""
|
2142
2142
|
|
@@ -2226,7 +2226,7 @@ msgstr ""
|
|
2226
2226
|
msgid "slice(): block must define one parameter, or the same number of parameters as the given size of the slice (%{slice_size}). Block has %{serving_size}; %{parameter_names}"
|
2227
2227
|
msgstr ""
|
2228
2228
|
|
2229
|
-
#: ../lib/puppet/functions/strftime.rb:
|
2229
|
+
#: ../lib/puppet/functions/strftime.rb:208
|
2230
2230
|
msgid "The argument signature (String format, [String timezone]) is deprecated for #strftime. See #strftime documentation and Timespan type for more info"
|
2231
2231
|
msgstr ""
|
2232
2232
|
|
@@ -2897,7 +2897,7 @@ msgstr ""
|
|
2897
2897
|
msgid "Could not understand URL %{key}: %{detail}"
|
2898
2898
|
msgstr ""
|
2899
2899
|
|
2900
|
-
#: ../lib/puppet/indirector/resource/ral.rb:
|
2900
|
+
#: ../lib/puppet/indirector/resource/ral.rb:64
|
2901
2901
|
msgid "Could not find type %{request_type}"
|
2902
2902
|
msgstr ""
|
2903
2903
|
|
@@ -3115,43 +3115,43 @@ msgid "Face summary should be a single line; put the long text in 'description'
|
|
3115
3115
|
msgstr ""
|
3116
3116
|
|
3117
3117
|
#. TRANSLATORS 'author' is an attribute name and should not be translated
|
3118
|
-
#: ../lib/puppet/interface/documentation.rb:
|
3118
|
+
#: ../lib/puppet/interface/documentation.rb:206
|
3119
3119
|
msgid "author must be a string; use multiple statements for multiple authors"
|
3120
3120
|
msgstr ""
|
3121
3121
|
|
3122
3122
|
#. TRANSLATORS 'author' is an attribute name and should not be translated
|
3123
|
-
#: ../lib/puppet/interface/documentation.rb:
|
3123
|
+
#: ../lib/puppet/interface/documentation.rb:211
|
3124
3124
|
msgid "author should be a single line; use multiple statements for multiple authors"
|
3125
3125
|
msgstr ""
|
3126
3126
|
|
3127
3127
|
#. TRANSLATORS 'author' is an attribute name and should not be translated
|
3128
|
-
#: ../lib/puppet/interface/documentation.rb:
|
3128
|
+
#: ../lib/puppet/interface/documentation.rb:231
|
3129
3129
|
msgid "author should be a single line; use multiple statements"
|
3130
3130
|
msgstr ""
|
3131
3131
|
|
3132
3132
|
#. TRANSLATORS 'copyright' is an attribute name and should not be translated
|
3133
|
-
#: ../lib/puppet/interface/documentation.rb:
|
3133
|
+
#: ../lib/puppet/interface/documentation.rb:252
|
3134
3134
|
msgid "copyright takes the owners names, then the years covered"
|
3135
3135
|
msgstr ""
|
3136
3136
|
|
3137
3137
|
#. TRANSLATORS 'copyright' is an attribute name and should not be translated
|
3138
|
-
#: ../lib/puppet/interface/documentation.rb:
|
3138
|
+
#: ../lib/puppet/interface/documentation.rb:276
|
3139
3139
|
msgid "copyright owner must be a string or an array of strings"
|
3140
3140
|
msgstr ""
|
3141
3141
|
|
3142
3142
|
#. TRANSLATORS 'copyright' is an attribute name and should not be translated
|
3143
|
-
#: ../lib/puppet/interface/documentation.rb:
|
3143
|
+
#: ../lib/puppet/interface/documentation.rb:313
|
3144
3144
|
msgid "copyright with a year %{value} is very strange; did you accidentally add or subtract two years?"
|
3145
3145
|
msgstr ""
|
3146
3146
|
|
3147
3147
|
#. TRANSLATORS 'copyright' is an attribute name and should not be translated
|
3148
3148
|
#. TRANSLATORS 'copyright' is an attribute name and should not be translated
|
3149
|
-
#: ../lib/puppet/interface/documentation.rb:
|
3149
|
+
#: ../lib/puppet/interface/documentation.rb:329 ../lib/puppet/interface/documentation.rb:334
|
3150
3150
|
msgid "%{value} is not a good copyright year or range"
|
3151
3151
|
msgstr ""
|
3152
3152
|
|
3153
3153
|
#. TRANSLATORS 'copyright' is an attribute name and should not be translated
|
3154
|
-
#: ../lib/puppet/interface/documentation.rb:
|
3154
|
+
#: ../lib/puppet/interface/documentation.rb:353
|
3155
3155
|
msgid "%{value} is not a good copyright year, set, or range"
|
3156
3156
|
msgstr ""
|
3157
3157
|
|
@@ -3412,19 +3412,19 @@ msgstr ""
|
|
3412
3412
|
msgid "No file containing checksums found."
|
3413
3413
|
msgstr ""
|
3414
3414
|
|
3415
|
-
#: ../lib/puppet/module_tool/applications/installer.rb:
|
3415
|
+
#: ../lib/puppet/module_tool/applications/installer.rb:88 ../lib/puppet/module_tool/applications/upgrader.rb:102
|
3416
3416
|
msgid "Downloading from %{host} ..."
|
3417
3417
|
msgstr ""
|
3418
3418
|
|
3419
|
-
#: ../lib/puppet/module_tool/applications/installer.rb:
|
3419
|
+
#: ../lib/puppet/module_tool/applications/installer.rb:136 ../lib/puppet/module_tool/applications/upgrader.rb:140
|
3420
3420
|
msgid "Resolving dependencies ..."
|
3421
3421
|
msgstr ""
|
3422
3422
|
|
3423
|
-
#: ../lib/puppet/module_tool/applications/installer.rb:
|
3423
|
+
#: ../lib/puppet/module_tool/applications/installer.rb:212
|
3424
3424
|
msgid "Preparing to install ..."
|
3425
3425
|
msgstr ""
|
3426
3426
|
|
3427
|
-
#: ../lib/puppet/module_tool/applications/installer.rb:
|
3427
|
+
#: ../lib/puppet/module_tool/applications/installer.rb:215
|
3428
3428
|
msgid "Installing -- do not interrupt ..."
|
3429
3429
|
msgstr ""
|
3430
3430
|
|
@@ -3547,7 +3547,7 @@ msgstr ""
|
|
3547
3547
|
msgid "Could not %{action} '%{module_name}' (%{version}); no version satisfies all dependencies"
|
3548
3548
|
msgstr ""
|
3549
3549
|
|
3550
|
-
#: ../lib/puppet/module_tool/errors/shared.rb:17 ../lib/puppet/module_tool/errors/shared.rb:
|
3550
|
+
#: ../lib/puppet/module_tool/errors/shared.rb:17 ../lib/puppet/module_tool/errors/shared.rb:203 ../lib/puppet/module_tool/errors/upgrader.rb:58
|
3551
3551
|
msgid "Could not %{action} module '%{module_name}' (%{version})"
|
3552
3552
|
msgstr ""
|
3553
3553
|
|
@@ -3637,68 +3637,80 @@ msgid " No version of '%{module_name}' will satisfy dependencies"
|
|
3637
3637
|
msgstr ""
|
3638
3638
|
|
3639
3639
|
#: ../lib/puppet/module_tool/errors/shared.rb:135
|
3640
|
-
msgid "Could not %{action} '%{module_name}'
|
3640
|
+
msgid "Could not %{action} '%{module_name}', did you mean '%{suggestion}'?"
|
3641
3641
|
msgstr ""
|
3642
3642
|
|
3643
|
-
#: ../lib/puppet/module_tool/errors/shared.rb:140 ../lib/puppet/module_tool/errors/shared.rb:
|
3643
|
+
#: ../lib/puppet/module_tool/errors/shared.rb:140 ../lib/puppet/module_tool/errors/shared.rb:157 ../lib/puppet/module_tool/errors/shared.rb:180 ../lib/puppet/module_tool/errors/shared.rb:221
|
3644
3644
|
msgid "Could not %{action} module '%{module_name}'"
|
3645
3645
|
msgstr ""
|
3646
3646
|
|
3647
3647
|
#: ../lib/puppet/module_tool/errors/shared.rb:141
|
3648
|
+
msgid " The name '%{module_name}' is invalid"
|
3649
|
+
msgstr ""
|
3650
|
+
|
3651
|
+
#: ../lib/puppet/module_tool/errors/shared.rb:142
|
3652
|
+
msgid " Did you mean `puppet module %{action} %{suggestion}`?"
|
3653
|
+
msgstr ""
|
3654
|
+
|
3655
|
+
#: ../lib/puppet/module_tool/errors/shared.rb:152
|
3656
|
+
msgid "Could not %{action} '%{module_name}'; module is not installed"
|
3657
|
+
msgstr ""
|
3658
|
+
|
3659
|
+
#: ../lib/puppet/module_tool/errors/shared.rb:158
|
3648
3660
|
msgid " Module '%{module_name}' is not installed"
|
3649
3661
|
msgstr ""
|
3650
3662
|
|
3651
3663
|
#. TRANSLATORS `puppet module %{action} %{suggestion}` is a command line and should not be translated
|
3652
|
-
#: ../lib/puppet/module_tool/errors/shared.rb:
|
3664
|
+
#: ../lib/puppet/module_tool/errors/shared.rb:161
|
3653
3665
|
msgid " You may have meant `puppet module %{action} %{suggestion}`"
|
3654
3666
|
msgstr ""
|
3655
3667
|
|
3656
3668
|
#. TRANSLATORS `puppet module install` is a command line and should not be translated
|
3657
|
-
#: ../lib/puppet/module_tool/errors/shared.rb:
|
3669
|
+
#: ../lib/puppet/module_tool/errors/shared.rb:164
|
3658
3670
|
msgid " Use `puppet module install` to install this module"
|
3659
3671
|
msgstr ""
|
3660
3672
|
|
3661
3673
|
#. TRANSLATORS "module path" refers to a set of directories where modules may be installed
|
3662
|
-
#: ../lib/puppet/module_tool/errors/shared.rb:
|
3674
|
+
#: ../lib/puppet/module_tool/errors/shared.rb:175
|
3663
3675
|
msgid "Could not %{action} '%{module_name}'; module appears in multiple places in the module path"
|
3664
3676
|
msgstr ""
|
3665
3677
|
|
3666
|
-
#: ../lib/puppet/module_tool/errors/shared.rb:
|
3678
|
+
#: ../lib/puppet/module_tool/errors/shared.rb:181
|
3667
3679
|
msgid " Module '%{module_name}' appears multiple places in the module path"
|
3668
3680
|
msgstr ""
|
3669
3681
|
|
3670
3682
|
#. TRANSLATORS This is repeats as separate lines as a list under "Module '%{module_name}' appears multiple places in the module path"
|
3671
|
-
#: ../lib/puppet/module_tool/errors/shared.rb:
|
3683
|
+
#: ../lib/puppet/module_tool/errors/shared.rb:184
|
3672
3684
|
msgid " '%{module_name}' (%{version}) was found in %{path}"
|
3673
3685
|
msgstr ""
|
3674
3686
|
|
3675
3687
|
#. TRANSLATORS `--modulepath` is command line option and should not be translated
|
3676
|
-
#: ../lib/puppet/module_tool/errors/shared.rb:
|
3688
|
+
#: ../lib/puppet/module_tool/errors/shared.rb:187
|
3677
3689
|
msgid " Use the `--modulepath` option to limit the search to specific directories"
|
3678
3690
|
msgstr ""
|
3679
3691
|
|
3680
|
-
#: ../lib/puppet/module_tool/errors/shared.rb:
|
3692
|
+
#: ../lib/puppet/module_tool/errors/shared.rb:198
|
3681
3693
|
msgid "Could not %{action} '%{module_name}'; module has had changes made locally"
|
3682
3694
|
msgstr ""
|
3683
3695
|
|
3684
|
-
#: ../lib/puppet/module_tool/errors/shared.rb:
|
3696
|
+
#: ../lib/puppet/module_tool/errors/shared.rb:204
|
3685
3697
|
msgid " Installed module has had changes made locally"
|
3686
3698
|
msgstr ""
|
3687
3699
|
|
3688
3700
|
#. TRANSLATORS `puppet module %{action} --ignore-changes` is a command line and should not be translated
|
3689
|
-
#: ../lib/puppet/module_tool/errors/shared.rb:
|
3701
|
+
#: ../lib/puppet/module_tool/errors/shared.rb:206
|
3690
3702
|
msgid " Use `puppet module %{action} --ignore-changes` to %{action} this module anyway"
|
3691
3703
|
msgstr ""
|
3692
3704
|
|
3693
|
-
#: ../lib/puppet/module_tool/errors/shared.rb:
|
3705
|
+
#: ../lib/puppet/module_tool/errors/shared.rb:216
|
3694
3706
|
msgid "Could not %{action} '%{module_name}'; %{error}"
|
3695
3707
|
msgstr ""
|
3696
3708
|
|
3697
|
-
#: ../lib/puppet/module_tool/errors/shared.rb:
|
3709
|
+
#: ../lib/puppet/module_tool/errors/shared.rb:222
|
3698
3710
|
msgid " Failure trying to parse metadata"
|
3699
3711
|
msgstr ""
|
3700
3712
|
|
3701
|
-
#: ../lib/puppet/module_tool/errors/shared.rb:
|
3713
|
+
#: ../lib/puppet/module_tool/errors/shared.rb:223
|
3702
3714
|
msgid " Original message was: %{message}"
|
3703
3715
|
msgstr ""
|
3704
3716
|
|
@@ -6716,15 +6728,15 @@ msgstr ""
|
|
6716
6728
|
msgid "'%{exe}' is not qualified and no path was specified. Please qualify the command or specify a path."
|
6717
6729
|
msgstr ""
|
6718
6730
|
|
6719
|
-
#: ../lib/puppet/provider/exec/posix.rb:
|
6731
|
+
#: ../lib/puppet/provider/exec/posix.rb:33 ../lib/puppet/provider/exec/posix.rb:50 ../lib/puppet/provider/exec/windows.rb:40 ../lib/puppet/provider/exec/windows.rb:53
|
6720
6732
|
msgid "Could not find command '%{exe}'"
|
6721
6733
|
msgstr ""
|
6722
6734
|
|
6723
|
-
#: ../lib/puppet/provider/exec/posix.rb:
|
6735
|
+
#: ../lib/puppet/provider/exec/posix.rb:35 ../lib/puppet/provider/exec/windows.rb:42
|
6724
6736
|
msgid "'%{exe}' is a %{klass}, not a file"
|
6725
6737
|
msgstr ""
|
6726
6738
|
|
6727
|
-
#: ../lib/puppet/provider/exec/posix.rb:
|
6739
|
+
#: ../lib/puppet/provider/exec/posix.rb:37
|
6728
6740
|
msgid "'%{exe}' is not executable"
|
6729
6741
|
msgstr ""
|
6730
6742
|
|
@@ -7004,31 +7016,31 @@ msgstr ""
|
|
7004
7016
|
msgid "NIM package provider is unable to downgrade packages"
|
7005
7017
|
msgstr ""
|
7006
7018
|
|
7007
|
-
#: ../lib/puppet/provider/package/nim.rb:
|
7019
|
+
#: ../lib/puppet/provider/package/nim.rb:217
|
7008
7020
|
msgid ""
|
7009
7021
|
"Unable to parse output from nimclient showres: line does not match expected package header format:\n"
|
7010
7022
|
"'%{line}'"
|
7011
7023
|
msgstr ""
|
7012
7024
|
|
7013
|
-
#: ../lib/puppet/provider/package/nim.rb:
|
7025
|
+
#: ../lib/puppet/provider/package/nim.rb:224
|
7014
7026
|
msgid ""
|
7015
7027
|
"Unable to parse output from nimclient showres: package string does not match expected installp package string format:\n"
|
7016
7028
|
"'%{package_string}'"
|
7017
7029
|
msgstr ""
|
7018
7030
|
|
7019
|
-
#: ../lib/puppet/provider/package/nim.rb:
|
7031
|
+
#: ../lib/puppet/provider/package/nim.rb:234
|
7020
7032
|
msgid ""
|
7021
7033
|
"Unable to parse output from nimclient showres: package string does not match expected rpm package string format:\n"
|
7022
7034
|
"'%{package_string}'"
|
7023
7035
|
msgstr ""
|
7024
7036
|
|
7025
|
-
#: ../lib/puppet/provider/package/nim.rb:
|
7037
|
+
#: ../lib/puppet/provider/package/nim.rb:244
|
7026
7038
|
msgid ""
|
7027
7039
|
"Unable to parse output from nimclient showres: line does not match expected package line format:\n"
|
7028
7040
|
"'%{line}'"
|
7029
7041
|
msgstr ""
|
7030
7042
|
|
7031
|
-
#: ../lib/puppet/provider/package/nim.rb:
|
7043
|
+
#: ../lib/puppet/provider/package/nim.rb:256
|
7032
7044
|
msgid ""
|
7033
7045
|
"Unrecognized package type specifier: '%{package_type_flag}' in package line:\n"
|
7034
7046
|
"'%{line}'"
|
@@ -7263,19 +7275,19 @@ msgstr ""
|
|
7263
7275
|
msgid "Failed to read %{target}'s records when prefetching them. Reason: %{detail}"
|
7264
7276
|
msgstr ""
|
7265
7277
|
|
7266
|
-
#: ../lib/puppet/provider/parsedfile.rb:
|
7267
|
-
msgid "
|
7278
|
+
#: ../lib/puppet/provider/parsedfile.rb:284 ../lib/puppet/provider/parsedfile.rb:308
|
7279
|
+
msgid "Prefetching %{target} for provider %{name} returned nil"
|
7268
7280
|
msgstr ""
|
7269
7281
|
|
7270
|
-
#: ../lib/puppet/provider/parsedfile.rb:
|
7271
|
-
msgid "
|
7282
|
+
#: ../lib/puppet/provider/parsedfile.rb:294
|
7283
|
+
msgid "Could not prefetch %{resource} provider '%{name}' target '%{target}': %{detail}. Treating as empty"
|
7272
7284
|
msgstr ""
|
7273
7285
|
|
7274
|
-
#: ../lib/puppet/provider/parsedfile.rb:
|
7286
|
+
#: ../lib/puppet/provider/parsedfile.rb:381
|
7275
7287
|
msgid "Parsed Providers must define a default target"
|
7276
7288
|
msgstr ""
|
7277
7289
|
|
7278
|
-
#: ../lib/puppet/provider/parsedfile.rb:
|
7290
|
+
#: ../lib/puppet/provider/parsedfile.rb:472
|
7279
7291
|
msgid "Somehow got told to prefetch with no resource set"
|
7280
7292
|
msgstr ""
|
7281
7293
|
|
@@ -7733,49 +7745,57 @@ msgstr ""
|
|
7733
7745
|
msgid "Invalid setting type '%{type}'"
|
7734
7746
|
msgstr ""
|
7735
7747
|
|
7736
|
-
#: ../lib/puppet/settings.rb:
|
7748
|
+
#: ../lib/puppet/settings.rb:868
|
7749
|
+
msgid "Cannot manage owner permissions, because the provider for '%{name}' is not functional"
|
7750
|
+
msgstr ""
|
7751
|
+
|
7752
|
+
#: ../lib/puppet/settings.rb:884
|
7753
|
+
msgid "Cannot manage group permissions, because the provider for '%{name}' is not functional"
|
7754
|
+
msgstr ""
|
7755
|
+
|
7756
|
+
#: ../lib/puppet/settings.rb:920
|
7737
7757
|
msgid "Unknown searchpath case: %{source_type} for the %{source} settings path element."
|
7738
7758
|
msgstr ""
|
7739
7759
|
|
7740
|
-
#: ../lib/puppet/settings.rb:
|
7760
|
+
#: ../lib/puppet/settings.rb:1001
|
7741
7761
|
msgid "setting definition for '%{name}' is not a hash!"
|
7742
7762
|
msgstr ""
|
7743
7763
|
|
7744
|
-
#: ../lib/puppet/settings.rb:
|
7764
|
+
#: ../lib/puppet/settings.rb:1006
|
7745
7765
|
msgid "Setting %{name} is already defined"
|
7746
7766
|
msgstr ""
|
7747
7767
|
|
7748
|
-
#: ../lib/puppet/settings.rb:
|
7768
|
+
#: ../lib/puppet/settings.rb:1012
|
7749
7769
|
msgid "Setting %{name} is already using short name '%{short}'"
|
7750
7770
|
msgstr ""
|
7751
7771
|
|
7752
|
-
#: ../lib/puppet/settings.rb:
|
7772
|
+
#: ../lib/puppet/settings.rb:1276
|
7753
7773
|
msgid "Setting %{name} is deprecated."
|
7754
7774
|
msgstr ""
|
7755
7775
|
|
7756
7776
|
#. TRANSLATORS 'puppet.conf' is a file name and should not be translated
|
7757
|
-
#: ../lib/puppet/settings.rb:
|
7777
|
+
#: ../lib/puppet/settings.rb:1281
|
7758
7778
|
msgid "Setting %{name} is deprecated in puppet.conf."
|
7759
7779
|
msgstr ""
|
7760
7780
|
|
7761
|
-
#: ../lib/puppet/settings.rb:
|
7781
|
+
#: ../lib/puppet/settings.rb:1468
|
7762
7782
|
msgid "Error converting value for param '%{name}': %{detail}"
|
7763
7783
|
msgstr ""
|
7764
7784
|
|
7765
|
-
#: ../lib/puppet/settings.rb:
|
7785
|
+
#: ../lib/puppet/settings.rb:1492
|
7766
7786
|
msgid "Could not find value for %{expression}"
|
7767
7787
|
msgstr ""
|
7768
7788
|
|
7769
7789
|
#. TRANSLATORS '$environment' is a Puppet specific variable and should not be translated
|
7770
|
-
#: ../lib/puppet/settings.rb:
|
7790
|
+
#: ../lib/puppet/settings.rb:1502
|
7771
7791
|
msgid "You cannot interpolate $environment within '%{setting_name}' when using directory environments."
|
7772
7792
|
msgstr ""
|
7773
7793
|
|
7774
|
-
#: ../lib/puppet/settings.rb:
|
7794
|
+
#: ../lib/puppet/settings.rb:1503
|
7775
7795
|
msgid "Its value will remain %{value}."
|
7776
7796
|
msgstr ""
|
7777
7797
|
|
7778
|
-
#: ../lib/puppet/settings.rb:
|
7798
|
+
#: ../lib/puppet/settings.rb:1534
|
7779
7799
|
msgid "Attempt to assign a value to unknown setting %{name}"
|
7780
7800
|
msgstr ""
|
7781
7801
|
|
@@ -8662,56 +8682,56 @@ msgstr ""
|
|
8662
8682
|
msgid "'%{cmd}' returned %{status} instead of one of [%{expected}]"
|
8663
8683
|
msgstr ""
|
8664
8684
|
|
8665
|
-
#: ../lib/puppet/type/exec.rb:
|
8666
|
-
msgid "Command must be a String
|
8685
|
+
#: ../lib/puppet/type/exec.rb:205
|
8686
|
+
msgid "Command must be a String or Array<String>, got value of class %{klass}"
|
8667
8687
|
msgstr ""
|
8668
8688
|
|
8669
|
-
#: ../lib/puppet/type/exec.rb:
|
8689
|
+
#: ../lib/puppet/type/exec.rb:238
|
8670
8690
|
msgid "Unable to execute commands as other users on Windows"
|
8671
8691
|
msgstr ""
|
8672
8692
|
|
8673
|
-
#: ../lib/puppet/type/exec.rb:
|
8693
|
+
#: ../lib/puppet/type/exec.rb:240
|
8674
8694
|
msgid "Only root can execute commands as other users"
|
8675
8695
|
msgstr ""
|
8676
8696
|
|
8677
|
-
#: ../lib/puppet/type/exec.rb:
|
8697
|
+
#: ../lib/puppet/type/exec.rb:296
|
8678
8698
|
msgid "Invalid environment setting '%{value}'"
|
8679
8699
|
msgstr ""
|
8680
8700
|
|
8681
|
-
#: ../lib/puppet/type/exec.rb:
|
8701
|
+
#: ../lib/puppet/type/exec.rb:309
|
8682
8702
|
msgid "The umask specification is invalid: %{value}"
|
8683
8703
|
msgstr ""
|
8684
8704
|
|
8685
|
-
#: ../lib/puppet/type/exec.rb:
|
8705
|
+
#: ../lib/puppet/type/exec.rb:325
|
8686
8706
|
msgid "The timeout must be a number."
|
8687
8707
|
msgstr ""
|
8688
8708
|
|
8689
|
-
#: ../lib/puppet/type/exec.rb:
|
8709
|
+
#: ../lib/puppet/type/exec.rb:342
|
8690
8710
|
msgid "Tries must be an integer"
|
8691
8711
|
msgstr ""
|
8692
8712
|
|
8693
|
-
#: ../lib/puppet/type/exec.rb:
|
8713
|
+
#: ../lib/puppet/type/exec.rb:346
|
8694
8714
|
msgid "Tries must be an integer >= 1"
|
8695
8715
|
msgstr ""
|
8696
8716
|
|
8697
|
-
#: ../lib/puppet/type/exec.rb:
|
8717
|
+
#: ../lib/puppet/type/exec.rb:359
|
8698
8718
|
msgid "try_sleep must be a number"
|
8699
8719
|
msgstr ""
|
8700
8720
|
|
8701
|
-
#: ../lib/puppet/type/exec.rb:
|
8721
|
+
#: ../lib/puppet/type/exec.rb:363
|
8702
8722
|
msgid "try_sleep cannot be a negative number"
|
8703
8723
|
msgstr ""
|
8704
8724
|
|
8705
8725
|
#. TRANSLATORS 'creates' is a parameter name and should not be translated
|
8706
|
-
#: ../lib/puppet/type/exec.rb:
|
8726
|
+
#: ../lib/puppet/type/exec.rb:435
|
8707
8727
|
msgid "Checking that 'creates' path '%{creates_path}' exists"
|
8708
8728
|
msgstr ""
|
8709
8729
|
|
8710
|
-
#: ../lib/puppet/type/exec.rb:
|
8730
|
+
#: ../lib/puppet/type/exec.rb:484 ../lib/puppet/type/exec.rb:544
|
8711
8731
|
msgid "Check %{value} exceeded timeout"
|
8712
8732
|
msgstr ""
|
8713
8733
|
|
8714
|
-
#: ../lib/puppet/type/exec.rb:
|
8734
|
+
#: ../lib/puppet/type/exec.rb:636
|
8715
8735
|
msgid "'%{cmd}' won't be executed because of failed check '%{check}'"
|
8716
8736
|
msgstr ""
|
8717
8737
|
|
@@ -8835,7 +8855,7 @@ msgstr ""
|
|
8835
8855
|
msgid "Ensure set to :present but file type is %{file_type} so no content will be synced"
|
8836
8856
|
msgstr ""
|
8837
8857
|
|
8838
|
-
#: ../lib/puppet/type/file/mode.rb:
|
8858
|
+
#: ../lib/puppet/type/file/mode.rb:132
|
8839
8859
|
msgid "Not managing symlink mode"
|
8840
8860
|
msgstr ""
|
8841
8861
|
|
@@ -8948,7 +8968,7 @@ msgstr ""
|
|
8948
8968
|
msgid "%{value} is not a valid day of the week"
|
8949
8969
|
msgstr ""
|
8950
8970
|
|
8951
|
-
#: ../lib/puppet/type/service.rb:151 ../lib/puppet/type/user.rb:
|
8971
|
+
#: ../lib/puppet/type/service.rb:151 ../lib/puppet/type/user.rb:272
|
8952
8972
|
msgid "Passwords cannot include ':'"
|
8953
8973
|
msgstr ""
|
8954
8974
|
|
@@ -8991,81 +9011,81 @@ msgstr ""
|
|
8991
9011
|
msgid "File does not exist"
|
8992
9012
|
msgstr ""
|
8993
9013
|
|
8994
|
-
#: ../lib/puppet/type/user.rb:
|
9014
|
+
#: ../lib/puppet/type/user.rb:183
|
8995
9015
|
msgid "Could not find group(s) %{groups}"
|
8996
9016
|
msgstr ""
|
8997
9017
|
|
8998
|
-
#: ../lib/puppet/type/user.rb:
|
9018
|
+
#: ../lib/puppet/type/user.rb:292
|
8999
9019
|
msgid "Password minimum age must be provided as a number."
|
9000
9020
|
msgstr ""
|
9001
9021
|
|
9002
|
-
#: ../lib/puppet/type/user.rb:
|
9022
|
+
#: ../lib/puppet/type/user.rb:311
|
9003
9023
|
msgid "Password maximum age must be provided as a number."
|
9004
9024
|
msgstr ""
|
9005
9025
|
|
9006
|
-
#: ../lib/puppet/type/user.rb:
|
9026
|
+
#: ../lib/puppet/type/user.rb:342
|
9007
9027
|
msgid "Group names must be provided, not GID numbers."
|
9008
9028
|
msgstr ""
|
9009
9029
|
|
9010
|
-
#: ../lib/puppet/type/user.rb:
|
9030
|
+
#: ../lib/puppet/type/user.rb:344
|
9011
9031
|
msgid "Group names must be provided as an array, not a comma-separated list."
|
9012
9032
|
msgstr ""
|
9013
9033
|
|
9014
|
-
#: ../lib/puppet/type/user.rb:
|
9034
|
+
#: ../lib/puppet/type/user.rb:345
|
9015
9035
|
msgid "Group names must not be empty. If you want to specify \"no groups\" pass an empty array"
|
9016
9036
|
msgstr ""
|
9017
9037
|
|
9018
|
-
#: ../lib/puppet/type/user.rb:
|
9038
|
+
#: ../lib/puppet/type/user.rb:438
|
9019
9039
|
msgid "User provider %{name} can not manage home directories"
|
9020
9040
|
msgstr ""
|
9021
9041
|
|
9022
9042
|
#. TRANSLATORS YYYY-MM-DD represents a date with a four-digit year, a two-digit month, and a two-digit day,
|
9023
9043
|
#. TRANSLATORS separated by dashes.
|
9024
|
-
#: ../lib/puppet/type/user.rb:
|
9044
|
+
#: ../lib/puppet/type/user.rb:455
|
9025
9045
|
msgid "Expiry dates must be YYYY-MM-DD or the string \"absent\""
|
9026
9046
|
msgstr ""
|
9027
9047
|
|
9028
|
-
#: ../lib/puppet/type/user.rb:
|
9048
|
+
#: ../lib/puppet/type/user.rb:522
|
9029
9049
|
msgid "Role names must be provided, not numbers"
|
9030
9050
|
msgstr ""
|
9031
9051
|
|
9032
|
-
#: ../lib/puppet/type/user.rb:
|
9052
|
+
#: ../lib/puppet/type/user.rb:524
|
9033
9053
|
msgid "Role names must be provided as an array, not a comma-separated list"
|
9034
9054
|
msgstr ""
|
9035
9055
|
|
9036
|
-
#: ../lib/puppet/type/user.rb:
|
9056
|
+
#: ../lib/puppet/type/user.rb:561
|
9037
9057
|
msgid "Auth names must be provided, not numbers"
|
9038
9058
|
msgstr ""
|
9039
9059
|
|
9040
|
-
#: ../lib/puppet/type/user.rb:
|
9060
|
+
#: ../lib/puppet/type/user.rb:563
|
9041
9061
|
msgid "Auth names must be provided as an array, not a comma-separated list"
|
9042
9062
|
msgstr ""
|
9043
9063
|
|
9044
|
-
#: ../lib/puppet/type/user.rb:
|
9064
|
+
#: ../lib/puppet/type/user.rb:587
|
9045
9065
|
msgid "Profile names must be provided, not numbers"
|
9046
9066
|
msgstr ""
|
9047
9067
|
|
9048
|
-
#: ../lib/puppet/type/user.rb:
|
9068
|
+
#: ../lib/puppet/type/user.rb:589
|
9049
9069
|
msgid "Profile names must be provided as an array, not a comma-separated list"
|
9050
9070
|
msgstr ""
|
9051
9071
|
|
9052
|
-
#: ../lib/puppet/type/user.rb:
|
9072
|
+
#: ../lib/puppet/type/user.rb:701
|
9053
9073
|
msgid "Ssh_authorized_key type is not available. Cannot purge SSH keys."
|
9054
9074
|
msgstr ""
|
9055
9075
|
|
9056
|
-
#: ../lib/puppet/type/user.rb:
|
9076
|
+
#: ../lib/puppet/type/user.rb:739
|
9057
9077
|
msgid "Each entry for purge_ssh_keys must be a string, not a %{klass}"
|
9058
9078
|
msgstr ""
|
9059
9079
|
|
9060
|
-
#: ../lib/puppet/type/user.rb:
|
9080
|
+
#: ../lib/puppet/type/user.rb:742
|
9061
9081
|
msgid "Paths to keyfiles must be absolute, not %{entry}"
|
9062
9082
|
msgstr ""
|
9063
9083
|
|
9064
|
-
#: ../lib/puppet/type/user.rb:
|
9084
|
+
#: ../lib/puppet/type/user.rb:746
|
9065
9085
|
msgid "purge_ssh_keys must be true, false, or an array of file names, not %{value}"
|
9066
9086
|
msgstr ""
|
9067
9087
|
|
9068
|
-
#: ../lib/puppet/type/user.rb:
|
9088
|
+
#: ../lib/puppet/type/user.rb:755
|
9069
9089
|
msgid "Class name must be provided."
|
9070
9090
|
msgstr ""
|
9071
9091
|
|
@@ -9892,39 +9912,39 @@ msgstr ""
|
|
9892
9912
|
msgid "Invalid %{klass}: %{id}"
|
9893
9913
|
msgstr ""
|
9894
9914
|
|
9895
|
-
#: ../lib/puppet/util/symbolic_file_mode.rb:
|
9915
|
+
#: ../lib/puppet/util/symbolic_file_mode.rb:49
|
9896
9916
|
msgid "An empty mode string is illegal"
|
9897
9917
|
msgstr ""
|
9898
9918
|
|
9899
|
-
#: ../lib/puppet/util/symbolic_file_mode.rb:
|
9919
|
+
#: ../lib/puppet/util/symbolic_file_mode.rb:53
|
9900
9920
|
msgid "Numeric modes must be in octal, not decimal!"
|
9901
9921
|
msgstr ""
|
9902
9922
|
|
9903
|
-
#: ../lib/puppet/util/symbolic_file_mode.rb:
|
9923
|
+
#: ../lib/puppet/util/symbolic_file_mode.rb:56
|
9904
9924
|
msgid "non-numeric current mode (%{mode})"
|
9905
9925
|
msgstr ""
|
9906
9926
|
|
9907
|
-
#: ../lib/puppet/util/symbolic_file_mode.rb:
|
9927
|
+
#: ../lib/puppet/util/symbolic_file_mode.rb:76
|
9908
9928
|
msgid "Missing action"
|
9909
9929
|
msgstr ""
|
9910
9930
|
|
9911
|
-
#: ../lib/puppet/util/symbolic_file_mode.rb:
|
9931
|
+
#: ../lib/puppet/util/symbolic_file_mode.rb:91
|
9912
9932
|
msgid "Missing operation (-, =, or +)"
|
9913
9933
|
msgstr ""
|
9914
9934
|
|
9915
|
-
#: ../lib/puppet/util/symbolic_file_mode.rb:
|
9935
|
+
#: ../lib/puppet/util/symbolic_file_mode.rb:113
|
9916
9936
|
msgid "X only works with the '+' operator"
|
9917
9937
|
msgstr ""
|
9918
9938
|
|
9919
|
-
#: ../lib/puppet/util/symbolic_file_mode.rb:
|
9939
|
+
#: ../lib/puppet/util/symbolic_file_mode.rb:124
|
9920
9940
|
msgid "internal error"
|
9921
9941
|
msgstr ""
|
9922
9942
|
|
9923
|
-
#: ../lib/puppet/util/symbolic_file_mode.rb:
|
9943
|
+
#: ../lib/puppet/util/symbolic_file_mode.rb:128
|
9924
9944
|
msgid "Unknown operation"
|
9925
9945
|
msgstr ""
|
9926
9946
|
|
9927
|
-
#: ../lib/puppet/util/symbolic_file_mode.rb:
|
9947
|
+
#: ../lib/puppet/util/symbolic_file_mode.rb:143
|
9928
9948
|
msgid "%{error}%{rest} in symbolic mode %{modification}"
|
9929
9949
|
msgstr ""
|
9930
9950
|
|
@@ -10166,7 +10186,7 @@ msgstr ""
|
|
10166
10186
|
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"
|
10167
10187
|
msgstr ""
|
10168
10188
|
|
10169
|
-
#: ../lib/puppet/util/windows/security.rb:433 ../lib/puppet/util/windows/security.rb:450 ../lib/puppet/util/windows/sid.rb:
|
10189
|
+
#: ../lib/puppet/util/windows/security.rb:433 ../lib/puppet/util/windows/security.rb:450 ../lib/puppet/util/windows/sid.rb:159 ../lib/puppet/util/windows/sid.rb:221 ../lib/puppet/util/windows/user.rb:59
|
10170
10190
|
msgid "Invalid SID"
|
10171
10191
|
msgstr ""
|
10172
10192
|
|
@@ -10322,19 +10342,19 @@ msgstr ""
|
|
10322
10342
|
msgid "Timed out while waiting for the pending transition from %{pending_state} to %{final_state} to finish. The current state is %{current_state}."
|
10323
10343
|
msgstr ""
|
10324
10344
|
|
10325
|
-
#: ../lib/puppet/util/windows/sid.rb:
|
10345
|
+
#: ../lib/puppet/util/windows/sid.rb:98
|
10326
10346
|
msgid "Octet string must be an array of bytes"
|
10327
10347
|
msgstr ""
|
10328
10348
|
|
10329
|
-
#: ../lib/puppet/util/windows/sid.rb:
|
10349
|
+
#: ../lib/puppet/util/windows/sid.rb:165
|
10330
10350
|
msgid "Failed to convert binary SID"
|
10331
10351
|
msgstr ""
|
10332
10352
|
|
10333
|
-
#: ../lib/puppet/util/windows/sid.rb:
|
10353
|
+
#: ../lib/puppet/util/windows/sid.rb:170
|
10334
10354
|
msgid "ConvertSidToStringSidW failed to allocate buffer for sid"
|
10335
10355
|
msgstr ""
|
10336
10356
|
|
10337
|
-
#: ../lib/puppet/util/windows/sid.rb:
|
10357
|
+
#: ../lib/puppet/util/windows/sid.rb:190
|
10338
10358
|
msgid "Failed to convert string SID: %{string_sid}"
|
10339
10359
|
msgstr ""
|
10340
10360
|
|