puppet 6.4.3-x86-mingw32 → 6.4.4-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.

Files changed (104) hide show
  1. checksums.yaml +4 -4
  2. data/CODEOWNERS +9 -9
  3. data/Gemfile +2 -2
  4. data/Gemfile.lock +23 -23
  5. data/ext/project_data.yaml +2 -2
  6. data/install.rb +3 -21
  7. data/lib/puppet/application/agent.rb +12 -0
  8. data/lib/puppet/application/device.rb +14 -4
  9. data/lib/puppet/application/resource.rb +4 -4
  10. data/lib/puppet/defaults.rb +12 -0
  11. data/lib/puppet/face/config.rb +10 -48
  12. data/lib/puppet/face/facts.rb +1 -1
  13. data/lib/puppet/face/help.rb +1 -1
  14. data/lib/puppet/face/plugin.rb +9 -2
  15. data/lib/puppet/indirector/catalog/compiler.rb +11 -5
  16. data/lib/puppet/module_tool/tar/mini.rb +11 -1
  17. data/lib/puppet/network/http/factory.rb +1 -11
  18. data/lib/puppet/provider/file/posix.rb +5 -0
  19. data/lib/puppet/provider/nameservice.rb +10 -3
  20. data/lib/puppet/provider/package/dnf.rb +1 -1
  21. data/lib/puppet/provider/package/pip.rb +2 -2
  22. data/lib/puppet/provider/package/rpm.rb +51 -13
  23. data/lib/puppet/provider/package/yum.rb +8 -4
  24. data/lib/puppet/provider/service/launchd.rb +20 -5
  25. data/lib/puppet/provider/service/systemd.rb +5 -10
  26. data/lib/puppet/provider/service/windows.rb +8 -0
  27. data/lib/puppet/provider/user/pw.rb +12 -3
  28. data/lib/puppet/provider/user/user_role_add.rb +4 -0
  29. data/lib/puppet/provider/user/useradd.rb +23 -7
  30. data/lib/puppet/resource.rb +17 -0
  31. data/lib/puppet/settings.rb +40 -0
  32. data/lib/puppet/type/exec.rb +14 -6
  33. data/lib/puppet/type/package.rb +10 -0
  34. data/lib/puppet/type/service.rb +7 -2
  35. data/lib/puppet/util/execution.rb +4 -3
  36. data/lib/puppet/util/http_proxy.rb +19 -5
  37. data/lib/puppet/util/selinux.rb +5 -1
  38. data/lib/puppet/util/windows/security.rb +2 -0
  39. data/lib/puppet/util/windows/service.rb +149 -4
  40. data/lib/puppet/util/windows/sid.rb +1 -0
  41. data/lib/puppet/version.rb +1 -1
  42. data/locales/puppet.pot +168 -152
  43. data/man/man5/puppet.conf.5 +18 -2
  44. data/man/man8/puppet-agent.8 +1 -1
  45. data/man/man8/puppet-apply.8 +1 -1
  46. data/man/man8/puppet-catalog.8 +1 -1
  47. data/man/man8/puppet-config.8 +1 -1
  48. data/man/man8/puppet-describe.8 +1 -1
  49. data/man/man8/puppet-device.8 +1 -1
  50. data/man/man8/puppet-doc.8 +1 -1
  51. data/man/man8/puppet-epp.8 +1 -1
  52. data/man/man8/puppet-facts.8 +1 -1
  53. data/man/man8/puppet-filebucket.8 +1 -1
  54. data/man/man8/puppet-generate.8 +1 -1
  55. data/man/man8/puppet-help.8 +1 -1
  56. data/man/man8/puppet-key.8 +1 -1
  57. data/man/man8/puppet-lookup.8 +1 -1
  58. data/man/man8/puppet-man.8 +1 -1
  59. data/man/man8/puppet-module.8 +1 -1
  60. data/man/man8/puppet-node.8 +1 -1
  61. data/man/man8/puppet-parser.8 +1 -1
  62. data/man/man8/puppet-plugin.8 +1 -1
  63. data/man/man8/puppet-report.8 +1 -1
  64. data/man/man8/puppet-resource.8 +1 -1
  65. data/man/man8/puppet-script.8 +1 -1
  66. data/man/man8/puppet-ssl.8 +1 -1
  67. data/man/man8/puppet-status.8 +1 -1
  68. data/man/man8/puppet.8 +3 -3
  69. data/spec/integration/provider/service/systemd_spec.rb +8 -5
  70. data/spec/integration/type/file_spec.rb +28 -0
  71. data/spec/integration/util/execution_spec.rb +27 -0
  72. data/spec/unit/application/agent_spec.rb +20 -8
  73. data/spec/unit/application/device_spec.rb +27 -1
  74. data/spec/unit/face/facts_spec.rb +9 -0
  75. data/spec/unit/face/plugin_spec.rb +8 -0
  76. data/spec/unit/indirector/catalog/compiler_spec.rb +62 -5
  77. data/spec/unit/module_tool/tar/mini_spec.rb +1 -1
  78. data/spec/unit/network/http/api/indirected_routes_spec.rb +25 -10
  79. data/spec/unit/network/http/factory_spec.rb +27 -5
  80. data/spec/unit/pops/validator/validator_spec.rb +7 -0
  81. data/spec/unit/provider/package/aptrpm_spec.rb +1 -1
  82. data/spec/unit/provider/package/dnf_spec.rb +7 -0
  83. data/spec/unit/provider/package/dpkg_spec.rb +2 -2
  84. data/spec/unit/provider/package/pip_spec.rb +8 -0
  85. data/spec/unit/provider/package/rpm_spec.rb +150 -16
  86. data/spec/unit/provider/package/yum_spec.rb +7 -0
  87. data/spec/unit/provider/service/launchd_spec.rb +28 -0
  88. data/spec/unit/provider/service/systemd_spec.rb +14 -0
  89. data/spec/unit/provider/service/windows_spec.rb +20 -0
  90. data/spec/unit/provider/user/pw_spec.rb +37 -0
  91. data/spec/unit/provider/user/useradd_spec.rb +42 -0
  92. data/spec/unit/resource_spec.rb +26 -1
  93. data/spec/unit/transaction_spec.rb +18 -0
  94. data/spec/unit/type/exec_spec.rb +9 -0
  95. data/spec/unit/type/file/source_spec.rb +4 -4
  96. data/spec/unit/type/schedule_spec.rb +3 -1
  97. data/spec/unit/type/service_spec.rb +16 -0
  98. data/spec/unit/util/http_proxy_spec.rb +40 -1
  99. data/spec/unit/util/log_spec.rb +27 -1
  100. data/spec/unit/util/windows/service_spec.rb +9 -0
  101. metadata +5 -9
  102. data/ext/windows/eventlog/Rakefile +0 -32
  103. data/ext/windows/eventlog/puppetres.dll +0 -0
  104. data/ext/windows/eventlog/puppetres.mc +0 -18
@@ -46,6 +46,7 @@ module Puppet::Util::Windows
46
46
  PrintOperators = 'S-1-5-32-550'
47
47
  BackupOperators = 'S-1-5-32-551'
48
48
  Replicators = 'S-1-5-32-552'
49
+ AllAppPackages = 'S-1-15-2-1'
49
50
 
50
51
  # Convert an account name, e.g. 'Administrators' into a SID string,
51
52
  # e.g. 'S-1-5-32-544'. The name can be specified as 'Administrators',
@@ -6,7 +6,7 @@
6
6
  # Raketasks and such to set the version based on the output of `git describe`
7
7
 
8
8
  module Puppet
9
- PUPPETVERSION = '6.4.3'
9
+ PUPPETVERSION = '6.4.4'
10
10
 
11
11
  ##
12
12
  # version is a public API method intended to always provide a fast and
@@ -6,11 +6,11 @@
6
6
  #, fuzzy
7
7
  msgid ""
8
8
  msgstr ""
9
- "Project-Id-Version: Puppet automation framework 6.4.2-144-gb0bc814\n"
9
+ "Project-Id-Version: Puppet automation framework 6.4.3-182-g531ddd5\n"
10
10
  "\n"
11
11
  "Report-Msgid-Bugs-To: https://tickets.puppetlabs.com\n"
12
- "POT-Creation-Date: 2019-06-18 01:01+0000\n"
13
- "PO-Revision-Date: 2019-06-18 01:01+0000\n"
12
+ "POT-Creation-Date: 2019-09-30 12:00+0000\n"
13
+ "PO-Revision-Date: 2019-09-30 12:00+0000\n"
14
14
  "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
15
15
  "Language-Team: LANGUAGE <LL@li.org>\n"
16
16
  "Language: \n"
@@ -182,19 +182,19 @@ msgstr ""
182
182
  msgid "The puppet agent daemon"
183
183
  msgstr ""
184
184
 
185
- #: ../lib/puppet/application/agent.rb:371
185
+ #: ../lib/puppet/application/agent.rb:383
186
186
  msgid "Fingerprint asked but neither the certificate, nor the certificate request have been issued"
187
187
  msgstr ""
188
188
 
189
- #: ../lib/puppet/application/agent.rb:376
189
+ #: ../lib/puppet/application/agent.rb:388
190
190
  msgid "Failed to generate fingerprint: %{message}"
191
191
  msgstr ""
192
192
 
193
- #: ../lib/puppet/application/agent.rb:399
193
+ #: ../lib/puppet/application/agent.rb:411
194
194
  msgid "Starting Puppet client version %{version}"
195
195
  msgstr ""
196
196
 
197
- #: ../lib/puppet/application/agent.rb:415
197
+ #: ../lib/puppet/application/agent.rb:427
198
198
  msgid "The puppet agent command does not take parameters"
199
199
  msgstr ""
200
200
 
@@ -264,31 +264,31 @@ msgstr ""
264
264
  msgid "%{file} does not exist, cannot apply"
265
265
  msgstr ""
266
266
 
267
- #: ../lib/puppet/application/device.rb:253
267
+ #: ../lib/puppet/application/device.rb:254
268
268
  msgid "Target device / certificate '%{target}' not found in %{config}"
269
269
  msgstr ""
270
270
 
271
- #: ../lib/puppet/application/device.rb:255
271
+ #: ../lib/puppet/application/device.rb:256
272
272
  msgid "No device found in %{config}"
273
273
  msgstr ""
274
274
 
275
- #: ../lib/puppet/application/device.rb:306
275
+ #: ../lib/puppet/application/device.rb:315
276
276
  msgid "retrieving resource: %{resource} from %{target} at %{scheme}%{url_host}%{port}%{url_path}"
277
277
  msgstr ""
278
278
 
279
- #: ../lib/puppet/application/device.rb:321
279
+ #: ../lib/puppet/application/device.rb:330
280
280
  msgid "retrieving facts from %{target} at %{scheme}%{url_host}%{port}%{url_path}"
281
281
  msgstr ""
282
282
 
283
- #: ../lib/puppet/application/device.rb:344
283
+ #: ../lib/puppet/application/device.rb:353
284
284
  msgid "starting applying configuration to %{target} at %{scheme}%{url_host}%{port}%{url_path}"
285
285
  msgstr ""
286
286
 
287
- #: ../lib/puppet/application/device.rb:381 ../lib/puppet/application/resource.rb:196
287
+ #: ../lib/puppet/application/device.rb:391 ../lib/puppet/application/resource.rb:196
288
288
  msgid "You must specify the type to display"
289
289
  msgstr ""
290
290
 
291
- #: ../lib/puppet/application/device.rb:382 ../lib/puppet/application/resource.rb:197
291
+ #: ../lib/puppet/application/device.rb:392 ../lib/puppet/application/resource.rb:197
292
292
  msgid "Could not find type %{type}"
293
293
  msgstr ""
294
294
 
@@ -704,15 +704,15 @@ msgid "Convert custom terminus to hiera 5 API."
704
704
  msgstr ""
705
705
 
706
706
  #. TRANSLATORS 'environment_data_provider' is a setting and should not be translated
707
- #: ../lib/puppet/defaults.rb:672
707
+ #: ../lib/puppet/defaults.rb:676
708
708
  msgid "Setting 'environment_data_provider' is deprecated."
709
709
  msgstr ""
710
710
 
711
- #: ../lib/puppet/defaults.rb:753
711
+ #: ../lib/puppet/defaults.rb:757
712
712
  msgid "Certificate names must be lower case"
713
713
  msgstr ""
714
714
 
715
- #: ../lib/puppet/defaults.rb:984 ../lib/puppet/settings/enum_setting.rb:13 ../lib/puppet/settings/symbolic_enum_setting.rb:14
715
+ #: ../lib/puppet/defaults.rb:988 ../lib/puppet/settings/enum_setting.rb:13 ../lib/puppet/settings/symbolic_enum_setting.rb:14
716
716
  msgid "Invalid value '%{value}' for parameter %{name}. Allowed values are '%{allowed_values}'"
717
717
  msgstr ""
718
718
 
@@ -778,41 +778,37 @@ msgstr ""
778
778
  msgid "all | <setting> [<setting> ...]"
779
779
  msgstr ""
780
780
 
781
- #: ../lib/puppet/face/config.rb:83
782
- msgid "New environment loaders generated from the requested section."
783
- msgstr ""
784
-
785
- #: ../lib/puppet/face/config.rb:137
781
+ #: ../lib/puppet/face/config.rb:99
786
782
  msgid "No section specified; defaulting to '%{section_name}'."
787
783
  msgstr ""
788
784
 
789
785
  #. TRANSLATORS '--section' is a command line option and should not be translated
790
- #: ../lib/puppet/face/config.rb:140
786
+ #: ../lib/puppet/face/config.rb:102
791
787
  msgid "Set the config section by using the `--section` flag."
792
788
  msgstr ""
793
789
 
794
790
  #. TRANSLATORS `puppet config --section user print foo` is a command line example and should not be translated
795
- #: ../lib/puppet/face/config.rb:142
791
+ #: ../lib/puppet/face/config.rb:104
796
792
  msgid "For example, `puppet config --section user print foo`."
797
793
  msgstr ""
798
794
 
799
- #: ../lib/puppet/face/config.rb:143
795
+ #: ../lib/puppet/face/config.rb:105
800
796
  msgid "For more information, see https://puppet.com/docs/puppet/latest/configuration.html"
801
797
  msgstr ""
802
798
 
803
- #: ../lib/puppet/face/config.rb:150
799
+ #: ../lib/puppet/face/config.rb:112
804
800
  msgid "Resolving settings from section '%{section_name}' in environment '%{environment_name}'"
805
801
  msgstr ""
806
802
 
807
- #: ../lib/puppet/face/config.rb:155
803
+ #: ../lib/puppet/face/config.rb:117
808
804
  msgid "Set Puppet's settings."
809
805
  msgstr ""
810
806
 
811
- #: ../lib/puppet/face/config.rb:156
807
+ #: ../lib/puppet/face/config.rb:118
812
808
  msgid "[setting_name] [setting_value]"
813
809
  msgstr ""
814
810
 
815
- #: ../lib/puppet/face/config.rb:184
811
+ #: ../lib/puppet/face/config.rb:146
816
812
  msgid ""
817
813
  "The environment should be set in either the `[user]`, `[agent]`, or `[master]`\n"
818
814
  "section. Variables set in the `[agent]` section are used when running\n"
@@ -824,25 +820,25 @@ msgid ""
824
820
  "https://puppet.com/docs/puppet/latest/configuration.html#environment\n"
825
821
  msgstr ""
826
822
 
827
- #: ../lib/puppet/face/config.rb:212
823
+ #: ../lib/puppet/face/config.rb:174
828
824
  msgid "Delete a Puppet setting."
829
825
  msgstr ""
830
826
 
831
- #: ../lib/puppet/face/config.rb:213
827
+ #: ../lib/puppet/face/config.rb:175
832
828
  msgid "<setting>"
833
829
  msgstr ""
834
830
 
835
831
  #. TRANSLATORS 'main' is a specific section name and should not be translated
836
- #: ../lib/puppet/face/config.rb:250
832
+ #: ../lib/puppet/face/config.rb:212
837
833
  msgid "Deleted setting from '%{section_name}': '%{setting_string}'"
838
834
  msgstr ""
839
835
 
840
- #: ../lib/puppet/face/config.rb:253
836
+ #: ../lib/puppet/face/config.rb:215
841
837
  msgid "No setting found in configuration file for section '%{section_name}' setting name '%{name}'"
842
838
  msgstr ""
843
839
 
844
840
  #. TRANSLATORS the 'puppet.conf' is a specific file and should not be translated
845
- #: ../lib/puppet/face/config.rb:260
841
+ #: ../lib/puppet/face/config.rb:222
846
842
  msgid "The puppet.conf file does not exist %{puppet_conf}"
847
843
  msgstr ""
848
844
 
@@ -1451,11 +1447,11 @@ msgid ""
1451
1447
  " the files downloaded, which will be empty if none were retrieved.\n"
1452
1448
  msgstr ""
1453
1449
 
1454
- #: ../lib/puppet/face/plugin.rb:50
1450
+ #: ../lib/puppet/face/plugin.rb:57
1455
1451
  msgid "No plugins downloaded."
1456
1452
  msgstr ""
1457
1453
 
1458
- #: ../lib/puppet/face/plugin.rb:52
1454
+ #: ../lib/puppet/face/plugin.rb:59
1459
1455
  msgid "Downloaded these plugins: %{plugins}"
1460
1456
  msgstr ""
1461
1457
 
@@ -2318,8 +2314,12 @@ msgstr ""
2318
2314
  msgid "Could not find node '%{name}'; cannot compile"
2319
2315
  msgstr ""
2320
2316
 
2321
- #: ../lib/puppet/indirector/catalog/compiler.rb:403
2322
- msgid "Could not retrieve fact %{fact}"
2317
+ #: ../lib/puppet/indirector/catalog/compiler.rb:410
2318
+ msgid "Could not retrieve fact servername"
2319
+ msgstr ""
2320
+
2321
+ #: ../lib/puppet/indirector/catalog/compiler.rb:419
2322
+ msgid "Could not retrieve either serverip or serverip6 fact"
2323
2323
  msgstr ""
2324
2324
 
2325
2325
  #: ../lib/puppet/indirector/catalog/json.rb:13
@@ -6395,11 +6395,11 @@ msgstr ""
6395
6395
  msgid "aix.object_info(): Could not find %{resource}[%{name}]"
6396
6396
  msgstr ""
6397
6397
 
6398
- #: ../lib/puppet/provider/aix_object.rb:469 ../lib/puppet/provider/nameservice.rb:180 ../lib/puppet/provider/nameservice/directoryservice.rb:421
6398
+ #: ../lib/puppet/provider/aix_object.rb:469 ../lib/puppet/provider/nameservice.rb:181 ../lib/puppet/provider/nameservice/directoryservice.rb:421
6399
6399
  msgid "Could not create %{resource} %{name}: %{detail}"
6400
6400
  msgstr ""
6401
6401
 
6402
- #: ../lib/puppet/provider/aix_object.rb:481 ../lib/puppet/provider/nameservice.rb:194
6402
+ #: ../lib/puppet/provider/aix_object.rb:481 ../lib/puppet/provider/nameservice.rb:195
6403
6403
  msgid "Could not delete %{resource} %{name}: %{detail}"
6404
6404
  msgstr ""
6405
6405
 
@@ -6435,23 +6435,23 @@ msgstr ""
6435
6435
  msgid "'%{exe}' is not executable"
6436
6436
  msgstr ""
6437
6437
 
6438
- #: ../lib/puppet/provider/file/posix.rb:66
6438
+ #: ../lib/puppet/provider/file/posix.rb:71
6439
6439
  msgid "Apparently using negative UID (%{currentvalue}) on a platform that does not consistently handle them"
6440
6440
  msgstr ""
6441
6441
 
6442
- #: ../lib/puppet/provider/file/posix.rb:84 ../lib/puppet/provider/file/windows.rb:46
6442
+ #: ../lib/puppet/provider/file/posix.rb:89 ../lib/puppet/provider/file/windows.rb:46
6443
6443
  msgid "Failed to set owner to '%{should}': %{detail}"
6444
6444
  msgstr ""
6445
6445
 
6446
- #: ../lib/puppet/provider/file/posix.rb:97
6446
+ #: ../lib/puppet/provider/file/posix.rb:102
6447
6447
  msgid "Apparently using negative GID (%{currentvalue}) on a platform that does not consistently handle them"
6448
6448
  msgstr ""
6449
6449
 
6450
- #: ../lib/puppet/provider/file/posix.rb:115 ../lib/puppet/provider/file/windows.rb:59
6450
+ #: ../lib/puppet/provider/file/posix.rb:120 ../lib/puppet/provider/file/windows.rb:59
6451
6451
  msgid "Failed to set group to '%{should}': %{detail}"
6452
6452
  msgstr ""
6453
6453
 
6454
- #: ../lib/puppet/provider/file/posix.rb:131 ../lib/puppet/provider/file/windows.rb:78
6454
+ #: ../lib/puppet/provider/file/posix.rb:136 ../lib/puppet/provider/file/windows.rb:78
6455
6455
  msgid "failed to set mode %{mode} on %{path}: %{message}"
6456
6456
  msgstr ""
6457
6457
 
@@ -6505,15 +6505,15 @@ msgstr ""
6505
6505
  msgid "already exists"
6506
6506
  msgstr ""
6507
6507
 
6508
- #: ../lib/puppet/provider/nameservice.rb:186
6508
+ #: ../lib/puppet/provider/nameservice.rb:187
6509
6509
  msgid "already absent"
6510
6510
  msgstr ""
6511
6511
 
6512
- #: ../lib/puppet/provider/nameservice.rb:278
6512
+ #: ../lib/puppet/provider/nameservice.rb:279
6513
6513
  msgid "Nameservice command must be an array"
6514
6514
  msgstr ""
6515
6515
 
6516
- #: ../lib/puppet/provider/nameservice.rb:282 ../lib/puppet/provider/nameservice/directoryservice.rb:337 ../lib/puppet/provider/nameservice/directoryservice.rb:366
6516
+ #: ../lib/puppet/provider/nameservice.rb:284 ../lib/puppet/provider/nameservice/directoryservice.rb:337 ../lib/puppet/provider/nameservice/directoryservice.rb:366
6517
6517
  msgid "Could not set %{param} on %{resource}[%{name}]: %{detail}"
6518
6518
  msgstr ""
6519
6519
 
@@ -6575,7 +6575,7 @@ msgstr ""
6575
6575
  msgid "Could not list installed Packages: %{detail}"
6576
6576
  msgstr ""
6577
6577
 
6578
- #: ../lib/puppet/provider/package/aix.rb:139 ../lib/puppet/provider/package/yum.rb:248
6578
+ #: ../lib/puppet/provider/package/aix.rb:139 ../lib/puppet/provider/package/yum.rb:252
6579
6579
  msgid "Tried to get latest on a missing package"
6580
6580
  msgstr ""
6581
6581
 
@@ -6607,7 +6607,7 @@ msgstr ""
6607
6607
  msgid "No responsefile specified or non existent, not preseeding anything"
6608
6608
  msgstr ""
6609
6609
 
6610
- #: ../lib/puppet/provider/package/aptitude.rb:21 ../lib/puppet/provider/package/ports.rb:20 ../lib/puppet/provider/package/portupgrade.rb:93 ../lib/puppet/provider/package/portupgrade.rb:151 ../lib/puppet/provider/package/rug.rb:28 ../lib/puppet/provider/package/up2date.rb:17 ../lib/puppet/provider/package/yum.rb:229 ../lib/puppet/provider/package/zypper.rb:109
6610
+ #: ../lib/puppet/provider/package/aptitude.rb:21 ../lib/puppet/provider/package/ports.rb:20 ../lib/puppet/provider/package/portupgrade.rb:93 ../lib/puppet/provider/package/portupgrade.rb:151 ../lib/puppet/provider/package/rug.rb:28 ../lib/puppet/provider/package/up2date.rb:17 ../lib/puppet/provider/package/yum.rb:232 ../lib/puppet/provider/package/zypper.rb:109
6611
6611
  msgid "Could not find package %{name}"
6612
6612
  msgstr ""
6613
6613
 
@@ -6869,11 +6869,11 @@ msgstr ""
6869
6869
  msgid "portversion.latest() - fatal error with portversion: %{output}"
6870
6870
  msgstr ""
6871
6871
 
6872
- #: ../lib/puppet/provider/package/rpm.rb:90
6872
+ #: ../lib/puppet/provider/package/rpm.rb:89
6873
6873
  msgid "Failed to list packages"
6874
6874
  msgstr ""
6875
6875
 
6876
- #: ../lib/puppet/provider/package/rpm.rb:130 ../lib/puppet/provider/package/rpm.rb:142
6876
+ #: ../lib/puppet/provider/package/rpm.rb:127 ../lib/puppet/provider/package/rpm.rb:139
6877
6877
  msgid "RPMs must specify a package source"
6878
6878
  msgstr ""
6879
6879
 
@@ -6930,19 +6930,19 @@ msgstr ""
6930
6930
  msgid "Failed to parse package name and architecture from '%{pkgname}'"
6931
6931
  msgstr ""
6932
6932
 
6933
- #: ../lib/puppet/provider/package/yum.rb:223
6933
+ #: ../lib/puppet/provider/package/yum.rb:226
6934
6934
  msgid "Could not find package %{wanted}"
6935
6935
  msgstr ""
6936
6936
 
6937
- #: ../lib/puppet/provider/package/yum.rb:234
6937
+ #: ../lib/puppet/provider/package/yum.rb:237
6938
6938
  msgid "Failed to update to version %{should}, got version %{version} instead"
6939
6939
  msgstr ""
6940
6940
 
6941
- #: ../lib/puppet/provider/package_targetable.rb:53
6941
+ #: ../lib/puppet/provider/package_targetable.rb:55
6942
6942
  msgid "Provider %{name} package command is not functional on this host"
6943
6943
  msgstr ""
6944
6944
 
6945
- #: ../lib/puppet/provider/package_targetable.rb:56
6945
+ #: ../lib/puppet/provider/package_targetable.rb:58
6946
6946
  msgid "Provider %{name} package command '%{cmd}' does not exist on this host"
6947
6947
  msgstr ""
6948
6948
 
@@ -7020,19 +7020,23 @@ msgstr ""
7020
7020
  msgid "Cannot enable %{resource_name} for manual start, error was: %{detail}"
7021
7021
  msgstr ""
7022
7022
 
7023
- #: ../lib/puppet/provider/service/windows.rb:53
7023
+ #: ../lib/puppet/provider/service/windows.rb:41
7024
+ msgid "Cannot enable %{resource_name} for delayed start, error was: %{detail}"
7025
+ msgstr ""
7026
+
7027
+ #: ../lib/puppet/provider/service/windows.rb:61
7024
7028
  msgid "Unknown start type: %{start_type}"
7025
7029
  msgstr ""
7026
7030
 
7027
- #: ../lib/puppet/provider/service/windows.rb:56
7031
+ #: ../lib/puppet/provider/service/windows.rb:64
7028
7032
  msgid "Cannot get start type %{resource_name}, error was: %{detail}"
7029
7033
  msgstr ""
7030
7034
 
7031
- #: ../lib/puppet/provider/service/windows.rb:70
7035
+ #: ../lib/puppet/provider/service/windows.rb:78
7032
7036
  msgid "Will not start disabled service %{resource_name} without managing enable. Specify 'enable => false' to override."
7033
7037
  msgstr ""
7034
7038
 
7035
- #: ../lib/puppet/provider/service/windows.rb:102
7039
+ #: ../lib/puppet/provider/service/windows.rb:110
7036
7040
  msgid "Unknown service state '%{current_state}' for service '%{resource_name}'"
7037
7041
  msgstr ""
7038
7042
 
@@ -7150,35 +7154,35 @@ msgstr ""
7150
7154
  msgid "Invalid resource type %{type}"
7151
7155
  msgstr ""
7152
7156
 
7153
- #: ../lib/puppet/resource.rb:499
7157
+ #: ../lib/puppet/resource.rb:516
7154
7158
  msgid "The method Puppet::Resource.set_default_parameters is deprecated and will be removed in the next major release of Puppet."
7155
7159
  msgstr ""
7156
7160
 
7157
- #: ../lib/puppet/resource.rb:504
7161
+ #: ../lib/puppet/resource.rb:521
7158
7162
  msgid "Cannot evaluate default parameters for %{resource} - not a parser resource"
7159
7163
  msgstr ""
7160
7164
 
7161
- #: ../lib/puppet/resource.rb:544
7165
+ #: ../lib/puppet/resource.rb:561
7162
7166
  msgid "The method Puppet::Resource.validate_complete is deprecated and will be removed in the next major release of Puppet."
7163
7167
  msgstr ""
7164
7168
 
7165
- #: ../lib/puppet/resource.rb:550
7169
+ #: ../lib/puppet/resource.rb:567
7166
7170
  msgid "Must pass %{param} to %{resource}"
7167
7171
  msgstr ""
7168
7172
 
7169
- #: ../lib/puppet/resource.rb:561
7173
+ #: ../lib/puppet/resource.rb:578
7170
7174
  msgid "Expected parameter '%{name}' of '%{value0}' to have type %{value1}, got %{value2}"
7171
7175
  msgstr ""
7172
7176
 
7173
- #: ../lib/puppet/resource.rb:567
7177
+ #: ../lib/puppet/resource.rb:584
7174
7178
  msgid "no parameter named '%{name}'"
7175
7179
  msgstr ""
7176
7180
 
7177
- #: ../lib/puppet/resource.rb:611
7181
+ #: ../lib/puppet/resource.rb:628
7178
7182
  msgid "No title provided and %{type} is not a valid resource reference"
7179
7183
  msgstr ""
7180
7184
 
7181
- #: ../lib/puppet/resource.rb:684
7185
+ #: ../lib/puppet/resource.rb:701
7182
7186
  msgid "No set of title patterns matched the title \"%{title}\"."
7183
7187
  msgstr ""
7184
7188
 
@@ -7400,65 +7404,69 @@ msgstr ""
7400
7404
  msgid "Downloaded existing certificate request for %{name} from %{server}"
7401
7405
  msgstr ""
7402
7406
 
7403
- #: ../lib/puppet/settings.rb:259
7407
+ #: ../lib/puppet/settings.rb:97
7408
+ msgid "New environment loaders generated from the requested section."
7409
+ msgstr ""
7410
+
7411
+ #: ../lib/puppet/settings.rb:299
7404
7412
  msgid "Attempting to initialize global default settings more than once!"
7405
7413
  msgstr ""
7406
7414
 
7407
- #: ../lib/puppet/settings.rb:457
7415
+ #: ../lib/puppet/settings.rb:497
7408
7416
  msgid "Using --configprint is deprecated. Use 'puppet config <subcommand>' instead."
7409
7417
  msgstr ""
7410
7418
 
7411
- #: ../lib/puppet/settings.rb:599
7419
+ #: ../lib/puppet/settings.rb:639
7412
7420
  msgid "Could not load %{file}: %{detail}"
7413
7421
  msgstr ""
7414
7422
 
7415
- #: ../lib/puppet/settings.rb:700
7423
+ #: ../lib/puppet/settings.rb:740
7416
7424
  msgid "Invalid setting type '%{type}'"
7417
7425
  msgstr ""
7418
7426
 
7419
- #: ../lib/puppet/settings.rb:844
7427
+ #: ../lib/puppet/settings.rb:884
7420
7428
  msgid "Unknown searchpath case: %{source_type} for the %{source} settings path element."
7421
7429
  msgstr ""
7422
7430
 
7423
- #: ../lib/puppet/settings.rb:906
7431
+ #: ../lib/puppet/settings.rb:946
7424
7432
  msgid "setting definition for '%{name}' is not a hash!"
7425
7433
  msgstr ""
7426
7434
 
7427
- #: ../lib/puppet/settings.rb:911
7435
+ #: ../lib/puppet/settings.rb:951
7428
7436
  msgid "Setting %{name} is already defined"
7429
7437
  msgstr ""
7430
7438
 
7431
- #: ../lib/puppet/settings.rb:915
7439
+ #: ../lib/puppet/settings.rb:955
7432
7440
  msgid "Setting %{name} is already using short name '%{short}'"
7433
7441
  msgstr ""
7434
7442
 
7435
- #: ../lib/puppet/settings.rb:1172
7443
+ #: ../lib/puppet/settings.rb:1212
7436
7444
  msgid "Setting %{name} is deprecated."
7437
7445
  msgstr ""
7438
7446
 
7439
7447
  #. TRANSLATORS 'puppet.conf' is a file name and should not be translated
7440
- #: ../lib/puppet/settings.rb:1177
7448
+ #: ../lib/puppet/settings.rb:1217
7441
7449
  msgid "Setting %{name} is deprecated in puppet.conf."
7442
7450
  msgstr ""
7443
7451
 
7444
- #: ../lib/puppet/settings.rb:1344
7452
+ #: ../lib/puppet/settings.rb:1384
7445
7453
  msgid "Error converting value for param '%{name}': %{detail}"
7446
7454
  msgstr ""
7447
7455
 
7448
- #: ../lib/puppet/settings.rb:1368
7456
+ #: ../lib/puppet/settings.rb:1408
7449
7457
  msgid "Could not find value for %{expression}"
7450
7458
  msgstr ""
7451
7459
 
7452
7460
  #. TRANSLATORS '$environment' is a Puppet specific variable and should not be translated
7453
- #: ../lib/puppet/settings.rb:1378
7461
+ #: ../lib/puppet/settings.rb:1418
7454
7462
  msgid "You cannot interpolate $environment within '%{setting_name}' when using directory environments."
7455
7463
  msgstr ""
7456
7464
 
7457
- #: ../lib/puppet/settings.rb:1379
7465
+ #: ../lib/puppet/settings.rb:1419
7458
7466
  msgid "Its value will remain %{value}."
7459
7467
  msgstr ""
7460
7468
 
7461
- #: ../lib/puppet/settings.rb:1410
7469
+ #: ../lib/puppet/settings.rb:1450
7462
7470
  msgid "Attempt to assign a value to unknown setting %{name}"
7463
7471
  msgstr ""
7464
7472
 
@@ -8310,11 +8318,11 @@ msgstr ""
8310
8318
  msgid "Checking that 'creates' path '%{creates_path}' exists"
8311
8319
  msgstr ""
8312
8320
 
8313
- #: ../lib/puppet/type/exec.rb:456 ../lib/puppet/type/exec.rb:508
8321
+ #: ../lib/puppet/type/exec.rb:456 ../lib/puppet/type/exec.rb:512
8314
8322
  msgid "Check %{value} exceeded timeout"
8315
8323
  msgstr ""
8316
8324
 
8317
- #: ../lib/puppet/type/exec.rb:591
8325
+ #: ../lib/puppet/type/exec.rb:599
8318
8326
  msgid "'%{cmd}' won't be executed because of failed check '%{check}'"
8319
8327
  msgstr ""
8320
8328
 
@@ -8471,15 +8479,15 @@ msgstr ""
8471
8479
  msgid "Invalid GID %{gid}"
8472
8480
  msgstr ""
8473
8481
 
8474
- #: ../lib/puppet/type/package.rb:116 ../lib/puppet/type/package.rb:130
8482
+ #: ../lib/puppet/type/package.rb:118 ../lib/puppet/type/package.rb:132
8475
8483
  msgid "Could not update: %{detail}"
8476
8484
  msgstr ""
8477
8485
 
8478
- #: ../lib/puppet/type/package.rb:165
8486
+ #: ../lib/puppet/type/package.rb:167
8479
8487
  msgid "Could not get latest version: %{detail}"
8480
8488
  msgstr ""
8481
8489
 
8482
- #: ../lib/puppet/type/package.rb:265
8490
+ #: ../lib/puppet/type/package.rb:267
8483
8491
  msgid "Name must be a String not %{klass}"
8484
8492
  msgstr ""
8485
8493
 
@@ -8535,11 +8543,11 @@ msgstr ""
8535
8543
  msgid "%{value} is not a valid day of the week"
8536
8544
  msgstr ""
8537
8545
 
8538
- #: ../lib/puppet/type/service.rb:91
8539
- msgid "Setting enable to manual is only supported on Microsoft Windows."
8546
+ #: ../lib/puppet/type/service.rb:96
8547
+ msgid "Setting enable to %{value} is only supported on Microsoft Windows."
8540
8548
  msgstr ""
8541
8549
 
8542
- #: ../lib/puppet/type/service.rb:247
8550
+ #: ../lib/puppet/type/service.rb:252
8543
8551
  msgid "\"%{value}\" is not a positive integer: the timeout parameter must be specified as a positive integer"
8544
8552
  msgstr ""
8545
8553
 
@@ -9039,23 +9047,23 @@ msgstr ""
9039
9047
  msgid "%{klass} failed with error %{error_type}: %{detail}"
9040
9048
  msgstr ""
9041
9049
 
9042
- #: ../lib/puppet/util/execution.rb:195
9050
+ #: ../lib/puppet/util/execution.rb:196
9043
9051
  msgid "Working directory %{cwd} does not exist!"
9044
9052
  msgstr ""
9045
9053
 
9046
- #: ../lib/puppet/util/execution.rb:285
9054
+ #: ../lib/puppet/util/execution.rb:286
9047
9055
  msgid "Could not get output"
9048
9056
  msgstr ""
9049
9057
 
9050
- #: ../lib/puppet/util/execution.rb:294
9058
+ #: ../lib/puppet/util/execution.rb:295
9051
9059
  msgid "Execution of '%{str}' returned %{exit_status}: %{output}"
9052
9060
  msgstr ""
9053
9061
 
9054
- #: ../lib/puppet/util/execution.rb:371
9062
+ #: ../lib/puppet/util/execution.rb:372
9055
9063
  msgid "Could not execute posix command: %{detail}"
9056
9064
  msgstr ""
9057
9065
 
9058
- #: ../lib/puppet/util/execution.rb:419
9066
+ #: ../lib/puppet/util/execution.rb:420
9059
9067
  msgid "Waiting for output; will sleep %{time_to_sleep} seconds"
9060
9068
  msgstr ""
9061
9069
 
@@ -9167,7 +9175,7 @@ msgstr ""
9167
9175
  msgid "Could not write crontab for %{path}: %{detail}"
9168
9176
  msgstr ""
9169
9177
 
9170
- #: ../lib/puppet/util/http_proxy.rb:206
9178
+ #: ../lib/puppet/util/http_proxy.rb:220
9171
9179
  msgid "Too many HTTP redirections for %{uri}"
9172
9180
  msgstr ""
9173
9181
 
@@ -9419,31 +9427,31 @@ msgstr ""
9419
9427
  msgid "Caught exception %{klass}:%{error} retrying"
9420
9428
  msgstr ""
9421
9429
 
9422
- #: ../lib/puppet/util/selinux.rb:67
9430
+ #: ../lib/puppet/util/selinux.rb:71
9423
9431
  msgid "Invalid context to parse: %{context}"
9424
9432
  msgstr ""
9425
9433
 
9426
- #: ../lib/puppet/util/selinux.rb:79
9434
+ #: ../lib/puppet/util/selinux.rb:83
9427
9435
  msgid "Invalid SELinux parameter type"
9428
9436
  msgstr ""
9429
9437
 
9430
- #: ../lib/puppet/util/selinux.rb:100
9438
+ #: ../lib/puppet/util/selinux.rb:104
9431
9439
  msgid "Can't set SELinux context on file unless the file already has some kind of context"
9432
9440
  msgstr ""
9433
9441
 
9434
- #: ../lib/puppet/util/selinux.rb:114
9442
+ #: ../lib/puppet/util/selinux.rb:118
9435
9443
  msgid "set_selinux_context component must be one of :seluser, :selrole, :seltype, or :selrange"
9436
9444
  msgstr ""
9437
9445
 
9438
- #: ../lib/puppet/util/selinux.rb:125
9446
+ #: ../lib/puppet/util/selinux.rb:129
9439
9447
  msgid "Failed to set SELinux context %{context} on %{file}"
9440
9448
  msgstr ""
9441
9449
 
9442
- #: ../lib/puppet/util/selinux.rb:176
9450
+ #: ../lib/puppet/util/selinux.rb:180
9443
9451
  msgid "Could not open SELinux category translation file %{path}."
9444
9452
  msgstr ""
9445
9453
 
9446
- #: ../lib/puppet/util/selinux.rb:243
9454
+ #: ../lib/puppet/util/selinux.rb:247
9447
9455
  msgid "got a relative path in SELinux find_fs: %{path}"
9448
9456
  msgstr ""
9449
9457
 
@@ -9728,200 +9736,208 @@ msgid "Failed to get volume information"
9728
9736
  msgstr ""
9729
9737
 
9730
9738
  #. TRANSLATORS 'SYSTEM' is a Windows name and should not be translated
9731
- #: ../lib/puppet/util/windows/security.rb:337
9739
+ #: ../lib/puppet/util/windows/security.rb:339
9732
9740
  msgid "Setting control rights for %{path} owner SYSTEM to less than Full Control rights. Setting SYSTEM rights to less than Full Control may have unintented consequences for operations on this file"
9733
9741
  msgstr ""
9734
9742
 
9735
9743
  #. TRANSLATORS 'SYSTEM' is a Windows name and should not be translated
9736
- #: ../lib/puppet/util/windows/security.rb:340
9744
+ #: ../lib/puppet/util/windows/security.rb:342
9737
9745
  msgid "%{path} owner and group both set to user SYSTEM, but group is not managed directly: SYSTEM user rights will be set to FullControl by group"
9738
9746
  msgstr ""
9739
9747
 
9740
9748
  #. TRANSLATORS 'SYSTEM' is a Windows name and should not be translated
9741
- #: ../lib/puppet/util/windows/security.rb:343
9749
+ #: ../lib/puppet/util/windows/security.rb:345
9742
9750
  msgid "An attempt to set mode %{mode} on item %{path} would result in the owner, SYSTEM, to have less than Full Control rights. This attempt has been corrected to Full Control"
9743
9751
  msgstr ""
9744
9752
 
9745
9753
  #. TRANSLATORS 'SYSTEM' is a Windows name and should not be translated
9746
- #: ../lib/puppet/util/windows/security.rb:353
9754
+ #: ../lib/puppet/util/windows/security.rb:355
9747
9755
  msgid "Setting control rights for %{path} group SYSTEM to less than Full Control rights. Setting SYSTEM rights to less than Full Control may have unintented consequences for operations on this file"
9748
9756
  msgstr ""
9749
9757
 
9750
9758
  #. TRANSLATORS 'SYSTEM' is a Windows name and should not be translated
9751
- #: ../lib/puppet/util/windows/security.rb:356
9759
+ #: ../lib/puppet/util/windows/security.rb:358
9752
9760
  msgid "%{path} owner and group both set to user SYSTEM, but owner is not managed directly: SYSTEM user rights will be set to FullControl by owner"
9753
9761
  msgstr ""
9754
9762
 
9755
9763
  #. TRANSLATORS 'SYSTEM' is a Windows name and should not be translated
9756
- #: ../lib/puppet/util/windows/security.rb:359
9764
+ #: ../lib/puppet/util/windows/security.rb:361
9757
9765
  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"
9758
9766
  msgstr ""
9759
9767
 
9760
- #: ../lib/puppet/util/windows/security.rb:430 ../lib/puppet/util/windows/security.rb:447 ../lib/puppet/util/windows/sid.rb:154 ../lib/puppet/util/windows/sid.rb:216 ../lib/puppet/util/windows/user.rb:43
9768
+ #: ../lib/puppet/util/windows/security.rb:432 ../lib/puppet/util/windows/security.rb:449 ../lib/puppet/util/windows/sid.rb:155 ../lib/puppet/util/windows/sid.rb:217 ../lib/puppet/util/windows/user.rb:43
9761
9769
  msgid "Invalid SID"
9762
9770
  msgstr ""
9763
9771
 
9764
- #: ../lib/puppet/util/windows/security.rb:434 ../lib/puppet/util/windows/security.rb:451
9772
+ #: ../lib/puppet/util/windows/security.rb:436 ../lib/puppet/util/windows/security.rb:453
9765
9773
  msgid "Failed to add access control entry"
9766
9774
  msgstr ""
9767
9775
 
9768
- #: ../lib/puppet/util/windows/security.rb:462 ../lib/puppet/util/windows/security.rb:644
9776
+ #: ../lib/puppet/util/windows/security.rb:464 ../lib/puppet/util/windows/security.rb:646
9769
9777
  msgid "Invalid DACL"
9770
9778
  msgstr ""
9771
9779
 
9772
- #: ../lib/puppet/util/windows/security.rb:485
9780
+ #: ../lib/puppet/util/windows/security.rb:487
9773
9781
  msgid "Unsupported access control entry type: 0x%{type}"
9774
9782
  msgstr ""
9775
9783
 
9776
- #: ../lib/puppet/util/windows/security.rb:519
9784
+ #: ../lib/puppet/util/windows/security.rb:521
9777
9785
  msgid "Failed to open '%{path}'"
9778
9786
  msgstr ""
9779
9787
 
9780
- #: ../lib/puppet/util/windows/security.rb:566
9788
+ #: ../lib/puppet/util/windows/security.rb:568
9781
9789
  msgid "Failed to adjust process privileges"
9782
9790
  msgstr ""
9783
9791
 
9784
- #: ../lib/puppet/util/windows/security.rb:596
9792
+ #: ../lib/puppet/util/windows/security.rb:598
9785
9793
  msgid "Failed to get security information"
9786
9794
  msgstr ""
9787
9795
 
9788
- #: ../lib/puppet/util/windows/security.rb:607
9796
+ #: ../lib/puppet/util/windows/security.rb:609
9789
9797
  msgid "Failed to get security descriptor control"
9790
9798
  msgstr ""
9791
9799
 
9792
- #: ../lib/puppet/util/windows/security.rb:640
9800
+ #: ../lib/puppet/util/windows/security.rb:642
9793
9801
  msgid "Failed to initialize ACL"
9794
9802
  msgstr ""
9795
9803
 
9796
- #: ../lib/puppet/util/windows/security.rb:679
9804
+ #: ../lib/puppet/util/windows/security.rb:681
9797
9805
  msgid "Failed to set security information"
9798
9806
  msgstr ""
9799
9807
 
9800
- #: ../lib/puppet/util/windows/service.rb:301
9808
+ #: ../lib/puppet/util/windows/service.rb:338
9801
9809
  msgid "Starting the %{service_name} service. Timeout set to: %{timeout} seconds"
9802
9810
  msgstr ""
9803
9811
 
9804
- #: ../lib/puppet/util/windows/service.rb:311
9812
+ #: ../lib/puppet/util/windows/service.rb:348
9805
9813
  msgid "Failed to start the service"
9806
9814
  msgstr ""
9807
9815
 
9808
- #: ../lib/puppet/util/windows/service.rb:315
9816
+ #: ../lib/puppet/util/windows/service.rb:352
9809
9817
  msgid "Successfully started the %{service_name} service"
9810
9818
  msgstr ""
9811
9819
 
9812
- #: ../lib/puppet/util/windows/service.rb:324
9820
+ #: ../lib/puppet/util/windows/service.rb:361
9813
9821
  msgid "Stopping the %{service_name} service. Timeout set to: %{timeout} seconds"
9814
9822
  msgstr ""
9815
9823
 
9816
- #: ../lib/puppet/util/windows/service.rb:332
9824
+ #: ../lib/puppet/util/windows/service.rb:369
9817
9825
  msgid "Successfully stopped the %{service_name} service"
9818
9826
  msgstr ""
9819
9827
 
9820
- #: ../lib/puppet/util/windows/service.rb:341
9828
+ #: ../lib/puppet/util/windows/service.rb:378
9821
9829
  msgid "Resuming the %{service_name} service. Timeout set to: %{timeout} seconds"
9822
9830
  msgstr ""
9823
9831
 
9824
- #: ../lib/puppet/util/windows/service.rb:357
9832
+ #: ../lib/puppet/util/windows/service.rb:394
9825
9833
  msgid "Successfully resumed the %{service_name} service"
9826
9834
  msgstr ""
9827
9835
 
9828
- #: ../lib/puppet/util/windows/service.rb:373
9836
+ #: ../lib/puppet/util/windows/service.rb:410
9829
9837
  msgid "Unknown Service state '%{current_state}' for '%{service_name}'"
9830
9838
  msgstr ""
9831
9839
 
9832
- #: ../lib/puppet/util/windows/service.rb:391
9840
+ #: ../lib/puppet/util/windows/service.rb:437
9833
9841
  msgid "Unknown start type '%{start_type}' for '%{service_name}'"
9834
9842
  msgstr ""
9835
9843
 
9836
- #: ../lib/puppet/util/windows/service.rb:406
9844
+ #: ../lib/puppet/util/windows/service.rb:453
9837
9845
  msgid "Unknown start type %{start_type}"
9838
9846
  msgstr ""
9839
9847
 
9840
- #: ../lib/puppet/util/windows/service.rb:427
9848
+ #: ../lib/puppet/util/windows/service.rb:474
9841
9849
  msgid "Failed to update service configuration"
9842
9850
  msgstr ""
9843
9851
 
9844
- #: ../lib/puppet/util/windows/service.rb:487
9852
+ #: ../lib/puppet/util/windows/service.rb:535
9845
9853
  msgid "Failed to fetch services"
9846
9854
  msgstr ""
9847
9855
 
9848
- #: ../lib/puppet/util/windows/service.rb:536
9856
+ #: ../lib/puppet/util/windows/service.rb:584
9849
9857
  msgid "Failed to open a handle to the service"
9850
9858
  msgstr ""
9851
9859
 
9852
- #: ../lib/puppet/util/windows/service.rb:553
9860
+ #: ../lib/puppet/util/windows/service.rb:601
9853
9861
  msgid "Failed to open a handle to the service control manager"
9854
9862
  msgstr ""
9855
9863
 
9856
- #: ../lib/puppet/util/windows/service.rb:576
9864
+ #: ../lib/puppet/util/windows/service.rb:624
9857
9865
  msgid "The service is already in the %{final_state} state. No further work needs to be done."
9858
9866
  msgstr ""
9859
9867
 
9860
- #: ../lib/puppet/util/windows/service.rb:588
9868
+ #: ../lib/puppet/util/windows/service.rb:636
9861
9869
  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."
9862
9870
  msgstr ""
9863
9871
 
9864
- #: ../lib/puppet/util/windows/service.rb:599
9872
+ #: ../lib/puppet/util/windows/service.rb:647
9865
9873
  msgid "There is already a pending transition to the %{final_state} state for the %{service_name} service."
9866
9874
  msgstr ""
9867
9875
 
9868
- #: ../lib/puppet/util/windows/service.rb:615
9876
+ #: ../lib/puppet/util/windows/service.rb:663
9869
9877
  msgid "The service is in the %{pending_state} state, which is an unsafe pending state."
9870
9878
  msgstr ""
9871
9879
 
9872
- #: ../lib/puppet/util/windows/service.rb:620
9880
+ #: ../lib/puppet/util/windows/service.rb:668
9873
9881
  msgid "Transitioning the %{service_name} service from %{initial_state} to %{final_state}"
9874
9882
  msgstr ""
9875
9883
 
9876
- #: ../lib/puppet/util/windows/service.rb:624
9884
+ #: ../lib/puppet/util/windows/service.rb:672
9877
9885
  msgid "Waiting for the transition to finish"
9878
9886
  msgstr ""
9879
9887
 
9880
- #: ../lib/puppet/util/windows/service.rb:629
9888
+ #: ../lib/puppet/util/windows/service.rb:677
9881
9889
  msgid "Failed to transition the %{service_name} service to the %{final_state} state. Detail: %{detail}"
9882
9890
  msgstr ""
9883
9891
 
9884
- #: ../lib/puppet/util/windows/service.rb:668 ../lib/puppet/util/windows/service.rb:704
9892
+ #: ../lib/puppet/util/windows/service.rb:716 ../lib/puppet/util/windows/service.rb:752
9885
9893
  msgid "Service query failed"
9886
9894
  msgstr ""
9887
9895
 
9888
- #: ../lib/puppet/util/windows/service.rb:721
9896
+ #: ../lib/puppet/util/windows/service.rb:795
9897
+ msgid "Service query for %{parameter_name} failed"
9898
+ msgstr ""
9899
+
9900
+ #: ../lib/puppet/util/windows/service.rb:818
9901
+ msgid "Failed to update service %{change} configuration"
9902
+ msgstr ""
9903
+
9904
+ #: ../lib/puppet/util/windows/service.rb:845
9889
9905
  msgid "Failed to send the %{control_signal} signal to the service. Its current state is %{current_state}. Reason for failure:"
9890
9906
  msgstr ""
9891
9907
 
9892
- #: ../lib/puppet/util/windows/service.rb:756
9908
+ #: ../lib/puppet/util/windows/service.rb:880
9893
9909
  msgid "The service transitioned to the %{pending_state} state."
9894
9910
  msgstr ""
9895
9911
 
9896
- #: ../lib/puppet/util/windows/service.rb:770
9912
+ #: ../lib/puppet/util/windows/service.rb:894
9897
9913
  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}."
9898
9914
  msgstr ""
9899
9915
 
9900
- #: ../lib/puppet/util/windows/service.rb:785
9916
+ #: ../lib/puppet/util/windows/service.rb:909
9901
9917
  msgid "Waiting for the pending transition to the %{final_state} state to finish."
9902
9918
  msgstr ""
9903
9919
 
9904
- #: ../lib/puppet/util/windows/service.rb:799
9920
+ #: ../lib/puppet/util/windows/service.rb:923
9905
9921
  msgid "Unexpected transition to the %{current_state} state while waiting for the pending transition from %{pending_state} to %{final_state} to finish."
9906
9922
  msgstr ""
9907
9923
 
9908
- #: ../lib/puppet/util/windows/service.rb:813
9924
+ #: ../lib/puppet/util/windows/service.rb:937
9909
9925
  msgid "Timed out while waiting for the pending transition from %{pending_state} to %{final_state} to finish. The current state is %{current_state}."
9910
9926
  msgstr ""
9911
9927
 
9912
- #: ../lib/puppet/util/windows/sid.rb:93
9928
+ #: ../lib/puppet/util/windows/sid.rb:94
9913
9929
  msgid "Octet string must be an array of bytes"
9914
9930
  msgstr ""
9915
9931
 
9916
- #: ../lib/puppet/util/windows/sid.rb:160
9932
+ #: ../lib/puppet/util/windows/sid.rb:161
9917
9933
  msgid "Failed to convert binary SID"
9918
9934
  msgstr ""
9919
9935
 
9920
- #: ../lib/puppet/util/windows/sid.rb:165
9936
+ #: ../lib/puppet/util/windows/sid.rb:166
9921
9937
  msgid "ConvertSidToStringSidW failed to allocate buffer for sid"
9922
9938
  msgstr ""
9923
9939
 
9924
- #: ../lib/puppet/util/windows/sid.rb:185
9940
+ #: ../lib/puppet/util/windows/sid.rb:186
9925
9941
  msgid "Failed to convert string SID: %{string_sid}"
9926
9942
  msgstr ""
9927
9943