puppet 6.14.0-x86-mingw32 → 6.15.0-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 (195) hide show
  1. checksums.yaml +4 -4
  2. data/Gemfile.lock +15 -15
  3. data/ext/windows/service/daemon.rb +3 -3
  4. data/lib/puppet.rb +1 -1
  5. data/lib/puppet/agent.rb +2 -10
  6. data/lib/puppet/application/agent.rb +2 -1
  7. data/lib/puppet/application/filebucket.rb +5 -14
  8. data/lib/puppet/application/ssl.rb +2 -2
  9. data/lib/puppet/configurer.rb +7 -3
  10. data/lib/puppet/configurer/plugin_handler.rb +1 -1
  11. data/lib/puppet/defaults.rb +22 -2
  12. data/lib/puppet/environments.rb +4 -5
  13. data/lib/puppet/face/plugin.rb +1 -1
  14. data/lib/puppet/file_system/file_impl.rb +13 -9
  15. data/lib/puppet/forge/repository.rb +1 -1
  16. data/lib/puppet/functions/call.rb +1 -1
  17. data/lib/puppet/functions/reduce.rb +2 -4
  18. data/lib/puppet/http.rb +2 -0
  19. data/lib/puppet/http/client.rb +191 -52
  20. data/lib/puppet/http/external_client.rb +96 -0
  21. data/lib/puppet/http/redirector.rb +34 -0
  22. data/lib/puppet/http/resolver.rb +46 -3
  23. data/lib/puppet/http/resolver/server_list.rb +75 -15
  24. data/lib/puppet/http/resolver/settings.rb +22 -2
  25. data/lib/puppet/http/resolver/srv.rb +28 -2
  26. data/lib/puppet/http/response.rb +63 -1
  27. data/lib/puppet/http/retry_after_handler.rb +39 -0
  28. data/lib/puppet/http/service.rb +67 -1
  29. data/lib/puppet/http/service/ca.rb +71 -9
  30. data/lib/puppet/http/service/compiler.rb +213 -11
  31. data/lib/puppet/http/service/file_server.rb +105 -4
  32. data/lib/puppet/http/service/report.rb +36 -3
  33. data/lib/puppet/http/session.rb +59 -8
  34. data/lib/puppet/indirector/catalog/rest.rb +2 -1
  35. data/lib/puppet/indirector/facts/rest.rb +2 -1
  36. data/lib/puppet/indirector/file_bucket_file/rest.rb +48 -0
  37. data/lib/puppet/indirector/file_metadata/rest.rb +4 -2
  38. data/lib/puppet/indirector/node/rest.rb +2 -1
  39. data/lib/puppet/indirector/report/yaml.rb +23 -0
  40. data/lib/puppet/indirector/status/rest.rb +2 -1
  41. data/lib/puppet/metatype/manager.rb +80 -80
  42. data/lib/puppet/network/http/base_pool.rb +6 -1
  43. data/lib/puppet/network/http/pool.rb +2 -4
  44. data/lib/puppet/network/http_pool.rb +1 -0
  45. data/lib/puppet/node/environment.rb +11 -1
  46. data/lib/puppet/pal/pal_impl.rb +1 -29
  47. data/lib/puppet/parser/compiler.rb +14 -7
  48. data/lib/puppet/parser/functions.rb +18 -13
  49. data/lib/puppet/pops/loaders.rb +7 -5
  50. data/lib/puppet/provider/group/windows_adsi.rb +3 -3
  51. data/lib/puppet/provider/package/apt.rb +61 -1
  52. data/lib/puppet/provider/package/dnfmodule.rb +39 -12
  53. data/lib/puppet/provider/package/gem.rb +41 -7
  54. data/lib/puppet/provider/package/pacman.rb +2 -5
  55. data/lib/puppet/provider/package/pip.rb +105 -33
  56. data/lib/puppet/provider/package/pip3.rb +0 -2
  57. data/lib/puppet/provider/package/pkgdmg.rb +1 -1
  58. data/lib/puppet/provider/package/pkgng.rb +16 -4
  59. data/lib/puppet/provider/package/puppet_gem.rb +6 -2
  60. data/lib/puppet/provider/package/rpm.rb +6 -213
  61. data/lib/puppet/provider/package/yum.rb +92 -19
  62. data/lib/puppet/provider/service/systemd.rb +2 -1
  63. data/lib/puppet/reports/http.rb +13 -11
  64. data/lib/puppet/resource/type_collection.rb +20 -16
  65. data/lib/puppet/ssl.rb +1 -0
  66. data/lib/puppet/ssl/host.rb +4 -4
  67. data/lib/puppet/ssl/oids.rb +1 -0
  68. data/lib/puppet/ssl/state_machine.rb +50 -33
  69. data/lib/puppet/transaction/report.rb +2 -2
  70. data/lib/puppet/type.rb +6 -1
  71. data/lib/puppet/type/file/source.rb +4 -2
  72. data/lib/puppet/type/package.rb +25 -2
  73. data/lib/puppet/type/user.rb +0 -19
  74. data/lib/puppet/util/at_fork.rb +1 -1
  75. data/lib/puppet/util/autoload.rb +3 -0
  76. data/lib/puppet/util/instance_loader.rb +14 -10
  77. data/lib/puppet/util/package/version/debian.rb +175 -0
  78. data/lib/puppet/util/package/version/gem.rb +15 -0
  79. data/lib/puppet/util/package/version/pip.rb +167 -0
  80. data/lib/puppet/util/package/version/range.rb +50 -0
  81. data/lib/puppet/util/package/version/range/gt.rb +14 -0
  82. data/lib/puppet/util/package/version/range/gt_eq.rb +14 -0
  83. data/lib/puppet/util/package/version/range/lt.rb +14 -0
  84. data/lib/puppet/util/package/version/range/lt_eq.rb +14 -0
  85. data/lib/puppet/util/package/version/range/min_max.rb +21 -0
  86. data/lib/puppet/util/package/version/range/simple.rb +11 -0
  87. data/lib/puppet/util/package/version/rpm.rb +73 -0
  88. data/lib/puppet/util/pidlock.rb +13 -7
  89. data/lib/puppet/util/platform.rb +5 -0
  90. data/lib/puppet/util/rpm_compare.rb +193 -0
  91. data/lib/puppet/util/windows/adsi.rb +2 -2
  92. data/lib/puppet/util/windows/process.rb +15 -14
  93. data/lib/puppet/util/windows/security.rb +1 -0
  94. data/lib/puppet/util/windows/sid.rb +3 -3
  95. data/lib/puppet/version.rb +1 -1
  96. data/locales/puppet.pot +207 -201
  97. data/man/man5/puppet.conf.5 +11 -3
  98. data/man/man8/puppet-agent.8 +1 -1
  99. data/man/man8/puppet-apply.8 +1 -1
  100. data/man/man8/puppet-catalog.8 +1 -1
  101. data/man/man8/puppet-config.8 +1 -1
  102. data/man/man8/puppet-describe.8 +1 -1
  103. data/man/man8/puppet-device.8 +1 -1
  104. data/man/man8/puppet-doc.8 +1 -1
  105. data/man/man8/puppet-epp.8 +1 -1
  106. data/man/man8/puppet-facts.8 +1 -1
  107. data/man/man8/puppet-filebucket.8 +1 -1
  108. data/man/man8/puppet-generate.8 +1 -1
  109. data/man/man8/puppet-help.8 +1 -1
  110. data/man/man8/puppet-key.8 +1 -1
  111. data/man/man8/puppet-lookup.8 +1 -1
  112. data/man/man8/puppet-man.8 +1 -1
  113. data/man/man8/puppet-module.8 +1 -1
  114. data/man/man8/puppet-node.8 +1 -1
  115. data/man/man8/puppet-parser.8 +1 -1
  116. data/man/man8/puppet-plugin.8 +1 -1
  117. data/man/man8/puppet-report.8 +1 -1
  118. data/man/man8/puppet-resource.8 +1 -1
  119. data/man/man8/puppet-script.8 +1 -1
  120. data/man/man8/puppet-ssl.8 +1 -1
  121. data/man/man8/puppet-status.8 +1 -1
  122. data/man/man8/puppet.8 +2 -2
  123. data/spec/fixtures/ssl/unknown-127.0.0.1-key.pem +67 -0
  124. data/spec/fixtures/ssl/unknown-127.0.0.1.pem +48 -0
  125. data/spec/fixtures/ssl/unknown-ca-key.pem +67 -0
  126. data/spec/fixtures/ssl/unknown-ca.pem +59 -0
  127. data/spec/fixtures/unit/provider/package/dnfmodule/{dnf-module-list-installed.txt → dnf-module-list-enabled.txt} +2 -0
  128. data/spec/fixtures/unit/provider/package/pkgng/pkg.version +2 -0
  129. data/spec/fixtures/unit/provider/package/yum/yum-check-update-subscription-manager.txt +9 -0
  130. data/spec/fixtures/unit/provider/service/systemd/list_unit_files_services +9 -0
  131. data/spec/integration/application/agent_spec.rb +329 -0
  132. data/spec/integration/application/apply_spec.rb +132 -3
  133. data/spec/integration/application/filebucket_spec.rb +190 -0
  134. data/spec/integration/application/plugin_spec.rb +50 -0
  135. data/spec/integration/http/client_spec.rb +34 -40
  136. data/spec/integration/indirector/report/yaml.rb +83 -0
  137. data/spec/integration/module_tool/forge_spec.rb +2 -15
  138. data/spec/integration/network/http_pool_spec.rb +11 -19
  139. data/spec/integration/node/environment_spec.rb +15 -0
  140. data/spec/integration/util/windows/adsi_spec.rb +1 -1
  141. data/spec/lib/puppet/test_ca.rb +2 -2
  142. data/spec/lib/puppet_spec/https.rb +10 -7
  143. data/spec/lib/puppet_spec/puppetserver.rb +119 -0
  144. data/spec/shared_contexts/https.rb +29 -0
  145. data/spec/unit/agent_spec.rb +33 -25
  146. data/spec/unit/application/agent_spec.rb +5 -1
  147. data/spec/unit/application/device_spec.rb +2 -2
  148. data/spec/unit/application/filebucket_spec.rb +22 -2
  149. data/spec/unit/configurer_spec.rb +1 -1
  150. data/spec/unit/defaults_spec.rb +24 -1
  151. data/spec/unit/environments_spec.rb +8 -0
  152. data/spec/unit/file_system_spec.rb +10 -0
  153. data/spec/unit/http/client_spec.rb +105 -46
  154. data/spec/unit/http/external_client_spec.rb +201 -0
  155. data/spec/unit/http/resolver_spec.rb +20 -0
  156. data/spec/unit/http/service/ca_spec.rb +25 -2
  157. data/spec/unit/http/service/compiler_spec.rb +184 -6
  158. data/spec/unit/http/service/file_server_spec.rb +35 -3
  159. data/spec/unit/http/service/report_spec.rb +3 -1
  160. data/spec/unit/http/service_spec.rb +3 -3
  161. data/spec/unit/http/session_spec.rb +56 -7
  162. data/spec/unit/indirector/file_bucket_file/rest_spec.rb +82 -2
  163. data/spec/unit/network/http/pool_spec.rb +3 -3
  164. data/spec/unit/node/environment_spec.rb +16 -0
  165. data/spec/unit/provider/group/windows_adsi_spec.rb +43 -10
  166. data/spec/unit/provider/package/apt_spec.rb +30 -0
  167. data/spec/unit/provider/package/dnfmodule_spec.rb +33 -14
  168. data/spec/unit/provider/package/gem_spec.rb +40 -0
  169. data/spec/unit/provider/package/pacman_spec.rb +6 -21
  170. data/spec/unit/provider/package/pip_spec.rb +26 -3
  171. data/spec/unit/provider/package/pkgdmg_spec.rb +1 -1
  172. data/spec/unit/provider/package/pkgng_spec.rb +38 -0
  173. data/spec/unit/provider/package/puppet_gem_spec.rb +8 -0
  174. data/spec/unit/provider/package/rpm_spec.rb +0 -212
  175. data/spec/unit/provider/package/yum_spec.rb +235 -1
  176. data/spec/unit/provider/service/systemd_spec.rb +10 -1
  177. data/spec/unit/provider/user/windows_adsi_spec.rb +3 -3
  178. data/spec/unit/puppet_pal_2pec.rb +0 -29
  179. data/spec/unit/reports/http_spec.rb +70 -52
  180. data/spec/unit/ssl/host_spec.rb +4 -2
  181. data/spec/unit/ssl/oids_spec.rb +1 -0
  182. data/spec/unit/ssl/state_machine_spec.rb +38 -6
  183. data/spec/unit/transaction/report_spec.rb +4 -0
  184. data/spec/unit/util/at_fork_spec.rb +2 -2
  185. data/spec/unit/util/package/version/debian_spec.rb +83 -0
  186. data/spec/unit/util/package/version/pip_spec.rb +464 -0
  187. data/spec/unit/util/package/version/range_spec.rb +154 -0
  188. data/spec/unit/util/package/version/rpm_spec.rb +121 -0
  189. data/spec/unit/util/pidlock_spec.rb +83 -47
  190. data/spec/unit/util/rpm_compare_spec.rb +196 -0
  191. data/spec/unit/util/windows/adsi_spec.rb +4 -4
  192. data/spec/unit/util/windows/sid_spec.rb +2 -2
  193. data/tasks/generate_cert_fixtures.rake +15 -1
  194. metadata +51 -6
  195. data/spec/integration/faces/plugin_spec.rb +0 -63
@@ -97,6 +97,7 @@ module Puppet::Util::Windows::Security
97
97
  FILE = Puppet::Util::Windows::File
98
98
 
99
99
  SE_BACKUP_NAME = 'SeBackupPrivilege'
100
+ SE_DEBUG_NAME = 'SeDebugPrivilege'
100
101
  SE_RESTORE_NAME = 'SeRestorePrivilege'
101
102
 
102
103
  DELETE = 0x00010000
@@ -64,7 +64,7 @@ module Puppet::Util::Windows
64
64
  # 'BUILTIN\Administrators', or 'S-1-5-32-544', and will return the
65
65
  # SID object. Returns nil if the account doesn't exist.
66
66
  # This method returns a SID::Principal with the account, domain, SID, etc
67
- def name_to_principal(name)
67
+ def name_to_principal(name, allow_unresolved = false)
68
68
  # Apparently, we accept a symbol..
69
69
  name = name.to_s.strip if name
70
70
 
@@ -79,7 +79,7 @@ module Puppet::Util::Windows
79
79
 
80
80
  raw_sid_bytes ? Principal.lookup_account_sid(raw_sid_bytes) : Principal.lookup_account_name(name)
81
81
  rescue
82
- nil
82
+ (allow_unresolved && raw_sid_bytes) ? unresolved_principal(name, raw_sid_bytes) : nil
83
83
  end
84
84
  module_function :name_to_principal
85
85
  class << self; alias name_to_sid_object name_to_principal; end
@@ -236,7 +236,7 @@ module Puppet::Util::Windows
236
236
  # @api private
237
237
  def self.unresolved_principal(name, sid_bytes)
238
238
  Principal.new(
239
- name + " (unresolvable)", # account
239
+ name, # account
240
240
  sid_bytes, # sid_bytes
241
241
  name, # sid string
242
242
  nil, #domain
@@ -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.14.0'
9
+ PUPPETVERSION = '6.15.0'
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.13.0-112-g38edbcd2f7\n"
9
+ "Project-Id-Version: Puppet automation framework 6.14.0-210-g48e54bcd2c\n"
10
10
  "\n"
11
11
  "Report-Msgid-Bugs-To: https://tickets.puppetlabs.com\n"
12
- "POT-Creation-Date: 2020-03-04 18:34+0000\n"
13
- "PO-Revision-Date: 2020-03-04 18:34+0000\n"
12
+ "POT-Creation-Date: 2020-04-21 01:04+0000\n"
13
+ "PO-Revision-Date: 2020-04-21 01:04+0000\n"
14
14
  "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
15
15
  "Language-Team: LANGUAGE <LL@li.org>\n"
16
16
  "Language: \n"
@@ -92,7 +92,7 @@ msgstr ""
92
92
  msgid "puppet agent: applying configuration"
93
93
  msgstr ""
94
94
 
95
- #: ../lib/puppet/agent.rb:127
95
+ #: ../lib/puppet/agent.rb:119
96
96
  msgid "Could not create instance of %{client_class}: %{detail}"
97
97
  msgstr ""
98
98
 
@@ -178,23 +178,23 @@ msgstr ""
178
178
  msgid "Cancelling startup"
179
179
  msgstr ""
180
180
 
181
- #: ../lib/puppet/application/agent.rb:82
181
+ #: ../lib/puppet/application/agent.rb:83
182
182
  msgid "The puppet agent daemon"
183
183
  msgstr ""
184
184
 
185
- #: ../lib/puppet/application/agent.rb:397
185
+ #: ../lib/puppet/application/agent.rb:398
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:402
189
+ #: ../lib/puppet/application/agent.rb:403
190
190
  msgid "Failed to generate fingerprint: %{message}"
191
191
  msgstr ""
192
192
 
193
- #: ../lib/puppet/application/agent.rb:425
193
+ #: ../lib/puppet/application/agent.rb:426
194
194
  msgid "Starting Puppet client version %{version}"
195
195
  msgstr ""
196
196
 
197
- #: ../lib/puppet/application/agent.rb:441
197
+ #: ../lib/puppet/application/agent.rb:442
198
198
  msgid "The puppet agent command does not take parameters"
199
199
  msgstr ""
200
200
 
@@ -378,17 +378,6 @@ msgstr ""
378
378
  msgid "Cancelling"
379
379
  msgstr ""
380
380
 
381
- #. TRANSLATORS 'server_list' is the name of a setting and should not be translated
382
- #: ../lib/puppet/application/filebucket.rb:306
383
- msgid "Selected server from first entry of the `server_list` setting: %{server}:%{port}"
384
- msgstr ""
385
-
386
- #. TRANSLATORS 'server' is the name of a setting and should not be translated
387
- #. TRANSLATORS 'server' is the name of a setting and should not be translated
388
- #: ../lib/puppet/application/filebucket.rb:313 ../lib/puppet/indirector/request.rb:218
389
- msgid "Selected server from the `server` setting: %{server}"
390
- msgstr ""
391
-
392
381
  #: ../lib/puppet/application/lookup.rb:8
393
382
  msgid "Run 'puppet lookup --help' for more details"
394
383
  msgstr ""
@@ -559,77 +548,77 @@ msgstr ""
559
548
  msgid "Applied catalog in %{seconds} seconds"
560
549
  msgstr ""
561
550
 
562
- #: ../lib/puppet/configurer.rb:219 ../lib/puppet/http/resolver/server_list.rb:19
551
+ #: ../lib/puppet/configurer.rb:219 ../lib/puppet/http/resolver/server_list.rb:68
563
552
  msgid "Could not select a functional puppet master from server_list: '%{server_list}'"
564
553
  msgstr ""
565
554
 
566
- #: ../lib/puppet/configurer.rb:252
555
+ #: ../lib/puppet/configurer.rb:256
567
556
  msgid "Local environment: '%{local_env}' doesn't match the environment of the cached catalog '%{catalog_env}', switching agent to '%{catalog_env}'."
568
557
  msgstr ""
569
558
 
570
- #: ../lib/puppet/configurer.rb:297
559
+ #: ../lib/puppet/configurer.rb:301
571
560
  msgid "Local environment: '%{local_env}' doesn't match server specified node environment '%{node_env}', switching agent to '%{node_env}'."
572
561
  msgstr ""
573
562
 
574
- #: ../lib/puppet/configurer.rb:303
563
+ #: ../lib/puppet/configurer.rb:307
575
564
  msgid "Using configured environment '%{env}'"
576
565
  msgstr ""
577
566
 
578
- #: ../lib/puppet/configurer.rb:307
567
+ #: ../lib/puppet/configurer.rb:311
579
568
  msgid "Unable to fetch my node definition, but the agent run will continue:"
580
569
  msgstr ""
581
570
 
582
- #: ../lib/puppet/configurer.rb:336
571
+ #: ../lib/puppet/configurer.rb:340
583
572
  msgid "Not using catalog because its environment '%{catalog_env}' does not match agent specified environment '%{local_env}' and strict_environment_mode is set"
584
573
  msgstr ""
585
574
 
586
- #: ../lib/puppet/configurer.rb:347
575
+ #: ../lib/puppet/configurer.rb:351
587
576
  msgid "Catalog environment didn't stabilize after %{tries} fetches, aborting run"
588
577
  msgstr ""
589
578
 
590
- #: ../lib/puppet/configurer.rb:349
579
+ #: ../lib/puppet/configurer.rb:353
591
580
  msgid "Local environment: '%{local_env}' doesn't match server specified environment '%{catalog_env}', restarting agent run with environment '%{catalog_env}'"
592
581
  msgstr ""
593
582
 
594
- #: ../lib/puppet/configurer.rb:390
583
+ #: ../lib/puppet/configurer.rb:394
595
584
  msgid "Failed to apply catalog: %{detail}"
596
585
  msgstr ""
597
586
 
598
- #: ../lib/puppet/configurer.rb:419 ../lib/puppet/http/resolver/server_list.rb:29
587
+ #: ../lib/puppet/configurer.rb:423 ../lib/puppet/http/resolver/server_list.rb:89
599
588
  msgid "Puppet server %{host}:%{port} is unavailable: %{code} %{reason}"
600
589
  msgstr ""
601
590
 
602
591
  #. TRANSLATORS 'server_list' is the name of a setting and should not be translated
603
592
  #. TRANSLATORS 'server_list' is the name of a setting and should not be translated
604
- #: ../lib/puppet/configurer.rb:423 ../lib/puppet/http/resolver/server_list.rb:35
593
+ #: ../lib/puppet/configurer.rb:427 ../lib/puppet/http/resolver/server_list.rb:95
605
594
  msgid "Unable to connect to server from server_list setting: %{detail}"
606
595
  msgstr ""
607
596
 
608
- #: ../lib/puppet/configurer.rb:434 ../lib/puppet/face/report.rb:47
597
+ #: ../lib/puppet/configurer.rb:438 ../lib/puppet/face/report.rb:47
609
598
  msgid "Could not send report: %{detail}"
610
599
  msgstr ""
611
600
 
612
- #: ../lib/puppet/configurer.rb:443
601
+ #: ../lib/puppet/configurer.rb:447
613
602
  msgid "Could not save last run local report: %{detail}"
614
603
  msgstr ""
615
604
 
616
- #: ../lib/puppet/configurer.rb:462
605
+ #: ../lib/puppet/configurer.rb:466
617
606
  msgid "Uploading facts for %{node} to %{server}"
618
607
  msgstr ""
619
608
 
620
- #: ../lib/puppet/configurer.rb:470
609
+ #: ../lib/puppet/configurer.rb:474
621
610
  msgid "Failed to submit facts: %{detail}"
622
611
  msgstr ""
623
612
 
624
- #: ../lib/puppet/configurer.rb:485
613
+ #: ../lib/puppet/configurer.rb:489
625
614
  msgid "Could not run command from %{setting}: %{detail}"
626
615
  msgstr ""
627
616
 
628
- #: ../lib/puppet/configurer.rb:503
617
+ #: ../lib/puppet/configurer.rb:507
629
618
  msgid "Could not retrieve catalog from cache: %{detail}"
630
619
  msgstr ""
631
620
 
632
- #: ../lib/puppet/configurer.rb:524
621
+ #: ../lib/puppet/configurer.rb:528
633
622
  msgid "Could not retrieve catalog from remote server: %{detail}"
634
623
  msgstr ""
635
624
 
@@ -693,38 +682,38 @@ msgstr ""
693
682
  msgid "a data type can only have one implementation"
694
683
  msgstr ""
695
684
 
696
- #: ../lib/puppet/defaults.rb:175
685
+ #: ../lib/puppet/defaults.rb:178
697
686
  msgid "Cannot disable unrecognized warning types '%{invalid}'."
698
687
  msgstr ""
699
688
 
700
- #: ../lib/puppet/defaults.rb:176
689
+ #: ../lib/puppet/defaults.rb:179
701
690
  msgid "Valid values are '%{values}'."
702
691
  msgstr ""
703
692
 
704
693
  #. TRANSLATORS 'data_binding_terminus' is a setting and should not be translated
705
- #: ../lib/puppet/defaults.rb:544
694
+ #: ../lib/puppet/defaults.rb:547
706
695
  msgid "Setting 'data_binding_terminus' is deprecated."
707
696
  msgstr ""
708
697
 
709
698
  #. TRANSLATORS 'hiera' should not be translated
710
- #: ../lib/puppet/defaults.rb:546
699
+ #: ../lib/puppet/defaults.rb:549
711
700
  msgid "Convert custom terminus to hiera 5 API."
712
701
  msgstr ""
713
702
 
714
703
  #. TRANSLATORS 'environment_data_provider' is a setting and should not be translated
715
- #: ../lib/puppet/defaults.rb:736
704
+ #: ../lib/puppet/defaults.rb:739
716
705
  msgid "Setting 'environment_data_provider' is deprecated."
717
706
  msgstr ""
718
707
 
719
- #: ../lib/puppet/defaults.rb:817
708
+ #: ../lib/puppet/defaults.rb:820
720
709
  msgid "Certificate names must be lower case"
721
710
  msgstr ""
722
711
 
723
- #: ../lib/puppet/defaults.rb:1002
712
+ #: ../lib/puppet/defaults.rb:1005
724
713
  msgid "Setting 'ssl_client_ca_auth' is deprecated."
725
714
  msgstr ""
726
715
 
727
- #: ../lib/puppet/defaults.rb:1081 ../lib/puppet/settings/enum_setting.rb:13 ../lib/puppet/settings/symbolic_enum_setting.rb:14
716
+ #: ../lib/puppet/defaults.rb:1084 ../lib/puppet/settings/enum_setting.rb:13 ../lib/puppet/settings/symbolic_enum_setting.rb:14
728
717
  msgid "Invalid value '%{value}' for parameter %{name}. Allowed values are '%{allowed_values}'"
729
718
  msgstr ""
730
719
 
@@ -2221,27 +2210,27 @@ msgstr ""
2221
2210
  msgid "Try the '--graph' option and opening the resulting '.dot' file in OmniGraffle or GraphViz"
2222
2211
  msgstr ""
2223
2212
 
2224
- #: ../lib/puppet/http/client.rb:39
2213
+ #: ../lib/puppet/http/client.rb:90
2225
2214
  msgid "Request to %{uri} timed out connect operation after %{elapsed} seconds"
2226
2215
  msgstr ""
2227
2216
 
2228
- #: ../lib/puppet/http/client.rb:41
2217
+ #: ../lib/puppet/http/client.rb:92
2229
2218
  msgid "Request to %{uri} timed out read operation after %{elapsed} seconds"
2230
2219
  msgstr ""
2231
2220
 
2232
- #: ../lib/puppet/http/client.rb:43
2221
+ #: ../lib/puppet/http/client.rb:94
2233
2222
  msgid "Request to %{uri} interrupted after %{elapsed} seconds"
2234
2223
  msgstr ""
2235
2224
 
2236
- #: ../lib/puppet/http/client.rb:49
2225
+ #: ../lib/puppet/http/client.rb:100
2237
2226
  msgid "Request to %{uri} failed after %{elapsed} seconds: %{message}"
2238
2227
  msgstr ""
2239
2228
 
2240
- #: ../lib/puppet/http/client.rb:171
2229
+ #: ../lib/puppet/http/client.rb:310
2241
2230
  msgid "Sleeping for %{interval} seconds before retrying the request"
2242
2231
  msgstr ""
2243
2232
 
2244
- #: ../lib/puppet/http/client.rb:214 ../lib/puppet/indirector/request.rb:142
2233
+ #: ../lib/puppet/http/client.rb:353 ../lib/puppet/indirector/request.rb:142
2245
2234
  msgid "HTTP REST queries cannot handle values of type '%{klass}'"
2246
2235
  msgstr ""
2247
2236
 
@@ -2253,32 +2242,32 @@ msgstr ""
2253
2242
  msgid "Too many HTTP retries for %{addr}"
2254
2243
  msgstr ""
2255
2244
 
2256
- #: ../lib/puppet/http/redirector.rb:42
2245
+ #: ../lib/puppet/http/redirector.rb:76
2257
2246
  msgid "Location response header is missing"
2258
2247
  msgstr ""
2259
2248
 
2260
- #: ../lib/puppet/http/redirector.rb:46
2249
+ #: ../lib/puppet/http/redirector.rb:80
2261
2250
  msgid "Location URI is invalid: %{detail}"
2262
2251
  msgstr ""
2263
2252
 
2264
- #: ../lib/puppet/http/retry_after_handler.rb:44
2253
+ #: ../lib/puppet/http/retry_after_handler.rb:83
2265
2254
  msgid "Failed to parse Retry-After header '%{retry_after}' as an integer or RFC 2822 date"
2266
2255
  msgstr ""
2267
2256
 
2268
- #: ../lib/puppet/http/service.rb:53
2257
+ #: ../lib/puppet/http/service.rb:119
2269
2258
  msgid "Ignoring extra header \"%{name}\" as it was previously set."
2270
2259
  msgstr ""
2271
2260
 
2272
- #: ../lib/puppet/http/service.rb:56
2261
+ #: ../lib/puppet/http/service.rb:122
2273
2262
  msgid "Ignoring extra header \"%{name}\" as it has no value."
2274
2263
  msgstr ""
2275
2264
 
2276
- #: ../lib/puppet/http/service.rb:82 ../lib/puppet/indirector/rest.rb:282
2265
+ #: ../lib/puppet/http/service.rb:145 ../lib/puppet/indirector/rest.rb:282
2277
2266
  msgid "No content type in http response; cannot parse"
2278
2267
  msgstr ""
2279
2268
 
2280
2269
  #. TRANSLATORS "pson", "preferred_serialization_format", and "puppetserver" should not be translated
2281
- #: ../lib/puppet/http/service/report.rb:28
2270
+ #: ../lib/puppet/http/service/report.rb:63
2282
2271
  msgid "To submit reports to a server running puppetserver %{server_version}, set preferred_serialization_format to pson"
2283
2272
  msgstr ""
2284
2273
 
@@ -2427,7 +2416,7 @@ msgstr ""
2427
2416
  msgid "Unable to serialize catalog to json, retrying with pson"
2428
2417
  msgstr ""
2429
2418
 
2430
- #: ../lib/puppet/indirector/catalog/rest.rb:33 ../lib/puppet/indirector/facts/rest.rb:21 ../lib/puppet/indirector/file_content/rest.rb:33 ../lib/puppet/indirector/file_metadata/rest.rb:29 ../lib/puppet/indirector/node/rest.rb:24 ../lib/puppet/indirector/rest.rb:144 ../lib/puppet/indirector/status/rest.rb:20
2419
+ #: ../lib/puppet/indirector/catalog/rest.rb:34 ../lib/puppet/indirector/facts/rest.rb:22 ../lib/puppet/indirector/file_content/rest.rb:33 ../lib/puppet/indirector/file_metadata/rest.rb:30 ../lib/puppet/indirector/node/rest.rb:25 ../lib/puppet/indirector/rest.rb:144 ../lib/puppet/indirector/status/rest.rb:21
2431
2420
  msgid "Find %{uri} resulted in 404 with the message: %{body}"
2432
2421
  msgstr ""
2433
2422
 
@@ -2531,7 +2520,7 @@ msgstr ""
2531
2520
  msgid "You cannot save facts to the code store; it is only used for getting facts from a remote device"
2532
2521
  msgstr ""
2533
2522
 
2534
- #: ../lib/puppet/indirector/facts/rest.rb:29 ../lib/puppet/indirector/rest.rb:192
2523
+ #: ../lib/puppet/indirector/facts/rest.rb:30 ../lib/puppet/indirector/rest.rb:192
2535
2524
  msgid "PUT does not accept options"
2536
2525
  msgstr ""
2537
2526
 
@@ -2762,6 +2751,14 @@ msgstr ""
2762
2751
  msgid "Server version %{version} does not accept reports in '%{format}', use `preferred_serialization_format=pson`"
2763
2752
  msgstr ""
2764
2753
 
2754
+ #: ../lib/puppet/indirector/report/yaml.rb:19
2755
+ msgid "replace_file mode: %{mode} is invalid"
2756
+ msgstr ""
2757
+
2758
+ #: ../lib/puppet/indirector/report/yaml.rb:31 ../lib/puppet/indirector/yaml.rb:32
2759
+ msgid "Could not save %{indirection} %{request}: %{detail}"
2760
+ msgstr ""
2761
+
2765
2762
  #: ../lib/puppet/indirector/request.rb:103
2766
2763
  msgid "Could not find indirection '%{indirection}'"
2767
2764
  msgstr ""
@@ -2775,6 +2772,11 @@ msgstr ""
2775
2772
  msgid "Selected server from first entry of the `server_list` setting: %{server}"
2776
2773
  msgstr ""
2777
2774
 
2775
+ #. TRANSLATORS 'server' is the name of a setting and should not be translated
2776
+ #: ../lib/puppet/indirector/request.rb:218
2777
+ msgid "Selected server from the `server` setting: %{server}"
2778
+ msgstr ""
2779
+
2778
2780
  #. TRANSLATORS 'server_list' is the name of a setting and should not be translated
2779
2781
  #: ../lib/puppet/indirector/request.rb:231
2780
2782
  msgid "Selected port from the first entry of the `server_list` setting: %{port}"
@@ -2878,10 +2880,6 @@ msgstr ""
2878
2880
  msgid "You can only save objects that respond to :name"
2879
2881
  msgstr ""
2880
2882
 
2881
- #: ../lib/puppet/indirector/yaml.rb:32
2882
- msgid "Could not save %{indirection} %{request}: %{detail}"
2883
- msgstr ""
2884
-
2885
2883
  #: ../lib/puppet/info_service/class_information_service.rb:18
2886
2884
  msgid "Given argument must be a Hash"
2887
2885
  msgstr ""
@@ -3150,17 +3148,17 @@ msgid "Option %{option} conflicts with existing option %{conflict} on %{action}"
3150
3148
  msgstr ""
3151
3149
 
3152
3150
  #. TRANSLATORS 'Puppet::Type.newtype' should not be translated
3153
- #: ../lib/puppet/metatype/manager.rb:76
3151
+ #: ../lib/puppet/metatype/manager.rb:77
3154
3152
  msgid "Puppet::Type.newtype(%{name}) now expects a hash as the second argument, not %{argument}"
3155
3153
  msgstr ""
3156
3154
 
3157
3155
  #. TRANSLATORS 'new%{method}' will become a method name, do not translate this string
3158
- #: ../lib/puppet/metatype/manager.rb:111
3156
+ #: ../lib/puppet/metatype/manager.rb:110
3159
3157
  msgid "'new%{method}' method already exists; skipping"
3160
3158
  msgstr ""
3161
3159
 
3162
3160
  #. TRANSLATORS 'puppet/type/%{name}' should not be translated
3163
- #: ../lib/puppet/metatype/manager.rb:174
3161
+ #: ../lib/puppet/metatype/manager.rb:173
3164
3162
  msgid "Loaded puppet/type/%{name} but no class was created"
3165
3163
  msgstr ""
3166
3164
 
@@ -4028,12 +4026,12 @@ msgid "Missing required Accept header"
4028
4026
  msgstr ""
4029
4027
 
4030
4028
  #. TRANSLATORS 'ssl_context' is an argument and should not be translated
4031
- #: ../lib/puppet/network/http_pool.rb:80
4029
+ #: ../lib/puppet/network/http_pool.rb:81
4032
4030
  msgid "An ssl_context is required when connecting to 'https://%{host}:%{port}'"
4033
4031
  msgstr ""
4034
4032
 
4035
4033
  #. TRANSLATORS 'ssl_context' is an argument and should not be translated
4036
- #: ../lib/puppet/network/http_pool.rb:88
4034
+ #: ../lib/puppet/network/http_pool.rb:89
4037
4035
  msgid "An ssl_context is unnecessary when connecting to 'http://%{host}:%{port}' and will be ignored"
4038
4036
  msgstr ""
4039
4037
 
@@ -4085,11 +4083,11 @@ msgstr ""
4085
4083
  msgid "Trusted node data modified for node %{name}"
4086
4084
  msgstr ""
4087
4085
 
4088
- #: ../lib/puppet/node/environment.rb:208
4086
+ #: ../lib/puppet/node/environment.rb:212
4089
4087
  msgid "The 'disable_per_environment_manifest' setting is true, and the '%{env_name}' environment has an environment.conf manifest that conflicts with the 'default_manifest' setting."
4090
4088
  msgstr ""
4091
4089
 
4092
- #: ../lib/puppet/node/environment.rb:551 ../lib/puppet/pops/loaders.rb:298
4090
+ #: ../lib/puppet/node/environment.rb:561 ../lib/puppet/pops/loaders.rb:300
4093
4091
  msgid "Could not parse for environment %{env}: %{detail}"
4094
4092
  msgstr ""
4095
4093
 
@@ -4160,15 +4158,15 @@ msgstr ""
4160
4158
  msgid "Given value for '%{varname}' has illegal type - got: %{type}"
4161
4159
  msgstr ""
4162
4160
 
4163
- #: ../lib/puppet/pal/pal_impl.rb:510
4161
+ #: ../lib/puppet/pal/pal_impl.rb:482
4164
4162
  msgid "Puppet Pal: %{what}"
4165
4163
  msgstr ""
4166
4164
 
4167
- #: ../lib/puppet/pal/pal_impl.rb:524
4165
+ #: ../lib/puppet/pal/pal_impl.rb:496
4168
4166
  msgid "Cannot use '%{a_term}' and '%{b_term}' at the same time"
4169
4167
  msgstr ""
4170
4168
 
4171
- #: ../lib/puppet/pal/pal_impl.rb:531
4169
+ #: ../lib/puppet/pal/pal_impl.rb:503
4172
4170
  msgid "A block must be given"
4173
4171
  msgstr ""
4174
4172
 
@@ -4461,43 +4459,43 @@ msgstr ""
4461
4459
  msgid "Evaluated application %{resource}"
4462
4460
  msgstr ""
4463
4461
 
4464
- #: ../lib/puppet/parser/functions.rb:42
4462
+ #: ../lib/puppet/parser/functions.rb:43
4465
4463
  msgid "The method 'Puppet::Parser::Functions.autoloader#loadall' is deprecated in favor of using 'Scope#call_function'."
4466
4464
  msgstr ""
4467
4465
 
4468
- #: ../lib/puppet/parser/functions.rb:50
4466
+ #: ../lib/puppet/parser/functions.rb:51
4469
4467
  msgid "The method 'Puppet::Parser::Functions.autoloader#load(\"%{name}\")' is deprecated in favor of using 'Scope#call_function'."
4470
4468
  msgstr ""
4471
4469
 
4472
- #: ../lib/puppet/parser/functions.rb:58
4470
+ #: ../lib/puppet/parser/functions.rb:59
4473
4471
  msgid "The method 'Puppet::Parser::Functions.autoloader#loaded?(\"%{name}\")' is deprecated in favor of using 'Scope#call_function'."
4474
4472
  msgstr ""
4475
4473
 
4476
- #: ../lib/puppet/parser/functions.rb:181
4474
+ #: ../lib/puppet/parser/functions.rb:186
4477
4475
  msgid "Overwriting previous definition for function %{name}"
4478
4476
  msgstr ""
4479
4477
 
4480
- #: ../lib/puppet/parser/functions.rb:187
4478
+ #: ../lib/puppet/parser/functions.rb:192
4481
4479
  msgid "Invalid statement type %{type}"
4482
4480
  msgstr ""
4483
4481
 
4484
- #: ../lib/puppet/parser/functions.rb:199
4482
+ #: ../lib/puppet/parser/functions.rb:204
4485
4483
  msgid "Called %{name}"
4486
4484
  msgstr ""
4487
4485
 
4488
- #: ../lib/puppet/parser/functions.rb:202
4486
+ #: ../lib/puppet/parser/functions.rb:207
4489
4487
  msgid "%{name}(): Wrong number of arguments given (%{arg_count} for %{arity})"
4490
4488
  msgstr ""
4491
4489
 
4492
- #: ../lib/puppet/parser/functions.rb:204
4490
+ #: ../lib/puppet/parser/functions.rb:209
4493
4491
  msgid "%{name}(): Wrong number of arguments given (%{arg_count} for minimum %{min_arg_count})"
4494
4492
  msgstr ""
4495
4493
 
4496
- #: ../lib/puppet/parser/functions.rb:210
4494
+ #: ../lib/puppet/parser/functions.rb:215
4497
4495
  msgid "custom functions must be called with a single array that contains the arguments. For example, function_example([1]) instead of function_example(1)"
4498
4496
  msgstr ""
4499
4497
 
4500
- #: ../lib/puppet/parser/functions.rb:309
4498
+ #: ../lib/puppet/parser/functions.rb:314
4501
4499
  msgid "%{name}() can only be called using the 4.x function API. See Scope#call_function"
4502
4500
  msgstr ""
4503
4501
 
@@ -5836,23 +5834,23 @@ msgstr ""
5836
5834
  msgid "The code loaded from %{source_ref} contains additional logic - can only contain the type '%{name}'"
5837
5835
  msgstr ""
5838
5836
 
5839
- #: ../lib/puppet/pops/loaders.rb:32
5837
+ #: ../lib/puppet/pops/loaders.rb:34
5840
5838
  msgid "Attempt to redefine already initialized loaders for environment"
5841
5839
  msgstr ""
5842
5840
 
5843
- #: ../lib/puppet/pops/loaders.rb:174
5841
+ #: ../lib/puppet/pops/loaders.rb:176
5844
5842
  msgid "Internal Error: Puppet Context ':loaders' missing"
5845
5843
  msgstr ""
5846
5844
 
5847
- #: ../lib/puppet/pops/loaders.rb:188
5845
+ #: ../lib/puppet/pops/loaders.rb:190
5848
5846
  msgid "Unable to find loader named '%{loader_name}'"
5849
5847
  msgstr ""
5850
5848
 
5851
- #: ../lib/puppet/pops/loaders.rb:209
5849
+ #: ../lib/puppet/pops/loaders.rb:211
5852
5850
  msgid "Internal Error: did not find public loader for module: '%{module_name}'"
5853
5851
  msgstr ""
5854
5852
 
5855
- #: ../lib/puppet/pops/loaders.rb:255
5853
+ #: ../lib/puppet/pops/loaders.rb:257
5856
5854
  msgid "Internal Error: Attempt to redefine loader named '%{name}'"
5857
5855
  msgstr ""
5858
5856
 
@@ -6059,7 +6057,7 @@ msgstr ""
6059
6057
  msgid "digit expected"
6060
6058
  msgstr ""
6061
6059
 
6062
- #: ../lib/puppet/pops/resource/resource_type_impl.rb:167 ../lib/puppet/type.rb:434
6060
+ #: ../lib/puppet/pops/resource/resource_type_impl.rb:167 ../lib/puppet/type.rb:440
6063
6061
  msgid "you must specify title patterns when there are two or more key attributes"
6064
6062
  msgstr ""
6065
6063
 
@@ -6696,7 +6694,7 @@ msgstr ""
6696
6694
  msgid "Could not list installed Packages: %{detail}"
6697
6695
  msgstr ""
6698
6696
 
6699
- #: ../lib/puppet/provider/package/aix.rb:141 ../lib/puppet/provider/package/yum.rb:252
6697
+ #: ../lib/puppet/provider/package/aix.rb:141 ../lib/puppet/provider/package/yum.rb:316
6700
6698
  msgid "Tried to get latest on a missing package"
6701
6699
  msgstr ""
6702
6700
 
@@ -6712,23 +6710,23 @@ msgstr ""
6712
6710
  msgid "Mac OS X packages must specify a package source"
6713
6711
  msgstr ""
6714
6712
 
6715
- #: ../lib/puppet/provider/package/apt.rb:43
6713
+ #: ../lib/puppet/provider/package/apt.rb:47
6716
6714
  msgid "/etc/apt/sources.list contains a cdrom source; not installing. Use 'allowcdrom' to override this failure."
6717
6715
  msgstr ""
6718
6716
 
6719
- #: ../lib/puppet/provider/package/apt.rb:93 ../lib/puppet/provider/package/fink.rb:55
6717
+ #: ../lib/puppet/provider/package/apt.rb:126 ../lib/puppet/provider/package/fink.rb:55
6720
6718
  msgid "Could not find latest version"
6721
6719
  msgstr ""
6722
6720
 
6723
- #: ../lib/puppet/provider/package/apt.rb:104 ../lib/puppet/provider/package/fink.rb:66
6721
+ #: ../lib/puppet/provider/package/apt.rb:137 ../lib/puppet/provider/package/fink.rb:66
6724
6722
  msgid "Preseeding %{response} to debconf-set-selections"
6725
6723
  msgstr ""
6726
6724
 
6727
- #: ../lib/puppet/provider/package/apt.rb:108 ../lib/puppet/provider/package/fink.rb:70
6725
+ #: ../lib/puppet/provider/package/apt.rb:141 ../lib/puppet/provider/package/fink.rb:70
6728
6726
  msgid "No responsefile specified or non existent, not preseeding anything"
6729
6727
  msgstr ""
6730
6728
 
6731
- #: ../lib/puppet/provider/package/aptitude.rb:21 ../lib/puppet/provider/package/ports.rb:20 ../lib/puppet/provider/package/portupgrade.rb:94 ../lib/puppet/provider/package/portupgrade.rb:152 ../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
6729
+ #: ../lib/puppet/provider/package/aptitude.rb:21 ../lib/puppet/provider/package/ports.rb:20 ../lib/puppet/provider/package/portupgrade.rb:94 ../lib/puppet/provider/package/portupgrade.rb:152 ../lib/puppet/provider/package/rug.rb:28 ../lib/puppet/provider/package/up2date.rb:17 ../lib/puppet/provider/package/yum.rb:296 ../lib/puppet/provider/package/zypper.rb:109
6732
6730
  msgid "Could not find package %{name}"
6733
6731
  msgstr ""
6734
6732
 
@@ -6776,27 +6774,27 @@ msgstr ""
6776
6774
  msgid "source is defined but does not have trailing slash, ignoring %{source}"
6777
6775
  msgstr ""
6778
6776
 
6779
- #: ../lib/puppet/provider/package/gem.rb:95
6777
+ #: ../lib/puppet/provider/package/gem.rb:100
6780
6778
  msgid "Could not list gems: %{detail}"
6781
6779
  msgstr ""
6782
6780
 
6783
- #: ../lib/puppet/provider/package/gem.rb:121
6781
+ #: ../lib/puppet/provider/package/gem.rb:126
6784
6782
  msgid "Could not match %{desc}"
6785
6783
  msgstr ""
6786
6784
 
6787
- #: ../lib/puppet/provider/package/gem.rb:170
6785
+ #: ../lib/puppet/provider/package/gem.rb:204
6788
6786
  msgid "Invalid source '%{uri}': %{detail}"
6789
6787
  msgstr ""
6790
6788
 
6791
- #: ../lib/puppet/provider/package/gem.rb:181
6789
+ #: ../lib/puppet/provider/package/gem.rb:215
6792
6790
  msgid "puppet:// URLs are not supported as gem sources"
6793
6791
  msgstr ""
6794
6792
 
6795
- #: ../lib/puppet/provider/package/gem.rb:197
6793
+ #: ../lib/puppet/provider/package/gem.rb:231
6796
6794
  msgid "Could not install: %{output}"
6797
6795
  msgstr ""
6798
6796
 
6799
- #: ../lib/puppet/provider/package/gem.rb:223
6797
+ #: ../lib/puppet/provider/package/gem.rb:257
6800
6798
  msgid "Could not uninstall: %{output}"
6801
6799
  msgstr ""
6802
6800
 
@@ -6882,31 +6880,31 @@ msgstr ""
6882
6880
  msgid "Error getting installed packages"
6883
6881
  msgstr ""
6884
6882
 
6885
- #: ../lib/puppet/provider/package/pacman.rb:176
6883
+ #: ../lib/puppet/provider/package/pacman.rb:173
6886
6884
  msgid "%{resource_name} is a group, but allow_virtual is false."
6887
6885
  msgstr ""
6888
6886
 
6889
- #: ../lib/puppet/provider/package/pacman.rb:203
6887
+ #: ../lib/puppet/provider/package/pacman.rb:200
6890
6888
  msgid "Refusing to uninstall package group %{resource_name}, because allow_virtual is false."
6891
6889
  msgstr ""
6892
6890
 
6893
- #: ../lib/puppet/provider/package/pacman.rb:233
6891
+ #: ../lib/puppet/provider/package/pacman.rb:230
6894
6892
  msgid "Invalid source '%{source}': %{detail}"
6895
6893
  msgstr ""
6896
6894
 
6897
- #: ../lib/puppet/provider/package/pacman.rb:242
6895
+ #: ../lib/puppet/provider/package/pacman.rb:239
6898
6896
  msgid "puppet:// URL is not supported by pacman"
6899
6897
  msgstr ""
6900
6898
 
6901
- #: ../lib/puppet/provider/package/pacman.rb:244
6899
+ #: ../lib/puppet/provider/package/pacman.rb:241
6902
6900
  msgid "Source %{source} is not supported by pacman"
6903
6901
  msgstr ""
6904
6902
 
6905
- #: ../lib/puppet/provider/package/pacman.rb:254
6903
+ #: ../lib/puppet/provider/package/pacman.rb:251
6906
6904
  msgid "Refusing to install package group %{resource_name}, because allow_virtual is false."
6907
6905
  msgstr ""
6908
6906
 
6909
- #: ../lib/puppet/provider/package/pip.rb:54
6907
+ #: ../lib/puppet/provider/package/pip.rb:58
6910
6908
  msgid "Cannot resolve pip version"
6911
6909
  msgstr ""
6912
6910
 
@@ -7002,11 +7000,11 @@ msgstr ""
7002
7000
  msgid "portversion.latest() - fatal error with portversion: %{output}"
7003
7001
  msgstr ""
7004
7002
 
7005
- #: ../lib/puppet/provider/package/rpm.rb:89
7003
+ #: ../lib/puppet/provider/package/rpm.rb:68
7006
7004
  msgid "Failed to list packages"
7007
7005
  msgstr ""
7008
7006
 
7009
- #: ../lib/puppet/provider/package/rpm.rb:128 ../lib/puppet/provider/package/rpm.rb:141
7007
+ #: ../lib/puppet/provider/package/rpm.rb:107 ../lib/puppet/provider/package/rpm.rb:120
7010
7008
  msgid "RPMs must specify a package source"
7011
7009
  msgstr ""
7012
7010
 
@@ -7051,23 +7049,23 @@ msgstr ""
7051
7049
  msgid "Don't know how to install '%{source}'"
7052
7050
  msgstr ""
7053
7051
 
7054
- #: ../lib/puppet/provider/package/yum.rb:29
7052
+ #: ../lib/puppet/provider/package/yum.rb:64
7055
7053
  msgid "The yum provider can only be used as root"
7056
7054
  msgstr ""
7057
7055
 
7058
- #: ../lib/puppet/provider/package/yum.rb:83
7056
+ #: ../lib/puppet/provider/package/yum.rb:118
7059
7057
  msgid "Could not check for updates, '%{cmd} check-update' exited with %{status}"
7060
7058
  msgstr ""
7061
7059
 
7062
- #: ../lib/puppet/provider/package/yum.rb:117
7060
+ #: ../lib/puppet/provider/package/yum.rb:152
7063
7061
  msgid "Failed to parse package name and architecture from '%{pkgname}'"
7064
7062
  msgstr ""
7065
7063
 
7066
- #: ../lib/puppet/provider/package/yum.rb:226
7064
+ #: ../lib/puppet/provider/package/yum.rb:290
7067
7065
  msgid "Could not find package %{wanted}"
7068
7066
  msgstr ""
7069
7067
 
7070
- #: ../lib/puppet/provider/package/yum.rb:237
7068
+ #: ../lib/puppet/provider/package/yum.rb:301
7071
7069
  msgid "Failed to update to version %{should}, got version %{version} instead"
7072
7070
  msgstr ""
7073
7071
 
@@ -7254,7 +7252,7 @@ msgstr ""
7254
7252
  msgid "You must pass a callback for non-NONE events"
7255
7253
  msgstr ""
7256
7254
 
7257
- #: ../lib/puppet/reports/http.rb:35
7255
+ #: ../lib/puppet/reports/http.rb:37
7258
7256
  msgid "Unable to submit report to %{url} [%{code}] %{message}"
7259
7257
  msgstr ""
7260
7258
 
@@ -7469,55 +7467,55 @@ msgstr ""
7469
7467
  msgid "%{param} is a metaparameter; please choose another parameter name in the %{name} definition"
7470
7468
  msgstr ""
7471
7469
 
7472
- #: ../lib/puppet/resource/type_collection.rb:70
7470
+ #: ../lib/puppet/resource/type_collection.rb:72
7473
7471
  msgid "Class '%{klass}' is already defined%{error}; cannot redefine"
7474
7472
  msgstr ""
7475
7473
 
7476
- #: ../lib/puppet/resource/type_collection.rb:71
7474
+ #: ../lib/puppet/resource/type_collection.rb:73
7477
7475
  msgid "Definition '%{klass}' is already defined%{error}; cannot be redefined as a class"
7478
7476
  msgstr ""
7479
7477
 
7480
- #: ../lib/puppet/resource/type_collection.rb:72
7478
+ #: ../lib/puppet/resource/type_collection.rb:74
7481
7479
  msgid "Application '%{klass}' is already defined%{error}; cannot be redefined as a class"
7482
7480
  msgstr ""
7483
7481
 
7484
- #: ../lib/puppet/resource/type_collection.rb:103
7482
+ #: ../lib/puppet/resource/type_collection.rb:105
7485
7483
  msgid "Node '%{name}' is already defined%{error}; cannot redefine"
7486
7484
  msgstr ""
7487
7485
 
7488
- #: ../lib/puppet/resource/type_collection.rb:111
7486
+ #: ../lib/puppet/resource/type_collection.rb:113
7489
7487
  msgid "Site is already defined%{error}; cannot redefine"
7490
7488
  msgstr ""
7491
7489
 
7492
- #: ../lib/puppet/resource/type_collection.rb:148
7490
+ #: ../lib/puppet/resource/type_collection.rb:150
7493
7491
  msgid "'%{name}' is already defined%{error} as a class; cannot redefine as a definition"
7494
7492
  msgstr ""
7495
7493
 
7496
- #: ../lib/puppet/resource/type_collection.rb:149
7494
+ #: ../lib/puppet/resource/type_collection.rb:151
7497
7495
  msgid "Definition '%{name}' is already defined%{error}; cannot be redefined"
7498
7496
  msgstr ""
7499
7497
 
7500
- #: ../lib/puppet/resource/type_collection.rb:150 ../lib/puppet/resource/type_collection.rb:166
7498
+ #: ../lib/puppet/resource/type_collection.rb:152 ../lib/puppet/resource/type_collection.rb:168
7501
7499
  msgid "'%{name}' is already defined%{error} as an application; cannot be redefined"
7502
7500
  msgstr ""
7503
7501
 
7504
- #: ../lib/puppet/resource/type_collection.rb:155
7502
+ #: ../lib/puppet/resource/type_collection.rb:157
7505
7503
  msgid "'%{name}' is already defined%{error} as a class; cannot redefine as a mapping"
7506
7504
  msgstr ""
7507
7505
 
7508
- #: ../lib/puppet/resource/type_collection.rb:164
7506
+ #: ../lib/puppet/resource/type_collection.rb:166
7509
7507
  msgid "'%{name}' is already defined%{error} as a class; cannot redefine as an application"
7510
7508
  msgstr ""
7511
7509
 
7512
- #: ../lib/puppet/resource/type_collection.rb:165
7510
+ #: ../lib/puppet/resource/type_collection.rb:167
7513
7511
  msgid "'%{name}' is already defined%{error} as a definition; cannot redefine as an application"
7514
7512
  msgstr ""
7515
7513
 
7516
- #: ../lib/puppet/resource/type_collection.rb:218
7514
+ #: ../lib/puppet/resource/type_collection.rb:220
7517
7515
  msgid "Execution of config_version command `%{cmd}` failed: %{message}"
7518
7516
  msgstr ""
7519
7517
 
7520
- #: ../lib/puppet/resource/type_collection.rb:238
7518
+ #: ../lib/puppet/resource/type_collection.rb:241
7521
7519
  msgid "Not attempting to load %{type} %{fqname} as this object was missing during a prior compilation"
7522
7520
  msgstr ""
7523
7521
 
@@ -7933,23 +7931,23 @@ msgstr ""
7933
7931
  msgid "Could not download host certificate: %{message}"
7934
7932
  msgstr ""
7935
7933
 
7936
- #: ../lib/puppet/ssl/oids.rb:109
7934
+ #: ../lib/puppet/ssl/oids.rb:110
7937
7935
  msgid "Error loading ssl custom OIDs mapping file from '%{custom_oid_file}': %{err}"
7938
7936
  msgstr ""
7939
7937
 
7940
- #: ../lib/puppet/ssl/oids.rb:113
7938
+ #: ../lib/puppet/ssl/oids.rb:114
7941
7939
  msgid "Error loading ssl custom OIDs mapping file from '%{custom_oid_file}': no such index '%{map_key}'"
7942
7940
  msgstr ""
7943
7941
 
7944
- #: ../lib/puppet/ssl/oids.rb:117
7942
+ #: ../lib/puppet/ssl/oids.rb:118
7945
7943
  msgid "Error loading ssl custom OIDs mapping file from '%{custom_oid_file}': data under index '%{map_key}' must be a Hash"
7946
7944
  msgstr ""
7947
7945
 
7948
- #: ../lib/puppet/ssl/oids.rb:124
7946
+ #: ../lib/puppet/ssl/oids.rb:125
7949
7947
  msgid "Error loading ssl custom OIDs mapping file from '%{custom_oid_file}': incomplete definition of oid '%{oid}'"
7950
7948
  msgstr ""
7951
7949
 
7952
- #: ../lib/puppet/ssl/oids.rb:156
7950
+ #: ../lib/puppet/ssl/oids.rb:157
7953
7951
  msgid "Error registering ssl custom OIDs mapping from file '%{custom_oid_file}': %{err}"
7954
7952
  msgstr ""
7955
7953
 
@@ -8113,15 +8111,15 @@ msgstr ""
8113
8111
  msgid "Will try again in %{time} seconds."
8114
8112
  msgstr ""
8115
8113
 
8116
- #: ../lib/puppet/ssl/state_machine.rb:383
8114
+ #: ../lib/puppet/ssl/state_machine.rb:402
8117
8115
  msgid "Verified client certificate '%{subject}' fingerprint %{digest}"
8118
8116
  msgstr ""
8119
8117
 
8120
- #: ../lib/puppet/ssl/state_machine.rb:385
8118
+ #: ../lib/puppet/ssl/state_machine.rb:404
8121
8119
  msgid "Verified CA certificate '%{subject}' fingerprint %{digest}"
8122
8120
  msgstr ""
8123
8121
 
8124
- #: ../lib/puppet/ssl/state_machine.rb:425
8122
+ #: ../lib/puppet/ssl/state_machine.rb:430
8125
8123
  msgid "Another puppet instance is already running; exiting"
8126
8124
  msgstr ""
8127
8125
 
@@ -8372,77 +8370,77 @@ msgstr ""
8372
8370
  msgid "audit change: newly-recorded value %s"
8373
8371
  msgstr ""
8374
8372
 
8375
- #: ../lib/puppet/type.rb:509
8373
+ #: ../lib/puppet/type.rb:515
8376
8374
  msgid "Options must be a hash, not %{type}"
8377
8375
  msgstr ""
8378
8376
 
8379
- #: ../lib/puppet/type.rb:512
8377
+ #: ../lib/puppet/type.rb:518
8380
8378
  msgid "Class %{class_name} already has a property named %{property}"
8381
8379
  msgstr ""
8382
8380
 
8383
- #: ../lib/puppet/type.rb:599
8381
+ #: ../lib/puppet/type.rb:605
8384
8382
  msgid "Class %{class_name} has not defined parameters"
8385
8383
  msgstr ""
8386
8384
 
8387
- #: ../lib/puppet/type.rb:686
8385
+ #: ../lib/puppet/type.rb:692
8388
8386
  msgid "Parameter %{name} failed on %{ref}: %{detail}"
8389
8387
  msgstr ""
8390
8388
 
8391
- #: ../lib/puppet/type.rb:709
8389
+ #: ../lib/puppet/type.rb:715
8392
8390
  msgid "Undefined attribute '%{attribute}' in %{name}"
8393
8391
  msgstr ""
8394
8392
 
8395
8393
  #. TRANSLATORS 'is' is a variable name and should not be translated
8396
8394
  #. TRANSLATORS 'is' is a variable name and should not be translated
8397
- #: ../lib/puppet/type.rb:1052 ../lib/puppet/type.rb:1063
8395
+ #: ../lib/puppet/type.rb:1058 ../lib/puppet/type.rb:1069
8398
8396
  msgid "The 'is' value is not in the 'is' array for '%{name}'"
8399
8397
  msgstr ""
8400
8398
 
8401
- #: ../lib/puppet/type.rb:1194
8399
+ #: ../lib/puppet/type.rb:1200
8402
8400
  msgid "%{name} has no providers and has not overridden 'instances'"
8403
8401
  msgstr ""
8404
8402
 
8405
- #: ../lib/puppet/type.rb:1456
8403
+ #: ../lib/puppet/type.rb:1462
8406
8404
  msgid "Cannot add aliases without a catalog"
8407
8405
  msgstr ""
8408
8406
 
8409
- #: ../lib/puppet/type.rb:1536
8407
+ #: ../lib/puppet/type.rb:1542
8410
8408
  msgid "Could not find %{description} %{ref} for %{resource}"
8411
8409
  msgstr ""
8412
8410
 
8413
- #: ../lib/puppet/type.rb:1811
8411
+ #: ../lib/puppet/type.rb:1817
8414
8412
  msgid "Found multiple default providers for %{name}: %{provider_list}; using %{selected_provider}"
8415
8413
  msgstr ""
8416
8414
 
8417
- #: ../lib/puppet/type.rb:1898
8415
+ #: ../lib/puppet/type.rb:1904
8418
8416
  msgid "Could not find parent provider %{parent} of %{name}"
8419
8417
  msgstr ""
8420
8418
 
8421
- #: ../lib/puppet/type.rb:1972
8419
+ #: ../lib/puppet/type.rb:1978
8422
8420
  msgid "Invalid %{resource} provider '%{provider_class}'"
8423
8421
  msgstr ""
8424
8422
 
8425
- #: ../lib/puppet/type.rb:2057
8423
+ #: ../lib/puppet/type.rb:2063
8426
8424
  msgid "Could not find %{name} provider of %{provider}"
8427
8425
  msgstr ""
8428
8426
 
8429
- #: ../lib/puppet/type.rb:2175
8427
+ #: ../lib/puppet/type.rb:2181
8430
8428
  msgid "You cannot add relationships without a catalog"
8431
8429
  msgstr ""
8432
8430
 
8433
- #: ../lib/puppet/type.rb:2479
8431
+ #: ../lib/puppet/type.rb:2484
8434
8432
  msgid "Unable to mark '%{name}' as sensitive: %{name} is a parameter and not a property, and cannot be automatically redacted."
8435
8433
  msgstr ""
8436
8434
 
8437
- #: ../lib/puppet/type.rb:2482
8435
+ #: ../lib/puppet/type.rb:2487
8438
8436
  msgid "Unable to mark '%{name}' as sensitive: the property itself was not assigned a value."
8439
8437
  msgstr ""
8440
8438
 
8441
- #: ../lib/puppet/type.rb:2484
8439
+ #: ../lib/puppet/type.rb:2489
8442
8440
  msgid "Unable to mark '%{name}' as sensitive: the property itself is not defined on %{type}."
8443
8441
  msgstr ""
8444
8442
 
8445
- #: ../lib/puppet/type.rb:2542
8443
+ #: ../lib/puppet/type.rb:2547
8446
8444
  msgid "Could not set %{attribute} on %{class_name}: %{detail}"
8447
8445
  msgstr ""
8448
8446
 
@@ -8640,7 +8638,7 @@ msgid "Not managing symlink mode"
8640
8638
  msgstr ""
8641
8639
 
8642
8640
  #. TRANSLATORS "source_permissions" is a parameter name and should not be translated
8643
- #: ../lib/puppet/type/file/source.rb:351
8641
+ #: ../lib/puppet/type/file/source.rb:353
8644
8642
  msgid "The `source_permissions` parameter is deprecated. Explicitly set `owner`, `group`, and `mode`."
8645
8643
  msgstr ""
8646
8644
 
@@ -8664,23 +8662,27 @@ msgstr ""
8664
8662
  msgid "Invalid GID %{gid}"
8665
8663
  msgstr ""
8666
8664
 
8667
- #: ../lib/puppet/type/package.rb:118 ../lib/puppet/type/package.rb:132
8665
+ #: ../lib/puppet/type/package.rb:121 ../lib/puppet/type/package.rb:135
8668
8666
  msgid "Could not update: %{detail}"
8669
8667
  msgstr ""
8670
8668
 
8671
- #: ../lib/puppet/type/package.rb:167
8669
+ #: ../lib/puppet/type/package.rb:170
8672
8670
  msgid "Could not get latest version: %{detail}"
8673
8671
  msgstr ""
8674
8672
 
8675
- #: ../lib/puppet/type/package.rb:267
8673
+ #: ../lib/puppet/type/package.rb:270
8676
8674
  msgid "Name must be a String not %{klass}"
8677
8675
  msgstr ""
8678
8676
 
8679
- #: ../lib/puppet/type/package.rb:649
8677
+ #: ../lib/puppet/type/package.rb:510
8678
+ msgid "Cannot have both `enable_only => true` and `flavor`"
8679
+ msgstr ""
8680
+
8681
+ #: ../lib/puppet/type/package.rb:672
8680
8682
  msgid "Invalid hold value %{value}. %{doc}"
8681
8683
  msgstr ""
8682
8684
 
8683
- #: ../lib/puppet/type/package.rb:679
8685
+ #: ../lib/puppet/type/package.rb:702
8684
8686
  msgid "You cannot use \"mark\" property while \"ensure\" is one of [\"absent\", \"purged\", \"held\"]"
8685
8687
  msgstr ""
8686
8688
 
@@ -8813,55 +8815,55 @@ msgstr ""
8813
8815
  msgid "Expiry dates must be YYYY-MM-DD or the string \"absent\""
8814
8816
  msgstr ""
8815
8817
 
8816
- #: ../lib/puppet/type/user.rb:525
8818
+ #: ../lib/puppet/type/user.rb:506
8817
8819
  msgid "Role names must be provided, not numbers"
8818
8820
  msgstr ""
8819
8821
 
8820
- #: ../lib/puppet/type/user.rb:527
8822
+ #: ../lib/puppet/type/user.rb:508
8821
8823
  msgid "Role names must be provided as an array, not a comma-separated list"
8822
8824
  msgstr ""
8823
8825
 
8824
- #: ../lib/puppet/type/user.rb:564
8826
+ #: ../lib/puppet/type/user.rb:545
8825
8827
  msgid "Auth names must be provided, not numbers"
8826
8828
  msgstr ""
8827
8829
 
8828
- #: ../lib/puppet/type/user.rb:566
8830
+ #: ../lib/puppet/type/user.rb:547
8829
8831
  msgid "Auth names must be provided as an array, not a comma-separated list"
8830
8832
  msgstr ""
8831
8833
 
8832
- #: ../lib/puppet/type/user.rb:590
8834
+ #: ../lib/puppet/type/user.rb:571
8833
8835
  msgid "Profile names must be provided, not numbers"
8834
8836
  msgstr ""
8835
8837
 
8836
- #: ../lib/puppet/type/user.rb:592
8838
+ #: ../lib/puppet/type/user.rb:573
8837
8839
  msgid "Profile names must be provided as an array, not a comma-separated list"
8838
8840
  msgstr ""
8839
8841
 
8840
- #: ../lib/puppet/type/user.rb:703
8842
+ #: ../lib/puppet/type/user.rb:684
8841
8843
  msgid "Ssh_authorized_key type is not available. Cannot purge SSH keys."
8842
8844
  msgstr ""
8843
8845
 
8844
- #: ../lib/puppet/type/user.rb:741
8846
+ #: ../lib/puppet/type/user.rb:722
8845
8847
  msgid "Each entry for purge_ssh_keys must be a string, not a %{klass}"
8846
8848
  msgstr ""
8847
8849
 
8848
- #: ../lib/puppet/type/user.rb:744
8850
+ #: ../lib/puppet/type/user.rb:725
8849
8851
  msgid "Paths to keyfiles must be absolute, not %{entry}"
8850
8852
  msgstr ""
8851
8853
 
8852
- #: ../lib/puppet/type/user.rb:748
8854
+ #: ../lib/puppet/type/user.rb:729
8853
8855
  msgid "purge_ssh_keys must be true, false, or an array of file names, not %{value}"
8854
8856
  msgstr ""
8855
8857
 
8856
- #: ../lib/puppet/type/user.rb:760
8858
+ #: ../lib/puppet/type/user.rb:741
8857
8859
  msgid "purge_ssh_keys can only be true for users with a defined home directory"
8858
8860
  msgstr ""
8859
8861
 
8860
- #: ../lib/puppet/type/user.rb:767
8862
+ #: ../lib/puppet/type/user.rb:748
8861
8863
  msgid "purge_ssh_keys value '%{value}' meta character ~ or %{home_placeholder} only allowed for users with a defined home directory"
8862
8864
  msgstr ""
8863
8865
 
8864
- #: ../lib/puppet/type/user.rb:782
8866
+ #: ../lib/puppet/type/user.rb:763
8865
8867
  msgid "Class name must be provided."
8866
8868
  msgstr ""
8867
8869
 
@@ -8960,11 +8962,11 @@ msgstr ""
8960
8962
  msgid "Failed to abandon a child process contract"
8961
8963
  msgstr ""
8962
8964
 
8963
- #: ../lib/puppet/util/autoload.rb:71
8965
+ #: ../lib/puppet/util/autoload.rb:74
8964
8966
  msgid "Could not autoload %{name}: %{detail}"
8965
8967
  msgstr ""
8966
8968
 
8967
- #: ../lib/puppet/util/autoload.rb:196
8969
+ #: ../lib/puppet/util/autoload.rb:199
8968
8970
  msgid "Autoload paths cannot be fully qualified"
8969
8971
  msgstr ""
8970
8972
 
@@ -9388,7 +9390,7 @@ msgstr ""
9388
9390
  msgid "Section %{name} is already defined, cannot redefine"
9389
9391
  msgstr ""
9390
9392
 
9391
- #: ../lib/puppet/util/instance_loader.rb:53
9393
+ #: ../lib/puppet/util/instance_loader.rb:56
9392
9394
  msgid "Loaded %{type} file for %{name} but %{type} was not defined"
9393
9395
  msgstr ""
9394
9396
 
@@ -9536,6 +9538,10 @@ msgstr ""
9536
9538
  msgid "%{value} is an invalid url"
9537
9539
  msgstr ""
9538
9540
 
9541
+ #: ../lib/puppet/util/package/version/rpm.rb:47
9542
+ msgid "Cannot compare, as %{other} is not a Rpm Version"
9543
+ msgstr ""
9544
+
9539
9545
  #: ../lib/puppet/util/plist.rb:48
9540
9546
  msgid "Cannot read file %{file_path}; Puppet is skipping it."
9541
9547
  msgstr ""
@@ -9856,23 +9862,23 @@ msgstr ""
9856
9862
  msgid "Failed to get child process exit code"
9857
9863
  msgstr ""
9858
9864
 
9859
- #: ../lib/puppet/util/windows/process.rb:285
9865
+ #: ../lib/puppet/util/windows/process.rb:286
9860
9866
  msgid "GetVersionEx failed"
9861
9867
  msgstr ""
9862
9868
 
9863
- #: ../lib/puppet/util/windows/process.rb:314
9869
+ #: ../lib/puppet/util/windows/process.rb:315
9864
9870
  msgid "Discarding environment variable %{string} which contains invalid bytes"
9865
9871
  msgstr ""
9866
9872
 
9867
- #: ../lib/puppet/util/windows/process.rb:330
9873
+ #: ../lib/puppet/util/windows/process.rb:331
9868
9874
  msgid "environment variable name must not be nil or empty"
9869
9875
  msgstr ""
9870
9876
 
9871
- #: ../lib/puppet/util/windows/process.rb:335
9877
+ #: ../lib/puppet/util/windows/process.rb:336
9872
9878
  msgid "Failed to remove environment variable: %{name}"
9873
9879
  msgstr ""
9874
9880
 
9875
- #: ../lib/puppet/util/windows/process.rb:340
9881
+ #: ../lib/puppet/util/windows/process.rb:341
9876
9882
  msgid "Failed to set environment variable: %{name}"
9877
9883
  msgstr ""
9878
9884
 
@@ -9924,77 +9930,77 @@ msgstr ""
9924
9930
  msgid "Failed to import root certificate: %{detail}"
9925
9931
  msgstr ""
9926
9932
 
9927
- #: ../lib/puppet/util/windows/security.rb:173
9933
+ #: ../lib/puppet/util/windows/security.rb:174
9928
9934
  msgid "Failed to get volume information"
9929
9935
  msgstr ""
9930
9936
 
9931
9937
  #. TRANSLATORS 'SYSTEM' is a Windows name and should not be translated
9932
- #: ../lib/puppet/util/windows/security.rb:339
9938
+ #: ../lib/puppet/util/windows/security.rb:340
9933
9939
  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"
9934
9940
  msgstr ""
9935
9941
 
9936
9942
  #. TRANSLATORS 'SYSTEM' is a Windows name and should not be translated
9937
- #: ../lib/puppet/util/windows/security.rb:342
9943
+ #: ../lib/puppet/util/windows/security.rb:343
9938
9944
  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"
9939
9945
  msgstr ""
9940
9946
 
9941
9947
  #. TRANSLATORS 'SYSTEM' is a Windows name and should not be translated
9942
- #: ../lib/puppet/util/windows/security.rb:345
9948
+ #: ../lib/puppet/util/windows/security.rb:346
9943
9949
  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"
9944
9950
  msgstr ""
9945
9951
 
9946
9952
  #. TRANSLATORS 'SYSTEM' is a Windows name and should not be translated
9947
- #: ../lib/puppet/util/windows/security.rb:355
9953
+ #: ../lib/puppet/util/windows/security.rb:356
9948
9954
  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"
9949
9955
  msgstr ""
9950
9956
 
9951
9957
  #. TRANSLATORS 'SYSTEM' is a Windows name and should not be translated
9952
- #: ../lib/puppet/util/windows/security.rb:358
9958
+ #: ../lib/puppet/util/windows/security.rb:359
9953
9959
  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"
9954
9960
  msgstr ""
9955
9961
 
9956
9962
  #. TRANSLATORS 'SYSTEM' is a Windows name and should not be translated
9957
- #: ../lib/puppet/util/windows/security.rb:361
9963
+ #: ../lib/puppet/util/windows/security.rb:362
9958
9964
  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"
9959
9965
  msgstr ""
9960
9966
 
9961
- #: ../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
9967
+ #: ../lib/puppet/util/windows/security.rb:433 ../lib/puppet/util/windows/security.rb:450 ../lib/puppet/util/windows/sid.rb:155 ../lib/puppet/util/windows/sid.rb:217 ../lib/puppet/util/windows/user.rb:43
9962
9968
  msgid "Invalid SID"
9963
9969
  msgstr ""
9964
9970
 
9965
- #: ../lib/puppet/util/windows/security.rb:436 ../lib/puppet/util/windows/security.rb:453
9971
+ #: ../lib/puppet/util/windows/security.rb:437 ../lib/puppet/util/windows/security.rb:454
9966
9972
  msgid "Failed to add access control entry"
9967
9973
  msgstr ""
9968
9974
 
9969
- #: ../lib/puppet/util/windows/security.rb:464 ../lib/puppet/util/windows/security.rb:646
9975
+ #: ../lib/puppet/util/windows/security.rb:465 ../lib/puppet/util/windows/security.rb:647
9970
9976
  msgid "Invalid DACL"
9971
9977
  msgstr ""
9972
9978
 
9973
- #: ../lib/puppet/util/windows/security.rb:487
9979
+ #: ../lib/puppet/util/windows/security.rb:488
9974
9980
  msgid "Unsupported access control entry type: 0x%{type}"
9975
9981
  msgstr ""
9976
9982
 
9977
- #: ../lib/puppet/util/windows/security.rb:521
9983
+ #: ../lib/puppet/util/windows/security.rb:522
9978
9984
  msgid "Failed to open '%{path}'"
9979
9985
  msgstr ""
9980
9986
 
9981
- #: ../lib/puppet/util/windows/security.rb:568
9987
+ #: ../lib/puppet/util/windows/security.rb:569
9982
9988
  msgid "Failed to adjust process privileges"
9983
9989
  msgstr ""
9984
9990
 
9985
- #: ../lib/puppet/util/windows/security.rb:598
9991
+ #: ../lib/puppet/util/windows/security.rb:599
9986
9992
  msgid "Failed to get security information"
9987
9993
  msgstr ""
9988
9994
 
9989
- #: ../lib/puppet/util/windows/security.rb:609
9995
+ #: ../lib/puppet/util/windows/security.rb:610
9990
9996
  msgid "Failed to get security descriptor control"
9991
9997
  msgstr ""
9992
9998
 
9993
- #: ../lib/puppet/util/windows/security.rb:642
9999
+ #: ../lib/puppet/util/windows/security.rb:643
9994
10000
  msgid "Failed to initialize ACL"
9995
10001
  msgstr ""
9996
10002
 
9997
- #: ../lib/puppet/util/windows/security.rb:681
10003
+ #: ../lib/puppet/util/windows/security.rb:682
9998
10004
  msgid "Failed to set security information"
9999
10005
  msgstr ""
10000
10006