puppet 5.5.8-universal-darwin → 5.5.10-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/Gemfile.lock +14 -14
- 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 +45 -29
- 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/types/p_timespan_type.rb +2 -2
- data/lib/puppet/pops/types/string_converter.rb +11 -2
- data/lib/puppet/provider/cron/crontab.rb +1 -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/parsedfile.rb +25 -4
- data/lib/puppet/provider/service/smf.rb +54 -0
- 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/puppet.pot +97 -69
- 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-ca.8 +1 -1
- data/man/man8/puppet-catalog.8 +1 -1
- data/man/man8/puppet-cert.8 +1 -1
- data/man/man8/puppet-certificate.8 +1 -1
- data/man/man8/puppet-certificate_request.8 +1 -1
- data/man/man8/puppet-certificate_revocation_list.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-master.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-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 +1 -1
- data/spec/integration/util/windows/registry_spec.rb +39 -0
- data/spec/unit/application/device_spec.rb +4 -1
- data/spec/unit/application/lookup_spec.rb +10 -9
- data/spec/unit/forge/forge_spec.rb +4 -2
- data/spec/unit/indirector/yaml_spec.rb +1 -1
- data/spec/unit/pops/loaders/loader_spec.rb +6 -7
- 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/cron/parsed_spec.rb +4 -3
- data/spec/unit/provider/group/ldap_spec.rb +22 -25
- data/spec/unit/provider/group/pw_spec.rb +7 -10
- data/spec/unit/provider/host/parsed_spec.rb +3 -17
- 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 +29 -31
- 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 +44 -72
- 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 +29 -15
- data/spec/unit/provider/package/zypper_spec.rb +17 -19
- data/spec/unit/provider/service/bsd_spec.rb +8 -12
- data/spec/unit/provider/service/daemontools_spec.rb +12 -20
- data/spec/unit/provider/service/debian_spec.rb +8 -16
- data/spec/unit/provider/service/freebsd_spec.rb +2 -5
- data/spec/unit/provider/service/openbsd_spec.rb +12 -18
- data/spec/unit/provider/service/rcng_spec.rb +3 -7
- data/spec/unit/provider/service/redhat_spec.rb +21 -23
- data/spec/unit/provider/service/runit_spec.rb +9 -19
- data/spec/unit/provider/service/smf_spec.rb +82 -21
- data/spec/unit/provider/service/src_spec.rb +14 -23
- data/spec/unit/provider/user/hpux_spec.rb +2 -5
- data/spec/unit/provider/user/ldap_spec.rb +29 -32
- data/spec/unit/provider/user/pw_spec.rb +10 -13
- 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 +6 -2
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 5.5.
|
9
|
+
"Project-Id-Version: Puppet automation framework 5.5.8-108-g9e04bef\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-12 23:31+0000\n"
|
13
|
+
"PO-Revision-Date: 2018-12-12 23:31+0000\n"
|
14
14
|
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
15
15
|
"Language-Team: LANGUAGE <LL@li.org>\n"
|
16
16
|
"Language: \n"
|
@@ -168,7 +168,7 @@ msgstr ""
|
|
168
168
|
msgid "No help available for puppet %{app_name}"
|
169
169
|
msgstr ""
|
170
170
|
|
171
|
-
#: ../lib/puppet/application/agent.rb:24 ../lib/puppet/application/device.rb:
|
171
|
+
#: ../lib/puppet/application/agent.rb:24 ../lib/puppet/application/device.rb:23
|
172
172
|
msgid "Cancelling startup"
|
173
173
|
msgstr ""
|
174
174
|
|
@@ -245,51 +245,51 @@ msgstr ""
|
|
245
245
|
msgid "Display help about resource types"
|
246
246
|
msgstr ""
|
247
247
|
|
248
|
-
#: ../lib/puppet/application/device.rb:
|
248
|
+
#: ../lib/puppet/application/device.rb:82
|
249
249
|
msgid "Manage remote network devices"
|
250
250
|
msgstr ""
|
251
251
|
|
252
|
-
#: ../lib/puppet/application/device.rb:
|
252
|
+
#: ../lib/puppet/application/device.rb:226
|
253
253
|
msgid "resource command requires target"
|
254
254
|
msgstr ""
|
255
255
|
|
256
|
-
#: ../lib/puppet/application/device.rb:
|
256
|
+
#: ../lib/puppet/application/device.rb:229
|
257
257
|
msgid "facts command requires target"
|
258
258
|
msgstr ""
|
259
259
|
|
260
|
-
#: ../lib/puppet/application/device.rb:
|
260
|
+
#: ../lib/puppet/application/device.rb:232
|
261
261
|
msgid "missing argument: --target is required when using --apply"
|
262
262
|
msgstr ""
|
263
263
|
|
264
|
-
#: ../lib/puppet/application/device.rb:
|
264
|
+
#: ../lib/puppet/application/device.rb:233
|
265
265
|
msgid "%{file} does not exist, cannot apply"
|
266
266
|
msgstr ""
|
267
267
|
|
268
|
-
#: ../lib/puppet/application/device.rb:
|
268
|
+
#: ../lib/puppet/application/device.rb:250
|
269
269
|
msgid "Target device / certificate '%{target}' not found in %{config}"
|
270
270
|
msgstr ""
|
271
271
|
|
272
|
-
#: ../lib/puppet/application/device.rb:
|
272
|
+
#: ../lib/puppet/application/device.rb:252
|
273
273
|
msgid "No device found in %{config}"
|
274
274
|
msgstr ""
|
275
275
|
|
276
|
-
#: ../lib/puppet/application/device.rb:
|
276
|
+
#: ../lib/puppet/application/device.rb:278
|
277
277
|
msgid "retrieving resource: %{resource} from %{target} at %{scheme}%{url_host}%{port}%{url_path}"
|
278
278
|
msgstr ""
|
279
279
|
|
280
|
-
#: ../lib/puppet/application/device.rb:
|
280
|
+
#: ../lib/puppet/application/device.rb:293
|
281
281
|
msgid "retrieving facts from %{target} at %{scheme}%{url_host}%{port}%{url_path}"
|
282
282
|
msgstr ""
|
283
283
|
|
284
|
-
#: ../lib/puppet/application/device.rb:
|
284
|
+
#: ../lib/puppet/application/device.rb:318
|
285
285
|
msgid "starting applying configuration to %{target} at %{scheme}%{url_host}%{port}%{url_path}"
|
286
286
|
msgstr ""
|
287
287
|
|
288
|
-
#: ../lib/puppet/application/device.rb:
|
288
|
+
#: ../lib/puppet/application/device.rb:356 ../lib/puppet/application/resource.rb:196
|
289
289
|
msgid "You must specify the type to display"
|
290
290
|
msgstr ""
|
291
291
|
|
292
|
-
#: ../lib/puppet/application/device.rb:
|
292
|
+
#: ../lib/puppet/application/device.rb:357 ../lib/puppet/application/resource.rb:197
|
293
293
|
msgid "Could not find type %{type}"
|
294
294
|
msgstr ""
|
295
295
|
|
@@ -919,7 +919,7 @@ msgid "Examine Puppet's current settings."
|
|
919
919
|
msgstr ""
|
920
920
|
|
921
921
|
#: ../lib/puppet/face/config.rb:38
|
922
|
-
msgid "
|
922
|
+
msgid "all | <setting> [<setting> ...]"
|
923
923
|
msgstr ""
|
924
924
|
|
925
925
|
#: ../lib/puppet/face/config.rb:83
|
@@ -7217,15 +7217,15 @@ msgstr ""
|
|
7217
7217
|
msgid "The source parameter cannot be empty when using the Windows provider."
|
7218
7218
|
msgstr ""
|
7219
7219
|
|
7220
|
-
#: ../lib/puppet/provider/package/windows/package.rb:
|
7220
|
+
#: ../lib/puppet/provider/package/windows/package.rb:61
|
7221
7221
|
msgid "The source parameter is required when using the Windows provider."
|
7222
7222
|
msgstr ""
|
7223
7223
|
|
7224
|
-
#: ../lib/puppet/provider/package/windows/package.rb:
|
7224
|
+
#: ../lib/puppet/provider/package/windows/package.rb:69
|
7225
7225
|
msgid "The source does not exist: '%{source}'"
|
7226
7226
|
msgstr ""
|
7227
7227
|
|
7228
|
-
#: ../lib/puppet/provider/package/windows/package.rb:
|
7228
|
+
#: ../lib/puppet/provider/package/windows/package.rb:72
|
7229
7229
|
msgid "Don't know how to install '%{source}'"
|
7230
7230
|
msgstr ""
|
7231
7231
|
|
@@ -7249,23 +7249,27 @@ msgstr ""
|
|
7249
7249
|
msgid "Failed to update to version %{should}, got version %{version} instead"
|
7250
7250
|
msgstr ""
|
7251
7251
|
|
7252
|
-
#: ../lib/puppet/provider/parsedfile.rb:
|
7252
|
+
#: ../lib/puppet/provider/parsedfile.rb:52
|
7253
7253
|
msgid "Invalid filetype %{type}"
|
7254
7254
|
msgstr ""
|
7255
7255
|
|
7256
|
-
#: ../lib/puppet/provider/parsedfile.rb:
|
7256
|
+
#: ../lib/puppet/provider/parsedfile.rb:99
|
7257
|
+
msgid "Failed to read %{target}'s records when prefetching them. Reason: %{detail}"
|
7258
|
+
msgstr ""
|
7259
|
+
|
7260
|
+
#: ../lib/puppet/provider/parsedfile.rb:287
|
7257
7261
|
msgid "Could not prefetch %{resource} provider '%{name}' target '%{target}': %{detail}. Treating as empty"
|
7258
7262
|
msgstr ""
|
7259
7263
|
|
7260
|
-
#: ../lib/puppet/provider/parsedfile.rb:
|
7264
|
+
#: ../lib/puppet/provider/parsedfile.rb:301
|
7261
7265
|
msgid "Prefetching %{target} for provider %{name} returned nil"
|
7262
7266
|
msgstr ""
|
7263
7267
|
|
7264
|
-
#: ../lib/puppet/provider/parsedfile.rb:
|
7268
|
+
#: ../lib/puppet/provider/parsedfile.rb:374
|
7265
7269
|
msgid "Parsed Providers must define a default target"
|
7266
7270
|
msgstr ""
|
7267
7271
|
|
7268
|
-
#: ../lib/puppet/provider/parsedfile.rb:
|
7272
|
+
#: ../lib/puppet/provider/parsedfile.rb:463
|
7269
7273
|
msgid "Somehow got told to prefetch with no resource set"
|
7270
7274
|
msgstr ""
|
7271
7275
|
|
@@ -7299,6 +7303,18 @@ msgstr ""
|
|
7299
7303
|
msgid "Waiting 5 seconds for runsvdir to discover service %{service}"
|
7300
7304
|
msgstr ""
|
7301
7305
|
|
7306
|
+
#: ../lib/puppet/provider/service/smf.rb:68
|
7307
|
+
msgid "Failed to get the FMRI of the %{service} service: The pattern '%{service}' matches multiple FMRIs! These are the FMRIs it matches: %{all_fmris}"
|
7308
|
+
msgstr ""
|
7309
|
+
|
7310
|
+
#: ../lib/puppet/provider/service/smf.rb:83
|
7311
|
+
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."
|
7312
|
+
msgstr ""
|
7313
|
+
|
7314
|
+
#: ../lib/puppet/provider/service/smf.rb:182
|
7315
|
+
msgid "The %{service} service is incomplete so its status will be reported as :stopped. See `svcs -xv %{fmri}` for more details."
|
7316
|
+
msgstr ""
|
7317
|
+
|
7302
7318
|
#: ../lib/puppet/provider/service/windows.rb:22
|
7303
7319
|
msgid "Cannot enable %{resource_name}, error was: %{detail}"
|
7304
7320
|
msgstr ""
|
@@ -8387,23 +8403,27 @@ msgstr ""
|
|
8387
8403
|
msgid "change from %s to %s failed: "
|
8388
8404
|
msgstr ""
|
8389
8405
|
|
8390
|
-
#: ../lib/puppet/transaction/resource_harness.rb:
|
8406
|
+
#: ../lib/puppet/transaction/resource_harness.rb:162
|
8407
|
+
msgid "could not create change error message for %{name}"
|
8408
|
+
msgstr ""
|
8409
|
+
|
8410
|
+
#: ../lib/puppet/transaction/resource_harness.rb:214
|
8391
8411
|
msgid "audit change: previously recorded value %s has been changed to %s"
|
8392
8412
|
msgstr ""
|
8393
8413
|
|
8394
|
-
#: ../lib/puppet/transaction/resource_harness.rb:
|
8414
|
+
#: ../lib/puppet/transaction/resource_harness.rb:224
|
8395
8415
|
msgid " (previously recorded value was %s)"
|
8396
8416
|
msgstr ""
|
8397
8417
|
|
8398
|
-
#: ../lib/puppet/transaction/resource_harness.rb:
|
8418
|
+
#: ../lib/puppet/transaction/resource_harness.rb:231
|
8399
8419
|
msgid "current_value %s, should be %s (noop)"
|
8400
8420
|
msgstr ""
|
8401
8421
|
|
8402
|
-
#: ../lib/puppet/transaction/resource_harness.rb:
|
8422
|
+
#: ../lib/puppet/transaction/resource_harness.rb:240
|
8403
8423
|
msgid "changed %s to %s"
|
8404
8424
|
msgstr ""
|
8405
8425
|
|
8406
|
-
#: ../lib/puppet/transaction/resource_harness.rb:
|
8426
|
+
#: ../lib/puppet/transaction/resource_harness.rb:263
|
8407
8427
|
msgid "audit change: newly-recorded value %s"
|
8408
8428
|
msgstr ""
|
8409
8429
|
|
@@ -9234,15 +9254,15 @@ msgstr ""
|
|
9234
9254
|
msgid "Could not initialize global default settings"
|
9235
9255
|
msgstr ""
|
9236
9256
|
|
9237
|
-
#: ../lib/puppet/util/command_line.rb:
|
9257
|
+
#: ../lib/puppet/util/command_line.rb:165
|
9238
9258
|
msgid "Error: Could not parse application options: invalid option: %{opt}"
|
9239
9259
|
msgstr ""
|
9240
9260
|
|
9241
|
-
#: ../lib/puppet/util/command_line.rb:
|
9261
|
+
#: ../lib/puppet/util/command_line.rb:168
|
9242
9262
|
msgid "See 'puppet help' for help on available puppet subcommands"
|
9243
9263
|
msgstr ""
|
9244
9264
|
|
9245
|
-
#: ../lib/puppet/util/command_line.rb:
|
9265
|
+
#: ../lib/puppet/util/command_line.rb:181
|
9246
9266
|
msgid "Error: Unknown Puppet subcommand '%{cmd}'"
|
9247
9267
|
msgstr ""
|
9248
9268
|
|
@@ -9523,19 +9543,27 @@ msgstr ""
|
|
9523
9543
|
msgid "Could not retrieve user %{user}: %{detail}"
|
9524
9544
|
msgstr ""
|
9525
9545
|
|
9526
|
-
#: ../lib/puppet/util/filetype.rb:
|
9527
|
-
msgid "
|
9546
|
+
#: ../lib/puppet/util/filetype.rb:195 ../lib/puppet/util/filetype.rb:260 ../lib/puppet/util/filetype.rb:311
|
9547
|
+
msgid "The %{path} user does not exist. Treating their crontab file as empty in case Puppet creates them in the middle of the run."
|
9548
|
+
msgstr ""
|
9549
|
+
|
9550
|
+
#: ../lib/puppet/util/filetype.rb:206 ../lib/puppet/util/filetype.rb:271 ../lib/puppet/util/filetype.rb:322
|
9551
|
+
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)."
|
9528
9552
|
msgstr ""
|
9529
9553
|
|
9530
|
-
#: ../lib/puppet/util/filetype.rb:
|
9554
|
+
#: ../lib/puppet/util/filetype.rb:210 ../lib/puppet/util/filetype.rb:275 ../lib/puppet/util/filetype.rb:326
|
9531
9555
|
msgid "Could not read crontab for %{path}: %{detail}"
|
9532
9556
|
msgstr ""
|
9533
9557
|
|
9534
|
-
#: ../lib/puppet/util/filetype.rb:
|
9558
|
+
#: ../lib/puppet/util/filetype.rb:232
|
9559
|
+
msgid "Cannot write the %{path} user's crontab: The user does not exist"
|
9560
|
+
msgstr ""
|
9561
|
+
|
9562
|
+
#: ../lib/puppet/util/filetype.rb:283 ../lib/puppet/util/filetype.rb:334
|
9535
9563
|
msgid "Could not remove crontab for %{path}: %{detail}"
|
9536
9564
|
msgstr ""
|
9537
9565
|
|
9538
|
-
#: ../lib/puppet/util/filetype.rb:
|
9566
|
+
#: ../lib/puppet/util/filetype.rb:298 ../lib/puppet/util/filetype.rb:350
|
9539
9567
|
msgid "Could not write crontab for %{path}: %{detail}"
|
9540
9568
|
msgstr ""
|
9541
9569
|
|
@@ -10113,39 +10141,39 @@ msgstr ""
|
|
10113
10141
|
msgid "Failed to open registry key '%{key}\\%{path}'"
|
10114
10142
|
msgstr ""
|
10115
10143
|
|
10116
|
-
#: ../lib/puppet/util/windows/registry.rb:
|
10144
|
+
#: ../lib/puppet/util/windows/registry.rb:128
|
10117
10145
|
msgid "Failed to enumerate %{key} registry keys at index %{index}"
|
10118
10146
|
msgstr ""
|
10119
10147
|
|
10120
|
-
#: ../lib/puppet/util/windows/registry.rb:
|
10148
|
+
#: ../lib/puppet/util/windows/registry.rb:159
|
10121
10149
|
msgid "Failed to enumerate %{key} registry values at index %{index}"
|
10122
10150
|
msgstr ""
|
10123
10151
|
|
10124
|
-
#: ../lib/puppet/util/windows/registry.rb:
|
10152
|
+
#: ../lib/puppet/util/windows/registry.rb:189
|
10125
10153
|
msgid "Failed to query registry %{key} for sizes"
|
10126
10154
|
msgstr ""
|
10127
10155
|
|
10128
|
-
#: ../lib/puppet/util/windows/registry.rb:
|
10156
|
+
#: ../lib/puppet/util/windows/registry.rb:225
|
10129
10157
|
msgid "Type mismatch (expect %{rtype} but %{type} present)"
|
10130
10158
|
msgstr ""
|
10131
10159
|
|
10132
|
-
#: ../lib/puppet/util/windows/registry.rb:
|
10160
|
+
#: ../lib/puppet/util/windows/registry.rb:247
|
10133
10161
|
msgid "Type %{type} is not supported."
|
10134
10162
|
msgstr ""
|
10135
10163
|
|
10136
|
-
#: ../lib/puppet/util/windows/registry.rb:
|
10164
|
+
#: ../lib/puppet/util/windows/registry.rb:252
|
10137
10165
|
msgid "A value in the registry key %{parent_key_name}%{key} is corrupt or invalid"
|
10138
10166
|
msgstr ""
|
10139
10167
|
|
10140
|
-
#: ../lib/puppet/util/windows/registry.rb:
|
10168
|
+
#: ../lib/puppet/util/windows/registry.rb:274
|
10141
10169
|
msgid "Failed to read registry value %{value} at %{key}"
|
10142
10170
|
msgstr ""
|
10143
10171
|
|
10144
|
-
#: ../lib/puppet/util/windows/registry.rb:
|
10172
|
+
#: ../lib/puppet/util/windows/registry.rb:292
|
10145
10173
|
msgid "Failed to delete registry value %{name} at %{key}"
|
10146
10174
|
msgstr ""
|
10147
10175
|
|
10148
|
-
#: ../lib/puppet/util/windows/registry.rb:
|
10176
|
+
#: ../lib/puppet/util/windows/registry.rb:307
|
10149
10177
|
msgid "Failed to delete registry key %{name} at %{key}"
|
10150
10178
|
msgstr ""
|
10151
10179
|
|
@@ -10235,87 +10263,87 @@ msgstr ""
|
|
10235
10263
|
msgid "Successfully resumed the %{service_name} service"
|
10236
10264
|
msgstr ""
|
10237
10265
|
|
10238
|
-
#: ../lib/puppet/util/windows/service.rb:
|
10266
|
+
#: ../lib/puppet/util/windows/service.rb:370
|
10239
10267
|
msgid "Unknown Service state '%{current_state}' for '%{service_name}'"
|
10240
10268
|
msgstr ""
|
10241
10269
|
|
10242
|
-
#: ../lib/puppet/util/windows/service.rb:
|
10270
|
+
#: ../lib/puppet/util/windows/service.rb:388
|
10243
10271
|
msgid "Unknown start type '%{start_type}' for '%{service_name}'"
|
10244
10272
|
msgstr ""
|
10245
10273
|
|
10246
|
-
#: ../lib/puppet/util/windows/service.rb:
|
10274
|
+
#: ../lib/puppet/util/windows/service.rb:403
|
10247
10275
|
msgid "Unknown start type %{start_type}"
|
10248
10276
|
msgstr ""
|
10249
10277
|
|
10250
|
-
#: ../lib/puppet/util/windows/service.rb:
|
10278
|
+
#: ../lib/puppet/util/windows/service.rb:424
|
10251
10279
|
msgid "Failed to update service configuration"
|
10252
10280
|
msgstr ""
|
10253
10281
|
|
10254
|
-
#: ../lib/puppet/util/windows/service.rb:
|
10282
|
+
#: ../lib/puppet/util/windows/service.rb:484
|
10255
10283
|
msgid "Failed to fetch services"
|
10256
10284
|
msgstr ""
|
10257
10285
|
|
10258
|
-
#: ../lib/puppet/util/windows/service.rb:
|
10286
|
+
#: ../lib/puppet/util/windows/service.rb:533
|
10259
10287
|
msgid "Failed to open a handle to the service"
|
10260
10288
|
msgstr ""
|
10261
10289
|
|
10262
|
-
#: ../lib/puppet/util/windows/service.rb:
|
10290
|
+
#: ../lib/puppet/util/windows/service.rb:550
|
10263
10291
|
msgid "Failed to open a handle to the service control manager"
|
10264
10292
|
msgstr ""
|
10265
10293
|
|
10266
|
-
#: ../lib/puppet/util/windows/service.rb:
|
10294
|
+
#: ../lib/puppet/util/windows/service.rb:572
|
10267
10295
|
msgid "The service is already in the %{final_state} state. No further work needs to be done."
|
10268
10296
|
msgstr ""
|
10269
10297
|
|
10270
|
-
#: ../lib/puppet/util/windows/service.rb:
|
10298
|
+
#: ../lib/puppet/util/windows/service.rb:584
|
10271
10299
|
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."
|
10272
10300
|
msgstr ""
|
10273
10301
|
|
10274
|
-
#: ../lib/puppet/util/windows/service.rb:
|
10302
|
+
#: ../lib/puppet/util/windows/service.rb:595
|
10275
10303
|
msgid "There is already a pending transition to the %{final_state} state for the %{service_name} service."
|
10276
10304
|
msgstr ""
|
10277
10305
|
|
10278
|
-
#: ../lib/puppet/util/windows/service.rb:
|
10306
|
+
#: ../lib/puppet/util/windows/service.rb:611
|
10279
10307
|
msgid "The service is in the %{pending_state} state, which is an unsafe pending state."
|
10280
10308
|
msgstr ""
|
10281
10309
|
|
10282
|
-
#: ../lib/puppet/util/windows/service.rb:
|
10310
|
+
#: ../lib/puppet/util/windows/service.rb:616
|
10283
10311
|
msgid "Transitioning the %{service_name} service from %{initial_state} to %{final_state}"
|
10284
10312
|
msgstr ""
|
10285
10313
|
|
10286
|
-
#: ../lib/puppet/util/windows/service.rb:
|
10314
|
+
#: ../lib/puppet/util/windows/service.rb:620
|
10287
10315
|
msgid "Waiting for the transition to finish"
|
10288
10316
|
msgstr ""
|
10289
10317
|
|
10290
|
-
#: ../lib/puppet/util/windows/service.rb:
|
10318
|
+
#: ../lib/puppet/util/windows/service.rb:625
|
10291
10319
|
msgid "Failed to transition the %{service_name} service to the %{final_state} state. Detail: %{detail}"
|
10292
10320
|
msgstr ""
|
10293
10321
|
|
10294
|
-
#: ../lib/puppet/util/windows/service.rb:
|
10322
|
+
#: ../lib/puppet/util/windows/service.rb:664 ../lib/puppet/util/windows/service.rb:700
|
10295
10323
|
msgid "Service query failed"
|
10296
10324
|
msgstr ""
|
10297
10325
|
|
10298
|
-
#: ../lib/puppet/util/windows/service.rb:
|
10299
|
-
msgid "Failed to send the %{control_signal} signal to the service. Its current state is %{current_state}.
|
10326
|
+
#: ../lib/puppet/util/windows/service.rb:717
|
10327
|
+
msgid "Failed to send the %{control_signal} signal to the service. Its current state is %{current_state}. Reason for failure:"
|
10300
10328
|
msgstr ""
|
10301
10329
|
|
10302
|
-
#: ../lib/puppet/util/windows/service.rb:
|
10330
|
+
#: ../lib/puppet/util/windows/service.rb:751
|
10303
10331
|
msgid "The service transitioned to the %{pending_state} state."
|
10304
10332
|
msgstr ""
|
10305
10333
|
|
10306
|
-
#: ../lib/puppet/util/windows/service.rb:
|
10334
|
+
#: ../lib/puppet/util/windows/service.rb:765
|
10307
10335
|
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}."
|
10308
10336
|
msgstr ""
|
10309
10337
|
|
10310
|
-
#: ../lib/puppet/util/windows/service.rb:
|
10338
|
+
#: ../lib/puppet/util/windows/service.rb:779
|
10311
10339
|
msgid "Waiting for the pending transition to the %{final_state} state to finish."
|
10312
10340
|
msgstr ""
|
10313
10341
|
|
10314
|
-
#: ../lib/puppet/util/windows/service.rb:
|
10342
|
+
#: ../lib/puppet/util/windows/service.rb:793
|
10315
10343
|
msgid "Unexpected transition to the %{current_state} state while waiting for the pending transition from %{pending_state} to %{final_state} to finish."
|
10316
10344
|
msgstr ""
|
10317
10345
|
|
10318
|
-
#: ../lib/puppet/util/windows/service.rb:
|
10346
|
+
#: ../lib/puppet/util/windows/service.rb:807
|
10319
10347
|
msgid "Timed out while waiting for the pending transition from %{pending_state} to %{final_state} to finish. The current state is %{current_state}."
|
10320
10348
|
msgstr ""
|
10321
10349
|
|
data/man/man5/puppet.conf.5
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
.\" generated with Ronn/v0.7.3
|
2
2
|
.\" http://github.com/rtomayko/ronn/tree/0.7.3
|
3
3
|
.
|
4
|
-
.TH "PUPPETCONF" "5" "
|
4
|
+
.TH "PUPPETCONF" "5" "January 2019" "Puppet, Inc." "Puppet manual"
|
5
5
|
\fBThis page is autogenerated; any changes will get overwritten\fR
|
6
6
|
.
|
7
7
|
.SH "Configuration settings"
|
@@ -938,7 +938,7 @@ The time to wait for one block to be read from an HTTP connection\. If nothing i
|
|
938
938
|
The HTTP User\-Agent string to send when making network requests\.
|
939
939
|
.
|
940
940
|
.IP "\(bu" 4
|
941
|
-
\fIDefault\fR: Puppet/5\.5\.
|
941
|
+
\fIDefault\fR: Puppet/5\.5\.9 Ruby/2\.4\.1\-p111 (x86_64\-linux)
|
942
942
|
.
|
943
943
|
.IP "" 0
|
944
944
|
.
|
data/man/man8/puppet-agent.8
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
.\" generated with Ronn/v0.7.3
|
2
2
|
.\" http://github.com/rtomayko/ronn/tree/0.7.3
|
3
3
|
.
|
4
|
-
.TH "PUPPET\-AGENT" "8" "
|
4
|
+
.TH "PUPPET\-AGENT" "8" "January 2019" "Puppet, Inc." "Puppet manual"
|
5
5
|
.
|
6
6
|
.SH "NAME"
|
7
7
|
\fBpuppet\-agent\fR \- The puppet agent daemon
|
data/man/man8/puppet-apply.8
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
.\" generated with Ronn/v0.7.3
|
2
2
|
.\" http://github.com/rtomayko/ronn/tree/0.7.3
|
3
3
|
.
|
4
|
-
.TH "PUPPET\-APPLY" "8" "
|
4
|
+
.TH "PUPPET\-APPLY" "8" "January 2019" "Puppet, Inc." "Puppet manual"
|
5
5
|
.
|
6
6
|
.SH "NAME"
|
7
7
|
\fBpuppet\-apply\fR \- Apply Puppet manifests locally
|