puppet 6.13.0-universal-darwin → 6.18.0-universal-darwin

Sign up to get free protection for your applications and to get access to all the features.

Potentially problematic release.


This version of puppet might be problematic. Click here for more details.

Files changed (461) hide show
  1. checksums.yaml +4 -4
  2. data/CODEOWNERS +2 -7
  3. data/CONTRIBUTING.md +7 -13
  4. data/Gemfile +4 -2
  5. data/Gemfile.lock +36 -32
  6. data/README.md +17 -24
  7. data/ext/windows/service/daemon.rb +3 -3
  8. data/lib/puppet.rb +33 -9
  9. data/lib/puppet/agent.rb +20 -14
  10. data/lib/puppet/application/agent.rb +26 -17
  11. data/lib/puppet/application/apply.rb +18 -20
  12. data/lib/puppet/application/describe.rb +7 -5
  13. data/lib/puppet/application/device.rb +2 -2
  14. data/lib/puppet/application/filebucket.rb +19 -15
  15. data/lib/puppet/application/lookup.rb +16 -4
  16. data/lib/puppet/application/plugin.rb +1 -0
  17. data/lib/puppet/application/ssl.rb +4 -4
  18. data/lib/puppet/configurer.rb +58 -57
  19. data/lib/puppet/configurer/downloader.rb +31 -10
  20. data/lib/puppet/configurer/plugin_handler.rb +10 -1
  21. data/lib/puppet/confine.rb +2 -2
  22. data/lib/puppet/confine/any.rb +1 -1
  23. data/lib/puppet/context/trusted_information.rb +14 -8
  24. data/lib/puppet/daemon.rb +13 -27
  25. data/lib/puppet/defaults.rb +92 -12
  26. data/lib/puppet/environments.rb +4 -5
  27. data/lib/puppet/face/facts.rb +1 -1
  28. data/lib/puppet/face/help.rb +29 -3
  29. data/lib/puppet/face/module/search.rb +5 -0
  30. data/lib/puppet/face/plugin.rb +2 -2
  31. data/lib/puppet/feature/base.rb +1 -1
  32. data/lib/puppet/file_serving/http_metadata.rb +14 -2
  33. data/lib/puppet/file_serving/metadata.rb +4 -1
  34. data/lib/puppet/file_serving/mount/locales.rb +1 -2
  35. data/lib/puppet/file_serving/mount/pluginfacts.rb +1 -2
  36. data/lib/puppet/file_serving/mount/plugins.rb +1 -2
  37. data/lib/puppet/file_serving/terminus_selector.rb +7 -8
  38. data/lib/puppet/file_system/file_impl.rb +17 -13
  39. data/lib/puppet/file_system/uniquefile.rb +12 -16
  40. data/lib/puppet/forge.rb +1 -1
  41. data/lib/puppet/forge/cache.rb +1 -1
  42. data/lib/puppet/forge/repository.rb +4 -7
  43. data/lib/puppet/functions/call.rb +1 -1
  44. data/lib/puppet/functions/eyaml_lookup_key.rb +13 -8
  45. data/lib/puppet/functions/filter.rb +1 -0
  46. data/lib/puppet/functions/lstrip.rb +4 -4
  47. data/lib/puppet/functions/reduce.rb +2 -4
  48. data/lib/puppet/functions/reverse_each.rb +1 -1
  49. data/lib/puppet/functions/rstrip.rb +4 -4
  50. data/lib/puppet/functions/step.rb +1 -1
  51. data/lib/puppet/functions/strip.rb +4 -4
  52. data/lib/puppet/gettext/config.rb +5 -5
  53. data/lib/puppet/gettext/module_translations.rb +4 -4
  54. data/lib/puppet/http.rb +3 -0
  55. data/lib/puppet/http/client.rb +263 -73
  56. data/lib/puppet/http/external_client.rb +90 -0
  57. data/lib/puppet/http/redirector.rb +43 -7
  58. data/lib/puppet/http/resolver.rb +46 -3
  59. data/lib/puppet/http/resolver/server_list.rb +76 -16
  60. data/lib/puppet/http/resolver/settings.rb +23 -3
  61. data/lib/puppet/http/resolver/srv.rb +29 -3
  62. data/lib/puppet/http/response.rb +87 -1
  63. data/lib/puppet/http/retry_after_handler.rb +39 -0
  64. data/lib/puppet/http/service.rb +97 -12
  65. data/lib/puppet/http/service/ca.rb +76 -14
  66. data/lib/puppet/http/service/compiler.rb +249 -16
  67. data/lib/puppet/http/service/file_server.rb +141 -20
  68. data/lib/puppet/http/service/report.rb +47 -17
  69. data/lib/puppet/http/session.rb +96 -7
  70. data/lib/puppet/indirector.rb +1 -1
  71. data/lib/puppet/indirector/catalog/rest.rb +34 -0
  72. data/lib/puppet/indirector/exec.rb +1 -1
  73. data/lib/puppet/indirector/facts/facter.rb +3 -3
  74. data/lib/puppet/indirector/facts/rest.rb +42 -0
  75. data/lib/puppet/indirector/file_bucket_file/rest.rb +48 -0
  76. data/lib/puppet/indirector/file_content/http.rb +5 -0
  77. data/lib/puppet/indirector/file_content/rest.rb +30 -0
  78. data/lib/puppet/indirector/file_metadata/http.rb +28 -8
  79. data/lib/puppet/indirector/file_metadata/rest.rb +52 -0
  80. data/lib/puppet/indirector/hiera.rb +4 -0
  81. data/lib/puppet/indirector/indirection.rb +1 -1
  82. data/lib/puppet/indirector/node/rest.rb +24 -0
  83. data/lib/puppet/indirector/report/processor.rb +2 -2
  84. data/lib/puppet/indirector/report/rest.rb +19 -0
  85. data/lib/puppet/indirector/report/yaml.rb +23 -0
  86. data/lib/puppet/indirector/request.rb +1 -1
  87. data/lib/puppet/indirector/rest.rb +12 -0
  88. data/lib/puppet/indirector/status/rest.rb +18 -0
  89. data/lib/puppet/loaders.rb +6 -0
  90. data/lib/puppet/metatype/manager.rb +80 -80
  91. data/lib/puppet/module.rb +1 -2
  92. data/lib/puppet/network/format_support.rb +2 -2
  93. data/lib/puppet/network/http/api/indirected_routes.rb +1 -1
  94. data/lib/puppet/network/http/api/master/v3/environment.rb +3 -0
  95. data/lib/puppet/network/http/base_pool.rb +7 -2
  96. data/lib/puppet/network/http/compression.rb +7 -0
  97. data/lib/puppet/network/http/connection.rb +2 -0
  98. data/lib/puppet/network/http/connection_adapter.rb +184 -0
  99. data/lib/puppet/network/http/nocache_pool.rb +1 -0
  100. data/lib/puppet/network/http/pool.rb +8 -5
  101. data/lib/puppet/network/http/route.rb +2 -2
  102. data/lib/puppet/network/http_pool.rb +2 -1
  103. data/lib/puppet/node/environment.rb +22 -5
  104. data/lib/puppet/pal/catalog_compiler.rb +5 -0
  105. data/lib/puppet/pal/pal_impl.rb +30 -31
  106. data/lib/puppet/parameter.rb +1 -1
  107. data/lib/puppet/parser/ast/leaf.rb +5 -5
  108. data/lib/puppet/parser/ast/pops_bridge.rb +0 -4
  109. data/lib/puppet/parser/compiler.rb +43 -33
  110. data/lib/puppet/parser/compiler/catalog_validator/env_relationship_validator.rb +2 -0
  111. data/lib/puppet/parser/compiler/catalog_validator/site_validator.rb +2 -0
  112. data/lib/puppet/parser/environment_compiler.rb +4 -1
  113. data/lib/puppet/parser/functions.rb +18 -9
  114. data/lib/puppet/parser/functions/create_resources.rb +11 -7
  115. data/lib/puppet/parser/functions/filter.rb +1 -0
  116. data/lib/puppet/parser/resource.rb +3 -2
  117. data/lib/puppet/parser/resource/param.rb +6 -0
  118. data/lib/puppet/parser/type_loader.rb +2 -2
  119. data/lib/puppet/pops/adaptable.rb +7 -13
  120. data/lib/puppet/pops/adapters.rb +8 -4
  121. data/lib/puppet/pops/evaluator/evaluator_impl.rb +5 -5
  122. data/lib/puppet/pops/issues.rb +5 -0
  123. data/lib/puppet/pops/loader/runtime3_type_loader.rb +4 -2
  124. data/lib/puppet/pops/loaders.rb +24 -15
  125. data/lib/puppet/pops/lookup/context.rb +1 -1
  126. data/lib/puppet/pops/lookup/hiera_config.rb +14 -1
  127. data/lib/puppet/pops/resource/resource_type_impl.rb +2 -0
  128. data/lib/puppet/pops/types/iterable.rb +34 -8
  129. data/lib/puppet/pops/validation/checker4_0.rb +29 -15
  130. data/lib/puppet/pops/validation/validator_factory_4_0.rb +1 -0
  131. data/lib/puppet/provider/file/windows.rb +1 -1
  132. data/lib/puppet/provider/group/groupadd.rb +9 -4
  133. data/lib/puppet/provider/group/windows_adsi.rb +3 -3
  134. data/lib/puppet/provider/package/aix.rb +17 -2
  135. data/lib/puppet/provider/package/apt.rb +98 -1
  136. data/lib/puppet/provider/package/aptitude.rb +1 -1
  137. data/lib/puppet/provider/package/dnfmodule.rb +61 -14
  138. data/lib/puppet/provider/package/gem.rb +45 -9
  139. data/lib/puppet/provider/package/pacman.rb +2 -5
  140. data/lib/puppet/provider/package/pip.rb +143 -48
  141. data/lib/puppet/provider/package/pip3.rb +0 -2
  142. data/lib/puppet/provider/package/pkgdmg.rb +1 -1
  143. data/lib/puppet/provider/package/pkgng.rb +16 -4
  144. data/lib/puppet/provider/package/portage.rb +2 -2
  145. data/lib/puppet/provider/package/puppet_gem.rb +11 -2
  146. data/lib/puppet/provider/package/rpm.rb +6 -213
  147. data/lib/puppet/provider/package/yum.rb +100 -20
  148. data/lib/puppet/provider/package/zypper.rb +62 -1
  149. data/lib/puppet/provider/service/systemd.rb +22 -4
  150. data/lib/puppet/provider/service/windows.rb +23 -7
  151. data/lib/puppet/provider/user/aix.rb +1 -1
  152. data/lib/puppet/provider/user/user_role_add.rb +1 -1
  153. data/lib/puppet/provider/user/useradd.rb +16 -5
  154. data/lib/puppet/provider/user/windows_adsi.rb +18 -1
  155. data/lib/puppet/reports/http.rb +15 -9
  156. data/lib/puppet/resource.rb +2 -1
  157. data/lib/puppet/resource/type.rb +8 -0
  158. data/lib/puppet/resource/type_collection.rb +20 -16
  159. data/lib/puppet/runtime.rb +31 -1
  160. data/lib/puppet/settings.rb +3 -1
  161. data/lib/puppet/settings/http_extra_headers_setting.rb +25 -0
  162. data/lib/puppet/ssl.rb +1 -0
  163. data/lib/puppet/ssl/host.rb +4 -4
  164. data/lib/puppet/ssl/oids.rb +1 -0
  165. data/lib/puppet/ssl/ssl_context.rb +2 -2
  166. data/lib/puppet/ssl/ssl_provider.rb +20 -1
  167. data/lib/puppet/ssl/state_machine.rb +81 -35
  168. data/lib/puppet/ssl/validator/default_validator.rb +1 -1
  169. data/lib/puppet/ssl/verifier_adapter.rb +9 -1
  170. data/lib/puppet/test/test_helper.rb +21 -14
  171. data/lib/puppet/transaction.rb +2 -2
  172. data/lib/puppet/transaction/persistence.rb +1 -1
  173. data/lib/puppet/transaction/report.rb +3 -3
  174. data/lib/puppet/trusted_external.rb +29 -1
  175. data/lib/puppet/type.rb +21 -8
  176. data/lib/puppet/type/file.rb +51 -13
  177. data/lib/puppet/type/file/checksum.rb +4 -4
  178. data/lib/puppet/type/file/source.rb +75 -64
  179. data/lib/puppet/type/notify.rb +2 -2
  180. data/lib/puppet/type/package.rb +41 -3
  181. data/lib/puppet/type/service.rb +59 -8
  182. data/lib/puppet/type/user.rb +19 -29
  183. data/lib/puppet/util.rb +41 -3
  184. data/lib/puppet/util/at_fork.rb +1 -1
  185. data/lib/puppet/util/autoload.rb +13 -25
  186. data/lib/puppet/util/character_encoding.rb +9 -5
  187. data/lib/puppet/util/checksums.rb +19 -4
  188. data/lib/puppet/util/execution.rb +2 -2
  189. data/lib/puppet/util/fileparsing.rb +2 -2
  190. data/lib/puppet/util/instance_loader.rb +14 -10
  191. data/lib/puppet/util/log/destinations.rb +1 -10
  192. data/lib/puppet/util/package/version/debian.rb +175 -0
  193. data/lib/puppet/util/package/version/gem.rb +15 -0
  194. data/lib/puppet/util/package/version/pip.rb +167 -0
  195. data/lib/puppet/util/package/version/range.rb +53 -0
  196. data/lib/puppet/util/package/version/range/eq.rb +14 -0
  197. data/lib/puppet/util/package/version/range/gt.rb +14 -0
  198. data/lib/puppet/util/package/version/range/gt_eq.rb +14 -0
  199. data/lib/puppet/util/package/version/range/lt.rb +14 -0
  200. data/lib/puppet/util/package/version/range/lt_eq.rb +14 -0
  201. data/lib/puppet/util/package/version/range/min_max.rb +21 -0
  202. data/lib/puppet/util/package/version/range/simple.rb +11 -0
  203. data/lib/puppet/util/package/version/rpm.rb +73 -0
  204. data/lib/puppet/util/pidlock.rb +13 -7
  205. data/lib/puppet/util/platform.rb +5 -0
  206. data/lib/puppet/util/provider_features.rb +1 -1
  207. data/lib/puppet/util/reference.rb +1 -1
  208. data/lib/puppet/util/rpm_compare.rb +193 -0
  209. data/lib/puppet/util/windows.rb +1 -0
  210. data/lib/puppet/util/windows/adsi.rb +2 -2
  211. data/lib/puppet/util/windows/api_types.rb +60 -33
  212. data/lib/puppet/util/windows/eventlog.rb +1 -6
  213. data/lib/puppet/util/windows/monkey_patches/dir.rb +40 -0
  214. data/lib/puppet/util/windows/principal.rb +8 -6
  215. data/lib/puppet/util/windows/process.rb +15 -14
  216. data/lib/puppet/util/windows/registry.rb +11 -11
  217. data/lib/puppet/util/windows/security.rb +5 -4
  218. data/lib/puppet/util/windows/service.rb +43 -26
  219. data/lib/puppet/util/windows/sid.rb +3 -3
  220. data/lib/puppet/util/windows/user.rb +242 -8
  221. data/lib/puppet/version.rb +1 -1
  222. data/locales/puppet.pot +641 -511
  223. data/man/man5/puppet.conf.5 +75 -10
  224. data/man/man8/puppet-agent.8 +7 -7
  225. data/man/man8/puppet-apply.8 +1 -1
  226. data/man/man8/puppet-catalog.8 +1 -1
  227. data/man/man8/puppet-config.8 +1 -1
  228. data/man/man8/puppet-describe.8 +1 -1
  229. data/man/man8/puppet-device.8 +2 -2
  230. data/man/man8/puppet-doc.8 +1 -1
  231. data/man/man8/puppet-epp.8 +1 -1
  232. data/man/man8/puppet-facts.8 +1 -1
  233. data/man/man8/puppet-filebucket.8 +17 -2
  234. data/man/man8/puppet-generate.8 +1 -1
  235. data/man/man8/puppet-help.8 +6 -3
  236. data/man/man8/puppet-key.8 +1 -1
  237. data/man/man8/puppet-lookup.8 +2 -2
  238. data/man/man8/puppet-man.8 +1 -1
  239. data/man/man8/puppet-module.8 +4 -1
  240. data/man/man8/puppet-node.8 +1 -1
  241. data/man/man8/puppet-parser.8 +1 -1
  242. data/man/man8/puppet-plugin.8 +1 -1
  243. data/man/man8/puppet-report.8 +1 -1
  244. data/man/man8/puppet-resource.8 +1 -1
  245. data/man/man8/puppet-script.8 +1 -1
  246. data/man/man8/puppet-ssl.8 +2 -2
  247. data/man/man8/puppet-status.8 +1 -1
  248. data/man/man8/puppet.8 +2 -2
  249. data/spec/fixtures/integration/application/apply/environments/spec/modules/amod/lib/puppet/provider/applytest/applytest.rb +2 -0
  250. data/spec/fixtures/integration/application/apply/environments/spec/modules/amod/lib/puppet/type/applytest.rb +25 -0
  251. data/spec/fixtures/ssl/unknown-127.0.0.1-key.pem +67 -0
  252. data/spec/fixtures/ssl/unknown-127.0.0.1.pem +48 -0
  253. data/spec/fixtures/ssl/unknown-ca-key.pem +67 -0
  254. data/spec/fixtures/ssl/unknown-ca.pem +59 -0
  255. data/spec/fixtures/unit/forge/bacula-releases.json +128 -0
  256. data/spec/fixtures/unit/forge/bacula.tar.gz +0 -0
  257. data/spec/fixtures/unit/provider/package/dnfmodule/{dnf-module-list-installed.txt → dnf-module-list.txt} +8 -0
  258. data/spec/fixtures/unit/provider/package/pkgng/pkg.version +2 -0
  259. data/spec/fixtures/unit/provider/package/yum/yum-check-update-subscription-manager.txt +9 -0
  260. data/spec/fixtures/unit/provider/package/zypper/zypper-search-uninstalled.out +13 -0
  261. data/spec/fixtures/unit/provider/service/systemd/list_unit_files_services +9 -0
  262. data/spec/fixtures/vcr/cassettes/Puppet_Type_File/when_sourcing/from_http/using_md5/should_fetch_if_not_on_the_local_disk.yml +1 -67
  263. data/spec/fixtures/vcr/cassettes/Puppet_Type_File/when_sourcing/from_http/using_md5/should_not_update_if_content_on_disk_is_up-to-date.yml +1 -69
  264. data/spec/fixtures/vcr/cassettes/Puppet_Type_File/when_sourcing/from_http/using_md5/should_update_if_content_differs_on_disk.yml +1 -69
  265. data/spec/fixtures/vcr/cassettes/Puppet_Type_File/when_sourcing/from_http/using_mtime/should_fetch_if_mtime_is_older_on_disk.yml +1 -67
  266. data/spec/fixtures/vcr/cassettes/Puppet_Type_File/when_sourcing/from_http/using_mtime/should_fetch_if_no_header_specified.yml +1 -65
  267. data/spec/fixtures/vcr/cassettes/Puppet_Type_File/when_sourcing/from_http/using_mtime/should_fetch_if_not_on_the_local_disk.yml +1 -67
  268. data/spec/fixtures/vcr/cassettes/Puppet_Type_File/when_sourcing/from_http/using_mtime/should_not_update_if_mtime_is_newer_on_disk.yml +1 -67
  269. data/spec/integration/application/agent_spec.rb +475 -0
  270. data/spec/integration/application/apply_spec.rb +279 -150
  271. data/spec/integration/application/config_spec.rb +74 -0
  272. data/spec/integration/application/doc_spec.rb +16 -6
  273. data/spec/integration/application/filebucket_spec.rb +239 -0
  274. data/spec/integration/application/help_spec.rb +42 -0
  275. data/spec/integration/application/lookup_spec.rb +13 -0
  276. data/spec/integration/application/module_spec.rb +68 -0
  277. data/spec/integration/application/plugin_spec.rb +123 -0
  278. data/spec/integration/data_binding_spec.rb +82 -0
  279. data/spec/integration/defaults_spec.rb +1 -2
  280. data/spec/integration/directory_environments_spec.rb +17 -17
  281. data/spec/integration/http/client_spec.rb +47 -37
  282. data/spec/integration/indirector/facts/facter_spec.rb +8 -6
  283. data/spec/integration/indirector/report/yaml.rb +83 -0
  284. data/spec/integration/network/http_pool_spec.rb +93 -20
  285. data/spec/integration/node/environment_spec.rb +15 -0
  286. data/spec/integration/parser/compiler_spec.rb +11 -0
  287. data/spec/integration/type/file_spec.rb +1 -1
  288. data/spec/integration/util/execution_spec.rb +22 -0
  289. data/spec/integration/util/windows/adsi_spec.rb +6 -1
  290. data/spec/integration/util/windows/monkey_patches/dir_spec.rb +11 -0
  291. data/spec/integration/util/windows/process_spec.rb +26 -32
  292. data/spec/integration/util/windows/registry_spec.rb +7 -7
  293. data/spec/integration/util/windows/user_spec.rb +47 -5
  294. data/spec/integration/util_spec.rb +7 -33
  295. data/spec/lib/puppet/test_ca.rb +2 -2
  296. data/spec/lib/puppet_spec/https.rb +16 -7
  297. data/spec/lib/puppet_spec/matchers.rb +0 -80
  298. data/spec/lib/puppet_spec/puppetserver.rb +127 -0
  299. data/spec/shared_contexts/https.rb +29 -0
  300. data/spec/unit/agent_spec.rb +80 -26
  301. data/spec/unit/application/agent_spec.rb +12 -9
  302. data/spec/unit/application/describe_spec.rb +88 -50
  303. data/spec/unit/application/device_spec.rb +2 -2
  304. data/spec/unit/application/face_base_spec.rb +6 -4
  305. data/spec/unit/application/facts_spec.rb +39 -10
  306. data/spec/unit/application/filebucket_spec.rb +22 -2
  307. data/spec/unit/application/man_spec.rb +52 -0
  308. data/spec/unit/application/resource_spec.rb +3 -1
  309. data/spec/unit/application/ssl_spec.rb +15 -2
  310. data/spec/unit/configurer/downloader_spec.rb +10 -0
  311. data/spec/unit/configurer/fact_handler_spec.rb +4 -4
  312. data/spec/unit/configurer/plugin_handler_spec.rb +36 -19
  313. data/spec/unit/configurer_spec.rb +64 -46
  314. data/spec/unit/confine_spec.rb +2 -1
  315. data/spec/unit/context/trusted_information_spec.rb +25 -2
  316. data/spec/unit/daemon_spec.rb +5 -64
  317. data/spec/unit/defaults_spec.rb +24 -1
  318. data/spec/unit/environments_spec.rb +8 -0
  319. data/spec/unit/face/config_spec.rb +3 -1
  320. data/spec/unit/face/module/search_spec.rb +17 -0
  321. data/spec/unit/face/plugin_spec.rb +12 -10
  322. data/spec/unit/file_serving/http_metadata_spec.rb +37 -14
  323. data/spec/unit/file_serving/mount/locales_spec.rb +2 -2
  324. data/spec/unit/file_serving/mount/pluginfacts_spec.rb +2 -2
  325. data/spec/unit/file_serving/mount/plugins_spec.rb +2 -2
  326. data/spec/unit/file_serving/terminus_selector_spec.rb +45 -26
  327. data/spec/unit/file_system/uniquefile_spec.rb +29 -0
  328. data/spec/unit/file_system_spec.rb +10 -0
  329. data/spec/unit/functions/lookup_spec.rb +13 -0
  330. data/spec/unit/http/client_spec.rb +321 -36
  331. data/spec/unit/http/external_client_spec.rb +201 -0
  332. data/spec/unit/http/resolver_spec.rb +34 -3
  333. data/spec/unit/http/response_spec.rb +75 -0
  334. data/spec/unit/http/service/ca_spec.rb +53 -12
  335. data/spec/unit/http/service/compiler_spec.rb +332 -28
  336. data/spec/unit/http/service/file_server_spec.rb +100 -12
  337. data/spec/unit/http/service/report_spec.rb +19 -9
  338. data/spec/unit/http/service_spec.rb +94 -6
  339. data/spec/unit/http/session_spec.rb +159 -8
  340. data/spec/unit/indirector/catalog/compiler_spec.rb +1 -0
  341. data/spec/unit/indirector/catalog/rest_spec.rb +59 -2
  342. data/spec/unit/indirector/facts/rest_spec.rb +79 -24
  343. data/spec/unit/indirector/file_bucket_file/rest_spec.rb +82 -2
  344. data/spec/unit/indirector/file_content/rest_spec.rb +53 -2
  345. data/spec/unit/indirector/file_metadata/http_spec.rb +194 -0
  346. data/spec/unit/indirector/file_metadata/rest_spec.rb +110 -2
  347. data/spec/unit/indirector/node/rest_spec.rb +57 -2
  348. data/spec/unit/indirector/report/rest_spec.rb +58 -51
  349. data/spec/unit/indirector/request_spec.rb +1 -1
  350. data/spec/unit/indirector/resource/ral_spec.rb +7 -8
  351. data/spec/unit/indirector/rest_spec.rb +13 -0
  352. data/spec/unit/indirector/status/rest_spec.rb +43 -2
  353. data/spec/unit/interface_spec.rb +3 -3
  354. data/spec/unit/module_tool/tar/mini_spec.rb +20 -0
  355. data/spec/unit/network/format_support_spec.rb +3 -2
  356. data/spec/unit/network/http/api/indirected_routes_spec.rb +2 -1
  357. data/spec/unit/network/http/connection_spec.rb +552 -190
  358. data/spec/unit/network/http/nocache_pool_spec.rb +22 -0
  359. data/spec/unit/network/http/pool_spec.rb +59 -13
  360. data/spec/unit/network/http_pool_spec.rb +63 -57
  361. data/spec/unit/network/http_spec.rb +1 -1
  362. data/spec/unit/node/environment_spec.rb +33 -0
  363. data/spec/unit/parser/ast/block_expression_spec.rb +1 -1
  364. data/spec/unit/parser/environment_compiler_spec.rb +7 -0
  365. data/spec/unit/parser/scope_spec.rb +1 -1
  366. data/spec/unit/pops/evaluator/evaluating_parser_spec.rb +15 -1
  367. data/spec/unit/pops/loaders/loaders_spec.rb +71 -1
  368. data/spec/unit/pops/lookup/lookup_spec.rb +25 -0
  369. data/spec/unit/pops/types/type_calculator_spec.rb +1 -11
  370. data/spec/unit/provider/group/groupadd_spec.rb +22 -8
  371. data/spec/unit/provider/group/windows_adsi_spec.rb +43 -10
  372. data/spec/unit/provider/package/aix_spec.rb +29 -0
  373. data/spec/unit/provider/package/apt_spec.rb +107 -0
  374. data/spec/unit/provider/package/aptitude_spec.rb +1 -0
  375. data/spec/unit/provider/package/dnfmodule_spec.rb +54 -15
  376. data/spec/unit/provider/package/gem_spec.rb +40 -0
  377. data/spec/unit/provider/package/pacman_spec.rb +6 -21
  378. data/spec/unit/provider/package/pip_spec.rb +68 -19
  379. data/spec/unit/provider/package/pkgdmg_spec.rb +1 -1
  380. data/spec/unit/provider/package/pkgng_spec.rb +38 -0
  381. data/spec/unit/provider/package/portage_spec.rb +5 -0
  382. data/spec/unit/provider/package/puppet_gem_spec.rb +12 -1
  383. data/spec/unit/provider/package/rpm_spec.rb +0 -212
  384. data/spec/unit/provider/package/yum_spec.rb +243 -1
  385. data/spec/unit/provider/package/zypper_spec.rb +98 -0
  386. data/spec/unit/provider/service/init_spec.rb +42 -0
  387. data/spec/unit/provider/service/openbsd_spec.rb +9 -0
  388. data/spec/unit/provider/service/openwrt_spec.rb +1 -0
  389. data/spec/unit/provider/service/redhat_spec.rb +9 -0
  390. data/spec/unit/provider/service/systemd_spec.rb +93 -18
  391. data/spec/unit/provider/service/windows_spec.rb +50 -14
  392. data/spec/unit/provider/user/openbsd_spec.rb +1 -0
  393. data/spec/unit/provider/user/useradd_spec.rb +30 -16
  394. data/spec/unit/provider/user/windows_adsi_spec.rb +85 -3
  395. data/spec/unit/puppet_pal_2pec.rb +11 -0
  396. data/spec/unit/puppet_pal_catalog_spec.rb +43 -0
  397. data/spec/unit/puppet_spec.rb +33 -0
  398. data/spec/unit/reports/http_spec.rb +70 -52
  399. data/spec/unit/reports/store_spec.rb +17 -13
  400. data/spec/unit/resource_spec.rb +3 -3
  401. data/spec/unit/settings/autosign_setting_spec.rb +1 -1
  402. data/spec/unit/settings/http_extra_headers_spec.rb +64 -0
  403. data/spec/unit/ssl/host_spec.rb +4 -2
  404. data/spec/unit/ssl/oids_spec.rb +1 -0
  405. data/spec/unit/ssl/ssl_provider_spec.rb +69 -43
  406. data/spec/unit/ssl/state_machine_spec.rb +99 -13
  407. data/spec/unit/test/test_helper_spec.rb +17 -0
  408. data/spec/unit/transaction/persistence_spec.rb +15 -0
  409. data/spec/unit/transaction/report_spec.rb +5 -1
  410. data/spec/unit/transaction_spec.rb +0 -2
  411. data/spec/unit/type/file/ensure_spec.rb +1 -2
  412. data/spec/unit/type/file/source_spec.rb +89 -38
  413. data/spec/unit/type/file_spec.rb +122 -96
  414. data/spec/unit/type/service_spec.rb +218 -8
  415. data/spec/unit/type/user_spec.rb +32 -3
  416. data/spec/unit/type_spec.rb +50 -0
  417. data/spec/unit/util/at_fork_spec.rb +3 -2
  418. data/spec/unit/util/autoload_spec.rb +2 -1
  419. data/spec/unit/util/character_encoding_spec.rb +4 -4
  420. data/spec/unit/util/checksums_spec.rb +16 -0
  421. data/spec/unit/util/command_line_spec.rb +11 -6
  422. data/spec/unit/util/log/destinations_spec.rb +1 -29
  423. data/spec/unit/util/package/version/debian_spec.rb +83 -0
  424. data/spec/unit/util/package/version/pip_spec.rb +464 -0
  425. data/spec/unit/util/package/version/range_spec.rb +175 -0
  426. data/spec/unit/util/package/version/rpm_spec.rb +121 -0
  427. data/spec/unit/util/pidlock_spec.rb +102 -54
  428. data/spec/unit/util/rpm_compare_spec.rb +196 -0
  429. data/spec/unit/util/windows/adsi_spec.rb +4 -4
  430. data/spec/unit/util/windows/api_types_spec.rb +104 -40
  431. data/spec/unit/util/windows/service_spec.rb +4 -4
  432. data/spec/unit/util/windows/sid_spec.rb +2 -2
  433. data/spec/unit/util_spec.rb +3 -3
  434. data/spec/unit/x509/cert_provider_spec.rb +1 -1
  435. data/tasks/generate_cert_fixtures.rake +15 -1
  436. data/tasks/manpages.rake +5 -35
  437. metadata +84 -52
  438. data/COMMITTERS.md +0 -244
  439. data/spec/integration/faces/config_spec.rb +0 -91
  440. data/spec/integration/faces/documentation_spec.rb +0 -57
  441. data/spec/integration/faces/plugin_spec.rb +0 -61
  442. data/spec/integration/file_bucket/file_spec.rb +0 -50
  443. data/spec/integration/file_serving/content_spec.rb +0 -7
  444. data/spec/integration/file_serving/fileset_spec.rb +0 -12
  445. data/spec/integration/file_serving/metadata_spec.rb +0 -8
  446. data/spec/integration/file_serving/terminus_helper_spec.rb +0 -20
  447. data/spec/integration/file_system/uniquefile_spec.rb +0 -26
  448. data/spec/integration/module_tool/forge_spec.rb +0 -64
  449. data/spec/integration/module_tool/tar/mini_spec.rb +0 -28
  450. data/spec/integration/provider/service/init_spec.rb +0 -48
  451. data/spec/integration/provider/service/systemd_spec.rb +0 -25
  452. data/spec/integration/provider/service/windows_spec.rb +0 -50
  453. data/spec/integration/reference/providers_spec.rb +0 -21
  454. data/spec/integration/reports_spec.rb +0 -13
  455. data/spec/integration/ssl/certificate_request_spec.rb +0 -44
  456. data/spec/integration/ssl/host_spec.rb +0 -72
  457. data/spec/integration/ssl/key_spec.rb +0 -99
  458. data/spec/integration/test/test_helper_spec.rb +0 -31
  459. data/spec/shared_behaviours/file_serving_model.rb +0 -51
  460. data/spec/unit/face/man_spec.rb +0 -25
  461. data/spec/unit/man_spec.rb +0 -31
@@ -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
@@ -16,6 +16,22 @@ module Puppet::Util::Windows::User
16
16
  end
17
17
  module_function :admin?
18
18
 
19
+ # The name of the account in all locales is `LocalSystem`. `.\LocalSystem` or `ComputerName\LocalSystem' can also be used.
20
+ # This account is not recognized by the security subsystem, so you cannot specify its name in a call to the `LookupAccountName` function.
21
+ # https://docs.microsoft.com/en-us/windows/win32/services/localsystem-account
22
+ def localsystem?(name)
23
+ ["LocalSystem", ".\\LocalSystem", "#{Puppet::Util::Windows::ADSI.computer_name}\\LocalSystem"].any?{ |s| s.casecmp(name) == 0 }
24
+ end
25
+ module_function :localsystem?
26
+
27
+ # Check if a given user is one of the default system accounts
28
+ # These accounts do not have a password and all checks done through logon attempt will fail
29
+ # https://docs.microsoft.com/en-us/windows/security/identity-protection/access-control/local-accounts#default-local-system-accounts
30
+ def default_system_account?(name)
31
+ user_sid = Puppet::Util::Windows::SID.name_to_sid(name)
32
+ [Puppet::Util::Windows::SID::LocalSystem, Puppet::Util::Windows::SID::NtLocal, Puppet::Util::Windows::SID::NtNetwork].include?(user_sid)
33
+ end
34
+ module_function :default_system_account?
19
35
 
20
36
  # https://msdn.microsoft.com/en-us/library/windows/desktop/ee207397(v=vs.85).aspx
21
37
  SECURITY_MAX_SID_SIZE = 68
@@ -57,9 +73,9 @@ module Puppet::Util::Windows::User
57
73
  end
58
74
  module_function :check_token_membership
59
75
 
60
- def password_is?(name, password)
76
+ def password_is?(name, password, domain = '.')
61
77
  begin
62
- logon_user(name, password) { |token| }
78
+ logon_user(name, password, domain) { |token| }
63
79
  rescue Puppet::Util::Windows::Error => detail
64
80
 
65
81
  authenticated_error_codes = Set[
@@ -74,7 +90,7 @@ module Puppet::Util::Windows::User
74
90
  end
75
91
  module_function :password_is?
76
92
 
77
- def logon_user(name, password, &block)
93
+ def logon_user(name, password, domain = '.', &block)
78
94
  fLOGON32_PROVIDER_DEFAULT = 0
79
95
  fLOGON32_LOGON_INTERACTIVE = 2
80
96
  fLOGON32_LOGON_NETWORK = 3
@@ -83,8 +99,8 @@ module Puppet::Util::Windows::User
83
99
  begin
84
100
  FFI::MemoryPointer.new(:handle, 1) do |token_pointer|
85
101
  #try logon using network else try logon using interactive mode
86
- if logon_user_by_logon_type(name, password, fLOGON32_LOGON_NETWORK, fLOGON32_PROVIDER_DEFAULT, token_pointer) == FFI::WIN32_FALSE
87
- if logon_user_by_logon_type(name, password, fLOGON32_LOGON_INTERACTIVE, fLOGON32_PROVIDER_DEFAULT, token_pointer) == FFI::WIN32_FALSE
102
+ if logon_user_by_logon_type(name, domain, password, fLOGON32_LOGON_NETWORK, fLOGON32_PROVIDER_DEFAULT, token_pointer) == FFI::WIN32_FALSE
103
+ if logon_user_by_logon_type(name, domain, password, fLOGON32_LOGON_INTERACTIVE, fLOGON32_PROVIDER_DEFAULT, token_pointer) == FFI::WIN32_FALSE
88
104
  raise Puppet::Util::Windows::Error.new(_("Failed to logon user %{name}") % {name: name.inspect})
89
105
  end
90
106
  end
@@ -98,11 +114,10 @@ module Puppet::Util::Windows::User
98
114
  # token has been closed by this point
99
115
  true
100
116
  end
101
-
102
117
  module_function :logon_user
103
118
 
104
- def self.logon_user_by_logon_type(name, password, logon_type, logon_provider, token)
105
- LogonUserW(wide_string(name), wide_string('.'), password.nil? ? FFI::Pointer::NULL : wide_string(password), logon_type, logon_provider, token)
119
+ def self.logon_user_by_logon_type(name, domain, password, logon_type, logon_provider, token)
120
+ LogonUserW(wide_string(name), wide_string(domain), password.nil? ? FFI::Pointer::NULL : wide_string(password), logon_type, logon_provider, token)
106
121
  end
107
122
 
108
123
  private_class_method :logon_user_by_logon_type
@@ -130,6 +145,125 @@ module Puppet::Util::Windows::User
130
145
  end
131
146
  module_function :load_profile
132
147
 
148
+ def get_rights(name)
149
+ user_info = Puppet::Util::Windows::SID.name_to_principal(name.sub(/^\.\\/, "#{Puppet::Util::Windows::ADSI.computer_name}\\"))
150
+ return "" unless user_info
151
+
152
+ rights = []
153
+ rights_pointer = FFI::MemoryPointer.new(:pointer)
154
+ number_of_rights = FFI::MemoryPointer.new(:ulong)
155
+ sid_pointer = FFI::MemoryPointer.new(:byte, user_info.sid_bytes.length).write_array_of_uchar(user_info.sid_bytes)
156
+
157
+ new_lsa_policy_handle do |policy_handle|
158
+ result = LsaEnumerateAccountRights(policy_handle.read_pointer, sid_pointer, rights_pointer, number_of_rights)
159
+ check_lsa_nt_status_and_raise_failures(result, "LsaEnumerateAccountRights")
160
+ end
161
+
162
+ number_of_rights.read_ulong.times do |index|
163
+ right = LSA_UNICODE_STRING.new(rights_pointer.read_pointer + index * LSA_UNICODE_STRING.size)
164
+ rights << right[:Buffer].read_arbitrary_wide_string_up_to
165
+ end
166
+
167
+ result = LsaFreeMemory(rights_pointer.read_pointer)
168
+ check_lsa_nt_status_and_raise_failures(result, "LsaFreeMemory")
169
+
170
+ rights.join(",")
171
+ end
172
+ module_function :get_rights
173
+
174
+ def set_rights(name, rights)
175
+ rights_pointer = new_lsa_unicode_strings_pointer(rights)
176
+ user_info = Puppet::Util::Windows::SID.name_to_principal(name.sub(/^\.\\/, "#{Puppet::Util::Windows::ADSI.computer_name}\\"))
177
+ sid_pointer = FFI::MemoryPointer.new(:byte, user_info.sid_bytes.length).write_array_of_uchar(user_info.sid_bytes)
178
+
179
+ new_lsa_policy_handle do |policy_handle|
180
+ result = LsaAddAccountRights(policy_handle.read_pointer, sid_pointer, rights_pointer, rights.size)
181
+ check_lsa_nt_status_and_raise_failures(result, "LsaAddAccountRights")
182
+ end
183
+ end
184
+ module_function :set_rights
185
+
186
+ def remove_rights(name, rights)
187
+ rights_pointer = new_lsa_unicode_strings_pointer(rights)
188
+ user_info = Puppet::Util::Windows::SID.name_to_principal(name.sub(/^\.\\/, "#{Puppet::Util::Windows::ADSI.computer_name}\\"))
189
+ sid_pointer = FFI::MemoryPointer.new(:byte, user_info.sid_bytes.length).write_array_of_uchar(user_info.sid_bytes)
190
+
191
+ new_lsa_policy_handle do |policy_handle|
192
+ result = LsaRemoveAccountRights(policy_handle.read_pointer, sid_pointer, false, rights_pointer, rights.size)
193
+ check_lsa_nt_status_and_raise_failures(result, "LsaRemoveAccountRights")
194
+ end
195
+ end
196
+ module_function :remove_rights
197
+
198
+ # ACCESS_MASK flags for Policy Objects
199
+ # https://docs.microsoft.com/en-us/openspecs/windows_protocols/ms-lsad/b61b7268-987a-420b-84f9-6c75f8dc8558
200
+ POLICY_VIEW_LOCAL_INFORMATION = 0x00000001
201
+ POLICY_VIEW_AUDIT_INFORMATION = 0x00000002
202
+ POLICY_GET_PRIVATE_INFORMATION = 0x00000004
203
+ POLICY_TRUST_ADMIN = 0x00000008
204
+ POLICY_CREATE_ACCOUNT = 0x00000010
205
+ POLICY_CREATE_SECRET = 0x00000020
206
+ POLICY_CREATE_PRIVILEGE = 0x00000040
207
+ POLICY_SET_DEFAULT_QUOTA_LIMITS = 0x00000080
208
+ POLICY_SET_AUDIT_REQUIREMENTS = 0x00000100
209
+ POLICY_AUDIT_LOG_ADMIN = 0x00000200
210
+ POLICY_SERVER_ADMIN = 0x00000400
211
+ POLICY_LOOKUP_NAMES = 0x00000800
212
+ POLICY_NOTIFICATION = 0x00001000
213
+
214
+ def self.new_lsa_policy_handle
215
+ access = 0
216
+ access |= POLICY_LOOKUP_NAMES
217
+ access |= POLICY_CREATE_ACCOUNT
218
+ policy_handle = FFI::MemoryPointer.new(:pointer)
219
+
220
+ result = LsaOpenPolicy(nil, LSA_OBJECT_ATTRIBUTES.new, access, policy_handle)
221
+ check_lsa_nt_status_and_raise_failures(result, "LsaOpenPolicy")
222
+
223
+ begin
224
+ yield policy_handle
225
+ ensure
226
+ result = LsaClose(policy_handle.read_pointer)
227
+ check_lsa_nt_status_and_raise_failures(result, "LsaClose")
228
+ end
229
+ end
230
+ private_class_method :new_lsa_policy_handle
231
+
232
+ def self.new_lsa_unicode_strings_pointer(strings)
233
+ lsa_unicode_strings_pointer = FFI::MemoryPointer.new(LSA_UNICODE_STRING, strings.size)
234
+
235
+ strings.each_with_index do |string, index|
236
+ lsa_string = LSA_UNICODE_STRING.new(lsa_unicode_strings_pointer + index * LSA_UNICODE_STRING.size)
237
+ lsa_string[:Buffer] = FFI::MemoryPointer.from_string(wide_string(string))
238
+ lsa_string[:Length] = string.length * 2
239
+ lsa_string[:MaximumLength] = lsa_string[:Length] + 2
240
+ end
241
+
242
+ lsa_unicode_strings_pointer
243
+ end
244
+ private_class_method :new_lsa_unicode_strings_pointer
245
+
246
+ # https://docs.microsoft.com/en-us/openspecs/windows_protocols/ms-erref/18d8fbe8-a967-4f1c-ae50-99ca8e491d2d
247
+ def self.check_lsa_nt_status_and_raise_failures(status, method_name)
248
+ error_code = LsaNtStatusToWinError(status)
249
+
250
+ error_reason = case error_code.to_s(16)
251
+ when '0' # ERROR_SUCCESS
252
+ return # Method call succeded
253
+ when '2' # ERROR_FILE_NOT_FOUND
254
+ return # No rights/privilleges assigned to given user
255
+ when '5' # ERROR_ACCESS_DENIED
256
+ "Access is denied. Please make sure that puppet is running as administrator."
257
+ when '521' # ERROR_NO_SUCH_PRIVILEGE
258
+ "One or more of the given rights/privilleges are incorrect."
259
+ when '6ba' # RPC_S_SERVER_UNAVAILABLE
260
+ "The RPC server is unavailable or given domain name is invalid."
261
+ end
262
+
263
+ raise Puppet::Error.new("Calling `#{method_name}` returned 'Win32 Error Code 0x%08X'. #{error_reason}" % error_code)
264
+ end
265
+ private_class_method :check_lsa_nt_status_and_raise_failures
266
+
133
267
  ffi_convention :stdcall
134
268
 
135
269
  # https://msdn.microsoft.com/en-us/library/windows/desktop/aa378184(v=vs.85).aspx
@@ -314,4 +448,104 @@ module Puppet::Util::Windows::User
314
448
  ffi_lib :advapi32
315
449
  attach_function_private :IsValidSid,
316
450
  [:pointer], :win32_bool
451
+
452
+ # https://docs.microsoft.com/en-us/windows/win32/api/lsalookup/ns-lsalookup-lsa_object_attributes
453
+ # typedef struct _LSA_OBJECT_ATTRIBUTES {
454
+ # ULONG Length;
455
+ # HANDLE RootDirectory;
456
+ # PLSA_UNICODE_STRING ObjectName;
457
+ # ULONG Attributes;
458
+ # PVOID SecurityDescriptor;
459
+ # PVOID SecurityQualityOfService;
460
+ # } LSA_OBJECT_ATTRIBUTES, *PLSA_OBJECT_ATTRIBUTES;
461
+ class LSA_OBJECT_ATTRIBUTES < FFI::Struct
462
+ layout :Length, :ulong,
463
+ :RootDirectory, :handle,
464
+ :ObjectName, :plsa_unicode_string,
465
+ :Attributes, :ulong,
466
+ :SecurityDescriptor, :pvoid,
467
+ :SecurityQualityOfService, :pvoid
468
+ end
469
+
470
+ # https://docs.microsoft.com/en-us/windows/win32/api/lsalookup/ns-lsalookup-lsa_unicode_string
471
+ # typedef struct _LSA_UNICODE_STRING {
472
+ # USHORT Length;
473
+ # USHORT MaximumLength;
474
+ # PWSTR Buffer;
475
+ # } LSA_UNICODE_STRING, *PLSA_UNICODE_STRING;
476
+ class LSA_UNICODE_STRING < FFI::Struct
477
+ layout :Length, :ushort,
478
+ :MaximumLength, :ushort,
479
+ :Buffer, :pwstr
480
+ end
481
+
482
+ # https://docs.microsoft.com/en-us/windows/win32/api/ntsecapi/nf-ntsecapi-lsaenumerateaccountrights
483
+ # https://docs.microsoft.com/en-us/windows/security/threat-protection/security-policy-settings/user-rights-assignment
484
+ # NTSTATUS LsaEnumerateAccountRights(
485
+ # LSA_HANDLE PolicyHandle,
486
+ # PSID AccountSid,
487
+ # PLSA_UNICODE_STRING *UserRights,
488
+ # PULONG CountOfRights
489
+ # );
490
+ ffi_lib :advapi32
491
+ attach_function_private :LsaEnumerateAccountRights,
492
+ [:lsa_handle, :psid, :plsa_unicode_string, :pulong], :ntstatus
493
+
494
+ # https://docs.microsoft.com/en-us/windows/win32/api/ntsecapi/nf-ntsecapi-lsaaddaccountrights
495
+ # NTSTATUS LsaAddAccountRights(
496
+ # LSA_HANDLE PolicyHandle,
497
+ # PSID AccountSid,
498
+ # PLSA_UNICODE_STRING UserRights,
499
+ # ULONG CountOfRights
500
+ # );
501
+ ffi_lib :advapi32
502
+ attach_function_private :LsaAddAccountRights,
503
+ [:lsa_handle, :psid, :plsa_unicode_string, :ulong], :ntstatus
504
+
505
+ # https://docs.microsoft.com/en-us/windows/win32/api/ntsecapi/nf-ntsecapi-lsaremoveaccountrights
506
+ # NTSTATUS LsaRemoveAccountRights(
507
+ # LSA_HANDLE PolicyHandle,
508
+ # PSID AccountSid,
509
+ # BOOLEAN AllRights,
510
+ # PLSA_UNICODE_STRING UserRights,
511
+ # ULONG CountOfRights
512
+ # );
513
+ ffi_lib :advapi32
514
+ attach_function_private :LsaRemoveAccountRights,
515
+ [:lsa_handle, :psid, :bool, :plsa_unicode_string, :ulong], :ntstatus
516
+
517
+ # https://docs.microsoft.com/en-us/windows/win32/api/ntsecapi/nf-ntsecapi-lsaopenpolicy
518
+ # NTSTATUS LsaOpenPolicy(
519
+ # PLSA_UNICODE_STRING SystemName,
520
+ # PLSA_OBJECT_ATTRIBUTES ObjectAttributes,
521
+ # ACCESS_MASK DesiredAccess,
522
+ # PLSA_HANDLE PolicyHandle
523
+ # );
524
+ ffi_lib :advapi32
525
+ attach_function_private :LsaOpenPolicy,
526
+ [:plsa_unicode_string, :plsa_object_attributes, :access_mask, :plsa_handle], :ntstatus
527
+
528
+ # https://docs.microsoft.com/en-us/windows/win32/api/ntsecapi/nf-ntsecapi-lsaclose
529
+ # NTSTATUS LsaClose(
530
+ # LSA_HANDLE ObjectHandle
531
+ # );
532
+ ffi_lib :advapi32
533
+ attach_function_private :LsaClose,
534
+ [:lsa_handle], :ntstatus
535
+
536
+ # https://docs.microsoft.com/en-us/windows/win32/api/ntsecapi/nf-ntsecapi-lsafreememory
537
+ # NTSTATUS LsaFreeMemory(
538
+ # PVOID Buffer
539
+ # );
540
+ ffi_lib :advapi32
541
+ attach_function_private :LsaFreeMemory,
542
+ [:pvoid], :ntstatus
543
+
544
+ # https://docs.microsoft.com/en-us/windows/win32/api/ntsecapi/nf-ntsecapi-lsantstatustowinerror
545
+ # ULONG LsaNtStatusToWinError(
546
+ # NTSTATUS Status
547
+ # );
548
+ ffi_lib :advapi32
549
+ attach_function_private :LsaNtStatusToWinError,
550
+ [:ntstatus], :ulong
317
551
  end
@@ -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.13.0'
9
+ PUPPETVERSION = '6.18.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.12.0-140-gec3639ae66\n"
9
+ "Project-Id-Version: Puppet automation framework 6.17.0-93-gddd91ef701\n"
10
10
  "\n"
11
11
  "Report-Msgid-Bugs-To: https://tickets.puppetlabs.com\n"
12
- "POT-Creation-Date: 2020-02-07 12:49+0000\n"
13
- "PO-Revision-Date: 2020-02-07 12:49+0000\n"
12
+ "POT-Creation-Date: 2020-07-30 16:49+0000\n"
13
+ "PO-Revision-Date: 2020-07-30 16:49+0000\n"
14
14
  "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
15
15
  "Language-Team: LANGUAGE <LL@li.org>\n"
16
16
  "Language: \n"
@@ -44,25 +44,25 @@ msgstr ""
44
44
  msgid "Please supply a parameter to perform a Hiera lookup"
45
45
  msgstr ""
46
46
 
47
- #: ../lib/hiera_puppet.rb:75 ../lib/puppet/indirector/hiera.rb:81
47
+ #: ../lib/hiera_puppet.rb:75 ../lib/puppet/indirector/hiera.rb:85
48
48
  msgid "Config file %{hiera_config} not found, using Hiera defaults"
49
49
  msgstr ""
50
50
 
51
- #: ../lib/puppet.rb:130
51
+ #: ../lib/puppet.rb:144
52
52
  msgid "Support for ruby version %{version} is deprecated and will be removed in a future release. See https://puppet.com/docs/puppet/latest/system_requirements.html for a list of supported ruby versions."
53
53
  msgstr ""
54
54
 
55
- #: ../lib/puppet.rb:188
55
+ #: ../lib/puppet.rb:230
56
56
  msgid "The environmentpath setting cannot be empty or nil."
57
57
  msgstr ""
58
58
 
59
59
  #. TRANSLATORS: `message` is an already translated string of why SSL failed to initialize
60
- #: ../lib/puppet.rb:218
60
+ #: ../lib/puppet.rb:257
61
61
  msgid "Failed to initialize SSL: %{message}"
62
62
  msgstr ""
63
63
 
64
64
  #. TRANSLATORS: `puppet agent -t` is a command and should not be translated
65
- #: ../lib/puppet.rb:220
65
+ #: ../lib/puppet.rb:259
66
66
  msgid "Run `puppet agent -t`"
67
67
  msgstr ""
68
68
 
@@ -72,27 +72,39 @@ msgid ""
72
72
  "Use 'puppet agent --enable' to re-enable."
73
73
  msgstr ""
74
74
 
75
- #: ../lib/puppet/agent.rb:63
75
+ #: ../lib/puppet/agent.rb:68
76
76
  msgid "Run of %{client_class} already in progress; skipping (%{lockfile_path} exists)"
77
77
  msgstr ""
78
78
 
79
- #: ../lib/puppet/agent.rb:66
79
+ #: ../lib/puppet/agent.rb:71
80
+ msgid "Exiting now because the maxwaitforlock timeout has been exceeded."
81
+ msgstr ""
82
+
83
+ #: ../lib/puppet/agent.rb:74
84
+ msgid "Another puppet instance is already running; --waitforlock flag used, waiting for running instance to finish."
85
+ msgstr ""
86
+
87
+ #: ../lib/puppet/agent.rb:75 ../lib/puppet/ssl/state_machine.rb:279 ../lib/puppet/ssl/state_machine.rb:310
88
+ msgid "Will try again in %{time} seconds."
89
+ msgstr ""
90
+
91
+ #: ../lib/puppet/agent.rb:80
80
92
  msgid "Execution of %{client_class} did not complete within %{runtimeout} seconds and was terminated."
81
93
  msgstr ""
82
94
 
83
- #: ../lib/puppet/agent.rb:71
95
+ #: ../lib/puppet/agent.rb:85
84
96
  msgid "Could not run %{client_class}: %{detail}"
85
97
  msgstr ""
86
98
 
87
- #: ../lib/puppet/agent.rb:78
99
+ #: ../lib/puppet/agent.rb:92
88
100
  msgid "Shutdown/restart in progress (%{status}); skipping run"
89
101
  msgstr ""
90
102
 
91
- #: ../lib/puppet/agent.rb:96
103
+ #: ../lib/puppet/agent.rb:110
92
104
  msgid "puppet agent: applying configuration"
93
105
  msgstr ""
94
106
 
95
- #: ../lib/puppet/agent.rb:127
107
+ #: ../lib/puppet/agent.rb:133
96
108
  msgid "Could not create instance of %{client_class}: %{detail}"
97
109
  msgstr ""
98
110
 
@@ -178,23 +190,23 @@ msgstr ""
178
190
  msgid "Cancelling startup"
179
191
  msgstr ""
180
192
 
181
- #: ../lib/puppet/application/agent.rb:82
193
+ #: ../lib/puppet/application/agent.rb:83
182
194
  msgid "The puppet agent daemon"
183
195
  msgstr ""
184
196
 
185
- #: ../lib/puppet/application/agent.rb:399
197
+ #: ../lib/puppet/application/agent.rb:409
186
198
  msgid "Fingerprint asked but neither the certificate, nor the certificate request have been issued"
187
199
  msgstr ""
188
200
 
189
- #: ../lib/puppet/application/agent.rb:404
201
+ #: ../lib/puppet/application/agent.rb:414
190
202
  msgid "Failed to generate fingerprint: %{message}"
191
203
  msgstr ""
192
204
 
193
- #: ../lib/puppet/application/agent.rb:427
205
+ #: ../lib/puppet/application/agent.rb:437
194
206
  msgid "Starting Puppet client version %{version}"
195
207
  msgstr ""
196
208
 
197
- #: ../lib/puppet/application/agent.rb:443
209
+ #: ../lib/puppet/application/agent.rb:453
198
210
  msgid "The puppet agent command does not take parameters"
199
211
  msgstr ""
200
212
 
@@ -204,7 +216,7 @@ msgstr ""
204
216
 
205
217
  #. TRANSLATORS "puppet apply" is a program command and should not be translated
206
218
  #. TRANSLATORS "puppet apply" is a program command and should not be translated
207
- #: ../lib/puppet/application/apply.rb:207 ../lib/puppet/application/apply.rb:322
219
+ #: ../lib/puppet/application/apply.rb:207 ../lib/puppet/application/apply.rb:320
208
220
  msgid "For puppet apply"
209
221
  msgstr ""
210
222
 
@@ -212,27 +224,27 @@ msgstr ""
212
224
  msgid "%{file} is not readable"
213
225
  msgstr ""
214
226
 
215
- #: ../lib/puppet/application/apply.rb:293 ../lib/puppet/application/script.rb:239
227
+ #: ../lib/puppet/application/apply.rb:286 ../lib/puppet/application/script.rb:239
216
228
  msgid "Exiting"
217
229
  msgstr ""
218
230
 
219
- #: ../lib/puppet/application/apply.rb:332
231
+ #: ../lib/puppet/application/apply.rb:330
220
232
  msgid "Could not deserialize catalog from %{format}: %{detail}"
221
233
  msgstr ""
222
234
 
223
- #: ../lib/puppet/application/apply.rb:353 ../lib/puppet/application/script.rb:144
235
+ #: ../lib/puppet/application/apply.rb:351 ../lib/puppet/application/script.rb:144
224
236
  msgid "Could not find facts for %{node}"
225
237
  msgstr ""
226
238
 
227
- #: ../lib/puppet/application/apply.rb:365 ../lib/puppet/application/script.rb:152
239
+ #: ../lib/puppet/application/apply.rb:363 ../lib/puppet/application/script.rb:152
228
240
  msgid "Could not find node %{node}"
229
241
  msgstr ""
230
242
 
231
- #: ../lib/puppet/application/apply.rb:378 ../lib/puppet/application/script.rb:137
243
+ #: ../lib/puppet/application/apply.rb:376 ../lib/puppet/application/script.rb:137
232
244
  msgid "Could not find file %{manifest}"
233
245
  msgstr ""
234
246
 
235
- #: ../lib/puppet/application/apply.rb:379
247
+ #: ../lib/puppet/application/apply.rb:377
236
248
  msgid "Only one file can be applied per run. Skipping %{files}"
237
249
  msgstr ""
238
250
 
@@ -240,7 +252,7 @@ msgstr ""
240
252
  msgid "Manage certificates and requests (Disabled)"
241
253
  msgstr ""
242
254
 
243
- #: ../lib/puppet/application/describe.rb:175
255
+ #: ../lib/puppet/application/describe.rb:177
244
256
  msgid "Display help about resource types"
245
257
  msgstr ""
246
258
 
@@ -354,41 +366,30 @@ msgstr ""
354
366
  msgid "Store and retrieve files in a filebucket"
355
367
  msgstr ""
356
368
 
357
- #: ../lib/puppet/application/filebucket.rb:208
369
+ #: ../lib/puppet/application/filebucket.rb:221
358
370
  msgid "You must specify a file to back up"
359
371
  msgstr ""
360
372
 
361
- #: ../lib/puppet/application/filebucket.rb:212
373
+ #: ../lib/puppet/application/filebucket.rb:225
362
374
  msgid "%{file}: no such file"
363
375
  msgstr ""
364
376
 
365
- #: ../lib/puppet/application/filebucket.rb:216
377
+ #: ../lib/puppet/application/filebucket.rb:229
366
378
  msgid "%{file}: cannot read file"
367
379
  msgstr ""
368
380
 
369
- #: ../lib/puppet/application/filebucket.rb:238 ../lib/puppet/application/filebucket.rb:261
381
+ #: ../lib/puppet/application/filebucket.rb:251 ../lib/puppet/application/filebucket.rb:274
370
382
  msgid "Need exactly two arguments: filebucket diff <file_a> <file_b>"
371
383
  msgstr ""
372
384
 
373
- #: ../lib/puppet/application/filebucket.rb:258
385
+ #: ../lib/puppet/application/filebucket.rb:271
374
386
  msgid "Comparing %{checksum_a} %{checksum_b} %{file_a} %{file_b}"
375
387
  msgstr ""
376
388
 
377
- #: ../lib/puppet/application/filebucket.rb:272
389
+ #: ../lib/puppet/application/filebucket.rb:285
378
390
  msgid "Cancelling"
379
391
  msgstr ""
380
392
 
381
- #. TRANSLATORS 'server_list' is the name of a setting and should not be translated
382
- #: ../lib/puppet/application/filebucket.rb:293
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:300 ../lib/puppet/indirector/request.rb:218
389
- msgid "Selected server from the `server` setting: %{server}"
390
- msgstr ""
391
-
392
393
  #: ../lib/puppet/application/lookup.rb:8
393
394
  msgid "Run 'puppet lookup --help' for more details"
394
395
  msgstr ""
@@ -523,90 +524,85 @@ msgstr ""
523
524
  msgid "Removed %{label} %{path}"
524
525
  msgstr ""
525
526
 
526
- #: ../lib/puppet/configurer.rb:22
527
+ #: ../lib/puppet/configurer.rb:21
527
528
  msgid "Puppet configuration client"
528
529
  msgstr ""
529
530
 
530
- #: ../lib/puppet/configurer.rb:45
531
+ #: ../lib/puppet/configurer.rb:44
531
532
  msgid "Removing corrupt state file %{file}: %{detail}"
532
533
  msgstr ""
533
534
 
534
- #: ../lib/puppet/configurer.rb:50
535
+ #: ../lib/puppet/configurer.rb:49
535
536
  msgid "Cannot remove %{file}: %{detail}"
536
537
  msgstr ""
537
538
 
538
- #: ../lib/puppet/configurer.rb:73
539
+ #: ../lib/puppet/configurer.rb:72
539
540
  msgid "Using cached catalog from environment '%{environment}'"
540
541
  msgstr ""
541
542
 
542
- #: ../lib/puppet/configurer.rb:79
543
+ #: ../lib/puppet/configurer.rb:78
543
544
  msgid "Not using cache on failed catalog"
544
545
  msgstr ""
545
546
 
546
- #: ../lib/puppet/configurer.rb:88
547
+ #: ../lib/puppet/configurer.rb:87
547
548
  msgid "Not using cached catalog because its environment '%{catalog_env}' does not match '%{local_env}'"
548
549
  msgstr ""
549
550
 
550
- #: ../lib/puppet/configurer.rb:93 ../lib/puppet/configurer.rb:176
551
+ #: ../lib/puppet/configurer.rb:92 ../lib/puppet/configurer.rb:174
551
552
  msgid "Using cached catalog from environment '%{catalog_env}'"
552
553
  msgstr ""
553
554
 
554
- #: ../lib/puppet/configurer.rb:169
555
+ #: ../lib/puppet/configurer.rb:167
555
556
  msgid "Could not retrieve catalog; skipping run"
556
557
  msgstr ""
557
558
 
558
- #: ../lib/puppet/configurer.rb:185
559
+ #: ../lib/puppet/configurer.rb:183
559
560
  msgid "Applied catalog in %{seconds} seconds"
560
561
  msgstr ""
561
562
 
562
- #: ../lib/puppet/configurer.rb:225 ../lib/puppet/http/resolver/server_list.rb:19
563
+ #: ../lib/puppet/configurer.rb:219 ../lib/puppet/http/resolver/server_list.rb:68
563
564
  msgid "Could not select a functional puppet master from server_list: '%{server_list}'"
564
565
  msgstr ""
565
566
 
566
- #. TRANSLATORS 'server_list' is the name of a setting and should not be translated
567
- #: ../lib/puppet/configurer.rb:228
568
- msgid "Selected puppet server from the `server_list` setting: %{server}:%{port}"
569
- msgstr ""
570
-
571
- #: ../lib/puppet/configurer.rb:260
567
+ #: ../lib/puppet/configurer.rb:256
572
568
  msgid "Local environment: '%{local_env}' doesn't match the environment of the cached catalog '%{catalog_env}', switching agent to '%{catalog_env}'."
573
569
  msgstr ""
574
570
 
575
- #: ../lib/puppet/configurer.rb:305
571
+ #: ../lib/puppet/configurer.rb:301
576
572
  msgid "Local environment: '%{local_env}' doesn't match server specified node environment '%{node_env}', switching agent to '%{node_env}'."
577
573
  msgstr ""
578
574
 
579
- #: ../lib/puppet/configurer.rb:310
575
+ #: ../lib/puppet/configurer.rb:316
580
576
  msgid "Using configured environment '%{env}'"
581
577
  msgstr ""
582
578
 
583
- #: ../lib/puppet/configurer.rb:314
579
+ #: ../lib/puppet/configurer.rb:320
584
580
  msgid "Unable to fetch my node definition, but the agent run will continue:"
585
581
  msgstr ""
586
582
 
587
- #: ../lib/puppet/configurer.rb:343
583
+ #: ../lib/puppet/configurer.rb:348
588
584
  msgid "Not using catalog because its environment '%{catalog_env}' does not match agent specified environment '%{local_env}' and strict_environment_mode is set"
589
585
  msgstr ""
590
586
 
591
- #: ../lib/puppet/configurer.rb:354
587
+ #: ../lib/puppet/configurer.rb:359
592
588
  msgid "Catalog environment didn't stabilize after %{tries} fetches, aborting run"
593
589
  msgstr ""
594
590
 
595
- #: ../lib/puppet/configurer.rb:356
591
+ #: ../lib/puppet/configurer.rb:361
596
592
  msgid "Local environment: '%{local_env}' doesn't match server specified environment '%{catalog_env}', restarting agent run with environment '%{catalog_env}'"
597
593
  msgstr ""
598
594
 
599
- #: ../lib/puppet/configurer.rb:397
595
+ #: ../lib/puppet/configurer.rb:402
600
596
  msgid "Failed to apply catalog: %{detail}"
601
597
  msgstr ""
602
598
 
603
- #: ../lib/puppet/configurer.rb:430 ../lib/puppet/http/resolver/server_list.rb:29
599
+ #: ../lib/puppet/configurer.rb:431 ../lib/puppet/http/resolver/server_list.rb:89
604
600
  msgid "Puppet server %{host}:%{port} is unavailable: %{code} %{reason}"
605
601
  msgstr ""
606
602
 
607
603
  #. TRANSLATORS 'server_list' is the name of a setting and should not be translated
608
604
  #. TRANSLATORS 'server_list' is the name of a setting and should not be translated
609
- #: ../lib/puppet/configurer.rb:434 ../lib/puppet/http/resolver/server_list.rb:35
605
+ #: ../lib/puppet/configurer.rb:435 ../lib/puppet/http/resolver/server_list.rb:95
610
606
  msgid "Unable to connect to server from server_list setting: %{detail}"
611
607
  msgstr ""
612
608
 
@@ -634,7 +630,7 @@ msgstr ""
634
630
  msgid "Could not retrieve catalog from cache: %{detail}"
635
631
  msgstr ""
636
632
 
637
- #: ../lib/puppet/configurer.rb:535
633
+ #: ../lib/puppet/configurer.rb:536
638
634
  msgid "Could not retrieve catalog from remote server: %{detail}"
639
635
  msgstr ""
640
636
 
@@ -642,7 +638,11 @@ msgstr ""
642
638
  msgid "Retrieving %{name}"
643
639
  msgstr ""
644
640
 
645
- #: ../lib/puppet/configurer/downloader.rb:20
641
+ #: ../lib/puppet/configurer/downloader.rb:21
642
+ msgid "Failed to retrieve %{name}: %{detail}"
643
+ msgstr ""
644
+
645
+ #: ../lib/puppet/configurer/downloader.rb:32
646
646
  msgid "Could not retrieve %{name}: %{detail}"
647
647
  msgstr ""
648
648
 
@@ -666,20 +666,20 @@ msgstr ""
666
666
  msgid "Attempted to pop, but already at root of the context stack."
667
667
  msgstr ""
668
668
 
669
- #: ../lib/puppet/context/trusted_information.rb:58
669
+ #: ../lib/puppet/context/trusted_information.rb:53
670
670
  msgid "TrustedInformation expected a certificate, but none was given."
671
671
  msgstr ""
672
672
 
673
- #: ../lib/puppet/context/trusted_information.rb:98 ../lib/puppet/parser/scope.rb:835
673
+ #: ../lib/puppet/context/trusted_information.rb:104 ../lib/puppet/parser/scope.rb:835
674
674
  msgid "Unsupported data type: '%{klass}'"
675
675
  msgstr ""
676
676
 
677
- #: ../lib/puppet/daemon.rb:83
678
- msgid "Cannot reexec unless ARGV arguments are set"
677
+ #: ../lib/puppet/daemon.rb:26
678
+ msgid "Daemons must have an agent"
679
679
  msgstr ""
680
680
 
681
- #: ../lib/puppet/daemon.rb:144
682
- msgid "Daemons must have an agent, server, or both"
681
+ #: ../lib/puppet/daemon.rb:81
682
+ msgid "Cannot reexec unless ARGV arguments are set"
683
683
  msgstr ""
684
684
 
685
685
  #: ../lib/puppet/datatypes.rb:133
@@ -698,41 +698,46 @@ msgstr ""
698
698
  msgid "a data type can only have one implementation"
699
699
  msgstr ""
700
700
 
701
- #: ../lib/puppet/defaults.rb:171
701
+ #: ../lib/puppet/defaults.rb:178
702
702
  msgid "Cannot disable unrecognized warning types '%{invalid}'."
703
703
  msgstr ""
704
704
 
705
- #: ../lib/puppet/defaults.rb:172
705
+ #: ../lib/puppet/defaults.rb:179
706
706
  msgid "Valid values are '%{values}'."
707
707
  msgstr ""
708
708
 
709
709
  #. TRANSLATORS 'data_binding_terminus' is a setting and should not be translated
710
- #: ../lib/puppet/defaults.rb:540
710
+ #: ../lib/puppet/defaults.rb:546
711
711
  msgid "Setting 'data_binding_terminus' is deprecated."
712
712
  msgstr ""
713
713
 
714
714
  #. TRANSLATORS 'hiera' should not be translated
715
- #: ../lib/puppet/defaults.rb:542
715
+ #: ../lib/puppet/defaults.rb:548
716
716
  msgid "Convert custom terminus to hiera 5 API."
717
717
  msgstr ""
718
718
 
719
719
  #. TRANSLATORS 'environment_data_provider' is a setting and should not be translated
720
- #: ../lib/puppet/defaults.rb:732
720
+ #: ../lib/puppet/defaults.rb:747
721
721
  msgid "Setting 'environment_data_provider' is deprecated."
722
722
  msgstr ""
723
723
 
724
- #: ../lib/puppet/defaults.rb:813
724
+ #: ../lib/puppet/defaults.rb:830
725
725
  msgid "Certificate names must be lower case"
726
726
  msgstr ""
727
727
 
728
- #: ../lib/puppet/defaults.rb:998
728
+ #: ../lib/puppet/defaults.rb:1024
729
729
  msgid "Setting 'ssl_client_ca_auth' is deprecated."
730
730
  msgstr ""
731
731
 
732
- #: ../lib/puppet/defaults.rb:1077 ../lib/puppet/settings/enum_setting.rb:13 ../lib/puppet/settings/symbolic_enum_setting.rb:14
732
+ #: ../lib/puppet/defaults.rb:1103 ../lib/puppet/settings/enum_setting.rb:13 ../lib/puppet/settings/symbolic_enum_setting.rb:14
733
733
  msgid "Invalid value '%{value}' for parameter %{name}. Allowed values are '%{allowed_values}'"
734
734
  msgstr ""
735
735
 
736
+ #. TRANSLATORS 'pluginsync' is a setting and should not be translated
737
+ #: ../lib/puppet/defaults.rb:1969
738
+ msgid "Setting 'pluginsync' is deprecated."
739
+ msgstr ""
740
+
736
741
  #: ../lib/puppet/error.rb:77
737
742
  msgid "Could not parse for environment %{environment}: %{message}"
738
743
  msgstr ""
@@ -1088,49 +1093,53 @@ msgstr ""
1088
1093
  msgid "The version of the subcommand for which to show help."
1089
1094
  msgstr ""
1090
1095
 
1096
+ #: ../lib/puppet/face/help.rb:28
1097
+ msgid "Whether to render the help text in ronn format."
1098
+ msgstr ""
1099
+
1091
1100
  #. TRANSLATORS 'puppet help' is a command line and should not be translated
1092
- #: ../lib/puppet/face/help.rb:37
1101
+ #: ../lib/puppet/face/help.rb:44
1093
1102
  msgid "The 'puppet help' command takes two (optional) arguments: a subcommand and an action"
1094
1103
  msgstr ""
1095
1104
 
1096
1105
  #. TRANSLATORS '--version' is a command line option and should not be translated
1097
- #: ../lib/puppet/face/help.rb:47
1106
+ #: ../lib/puppet/face/help.rb:54
1098
1107
  msgid "Supplying a '--version' only makes sense when a Faces subcommand is given"
1099
1108
  msgstr ""
1100
1109
 
1101
- #: ../lib/puppet/face/help.rb:55
1110
+ #: ../lib/puppet/face/help.rb:62
1102
1111
  msgid "The legacy subcommand '%{sub_command}' does not support supplying an action"
1103
1112
  msgstr ""
1104
1113
 
1105
- #: ../lib/puppet/face/help.rb:76
1114
+ #: ../lib/puppet/face/help.rb:102
1106
1115
  msgid "Could not load help for the application %{application_name}."
1107
1116
  msgstr ""
1108
1117
 
1109
- #: ../lib/puppet/face/help.rb:77 ../lib/puppet/face/help.rb:89
1118
+ #: ../lib/puppet/face/help.rb:103 ../lib/puppet/face/help.rb:115
1110
1119
  msgid "Please check the error logs for more information."
1111
1120
  msgstr ""
1112
1121
 
1113
- #: ../lib/puppet/face/help.rb:79 ../lib/puppet/face/help.rb:91
1122
+ #: ../lib/puppet/face/help.rb:105 ../lib/puppet/face/help.rb:117
1114
1123
  msgid "Detail: \"%{detail}\""
1115
1124
  msgstr ""
1116
1125
 
1117
- #: ../lib/puppet/face/help.rb:88
1126
+ #: ../lib/puppet/face/help.rb:114
1118
1127
  msgid "Could not load help for the face %{face_name}."
1119
1128
  msgstr ""
1120
1129
 
1121
- #: ../lib/puppet/face/help.rb:100
1130
+ #: ../lib/puppet/face/help.rb:126
1122
1131
  msgid "Unable to load action %{actionname} from %{face}"
1123
1132
  msgstr ""
1124
1133
 
1125
- #: ../lib/puppet/face/help.rb:144
1134
+ #: ../lib/puppet/face/help.rb:170
1126
1135
  msgid "(Deprecated)"
1127
1136
  msgstr ""
1128
1137
 
1129
- #: ../lib/puppet/face/help.rb:147 ../lib/puppet/face/help.rb:159
1138
+ #: ../lib/puppet/face/help.rb:173 ../lib/puppet/face/help.rb:185
1130
1139
  msgid "!%{sub_command}! Subcommand unavailable due to error."
1131
1140
  msgstr ""
1132
1141
 
1133
- #: ../lib/puppet/face/help.rb:148 ../lib/puppet/face/help.rb:160
1142
+ #: ../lib/puppet/face/help.rb:174 ../lib/puppet/face/help.rb:186
1134
1143
  msgid "Check error logs."
1135
1144
  msgstr ""
1136
1145
 
@@ -1287,15 +1296,19 @@ msgstr ""
1287
1296
  msgid "Search the Puppet Forge for a module."
1288
1297
  msgstr ""
1289
1298
 
1290
- #: ../lib/puppet/face/module/search.rb:12
1299
+ #: ../lib/puppet/face/module/search.rb:14
1291
1300
  msgid "Array of module metadata hashes"
1292
1301
  msgstr ""
1293
1302
 
1294
- #: ../lib/puppet/face/module/search.rb:22
1303
+ #: ../lib/puppet/face/module/search.rb:24
1295
1304
  msgid "<search_term>"
1296
1305
  msgstr ""
1297
1306
 
1298
- #: ../lib/puppet/face/module/search.rb:34
1307
+ #: ../lib/puppet/face/module/search.rb:27
1308
+ msgid "This action has been deprecated. Please use the Puppet Forge to search for modules."
1309
+ msgstr ""
1310
+
1311
+ #: ../lib/puppet/face/module/search.rb:37
1299
1312
  msgid "No results found for '%{term}'."
1300
1313
  msgstr ""
1301
1314
 
@@ -1758,7 +1771,7 @@ msgstr ""
1758
1771
  msgid "No task specified"
1759
1772
  msgstr ""
1760
1773
 
1761
- #: ../lib/puppet/file_serving/terminus_selector.rb:29
1774
+ #: ../lib/puppet/file_serving/terminus_selector.rb:28
1762
1775
  msgid "URI protocol '%{protocol}' is not currently supported for file serving"
1763
1776
  msgstr ""
1764
1777
 
@@ -1778,11 +1791,11 @@ msgstr ""
1778
1791
  msgid "Timeout waiting for exclusive lock on %{path}"
1779
1792
  msgstr ""
1780
1793
 
1781
- #: ../lib/puppet/file_system/jruby.rb:18 ../lib/puppet/file_system/windows.rb:127 ../lib/puppet/util.rb:681
1794
+ #: ../lib/puppet/file_system/jruby.rb:18 ../lib/puppet/file_system/windows.rb:127 ../lib/puppet/util.rb:706
1782
1795
  msgid "Is a directory: %{directory}"
1783
1796
  msgstr ""
1784
1797
 
1785
- #: ../lib/puppet/file_system/memory_impl.rb:68
1798
+ #: ../lib/puppet/file_system/memory_impl.rb:81
1786
1799
  msgid "Unable to find registered object for %{path}"
1787
1800
  msgstr ""
1788
1801
 
@@ -1814,7 +1827,7 @@ msgstr ""
1814
1827
  msgid "unexpected prefix_suffix: %{value}"
1815
1828
  msgstr ""
1816
1829
 
1817
- #: ../lib/puppet/file_system/uniquefile.rb:140
1830
+ #: ../lib/puppet/file_system/uniquefile.rb:136
1818
1831
  msgid "cannot generate temporary name using `%{basename}' under `%{tmpdir}'"
1819
1832
  msgstr ""
1820
1833
 
@@ -2075,6 +2088,10 @@ msgstr ""
2075
2088
  msgid "Unable to parse %{message}"
2076
2089
  msgstr ""
2077
2090
 
2091
+ #: ../lib/puppet/functions/eyaml_lookup_key.rb:93
2092
+ msgid "hiera-eyaml backend error decrypting %{data} when looking up %{key} in %{path}. Error was %{message}"
2093
+ msgstr ""
2094
+
2078
2095
  #: ../lib/puppet/functions/floor.rb:27
2079
2096
  msgid "The floor() function's auto conversion of String to Float is deprecated - change to convert input before calling"
2080
2097
  msgstr ""
@@ -2222,27 +2239,27 @@ msgstr ""
2222
2239
  msgid "Try the '--graph' option and opening the resulting '.dot' file in OmniGraffle or GraphViz"
2223
2240
  msgstr ""
2224
2241
 
2225
- #: ../lib/puppet/http/client.rb:32
2242
+ #: ../lib/puppet/http/client.rb:90
2226
2243
  msgid "Request to %{uri} timed out connect operation after %{elapsed} seconds"
2227
2244
  msgstr ""
2228
2245
 
2229
- #: ../lib/puppet/http/client.rb:34
2246
+ #: ../lib/puppet/http/client.rb:92
2230
2247
  msgid "Request to %{uri} timed out read operation after %{elapsed} seconds"
2231
2248
  msgstr ""
2232
2249
 
2233
- #: ../lib/puppet/http/client.rb:36
2250
+ #: ../lib/puppet/http/client.rb:94
2234
2251
  msgid "Request to %{uri} interrupted after %{elapsed} seconds"
2235
2252
  msgstr ""
2236
2253
 
2237
- #: ../lib/puppet/http/client.rb:42
2254
+ #: ../lib/puppet/http/client.rb:100
2238
2255
  msgid "Request to %{uri} failed after %{elapsed} seconds: %{message}"
2239
2256
  msgstr ""
2240
2257
 
2241
- #: ../lib/puppet/http/client.rb:157
2258
+ #: ../lib/puppet/http/client.rb:326
2242
2259
  msgid "Sleeping for %{interval} seconds before retrying the request"
2243
2260
  msgstr ""
2244
2261
 
2245
- #: ../lib/puppet/http/client.rb:198 ../lib/puppet/indirector/request.rb:142
2262
+ #: ../lib/puppet/http/client.rb:369 ../lib/puppet/indirector/request.rb:142
2246
2263
  msgid "HTTP REST queries cannot handle values of type '%{klass}'"
2247
2264
  msgstr ""
2248
2265
 
@@ -2254,24 +2271,32 @@ msgstr ""
2254
2271
  msgid "Too many HTTP retries for %{addr}"
2255
2272
  msgstr ""
2256
2273
 
2257
- #: ../lib/puppet/http/redirector.rb:42
2274
+ #: ../lib/puppet/http/redirector.rb:78
2258
2275
  msgid "Location response header is missing"
2259
2276
  msgstr ""
2260
2277
 
2261
- #: ../lib/puppet/http/redirector.rb:46
2278
+ #: ../lib/puppet/http/redirector.rb:82
2262
2279
  msgid "Location URI is invalid: %{detail}"
2263
2280
  msgstr ""
2264
2281
 
2265
- #: ../lib/puppet/http/retry_after_handler.rb:44
2282
+ #: ../lib/puppet/http/retry_after_handler.rb:83
2266
2283
  msgid "Failed to parse Retry-After header '%{retry_after}' as an integer or RFC 2822 date"
2267
2284
  msgstr ""
2268
2285
 
2269
- #: ../lib/puppet/http/service.rb:66 ../lib/puppet/indirector/rest.rb:276
2286
+ #: ../lib/puppet/http/service.rb:119
2287
+ msgid "Ignoring extra header \"%{name}\" as it was previously set."
2288
+ msgstr ""
2289
+
2290
+ #: ../lib/puppet/http/service.rb:122
2291
+ msgid "Ignoring extra header \"%{name}\" as it has no value."
2292
+ msgstr ""
2293
+
2294
+ #: ../lib/puppet/http/service.rb:145 ../lib/puppet/indirector/rest.rb:288
2270
2295
  msgid "No content type in http response; cannot parse"
2271
2296
  msgstr ""
2272
2297
 
2273
2298
  #. TRANSLATORS "pson", "preferred_serialization_format", and "puppetserver" should not be translated
2274
- #: ../lib/puppet/http/service/report.rb:31
2299
+ #: ../lib/puppet/http/service/report.rb:61
2275
2300
  msgid "To submit reports to a server running puppetserver %{server_version}, set preferred_serialization_format to pson"
2276
2301
  msgstr ""
2277
2302
 
@@ -2283,124 +2308,124 @@ msgstr ""
2283
2308
  msgid "Already handling indirection for %{current}; cannot also handle %{next}"
2284
2309
  msgstr ""
2285
2310
 
2286
- #: ../lib/puppet/indirector/catalog/compiler.rb:25
2311
+ #: ../lib/puppet/indirector/catalog/compiler.rb:26
2287
2312
  msgid "Facts but no fact format provided for %{request}"
2288
2313
  msgstr ""
2289
2314
 
2290
- #: ../lib/puppet/indirector/catalog/compiler.rb:28
2315
+ #: ../lib/puppet/indirector/catalog/compiler.rb:29
2291
2316
  msgid "Found facts"
2292
2317
  msgstr ""
2293
2318
 
2294
- #: ../lib/puppet/indirector/catalog/compiler.rb:33
2319
+ #: ../lib/puppet/indirector/catalog/compiler.rb:34
2295
2320
  msgid "Catalog for %{request} was requested with fact definition for the wrong node (%{fact_name})."
2296
2321
  msgstr ""
2297
2322
 
2298
- #: ../lib/puppet/indirector/catalog/compiler.rb:70
2323
+ #: ../lib/puppet/indirector/catalog/compiler.rb:71
2299
2324
  msgid "Setup server facts for compiling"
2300
2325
  msgstr ""
2301
2326
 
2302
- #: ../lib/puppet/indirector/catalog/compiler.rb:94
2327
+ #: ../lib/puppet/indirector/catalog/compiler.rb:95
2303
2328
  msgid "Unsupported facts format"
2304
2329
  msgstr ""
2305
2330
 
2306
2331
  #. TRANSLATORS Inlining refers to adding additional metadata (in this case we are not inlining)
2307
- #: ../lib/puppet/indirector/catalog/compiler.rb:135
2332
+ #: ../lib/puppet/indirector/catalog/compiler.rb:136
2308
2333
  msgid "Not inlining absent resource"
2309
2334
  msgstr ""
2310
2335
 
2311
2336
  #. TRANSLATORS Inlining refers to adding additional metadata (in this case we are not inlining)
2312
- #: ../lib/puppet/indirector/catalog/compiler.rb:138
2337
+ #: ../lib/puppet/indirector/catalog/compiler.rb:139
2313
2338
  msgid "Not inlining resource without sources"
2314
2339
  msgstr ""
2315
2340
 
2316
2341
  #. TRANSLATORS Inlining refers to adding additional metadata (in this case we are not inlining)
2317
- #: ../lib/puppet/indirector/catalog/compiler.rb:141
2342
+ #: ../lib/puppet/indirector/catalog/compiler.rb:142
2318
2343
  msgid "Not inlining unsupported source scheme"
2319
2344
  msgstr ""
2320
2345
 
2321
2346
  #. TRANSLATORS Inlining refers to adding additional metadata (in this case we are not inlining)
2322
- #: ../lib/puppet/indirector/catalog/compiler.rb:163
2347
+ #: ../lib/puppet/indirector/catalog/compiler.rb:164
2323
2348
  msgid "Not inlining file outside environment"
2324
2349
  msgstr ""
2325
2350
 
2326
2351
  #. TRANSLATORS Inlining refers to adding additional metadata
2327
- #: ../lib/puppet/indirector/catalog/compiler.rb:169
2352
+ #: ../lib/puppet/indirector/catalog/compiler.rb:170
2328
2353
  msgid "Inlining file metadata"
2329
2354
  msgstr ""
2330
2355
 
2331
- #: ../lib/puppet/indirector/catalog/compiler.rb:257
2356
+ #: ../lib/puppet/indirector/catalog/compiler.rb:259
2332
2357
  msgid "Could not get metadata for %{resource}"
2333
2358
  msgstr ""
2334
2359
 
2335
- #: ../lib/puppet/indirector/catalog/compiler.rb:278
2360
+ #: ../lib/puppet/indirector/catalog/compiler.rb:280
2336
2361
  msgid "Unable to find a common checksum type between agent '%{agent_type}' and master '%{master_type}'."
2337
2362
  msgstr ""
2338
2363
 
2339
- #: ../lib/puppet/indirector/catalog/compiler.rb:285
2364
+ #: ../lib/puppet/indirector/catalog/compiler.rb:287
2340
2365
  msgid "Compiled static catalog for %{node} in environment %{environment} in %%{seconds} seconds"
2341
2366
  msgstr ""
2342
2367
 
2343
- #: ../lib/puppet/indirector/catalog/compiler.rb:286
2368
+ #: ../lib/puppet/indirector/catalog/compiler.rb:288
2344
2369
  msgid "Compiled static catalog for %{node} in environment %{environment}"
2345
2370
  msgstr ""
2346
2371
 
2347
- #: ../lib/puppet/indirector/catalog/compiler.rb:288
2372
+ #: ../lib/puppet/indirector/catalog/compiler.rb:290
2348
2373
  msgid "Compiled static catalog for %{node} in %%{seconds} seconds"
2349
2374
  msgstr ""
2350
2375
 
2351
- #: ../lib/puppet/indirector/catalog/compiler.rb:289
2376
+ #: ../lib/puppet/indirector/catalog/compiler.rb:291
2352
2377
  msgid "Compiled static catalog for %{node}"
2353
2378
  msgstr ""
2354
2379
 
2355
- #: ../lib/puppet/indirector/catalog/compiler.rb:294
2380
+ #: ../lib/puppet/indirector/catalog/compiler.rb:296
2356
2381
  msgid "Compiled catalog for %{node} in environment %{environment} in %%{seconds} seconds"
2357
2382
  msgstr ""
2358
2383
 
2359
- #: ../lib/puppet/indirector/catalog/compiler.rb:295
2384
+ #: ../lib/puppet/indirector/catalog/compiler.rb:297
2360
2385
  msgid "Compiled catalog for %{node} in environment %{environment}"
2361
2386
  msgstr ""
2362
2387
 
2363
- #: ../lib/puppet/indirector/catalog/compiler.rb:297
2388
+ #: ../lib/puppet/indirector/catalog/compiler.rb:299
2364
2389
  msgid "Compiled catalog for %{node} in %%{seconds} seconds"
2365
2390
  msgstr ""
2366
2391
 
2367
- #: ../lib/puppet/indirector/catalog/compiler.rb:298
2392
+ #: ../lib/puppet/indirector/catalog/compiler.rb:300
2368
2393
  msgid "Compiled catalog for %{node}"
2369
2394
  msgstr ""
2370
2395
 
2371
2396
  #. TRANSLATORS Inlined refers to adding additional metadata
2372
- #: ../lib/puppet/indirector/catalog/compiler.rb:320
2397
+ #: ../lib/puppet/indirector/catalog/compiler.rb:322
2373
2398
  msgid "Inlined resource metadata into static catalog for %{node} in environment %{environment} in %%{seconds} seconds"
2374
2399
  msgstr ""
2375
2400
 
2376
2401
  #. TRANSLATORS Inlined refers to adding additional metadata
2377
- #: ../lib/puppet/indirector/catalog/compiler.rb:322
2402
+ #: ../lib/puppet/indirector/catalog/compiler.rb:324
2378
2403
  msgid "Inlined resource metadata into static catalog for %{node} in environment %{environment}"
2379
2404
  msgstr ""
2380
2405
 
2381
2406
  #. TRANSLATORS Inlined refers to adding additional metadata
2382
- #: ../lib/puppet/indirector/catalog/compiler.rb:325
2407
+ #: ../lib/puppet/indirector/catalog/compiler.rb:327
2383
2408
  msgid "Inlined resource metadata into static catalog for %{node} in %%{seconds} seconds"
2384
2409
  msgstr ""
2385
2410
 
2386
2411
  #. TRANSLATORS Inlined refers to adding additional metadata
2387
- #: ../lib/puppet/indirector/catalog/compiler.rb:327
2412
+ #: ../lib/puppet/indirector/catalog/compiler.rb:329
2388
2413
  msgid "Inlined resource metadata into static catalog for %{node}"
2389
2414
  msgstr ""
2390
2415
 
2391
- #: ../lib/puppet/indirector/catalog/compiler.rb:344
2416
+ #: ../lib/puppet/indirector/catalog/compiler.rb:346
2392
2417
  msgid "Found node information"
2393
2418
  msgstr ""
2394
2419
 
2395
- #: ../lib/puppet/indirector/catalog/compiler.rb:352
2420
+ #: ../lib/puppet/indirector/catalog/compiler.rb:354
2396
2421
  msgid "Failed when searching for node %{name}: %{detail}"
2397
2422
  msgstr ""
2398
2423
 
2399
- #: ../lib/puppet/indirector/catalog/compiler.rb:372
2424
+ #: ../lib/puppet/indirector/catalog/compiler.rb:374
2400
2425
  msgid "Invalid option use_node for a remote request"
2401
2426
  msgstr ""
2402
2427
 
2403
- #: ../lib/puppet/indirector/catalog/compiler.rb:391
2428
+ #: ../lib/puppet/indirector/catalog/compiler.rb:393
2404
2429
  msgid "Could not find node '%{name}'; cannot compile"
2405
2430
  msgstr ""
2406
2431
 
@@ -2420,6 +2445,10 @@ msgstr ""
2420
2445
  msgid "Unable to serialize catalog to json, retrying with pson"
2421
2446
  msgstr ""
2422
2447
 
2448
+ #: ../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:146 ../lib/puppet/indirector/status/rest.rb:21
2449
+ msgid "Find %{uri} resulted in 404 with the message: %{body}"
2450
+ msgstr ""
2451
+
2423
2452
  #: ../lib/puppet/indirector/exec.rb:11
2424
2453
  msgid "Exec commands must be an array"
2425
2454
  msgstr ""
@@ -2520,7 +2549,7 @@ msgstr ""
2520
2549
  msgid "You cannot save facts to the code store; it is only used for getting facts from a remote device"
2521
2550
  msgstr ""
2522
2551
 
2523
- #: ../lib/puppet/indirector/facts/rest.rb:8 ../lib/puppet/indirector/rest.rb:186
2552
+ #: ../lib/puppet/indirector/facts/rest.rb:30 ../lib/puppet/indirector/rest.rb:198
2524
2553
  msgid "PUT does not accept options"
2525
2554
  msgstr ""
2526
2555
 
@@ -2571,7 +2600,11 @@ msgstr ""
2571
2600
  msgid "Invalid checksum %{checksum}"
2572
2601
  msgstr ""
2573
2602
 
2574
- #: ../lib/puppet/indirector/file_metadata/http.rb:25
2603
+ #: ../lib/puppet/indirector/file_content/http.rb:14
2604
+ msgid "Puppet::Indirector::FileContent::Http is deprecated. Use Puppet::HTTP::Client instead."
2605
+ msgstr ""
2606
+
2607
+ #: ../lib/puppet/indirector/file_metadata/http.rb:31
2575
2608
  msgid "cannot lookup multiple files"
2576
2609
  msgstr ""
2577
2610
 
@@ -2584,12 +2617,12 @@ msgid "Could not find filesystem info for file '%{request}' in environment %{env
2584
2617
  msgstr ""
2585
2618
 
2586
2619
  #. TRANSLATORS "Hiera" is the name of a code library and should not be translated
2587
- #: ../lib/puppet/indirector/hiera.rb:8
2620
+ #: ../lib/puppet/indirector/hiera.rb:12
2588
2621
  msgid "Hiera terminus not supported without hiera library"
2589
2622
  msgstr ""
2590
2623
 
2591
2624
  #. TRANSLATORS "merge" is a parameter name and should not be translated
2592
- #: ../lib/puppet/indirector/hiera.rb:68
2625
+ #: ../lib/puppet/indirector/hiera.rb:72
2593
2626
  msgid "Unrecognized value for request 'merge' parameter: '%{merge}'"
2594
2627
  msgstr ""
2595
2628
 
@@ -2747,10 +2780,18 @@ msgstr ""
2747
2780
  msgid "No report named '%{name}'"
2748
2781
  msgstr ""
2749
2782
 
2750
- #: ../lib/puppet/indirector/report/rest.rb:17
2783
+ #: ../lib/puppet/indirector/report/rest.rb:36
2751
2784
  msgid "Server version %{version} does not accept reports in '%{format}', use `preferred_serialization_format=pson`"
2752
2785
  msgstr ""
2753
2786
 
2787
+ #: ../lib/puppet/indirector/report/yaml.rb:19
2788
+ msgid "replace_file mode: %{mode} is invalid"
2789
+ msgstr ""
2790
+
2791
+ #: ../lib/puppet/indirector/report/yaml.rb:31 ../lib/puppet/indirector/yaml.rb:32
2792
+ msgid "Could not save %{indirection} %{request}: %{detail}"
2793
+ msgstr ""
2794
+
2754
2795
  #: ../lib/puppet/indirector/request.rb:103
2755
2796
  msgid "Could not find indirection '%{indirection}'"
2756
2797
  msgstr ""
@@ -2764,6 +2805,11 @@ msgstr ""
2764
2805
  msgid "Selected server from first entry of the `server_list` setting: %{server}"
2765
2806
  msgstr ""
2766
2807
 
2808
+ #. TRANSLATORS 'server' is the name of a setting and should not be translated
2809
+ #: ../lib/puppet/indirector/request.rb:218
2810
+ msgid "Selected server from the `server` setting: %{server}"
2811
+ msgstr ""
2812
+
2767
2813
  #. TRANSLATORS 'server_list' is the name of a setting and should not be translated
2768
2814
  #: ../lib/puppet/indirector/request.rb:231
2769
2815
  msgid "Selected port from the first entry of the `server_list` setting: %{port}"
@@ -2786,20 +2832,36 @@ msgstr ""
2786
2832
  msgid "Resource instance does not match request key"
2787
2833
  msgstr ""
2788
2834
 
2789
- #: ../lib/puppet/indirector/rest.rb:138
2790
- msgid "Find %{uri} resulted in 404 with the message: %{body}"
2835
+ #: ../lib/puppet/indirector/rest.rb:115
2836
+ msgid "Puppet::Indirector::Rest#find is deprecated. Use Puppet::HTTP::Client instead."
2837
+ msgstr ""
2838
+
2839
+ #: ../lib/puppet/indirector/rest.rb:154
2840
+ msgid "Puppet::Indirector::Rest#head is deprecated. Use Puppet::HTTP::Client instead."
2841
+ msgstr ""
2842
+
2843
+ #: ../lib/puppet/indirector/rest.rb:167
2844
+ msgid "Puppet::Indirector::Rest#search is deprecated. Use Puppet::HTTP::Client instead."
2845
+ msgstr ""
2846
+
2847
+ #: ../lib/puppet/indirector/rest.rb:181
2848
+ msgid "Puppet::Indirector::Rest#destroy is deprecated. Use Puppet::HTTP::Client instead."
2791
2849
  msgstr ""
2792
2850
 
2793
- #: ../lib/puppet/indirector/rest.rb:171
2851
+ #: ../lib/puppet/indirector/rest.rb:182
2794
2852
  msgid "DELETE does not accept options"
2795
2853
  msgstr ""
2796
2854
 
2855
+ #: ../lib/puppet/indirector/rest.rb:197
2856
+ msgid "Puppet::Indirector::Rest#save is deprecated. Use Puppet::HTTP::Client instead."
2857
+ msgstr ""
2858
+
2797
2859
  #. TRANSLATORS "PSON" should not be translated
2798
- #: ../lib/puppet/indirector/rest.rb:223
2860
+ #: ../lib/puppet/indirector/rest.rb:235
2799
2861
  msgid "Downgrading to PSON for future requests"
2800
2862
  msgstr ""
2801
2863
 
2802
- #: ../lib/puppet/indirector/rest.rb:265 ../lib/puppet/rest/response.rb:31
2864
+ #: ../lib/puppet/indirector/rest.rb:277 ../lib/puppet/rest/response.rb:31
2803
2865
  msgid "Error %{code} on SERVER: %{returned_message}"
2804
2866
  msgstr ""
2805
2867
 
@@ -2871,10 +2933,6 @@ msgstr ""
2871
2933
  msgid "You can only save objects that respond to :name"
2872
2934
  msgstr ""
2873
2935
 
2874
- #: ../lib/puppet/indirector/yaml.rb:32
2875
- msgid "Could not save %{indirection} %{request}: %{detail}"
2876
- msgstr ""
2877
-
2878
2936
  #: ../lib/puppet/info_service/class_information_service.rb:18
2879
2937
  msgid "Given argument must be a Hash"
2880
2938
  msgstr ""
@@ -3143,26 +3201,26 @@ msgid "Option %{option} conflicts with existing option %{conflict} on %{action}"
3143
3201
  msgstr ""
3144
3202
 
3145
3203
  #. TRANSLATORS 'Puppet::Type.newtype' should not be translated
3146
- #: ../lib/puppet/metatype/manager.rb:76
3204
+ #: ../lib/puppet/metatype/manager.rb:77
3147
3205
  msgid "Puppet::Type.newtype(%{name}) now expects a hash as the second argument, not %{argument}"
3148
3206
  msgstr ""
3149
3207
 
3150
3208
  #. TRANSLATORS 'new%{method}' will become a method name, do not translate this string
3151
- #: ../lib/puppet/metatype/manager.rb:111
3209
+ #: ../lib/puppet/metatype/manager.rb:110
3152
3210
  msgid "'new%{method}' method already exists; skipping"
3153
3211
  msgstr ""
3154
3212
 
3155
3213
  #. TRANSLATORS 'puppet/type/%{name}' should not be translated
3156
- #: ../lib/puppet/metatype/manager.rb:174
3214
+ #: ../lib/puppet/metatype/manager.rb:173
3157
3215
  msgid "Loaded puppet/type/%{name} but no class was created"
3158
3216
  msgstr ""
3159
3217
 
3160
3218
  #. TRANSLATORS 'metadata.json' is a specific file name and should not be translated.
3161
- #: ../lib/puppet/module.rb:222
3219
+ #: ../lib/puppet/module.rb:221
3162
3220
  msgid "%{name} has an invalid and unparsable metadata.json file. The parse error: %{error}"
3163
3221
  msgstr ""
3164
3222
 
3165
- #: ../lib/puppet/module.rb:468
3223
+ #: ../lib/puppet/module.rb:467
3166
3224
  msgid ""
3167
3225
  " Invalid module name '%{name}'; module names must match either:\n"
3168
3226
  " An installed module name (ex. modulename) matching the expression /^[a-z][a-z0-9_]*$/ -or-\n"
@@ -3902,26 +3960,50 @@ msgstr ""
3902
3960
  msgid "Not a valid indirection type"
3903
3961
  msgstr ""
3904
3962
 
3905
- #: ../lib/puppet/network/http/api/master/v3/environment.rb:11
3963
+ #: ../lib/puppet/network/http/api/master/v3/environment.rb:14
3906
3964
  msgid "%{env_name} is not a known environment"
3907
3965
  msgstr ""
3908
3966
 
3909
- #: ../lib/puppet/network/http/api/master/v3/environment.rb:40
3967
+ #: ../lib/puppet/network/http/api/master/v3/environment.rb:43
3910
3968
  msgid "Application %{application} assigns nodes to non-existent components: %{component_list}"
3911
3969
  msgstr ""
3912
3970
 
3913
- #: ../lib/puppet/network/http/api/master/v3/environment.rb:46
3971
+ #: ../lib/puppet/network/http/api/master/v3/environment.rb:49
3914
3972
  msgid "Application %{application} has components without assigned nodes: %{component_list}"
3915
3973
  msgstr ""
3916
3974
 
3917
- #: ../lib/puppet/network/http/api/master/v3/environment.rb:55
3975
+ #: ../lib/puppet/network/http/api/master/v3/environment.rb:58
3918
3976
  msgid "Application %{app} assigns multiple nodes to component %{comp}"
3919
3977
  msgstr ""
3920
3978
 
3921
- #: ../lib/puppet/network/http/compression.rb:30 ../lib/puppet/network/http/compression.rb:43
3979
+ #: ../lib/puppet/network/http/compression.rb:23 ../lib/puppet/network/http/compression.rb:27
3980
+ msgid "Puppet::Network::HTTP::Compression::Active#uncompress_body is deprecated."
3981
+ msgstr ""
3982
+
3983
+ #: ../lib/puppet/network/http/compression.rb:32 ../lib/puppet/network/http/compression.rb:46
3922
3984
  msgid "Unknown content encoding - %{encoding}"
3923
3985
  msgstr ""
3924
3986
 
3987
+ #: ../lib/puppet/network/http/compression.rb:37
3988
+ msgid "Puppet::Network::HTTP::Compression::Active#uncompress is deprecated."
3989
+ msgstr ""
3990
+
3991
+ #: ../lib/puppet/network/http/compression.rb:77
3992
+ msgid "Puppet::Network::HTTP::Compression::ZlibAdapter#uncompress is deprecated."
3993
+ msgstr ""
3994
+
3995
+ #: ../lib/puppet/network/http/compression.rb:104
3996
+ msgid "Puppet::Network::HTTP::Compression::None#uncompress_body is deprecated."
3997
+ msgstr ""
3998
+
3999
+ #: ../lib/puppet/network/http/compression.rb:113
4000
+ msgid "Puppet::Network::HTTP::Compression::None#uncompress is deprecated."
4001
+ msgstr ""
4002
+
4003
+ #: ../lib/puppet/network/http/compression.rb:120
4004
+ msgid "Puppet::Network::HTTP::Compression::IdentityAdapter#uncompress is deprecated."
4005
+ msgstr ""
4006
+
3925
4007
  #: ../lib/puppet/network/http/connection.rb:56
3926
4008
  msgid "Unrecognized option(s): %{opts}"
3927
4009
  msgstr ""
@@ -3930,36 +4012,40 @@ msgstr ""
3930
4012
  msgid "Expected an instance of Puppet::SSL::Verifier but was passed a %{klass}"
3931
4013
  msgstr ""
3932
4014
 
3933
- #: ../lib/puppet/network/http/connection.rb:225
4015
+ #: ../lib/puppet/network/http/connection.rb:229 ../lib/puppet/network/http/connection_adapter.rb:174
3934
4016
  msgid "Too many HTTP redirections for %{host}:%{port}"
3935
4017
  msgstr ""
3936
4018
 
3937
4019
  #. TRANSLATORS: Used in the phrase:
3938
4020
  #. "Received a response from the remote server."
3939
- #: ../lib/puppet/network/http/connection.rb:255
4021
+ #: ../lib/puppet/network/http/connection.rb:259
3940
4022
  msgid "the remote server"
3941
4023
  msgstr ""
3942
4024
 
3943
- #: ../lib/puppet/network/http/connection.rb:259
4025
+ #: ../lib/puppet/network/http/connection.rb:263
3944
4026
  msgid "Received a %{status_code} response from %{server_hostname}, but the Retry-After header value of \"%{retry_after}\" could not be converted to an integer or RFC 2822 date."
3945
4027
  msgstr ""
3946
4028
 
3947
- #: ../lib/puppet/network/http/connection.rb:270
4029
+ #: ../lib/puppet/network/http/connection.rb:274
3948
4030
  msgid "Received a %{status_code} response from %{server_hostname}. Sleeping for %{retry_sleep} seconds before retrying the request."
3949
4031
  msgstr ""
3950
4032
 
3951
- #: ../lib/puppet/network/http/connection.rb:331
4033
+ #: ../lib/puppet/network/http/connection.rb:335
3952
4034
  msgid "request %{uri} interrupted after %{elapsed} seconds"
3953
4035
  msgstr ""
3954
4036
 
3955
- #: ../lib/puppet/network/http/connection.rb:333
4037
+ #: ../lib/puppet/network/http/connection.rb:337
3956
4038
  msgid "request %{uri} timed out after %{elapsed} seconds"
3957
4039
  msgstr ""
3958
4040
 
3959
- #: ../lib/puppet/network/http/connection.rb:335
4041
+ #: ../lib/puppet/network/http/connection.rb:339
3960
4042
  msgid "request %{uri} failed: %{msg}"
3961
4043
  msgstr ""
3962
4044
 
4045
+ #: ../lib/puppet/network/http/connection.rb:346
4046
+ msgid "Puppet::Network::HTTP::Connection is deprecated. Please use Puppet::Network::HTTP::ConnectionAdapter instead."
4047
+ msgstr ""
4048
+
3963
4049
  #: ../lib/puppet/network/http/error.rb:23
3964
4050
  msgid "Not Acceptable: %{message}"
3965
4051
  msgstr ""
@@ -4004,7 +4090,11 @@ msgstr ""
4004
4090
  msgid "Could not resolve %{ip}: %{detail}"
4005
4091
  msgstr ""
4006
4092
 
4007
- #: ../lib/puppet/network/http/pool.rb:65
4093
+ #: ../lib/puppet/network/http/nocache_pool.rb:6
4094
+ msgid "Puppet::Network::HTTP::NoCachePool is deprecated."
4095
+ msgstr ""
4096
+
4097
+ #: ../lib/puppet/network/http/pool.rb:66
4008
4098
  msgid "Failed to close connection for %{site}: %{detail}"
4009
4099
  msgstr ""
4010
4100
 
@@ -4021,12 +4111,12 @@ msgid "Missing required Accept header"
4021
4111
  msgstr ""
4022
4112
 
4023
4113
  #. TRANSLATORS 'ssl_context' is an argument and should not be translated
4024
- #: ../lib/puppet/network/http_pool.rb:80
4114
+ #: ../lib/puppet/network/http_pool.rb:81
4025
4115
  msgid "An ssl_context is required when connecting to 'https://%{host}:%{port}'"
4026
4116
  msgstr ""
4027
4117
 
4028
4118
  #. TRANSLATORS 'ssl_context' is an argument and should not be translated
4029
- #: ../lib/puppet/network/http_pool.rb:88
4119
+ #: ../lib/puppet/network/http_pool.rb:89
4030
4120
  msgid "An ssl_context is unnecessary when connecting to 'http://%{host}:%{port}' and will be ignored"
4031
4121
  msgstr ""
4032
4122
 
@@ -4078,11 +4168,11 @@ msgstr ""
4078
4168
  msgid "Trusted node data modified for node %{name}"
4079
4169
  msgstr ""
4080
4170
 
4081
- #: ../lib/puppet/node/environment.rb:208
4171
+ #: ../lib/puppet/node/environment.rb:212
4082
4172
  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."
4083
4173
  msgstr ""
4084
4174
 
4085
- #: ../lib/puppet/node/environment.rb:551 ../lib/puppet/pops/loaders.rb:298
4175
+ #: ../lib/puppet/node/environment.rb:562 ../lib/puppet/pops/loaders.rb:301
4086
4176
  msgid "Could not parse for environment %{env}: %{detail}"
4087
4177
  msgstr ""
4088
4178
 
@@ -4153,15 +4243,15 @@ msgstr ""
4153
4243
  msgid "Given value for '%{varname}' has illegal type - got: %{type}"
4154
4244
  msgstr ""
4155
4245
 
4156
- #: ../lib/puppet/pal/pal_impl.rb:510
4246
+ #: ../lib/puppet/pal/pal_impl.rb:485
4157
4247
  msgid "Puppet Pal: %{what}"
4158
4248
  msgstr ""
4159
4249
 
4160
- #: ../lib/puppet/pal/pal_impl.rb:524
4250
+ #: ../lib/puppet/pal/pal_impl.rb:499
4161
4251
  msgid "Cannot use '%{a_term}' and '%{b_term}' at the same time"
4162
4252
  msgstr ""
4163
4253
 
4164
- #: ../lib/puppet/pal/pal_impl.rb:531
4254
+ #: ../lib/puppet/pal/pal_impl.rb:506
4165
4255
  msgid "A block must be given"
4166
4256
  msgstr ""
4167
4257
 
@@ -4226,7 +4316,7 @@ msgstr ""
4226
4316
  msgid "Node inheritance is removed in Puppet 4.0.0. See http://links.puppet.com/puppet-node-inheritance-deprecation"
4227
4317
  msgstr ""
4228
4318
 
4229
- #: ../lib/puppet/parser/ast/pops_bridge.rb:190
4319
+ #: ../lib/puppet/parser/ast/pops_bridge.rb:186
4230
4320
  msgid "Instantiating Resource with type checked parameters - scope is missing, skipping type checking."
4231
4321
  msgstr ""
4232
4322
 
@@ -4251,7 +4341,7 @@ msgid "For more information, see https://puppet.com/docs/puppet/latest/environme
4251
4341
  msgstr ""
4252
4342
 
4253
4343
  #. TRANSLATORS "stage" is a keyword in Puppet and should not be translated
4254
- #: ../lib/puppet/parser/compiler.rb:98 ../lib/puppet/parser/environment_compiler.rb:134
4344
+ #: ../lib/puppet/parser/compiler.rb:98 ../lib/puppet/parser/environment_compiler.rb:137
4255
4345
  msgid "Only classes can set 'stage'; normal resources like %{resource} cannot change run stage"
4256
4346
  msgstr ""
4257
4347
 
@@ -4337,60 +4427,60 @@ msgstr ""
4337
4427
  msgid "Application %{app} maps component %{res} to multiple nodes"
4338
4428
  msgstr ""
4339
4429
 
4340
- #: ../lib/puppet/parser/compiler.rb:357
4430
+ #: ../lib/puppet/parser/compiler.rb:367
4431
+ msgid "Could not find node statement with name 'default' or '%{names}'"
4432
+ msgstr ""
4433
+
4434
+ #: ../lib/puppet/parser/compiler.rb:385
4341
4435
  msgid "No source for scope passed to evaluate_classes"
4342
4436
  msgstr ""
4343
4437
 
4344
- #: ../lib/puppet/parser/compiler.rb:373
4438
+ #: ../lib/puppet/parser/compiler.rb:401
4345
4439
  msgid "Could not find class %{name} for %{node}"
4346
4440
  msgstr ""
4347
4441
 
4348
- #: ../lib/puppet/parser/compiler.rb:475
4442
+ #: ../lib/puppet/parser/compiler.rb:503
4349
4443
  msgid "Capability mapping error: %{kind} clause references nonexistent %{component_type} %{component_name}"
4350
4444
  msgstr ""
4351
4445
 
4352
- #: ../lib/puppet/parser/compiler.rb:502
4353
- msgid "Could not find node statement with name 'default' or '%{names}'"
4354
- msgstr ""
4355
-
4356
- #: ../lib/puppet/parser/compiler.rb:523
4446
+ #: ../lib/puppet/parser/compiler.rb:526
4357
4447
  msgid "Evaluated collections"
4358
4448
  msgstr ""
4359
4449
 
4360
- #: ../lib/puppet/parser/compiler.rb:538
4450
+ #: ../lib/puppet/parser/compiler.rb:541
4361
4451
  msgid "Evaluated definitions"
4362
4452
  msgstr ""
4363
4453
 
4364
- #: ../lib/puppet/parser/compiler.rb:567
4454
+ #: ../lib/puppet/parser/compiler.rb:570
4365
4455
  msgid "Iterated (%{count}) on generators"
4366
4456
  msgstr ""
4367
4457
 
4368
- #: ../lib/puppet/parser/compiler.rb:578
4458
+ #: ../lib/puppet/parser/compiler.rb:581
4369
4459
  msgid "Somehow looped more than 1000 times while evaluating host catalog"
4370
4460
  msgstr ""
4371
4461
 
4372
- #: ../lib/puppet/parser/compiler.rb:610
4462
+ #: ../lib/puppet/parser/compiler.rb:613
4373
4463
  msgid "Could not find resource(s) %{resources} for overriding"
4374
4464
  msgstr ""
4375
4465
 
4376
- #: ../lib/puppet/parser/compiler.rb:621
4466
+ #: ../lib/puppet/parser/compiler.rb:624
4377
4467
  msgid "Failed to realize virtual resources %{resources}"
4378
4468
  msgstr ""
4379
4469
 
4380
4470
  #. TRANSLATORS "main" is a function name and should not be translated
4381
- #: ../lib/puppet/parser/compiler.rb:654
4471
+ #: ../lib/puppet/parser/compiler.rb:657
4382
4472
  msgid "Couldn't find main"
4383
4473
  msgstr ""
4384
4474
 
4385
- #: ../lib/puppet/parser/compiler.rb:727
4475
+ #: ../lib/puppet/parser/compiler.rb:730
4386
4476
  msgid "For initializing compiler"
4387
4477
  msgstr ""
4388
4478
 
4389
- #: ../lib/puppet/parser/compiler/catalog_validator/env_relationship_validator.rb:17
4479
+ #: ../lib/puppet/parser/compiler/catalog_validator/env_relationship_validator.rb:19
4390
4480
  msgid "Capability '%{cap}' referenced by '%{param}' is never exported"
4391
4481
  msgstr ""
4392
4482
 
4393
- #: ../lib/puppet/parser/compiler/catalog_validator/env_relationship_validator.rb:56
4483
+ #: ../lib/puppet/parser/compiler/catalog_validator/env_relationship_validator.rb:58
4394
4484
  msgid "'%{value}' is exported by both '%{hash}' and '%{resource}'"
4395
4485
  msgstr ""
4396
4486
 
@@ -4402,95 +4492,95 @@ msgstr ""
4402
4492
  msgid "Could not find resource '%{res}' in parameter '%{param}'"
4403
4493
  msgstr ""
4404
4494
 
4405
- #: ../lib/puppet/parser/compiler/catalog_validator/site_validator.rb:14
4495
+ #: ../lib/puppet/parser/compiler/catalog_validator/site_validator.rb:16
4406
4496
  msgid "Only application components can appear inside a site - %{res} is not allowed"
4407
4497
  msgstr ""
4408
4498
 
4409
- #: ../lib/puppet/parser/environment_compiler.rb:12
4499
+ #: ../lib/puppet/parser/environment_compiler.rb:13
4410
4500
  msgid "%{detail} in environment %{env}"
4411
4501
  msgstr ""
4412
4502
 
4413
- #: ../lib/puppet/parser/environment_compiler.rb:59
4503
+ #: ../lib/puppet/parser/environment_compiler.rb:62
4414
4504
  msgid "For compiling environment catalog %{env}"
4415
4505
  msgstr ""
4416
4506
 
4417
- #: ../lib/puppet/parser/environment_compiler.rb:62
4507
+ #: ../lib/puppet/parser/environment_compiler.rb:65
4418
4508
  msgid "Env Compile: Created settings scope"
4419
4509
  msgstr ""
4420
4510
 
4421
- #: ../lib/puppet/parser/environment_compiler.rb:64
4511
+ #: ../lib/puppet/parser/environment_compiler.rb:67
4422
4512
  msgid "Env Compile: Evaluated main"
4423
4513
  msgstr ""
4424
4514
 
4425
- #: ../lib/puppet/parser/environment_compiler.rb:66
4515
+ #: ../lib/puppet/parser/environment_compiler.rb:69
4426
4516
  msgid "Env Compile: Evaluated site"
4427
4517
  msgstr ""
4428
4518
 
4429
- #: ../lib/puppet/parser/environment_compiler.rb:68
4519
+ #: ../lib/puppet/parser/environment_compiler.rb:71
4430
4520
  msgid "Env Compile: Evaluated application instances"
4431
4521
  msgstr ""
4432
4522
 
4433
- #: ../lib/puppet/parser/environment_compiler.rb:70
4523
+ #: ../lib/puppet/parser/environment_compiler.rb:73
4434
4524
  msgid "Env Compile: Prune"
4435
4525
  msgstr ""
4436
4526
 
4437
- #: ../lib/puppet/parser/environment_compiler.rb:72
4527
+ #: ../lib/puppet/parser/environment_compiler.rb:75
4438
4528
  msgid "Env Compile: Validate Catalog pre-finish"
4439
4529
  msgstr ""
4440
4530
 
4441
- #: ../lib/puppet/parser/environment_compiler.rb:76
4531
+ #: ../lib/puppet/parser/environment_compiler.rb:79
4442
4532
  msgid "Env Compile: Finished catalog"
4443
4533
  msgstr ""
4444
4534
 
4445
- #: ../lib/puppet/parser/environment_compiler.rb:80
4535
+ #: ../lib/puppet/parser/environment_compiler.rb:83
4446
4536
  msgid "Env Compile: Validate Catalog final"
4447
4537
  msgstr ""
4448
4538
 
4449
- #: ../lib/puppet/parser/environment_compiler.rb:156
4539
+ #: ../lib/puppet/parser/environment_compiler.rb:159
4450
4540
  msgid "Environment Compiler: Could not find a site definition to evaluate"
4451
4541
  msgstr ""
4452
4542
 
4453
- #: ../lib/puppet/parser/environment_compiler.rb:162
4543
+ #: ../lib/puppet/parser/environment_compiler.rb:165
4454
4544
  msgid "Evaluated application %{resource}"
4455
4545
  msgstr ""
4456
4546
 
4457
- #: ../lib/puppet/parser/functions.rb:42
4547
+ #: ../lib/puppet/parser/functions.rb:43
4458
4548
  msgid "The method 'Puppet::Parser::Functions.autoloader#loadall' is deprecated in favor of using 'Scope#call_function'."
4459
4549
  msgstr ""
4460
4550
 
4461
- #: ../lib/puppet/parser/functions.rb:50
4551
+ #: ../lib/puppet/parser/functions.rb:51
4462
4552
  msgid "The method 'Puppet::Parser::Functions.autoloader#load(\"%{name}\")' is deprecated in favor of using 'Scope#call_function'."
4463
4553
  msgstr ""
4464
4554
 
4465
- #: ../lib/puppet/parser/functions.rb:58
4555
+ #: ../lib/puppet/parser/functions.rb:59
4466
4556
  msgid "The method 'Puppet::Parser::Functions.autoloader#loaded?(\"%{name}\")' is deprecated in favor of using 'Scope#call_function'."
4467
4557
  msgstr ""
4468
4558
 
4469
- #: ../lib/puppet/parser/functions.rb:181
4559
+ #: ../lib/puppet/parser/functions.rb:186
4470
4560
  msgid "Overwriting previous definition for function %{name}"
4471
4561
  msgstr ""
4472
4562
 
4473
- #: ../lib/puppet/parser/functions.rb:187
4563
+ #: ../lib/puppet/parser/functions.rb:192
4474
4564
  msgid "Invalid statement type %{type}"
4475
4565
  msgstr ""
4476
4566
 
4477
- #: ../lib/puppet/parser/functions.rb:199
4567
+ #: ../lib/puppet/parser/functions.rb:204
4478
4568
  msgid "Called %{name}"
4479
4569
  msgstr ""
4480
4570
 
4481
- #: ../lib/puppet/parser/functions.rb:202
4571
+ #: ../lib/puppet/parser/functions.rb:207
4482
4572
  msgid "%{name}(): Wrong number of arguments given (%{arg_count} for %{arity})"
4483
4573
  msgstr ""
4484
4574
 
4485
- #: ../lib/puppet/parser/functions.rb:204
4575
+ #: ../lib/puppet/parser/functions.rb:209
4486
4576
  msgid "%{name}(): Wrong number of arguments given (%{arg_count} for minimum %{min_arg_count})"
4487
4577
  msgstr ""
4488
4578
 
4489
- #: ../lib/puppet/parser/functions.rb:210
4579
+ #: ../lib/puppet/parser/functions.rb:215
4490
4580
  msgid "custom functions must be called with a single array that contains the arguments. For example, function_example([1]) instead of function_example(1)"
4491
4581
  msgstr ""
4492
4582
 
4493
- #: ../lib/puppet/parser/functions.rb:309
4583
+ #: ../lib/puppet/parser/functions.rb:314
4494
4584
  msgid "%{name}() can only be called using the 4.x function API. See Scope#call_function"
4495
4585
  msgstr ""
4496
4586
 
@@ -4498,15 +4588,15 @@ msgstr ""
4498
4588
  msgid "Calling function_contain via the Scope class is deprecated. Use Scope#call_function instead"
4499
4589
  msgstr ""
4500
4590
 
4501
- #: ../lib/puppet/parser/functions/create_resources.rb:56
4591
+ #: ../lib/puppet/parser/functions/create_resources.rb:60
4502
4592
  msgid "create_resources(): wrong number of arguments (%{count}; must be 2 or 3)"
4503
4593
  msgstr ""
4504
4594
 
4505
- #: ../lib/puppet/parser/functions/create_resources.rb:57
4595
+ #: ../lib/puppet/parser/functions/create_resources.rb:61
4506
4596
  msgid "create_resources(): second argument must be a hash"
4507
4597
  msgstr ""
4508
4598
 
4509
- #: ../lib/puppet/parser/functions/create_resources.rb:59
4599
+ #: ../lib/puppet/parser/functions/create_resources.rb:63
4510
4600
  msgid "create_resources(): third argument, if provided, must be a hash"
4511
4601
  msgstr ""
4512
4602
 
@@ -4620,23 +4710,23 @@ msgstr ""
4620
4710
  msgid "Attempt to reassign attribute '%{name}' in '%{resource}' caused by multiple consumed mappings to the same attribute"
4621
4711
  msgstr ""
4622
4712
 
4623
- #: ../lib/puppet/parser/resource.rb:364
4713
+ #: ../lib/puppet/parser/resource.rb:365
4624
4714
  msgid "Parameter '%{name}' is already set on %{resource}; cannot redefine"
4625
4715
  msgstr ""
4626
4716
 
4627
- #: ../lib/puppet/parser/resource.rb:367
4717
+ #: ../lib/puppet/parser/resource.rb:368
4628
4718
  msgid "Parameter '%{name}' is already set on %{resource} at %{error_location}; cannot redefine"
4629
4719
  msgstr ""
4630
4720
 
4631
- #: ../lib/puppet/parser/resource.rb:372
4721
+ #: ../lib/puppet/parser/resource.rb:373
4632
4722
  msgid "Parameter '%{name}' is already set on %{resource} by %{source}; cannot redefine"
4633
4723
  msgstr ""
4634
4724
 
4635
- #: ../lib/puppet/parser/resource.rb:375
4725
+ #: ../lib/puppet/parser/resource.rb:376
4636
4726
  msgid "Parameter '%{name}' is already set on %{resource} by %{source} at %{error_location}; cannot redefine"
4637
4727
  msgstr ""
4638
4728
 
4639
- #: ../lib/puppet/parser/resource.rb:414
4729
+ #: ../lib/puppet/parser/resource.rb:415
4640
4730
  msgid "Duplicate parameter '%{param}' for on %{resource}"
4641
4731
  msgstr ""
4642
4732
 
@@ -5662,6 +5752,10 @@ msgstr ""
5662
5752
  msgid "Failed to load: %{type_name}"
5663
5753
  msgstr ""
5664
5754
 
5755
+ #: ../lib/puppet/pops/issues.rb:925
5756
+ msgid "Use of the application-orchestration %{expr} is deprecated. See https://puppet.com/docs/puppet/5.5/deprecated_language.html"
5757
+ msgstr ""
5758
+
5665
5759
  #: ../lib/puppet/pops/label_provider.rb:76
5666
5760
  msgid "<%{string}> does not appear to contain a word"
5667
5761
  msgstr ""
@@ -5829,23 +5923,23 @@ msgstr ""
5829
5923
  msgid "The code loaded from %{source_ref} contains additional logic - can only contain the type '%{name}'"
5830
5924
  msgstr ""
5831
5925
 
5832
- #: ../lib/puppet/pops/loaders.rb:32
5926
+ #: ../lib/puppet/pops/loaders.rb:34
5833
5927
  msgid "Attempt to redefine already initialized loaders for environment"
5834
5928
  msgstr ""
5835
5929
 
5836
- #: ../lib/puppet/pops/loaders.rb:174
5930
+ #: ../lib/puppet/pops/loaders.rb:177
5837
5931
  msgid "Internal Error: Puppet Context ':loaders' missing"
5838
5932
  msgstr ""
5839
5933
 
5840
- #: ../lib/puppet/pops/loaders.rb:188
5934
+ #: ../lib/puppet/pops/loaders.rb:191
5841
5935
  msgid "Unable to find loader named '%{loader_name}'"
5842
5936
  msgstr ""
5843
5937
 
5844
- #: ../lib/puppet/pops/loaders.rb:209
5938
+ #: ../lib/puppet/pops/loaders.rb:212
5845
5939
  msgid "Internal Error: did not find public loader for module: '%{module_name}'"
5846
5940
  msgstr ""
5847
5941
 
5848
- #: ../lib/puppet/pops/loaders.rb:255
5942
+ #: ../lib/puppet/pops/loaders.rb:258
5849
5943
  msgid "Internal Error: Attempt to redefine loader named '%{name}'"
5850
5944
  msgstr ""
5851
5945
 
@@ -6052,7 +6146,7 @@ msgstr ""
6052
6146
  msgid "digit expected"
6053
6147
  msgstr ""
6054
6148
 
6055
- #: ../lib/puppet/pops/resource/resource_type_impl.rb:167 ../lib/puppet/type.rb:434
6149
+ #: ../lib/puppet/pops/resource/resource_type_impl.rb:167 ../lib/puppet/type.rb:444
6056
6150
  msgid "you must specify title patterns when there are two or more key attributes"
6057
6151
  msgstr ""
6058
6152
 
@@ -6586,7 +6680,7 @@ msgstr ""
6586
6680
  msgid "GID must be an integer"
6587
6681
  msgstr ""
6588
6682
 
6589
- #: ../lib/puppet/provider/group/groupadd.rb:42
6683
+ #: ../lib/puppet/provider/group/groupadd.rb:44
6590
6684
  msgid "GID %{resource} already exists, use allowdupe to force group creation"
6591
6685
  msgstr ""
6592
6686
 
@@ -6669,27 +6763,31 @@ msgstr ""
6669
6763
  msgid "Could not perform network device prefetch: %{detail}"
6670
6764
  msgstr ""
6671
6765
 
6672
- #: ../lib/puppet/provider/package/aix.rb:37
6766
+ #: ../lib/puppet/provider/package/aix.rb:46
6673
6767
  msgid "The aix provider can only be used by root"
6674
6768
  msgstr ""
6675
6769
 
6676
- #: ../lib/puppet/provider/package/aix.rb:79 ../lib/puppet/provider/package/nim.rb:53
6770
+ #: ../lib/puppet/provider/package/aix.rb:88 ../lib/puppet/provider/package/nim.rb:53
6677
6771
  msgid "Failed to uninstall package '%{name}'"
6678
6772
  msgstr ""
6679
6773
 
6680
- #: ../lib/puppet/provider/package/aix.rb:86
6774
+ #: ../lib/puppet/provider/package/aix.rb:95
6681
6775
  msgid "A directory is required which will be used to find packages"
6682
6776
  msgstr ""
6683
6777
 
6684
- #: ../lib/puppet/provider/package/aix.rb:98
6778
+ #: ../lib/puppet/provider/package/aix.rb:107
6685
6779
  msgid "aix package provider is unable to downgrade packages"
6686
6780
  msgstr ""
6687
6781
 
6688
- #: ../lib/puppet/provider/package/aix.rb:118
6782
+ #: ../lib/puppet/provider/package/aix.rb:112
6783
+ msgid "Package '%{name}' is in a %{status} state and requires manual intervention"
6784
+ msgstr ""
6785
+
6786
+ #: ../lib/puppet/provider/package/aix.rb:133
6689
6787
  msgid "Could not list installed Packages: %{detail}"
6690
6788
  msgstr ""
6691
6789
 
6692
- #: ../lib/puppet/provider/package/aix.rb:141 ../lib/puppet/provider/package/yum.rb:252
6790
+ #: ../lib/puppet/provider/package/aix.rb:156 ../lib/puppet/provider/package/yum.rb:332
6693
6791
  msgid "Tried to get latest on a missing package"
6694
6792
  msgstr ""
6695
6793
 
@@ -6705,23 +6803,23 @@ msgstr ""
6705
6803
  msgid "Mac OS X packages must specify a package source"
6706
6804
  msgstr ""
6707
6805
 
6708
- #: ../lib/puppet/provider/package/apt.rb:43
6806
+ #: ../lib/puppet/provider/package/apt.rb:81
6709
6807
  msgid "/etc/apt/sources.list contains a cdrom source; not installing. Use 'allowcdrom' to override this failure."
6710
6808
  msgstr ""
6711
6809
 
6712
- #: ../lib/puppet/provider/package/apt.rb:93 ../lib/puppet/provider/package/fink.rb:55
6810
+ #: ../lib/puppet/provider/package/apt.rb:163 ../lib/puppet/provider/package/fink.rb:55
6713
6811
  msgid "Could not find latest version"
6714
6812
  msgstr ""
6715
6813
 
6716
- #: ../lib/puppet/provider/package/apt.rb:104 ../lib/puppet/provider/package/fink.rb:66
6814
+ #: ../lib/puppet/provider/package/apt.rb:174 ../lib/puppet/provider/package/fink.rb:66
6717
6815
  msgid "Preseeding %{response} to debconf-set-selections"
6718
6816
  msgstr ""
6719
6817
 
6720
- #: ../lib/puppet/provider/package/apt.rb:108 ../lib/puppet/provider/package/fink.rb:70
6818
+ #: ../lib/puppet/provider/package/apt.rb:178 ../lib/puppet/provider/package/fink.rb:70
6721
6819
  msgid "No responsefile specified or non existent, not preseeding anything"
6722
6820
  msgstr ""
6723
6821
 
6724
- #: ../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
6822
+ #: ../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:312 ../lib/puppet/provider/package/zypper.rb:146
6725
6823
  msgid "Could not find package %{name}"
6726
6824
  msgstr ""
6727
6825
 
@@ -6769,27 +6867,27 @@ msgstr ""
6769
6867
  msgid "source is defined but does not have trailing slash, ignoring %{source}"
6770
6868
  msgstr ""
6771
6869
 
6772
- #: ../lib/puppet/provider/package/gem.rb:95
6870
+ #: ../lib/puppet/provider/package/gem.rb:102
6773
6871
  msgid "Could not list gems: %{detail}"
6774
6872
  msgstr ""
6775
6873
 
6776
- #: ../lib/puppet/provider/package/gem.rb:121
6874
+ #: ../lib/puppet/provider/package/gem.rb:128
6777
6875
  msgid "Could not match %{desc}"
6778
6876
  msgstr ""
6779
6877
 
6780
- #: ../lib/puppet/provider/package/gem.rb:170
6878
+ #: ../lib/puppet/provider/package/gem.rb:206
6781
6879
  msgid "Invalid source '%{uri}': %{detail}"
6782
6880
  msgstr ""
6783
6881
 
6784
- #: ../lib/puppet/provider/package/gem.rb:181
6882
+ #: ../lib/puppet/provider/package/gem.rb:217
6785
6883
  msgid "puppet:// URLs are not supported as gem sources"
6786
6884
  msgstr ""
6787
6885
 
6788
- #: ../lib/puppet/provider/package/gem.rb:197
6886
+ #: ../lib/puppet/provider/package/gem.rb:233
6789
6887
  msgid "Could not install: %{output}"
6790
6888
  msgstr ""
6791
6889
 
6792
- #: ../lib/puppet/provider/package/gem.rb:223
6890
+ #: ../lib/puppet/provider/package/gem.rb:259
6793
6891
  msgid "Could not uninstall: %{output}"
6794
6892
  msgstr ""
6795
6893
 
@@ -6875,31 +6973,31 @@ msgstr ""
6875
6973
  msgid "Error getting installed packages"
6876
6974
  msgstr ""
6877
6975
 
6878
- #: ../lib/puppet/provider/package/pacman.rb:176
6976
+ #: ../lib/puppet/provider/package/pacman.rb:173
6879
6977
  msgid "%{resource_name} is a group, but allow_virtual is false."
6880
6978
  msgstr ""
6881
6979
 
6882
- #: ../lib/puppet/provider/package/pacman.rb:203
6980
+ #: ../lib/puppet/provider/package/pacman.rb:200
6883
6981
  msgid "Refusing to uninstall package group %{resource_name}, because allow_virtual is false."
6884
6982
  msgstr ""
6885
6983
 
6886
- #: ../lib/puppet/provider/package/pacman.rb:233
6984
+ #: ../lib/puppet/provider/package/pacman.rb:230
6887
6985
  msgid "Invalid source '%{source}': %{detail}"
6888
6986
  msgstr ""
6889
6987
 
6890
- #: ../lib/puppet/provider/package/pacman.rb:242
6988
+ #: ../lib/puppet/provider/package/pacman.rb:239
6891
6989
  msgid "puppet:// URL is not supported by pacman"
6892
6990
  msgstr ""
6893
6991
 
6894
- #: ../lib/puppet/provider/package/pacman.rb:244
6992
+ #: ../lib/puppet/provider/package/pacman.rb:241
6895
6993
  msgid "Source %{source} is not supported by pacman"
6896
6994
  msgstr ""
6897
6995
 
6898
- #: ../lib/puppet/provider/package/pacman.rb:254
6996
+ #: ../lib/puppet/provider/package/pacman.rb:251
6899
6997
  msgid "Refusing to install package group %{resource_name}, because allow_virtual is false."
6900
6998
  msgstr ""
6901
6999
 
6902
- #: ../lib/puppet/provider/package/pip.rb:54
7000
+ #: ../lib/puppet/provider/package/pip.rb:58
6903
7001
  msgid "Cannot resolve pip version"
6904
7002
  msgstr ""
6905
7003
 
@@ -6995,11 +7093,11 @@ msgstr ""
6995
7093
  msgid "portversion.latest() - fatal error with portversion: %{output}"
6996
7094
  msgstr ""
6997
7095
 
6998
- #: ../lib/puppet/provider/package/rpm.rb:89
7096
+ #: ../lib/puppet/provider/package/rpm.rb:68
6999
7097
  msgid "Failed to list packages"
7000
7098
  msgstr ""
7001
7099
 
7002
- #: ../lib/puppet/provider/package/rpm.rb:128 ../lib/puppet/provider/package/rpm.rb:141
7100
+ #: ../lib/puppet/provider/package/rpm.rb:107 ../lib/puppet/provider/package/rpm.rb:120
7003
7101
  msgid "RPMs must specify a package source"
7004
7102
  msgstr ""
7005
7103
 
@@ -7044,23 +7142,23 @@ msgstr ""
7044
7142
  msgid "Don't know how to install '%{source}'"
7045
7143
  msgstr ""
7046
7144
 
7047
- #: ../lib/puppet/provider/package/yum.rb:29
7145
+ #: ../lib/puppet/provider/package/yum.rb:69
7048
7146
  msgid "The yum provider can only be used as root"
7049
7147
  msgstr ""
7050
7148
 
7051
- #: ../lib/puppet/provider/package/yum.rb:83
7149
+ #: ../lib/puppet/provider/package/yum.rb:123
7052
7150
  msgid "Could not check for updates, '%{cmd} check-update' exited with %{status}"
7053
7151
  msgstr ""
7054
7152
 
7055
- #: ../lib/puppet/provider/package/yum.rb:117
7153
+ #: ../lib/puppet/provider/package/yum.rb:158
7056
7154
  msgid "Failed to parse package name and architecture from '%{pkgname}'"
7057
7155
  msgstr ""
7058
7156
 
7059
- #: ../lib/puppet/provider/package/yum.rb:226
7157
+ #: ../lib/puppet/provider/package/yum.rb:306
7060
7158
  msgid "Could not find package %{wanted}"
7061
7159
  msgstr ""
7062
7160
 
7063
- #: ../lib/puppet/provider/package/yum.rb:237
7161
+ #: ../lib/puppet/provider/package/yum.rb:317
7064
7162
  msgid "Failed to update to version %{should}, got version %{version} instead"
7065
7163
  msgstr ""
7066
7164
 
@@ -7134,35 +7232,35 @@ msgstr ""
7134
7232
  msgid "The %{service} service is incomplete so its status will be reported as :stopped. See `svcs -xv %{fmri}` for more details."
7135
7233
  msgstr ""
7136
7234
 
7137
- #: ../lib/puppet/provider/service/windows.rb:23
7235
+ #: ../lib/puppet/provider/service/windows.rb:22
7138
7236
  msgid "Cannot enable %{resource_name}, error was: %{detail}"
7139
7237
  msgstr ""
7140
7238
 
7141
- #: ../lib/puppet/provider/service/windows.rb:29
7239
+ #: ../lib/puppet/provider/service/windows.rb:28
7142
7240
  msgid "Cannot disable %{resource_name}, error was: %{detail}"
7143
7241
  msgstr ""
7144
7242
 
7145
- #: ../lib/puppet/provider/service/windows.rb:35
7243
+ #: ../lib/puppet/provider/service/windows.rb:34
7146
7244
  msgid "Cannot enable %{resource_name} for manual start, error was: %{detail}"
7147
7245
  msgstr ""
7148
7246
 
7149
- #: ../lib/puppet/provider/service/windows.rb:41
7247
+ #: ../lib/puppet/provider/service/windows.rb:40
7150
7248
  msgid "Cannot enable %{resource_name} for delayed start, error was: %{detail}"
7151
7249
  msgstr ""
7152
7250
 
7153
- #: ../lib/puppet/provider/service/windows.rb:61
7251
+ #: ../lib/puppet/provider/service/windows.rb:60
7154
7252
  msgid "Unknown start type: %{start_type}"
7155
7253
  msgstr ""
7156
7254
 
7157
- #: ../lib/puppet/provider/service/windows.rb:64
7255
+ #: ../lib/puppet/provider/service/windows.rb:63
7158
7256
  msgid "Cannot get start type %{resource_name}, error was: %{detail}"
7159
7257
  msgstr ""
7160
7258
 
7161
- #: ../lib/puppet/provider/service/windows.rb:78
7259
+ #: ../lib/puppet/provider/service/windows.rb:77
7162
7260
  msgid "Will not start disabled service %{resource_name} without managing enable. Specify 'enable => false' to override."
7163
7261
  msgstr ""
7164
7262
 
7165
- #: ../lib/puppet/provider/service/windows.rb:110
7263
+ #: ../lib/puppet/provider/service/windows.rb:109
7166
7264
  msgid "Unknown service state '%{current_state}' for service '%{resource_name}'"
7167
7265
  msgstr ""
7168
7266
 
@@ -7247,7 +7345,7 @@ msgstr ""
7247
7345
  msgid "You must pass a callback for non-NONE events"
7248
7346
  msgstr ""
7249
7347
 
7250
- #: ../lib/puppet/reports/http.rb:35
7348
+ #: ../lib/puppet/reports/http.rb:40
7251
7349
  msgid "Unable to submit report to %{url} [%{code}] %{message}"
7252
7350
  msgstr ""
7253
7351
 
@@ -7304,11 +7402,11 @@ msgstr ""
7304
7402
  msgid "no parameter named '%{name}'"
7305
7403
  msgstr ""
7306
7404
 
7307
- #: ../lib/puppet/resource.rb:634
7405
+ #: ../lib/puppet/resource.rb:635
7308
7406
  msgid "No title provided and %{type} is not a valid resource reference"
7309
7407
  msgstr ""
7310
7408
 
7311
- #: ../lib/puppet/resource.rb:708
7409
+ #: ../lib/puppet/resource.rb:709
7312
7410
  msgid "No set of title patterns matched the title \"%{title}\"."
7313
7411
  msgstr ""
7314
7412
 
@@ -7398,119 +7496,119 @@ msgstr ""
7398
7496
  msgid "Could not evaluate: %{detail}"
7399
7497
  msgstr ""
7400
7498
 
7401
- #: ../lib/puppet/resource/type.rb:78
7499
+ #: ../lib/puppet/resource/type.rb:81
7402
7500
  msgid "Invalid export in %{reference}: %{ex} is not a resource"
7403
7501
  msgstr ""
7404
7502
 
7405
- #: ../lib/puppet/resource/type.rb:79
7503
+ #: ../lib/puppet/resource/type.rb:82
7406
7504
  msgid "Invalid export in %{reference}: %{ex} is not a capability resource"
7407
7505
  msgstr ""
7408
7506
 
7409
- #: ../lib/puppet/resource/type.rb:83
7507
+ #: ../lib/puppet/resource/type.rb:86
7410
7508
  msgid "Resource type %{res_type} does not produce %{ex_type}"
7411
7509
  msgstr ""
7412
7510
 
7413
- #: ../lib/puppet/resource/type.rb:144
7511
+ #: ../lib/puppet/resource/type.rb:147
7414
7512
  msgid "Invalid resource supertype '%{type}'"
7415
7513
  msgstr ""
7416
7514
 
7417
- #: ../lib/puppet/resource/type.rb:192
7515
+ #: ../lib/puppet/resource/type.rb:199
7418
7516
  msgid "%{name} is not a class; cannot add code to it"
7419
7517
  msgstr ""
7420
7518
 
7421
- #: ../lib/puppet/resource/type.rb:193
7519
+ #: ../lib/puppet/resource/type.rb:200
7422
7520
  msgid "%{name} is not a class; cannot add code from it"
7423
7521
  msgstr ""
7424
7522
 
7425
- #: ../lib/puppet/resource/type.rb:197
7523
+ #: ../lib/puppet/resource/type.rb:204
7426
7524
  msgid "Cannot have code outside of a class/node/define because 'freeze_main' is enabled"
7427
7525
  msgstr ""
7428
7526
 
7429
- #: ../lib/puppet/resource/type.rb:201
7527
+ #: ../lib/puppet/resource/type.rb:208
7430
7528
  msgid "Cannot merge classes with different parent classes (%{name} => %{parent} vs. %{other_name} => %{other_parent})"
7431
7529
  msgstr ""
7432
7530
 
7433
- #: ../lib/puppet/resource/type.rb:232
7531
+ #: ../lib/puppet/resource/type.rb:239
7434
7532
  msgid "Cannot create resources for defined resource types"
7435
7533
  msgstr ""
7436
7534
 
7437
- #: ../lib/puppet/resource/type.rb:286
7535
+ #: ../lib/puppet/resource/type.rb:294
7438
7536
  msgid "The method Puppet::Resource::Type.assign_parameter_values is deprecated and will be removed in the next major release of Puppet."
7439
7537
  msgstr ""
7440
7538
 
7441
- #: ../lib/puppet/resource/type.rb:302
7539
+ #: ../lib/puppet/resource/type.rb:310
7442
7540
  msgid "Could not find parent resource type '%{parent}' of type %{parent_type} in %{env}"
7443
7541
  msgstr ""
7444
7542
 
7445
- #: ../lib/puppet/resource/type.rb:429
7543
+ #: ../lib/puppet/resource/type.rb:437
7446
7544
  msgid "Parameter '%{name}' is given a type, but is not a valid parameter."
7447
7545
  msgstr ""
7448
7546
 
7449
- #: ../lib/puppet/resource/type.rb:432
7547
+ #: ../lib/puppet/resource/type.rb:440
7450
7548
  msgid "Parameter '%{name}' is given a type that is not a Puppet Type, got %{class_name}"
7451
7549
  msgstr ""
7452
7550
 
7453
- #: ../lib/puppet/resource/type.rb:474
7551
+ #: ../lib/puppet/resource/type.rb:482
7454
7552
  msgid "Could not find scope for %{class_name}"
7455
7553
  msgstr ""
7456
7554
 
7457
- #: ../lib/puppet/resource/type.rb:495
7555
+ #: ../lib/puppet/resource/type.rb:503
7458
7556
  msgid "%{param} is a metaparam; this value will inherit to all contained resources in the %{name} definition"
7459
7557
  msgstr ""
7460
7558
 
7461
- #: ../lib/puppet/resource/type.rb:497
7559
+ #: ../lib/puppet/resource/type.rb:505
7462
7560
  msgid "%{param} is a metaparameter; please choose another parameter name in the %{name} definition"
7463
7561
  msgstr ""
7464
7562
 
7465
- #: ../lib/puppet/resource/type_collection.rb:70
7563
+ #: ../lib/puppet/resource/type_collection.rb:72
7466
7564
  msgid "Class '%{klass}' is already defined%{error}; cannot redefine"
7467
7565
  msgstr ""
7468
7566
 
7469
- #: ../lib/puppet/resource/type_collection.rb:71
7567
+ #: ../lib/puppet/resource/type_collection.rb:73
7470
7568
  msgid "Definition '%{klass}' is already defined%{error}; cannot be redefined as a class"
7471
7569
  msgstr ""
7472
7570
 
7473
- #: ../lib/puppet/resource/type_collection.rb:72
7571
+ #: ../lib/puppet/resource/type_collection.rb:74
7474
7572
  msgid "Application '%{klass}' is already defined%{error}; cannot be redefined as a class"
7475
7573
  msgstr ""
7476
7574
 
7477
- #: ../lib/puppet/resource/type_collection.rb:103
7575
+ #: ../lib/puppet/resource/type_collection.rb:105
7478
7576
  msgid "Node '%{name}' is already defined%{error}; cannot redefine"
7479
7577
  msgstr ""
7480
7578
 
7481
- #: ../lib/puppet/resource/type_collection.rb:111
7579
+ #: ../lib/puppet/resource/type_collection.rb:113
7482
7580
  msgid "Site is already defined%{error}; cannot redefine"
7483
7581
  msgstr ""
7484
7582
 
7485
- #: ../lib/puppet/resource/type_collection.rb:148
7583
+ #: ../lib/puppet/resource/type_collection.rb:150
7486
7584
  msgid "'%{name}' is already defined%{error} as a class; cannot redefine as a definition"
7487
7585
  msgstr ""
7488
7586
 
7489
- #: ../lib/puppet/resource/type_collection.rb:149
7587
+ #: ../lib/puppet/resource/type_collection.rb:151
7490
7588
  msgid "Definition '%{name}' is already defined%{error}; cannot be redefined"
7491
7589
  msgstr ""
7492
7590
 
7493
- #: ../lib/puppet/resource/type_collection.rb:150 ../lib/puppet/resource/type_collection.rb:166
7591
+ #: ../lib/puppet/resource/type_collection.rb:152 ../lib/puppet/resource/type_collection.rb:168
7494
7592
  msgid "'%{name}' is already defined%{error} as an application; cannot be redefined"
7495
7593
  msgstr ""
7496
7594
 
7497
- #: ../lib/puppet/resource/type_collection.rb:155
7595
+ #: ../lib/puppet/resource/type_collection.rb:157
7498
7596
  msgid "'%{name}' is already defined%{error} as a class; cannot redefine as a mapping"
7499
7597
  msgstr ""
7500
7598
 
7501
- #: ../lib/puppet/resource/type_collection.rb:164
7599
+ #: ../lib/puppet/resource/type_collection.rb:166
7502
7600
  msgid "'%{name}' is already defined%{error} as a class; cannot redefine as an application"
7503
7601
  msgstr ""
7504
7602
 
7505
- #: ../lib/puppet/resource/type_collection.rb:165
7603
+ #: ../lib/puppet/resource/type_collection.rb:167
7506
7604
  msgid "'%{name}' is already defined%{error} as a definition; cannot redefine as an application"
7507
7605
  msgstr ""
7508
7606
 
7509
- #: ../lib/puppet/resource/type_collection.rb:218
7607
+ #: ../lib/puppet/resource/type_collection.rb:220
7510
7608
  msgid "Execution of config_version command `%{cmd}` failed: %{message}"
7511
7609
  msgstr ""
7512
7610
 
7513
- #: ../lib/puppet/resource/type_collection.rb:238
7611
+ #: ../lib/puppet/resource/type_collection.rb:241
7514
7612
  msgid "Not attempting to load %{type} %{fqname} as this object was missing during a prior compilation"
7515
7613
  msgstr ""
7516
7614
 
@@ -7530,73 +7628,73 @@ msgstr ""
7530
7628
  msgid "Downloaded existing certificate request for %{name} from %{server}"
7531
7629
  msgstr ""
7532
7630
 
7533
- #: ../lib/puppet/settings.rb:97
7631
+ #: ../lib/puppet/settings.rb:98
7534
7632
  msgid "New environment loaders generated from the requested section."
7535
7633
  msgstr ""
7536
7634
 
7537
- #: ../lib/puppet/settings.rb:299
7635
+ #: ../lib/puppet/settings.rb:300
7538
7636
  msgid "Attempting to initialize global default settings more than once!"
7539
7637
  msgstr ""
7540
7638
 
7541
- #: ../lib/puppet/settings.rb:499
7639
+ #: ../lib/puppet/settings.rb:500
7542
7640
  msgid "Using --configprint is deprecated. Use 'puppet config <subcommand>' instead."
7543
7641
  msgstr ""
7544
7642
 
7545
- #: ../lib/puppet/settings.rb:641
7643
+ #: ../lib/puppet/settings.rb:642
7546
7644
  msgid "Could not load %{file}: %{detail}"
7547
7645
  msgstr ""
7548
7646
 
7549
- #: ../lib/puppet/settings.rb:746
7647
+ #: ../lib/puppet/settings.rb:748
7550
7648
  msgid "Invalid setting type '%{type}'"
7551
7649
  msgstr ""
7552
7650
 
7553
- #: ../lib/puppet/settings.rb:892
7651
+ #: ../lib/puppet/settings.rb:894
7554
7652
  msgid "Unknown searchpath case: %{source_type} for the %{source} settings path element."
7555
7653
  msgstr ""
7556
7654
 
7557
- #: ../lib/puppet/settings.rb:955
7655
+ #: ../lib/puppet/settings.rb:957
7558
7656
  msgid "setting definition for '%{name}' is not a hash!"
7559
7657
  msgstr ""
7560
7658
 
7561
- #: ../lib/puppet/settings.rb:960
7659
+ #: ../lib/puppet/settings.rb:962
7562
7660
  msgid "Setting %{name} is already defined"
7563
7661
  msgstr ""
7564
7662
 
7565
- #: ../lib/puppet/settings.rb:966
7663
+ #: ../lib/puppet/settings.rb:968
7566
7664
  msgid "Setting %{name} is already using short name '%{short}'"
7567
7665
  msgstr ""
7568
7666
 
7569
- #: ../lib/puppet/settings.rb:1225
7667
+ #: ../lib/puppet/settings.rb:1227
7570
7668
  msgid "Setting %{name} is deprecated."
7571
7669
  msgstr ""
7572
7670
 
7573
7671
  #. TRANSLATORS 'puppet.conf' is a file name and should not be translated
7574
- #: ../lib/puppet/settings.rb:1230
7672
+ #: ../lib/puppet/settings.rb:1232
7575
7673
  msgid "Setting %{name} is deprecated in puppet.conf."
7576
7674
  msgstr ""
7577
7675
 
7578
- #: ../lib/puppet/settings.rb:1399
7676
+ #: ../lib/puppet/settings.rb:1403
7579
7677
  msgid "Error converting value for param '%{name}': %{detail}"
7580
7678
  msgstr ""
7581
7679
 
7582
- #: ../lib/puppet/settings.rb:1423
7680
+ #: ../lib/puppet/settings.rb:1427
7583
7681
  msgid "Could not find value for %{expression}"
7584
7682
  msgstr ""
7585
7683
 
7586
7684
  #. TRANSLATORS '$environment' is a Puppet specific variable and should not be translated
7587
- #: ../lib/puppet/settings.rb:1433
7685
+ #: ../lib/puppet/settings.rb:1437
7588
7686
  msgid "You cannot interpolate $environment within '%{setting_name}' when using directory environments."
7589
7687
  msgstr ""
7590
7688
 
7591
- #: ../lib/puppet/settings.rb:1434
7689
+ #: ../lib/puppet/settings.rb:1438
7592
7690
  msgid "Its value will remain %{value}."
7593
7691
  msgstr ""
7594
7692
 
7595
- #: ../lib/puppet/settings.rb:1465
7693
+ #: ../lib/puppet/settings.rb:1469
7596
7694
  msgid "Attempt to assign a value to unknown setting %{name}"
7597
7695
  msgstr ""
7598
7696
 
7599
- #: ../lib/puppet/settings/array_setting.rb:14
7697
+ #: ../lib/puppet/settings/array_setting.rb:14 ../lib/puppet/settings/http_extra_headers_setting.rb:21
7600
7698
  msgid "Expected an Array or String, got a %{klass}"
7601
7699
  msgstr ""
7602
7700
 
@@ -7710,6 +7808,10 @@ msgstr ""
7710
7808
  msgid "The %{parameter} parameter for the setting '%{name}' must be either 'root' or 'service', not '%{value}'"
7711
7809
  msgstr ""
7712
7810
 
7811
+ #: ../lib/puppet/settings/http_extra_headers_setting.rb:12
7812
+ msgid "Expected an Array, String, or Hash, got a %{klass}"
7813
+ msgstr ""
7814
+
7713
7815
  #: ../lib/puppet/settings/priority_setting.rb:39
7714
7816
  msgid "Invalid priority format '%{value}' for parameter: %{name}"
7715
7817
  msgstr ""
@@ -7922,99 +8024,107 @@ msgstr ""
7922
8024
  msgid "Could not download host certificate: %{message}"
7923
8025
  msgstr ""
7924
8026
 
7925
- #: ../lib/puppet/ssl/oids.rb:109
8027
+ #: ../lib/puppet/ssl/oids.rb:110
7926
8028
  msgid "Error loading ssl custom OIDs mapping file from '%{custom_oid_file}': %{err}"
7927
8029
  msgstr ""
7928
8030
 
7929
- #: ../lib/puppet/ssl/oids.rb:113
8031
+ #: ../lib/puppet/ssl/oids.rb:114
7930
8032
  msgid "Error loading ssl custom OIDs mapping file from '%{custom_oid_file}': no such index '%{map_key}'"
7931
8033
  msgstr ""
7932
8034
 
7933
- #: ../lib/puppet/ssl/oids.rb:117
8035
+ #: ../lib/puppet/ssl/oids.rb:118
7934
8036
  msgid "Error loading ssl custom OIDs mapping file from '%{custom_oid_file}': data under index '%{map_key}' must be a Hash"
7935
8037
  msgstr ""
7936
8038
 
7937
- #: ../lib/puppet/ssl/oids.rb:124
8039
+ #: ../lib/puppet/ssl/oids.rb:125
7938
8040
  msgid "Error loading ssl custom OIDs mapping file from '%{custom_oid_file}': incomplete definition of oid '%{oid}'"
7939
8041
  msgstr ""
7940
8042
 
7941
- #: ../lib/puppet/ssl/oids.rb:156
8043
+ #: ../lib/puppet/ssl/oids.rb:157
7942
8044
  msgid "Error registering ssl custom OIDs mapping from file '%{custom_oid_file}': %{err}"
7943
8045
  msgstr ""
7944
8046
 
7945
- #: ../lib/puppet/ssl/ssl_provider.rb:85
8047
+ #: ../lib/puppet/ssl/ssl_provider.rb:66
8048
+ msgid "Failed to add '%{path}' as a trusted CA file: %{detail}"
8049
+ msgstr ""
8050
+
8051
+ #: ../lib/puppet/ssl/ssl_provider.rb:70
8052
+ msgid "The 'ssl_trust_store' setting does not refer to a file and will be ignored: '%{path}'"
8053
+ msgstr ""
8054
+
8055
+ #: ../lib/puppet/ssl/ssl_provider.rb:104
7946
8056
  msgid "CA certs are missing"
7947
8057
  msgstr ""
7948
8058
 
7949
- #: ../lib/puppet/ssl/ssl_provider.rb:86
8059
+ #: ../lib/puppet/ssl/ssl_provider.rb:105
7950
8060
  msgid "CRLs are missing"
7951
8061
  msgstr ""
7952
8062
 
7953
- #: ../lib/puppet/ssl/ssl_provider.rb:87
8063
+ #: ../lib/puppet/ssl/ssl_provider.rb:106
7954
8064
  msgid "Private key is missing"
7955
8065
  msgstr ""
7956
8066
 
7957
- #: ../lib/puppet/ssl/ssl_provider.rb:88
8067
+ #: ../lib/puppet/ssl/ssl_provider.rb:107
7958
8068
  msgid "Client cert is missing"
7959
8069
  msgstr ""
7960
8070
 
7961
- #: ../lib/puppet/ssl/ssl_provider.rb:94
8071
+ #: ../lib/puppet/ssl/ssl_provider.rb:113
7962
8072
  msgid "Unsupported key '%{type}'"
7963
8073
  msgstr ""
7964
8074
 
7965
- #: ../lib/puppet/ssl/ssl_provider.rb:98
8075
+ #: ../lib/puppet/ssl/ssl_provider.rb:117
7966
8076
  msgid "The certificate for '%{name}' does not match its private key"
7967
8077
  msgstr ""
7968
8078
 
7969
- #: ../lib/puppet/ssl/ssl_provider.rb:137
8079
+ #: ../lib/puppet/ssl/ssl_provider.rb:156
7970
8080
  msgid "Failed to load private key for host '%{name}': %{message}"
7971
8081
  msgstr ""
7972
8082
 
7973
- #: ../lib/puppet/ssl/ssl_provider.rb:151
8083
+ #: ../lib/puppet/ssl/ssl_provider.rb:170
7974
8084
  msgid "The CSR for host '%{name}' does not match the public key"
7975
8085
  msgstr ""
7976
8086
 
7977
- #: ../lib/puppet/ssl/ssl_provider.rb:215
8087
+ #: ../lib/puppet/ssl/ssl_provider.rb:234
7978
8088
  msgid "The issuer '%{issuer}' of certificate '%{subject}' cannot be found locally"
7979
8089
  msgstr ""
7980
8090
 
7981
- #: ../lib/puppet/ssl/ssl_provider.rb:231
8091
+ #: ../lib/puppet/ssl/ssl_provider.rb:250
7982
8092
  msgid "The certificate '%{subject}' is not yet valid, verify time is synchronized"
7983
8093
  msgstr ""
7984
8094
 
7985
- #: ../lib/puppet/ssl/ssl_provider.rb:233
8095
+ #: ../lib/puppet/ssl/ssl_provider.rb:252
7986
8096
  msgid "The certificate '%{subject}' has expired, verify time is synchronized"
7987
8097
  msgstr ""
7988
8098
 
7989
- #: ../lib/puppet/ssl/ssl_provider.rb:235
8099
+ #: ../lib/puppet/ssl/ssl_provider.rb:254
7990
8100
  msgid "The CRL issued by '%{issuer}' is not yet valid, verify time is synchronized"
7991
8101
  msgstr ""
7992
8102
 
7993
- #: ../lib/puppet/ssl/ssl_provider.rb:237
8103
+ #: ../lib/puppet/ssl/ssl_provider.rb:256
7994
8104
  msgid "The CRL issued by '%{issuer}' has expired, verify time is synchronized"
7995
8105
  msgstr ""
7996
8106
 
7997
- #: ../lib/puppet/ssl/ssl_provider.rb:239
8107
+ #: ../lib/puppet/ssl/ssl_provider.rb:258
7998
8108
  msgid "Invalid signature for certificate '%{subject}'"
7999
8109
  msgstr ""
8000
8110
 
8001
- #: ../lib/puppet/ssl/ssl_provider.rb:241
8111
+ #: ../lib/puppet/ssl/ssl_provider.rb:260
8002
8112
  msgid "Invalid signature for CRL issued by '%{issuer}'"
8003
8113
  msgstr ""
8004
8114
 
8005
- #: ../lib/puppet/ssl/ssl_provider.rb:243
8115
+ #: ../lib/puppet/ssl/ssl_provider.rb:262
8006
8116
  msgid "The issuer '%{issuer}' of certificate '%{subject}' is missing"
8007
8117
  msgstr ""
8008
8118
 
8009
- #: ../lib/puppet/ssl/ssl_provider.rb:246
8119
+ #: ../lib/puppet/ssl/ssl_provider.rb:265
8010
8120
  msgid "The CRL issued by '%{issuer}' is missing"
8011
8121
  msgstr ""
8012
8122
 
8013
- #: ../lib/puppet/ssl/ssl_provider.rb:248
8123
+ #: ../lib/puppet/ssl/ssl_provider.rb:267
8014
8124
  msgid "Certificate '%{subject}' is revoked"
8015
8125
  msgstr ""
8016
8126
 
8017
- #: ../lib/puppet/ssl/ssl_provider.rb:252
8127
+ #: ../lib/puppet/ssl/ssl_provider.rb:271
8018
8128
  msgid "Certificate '%{subject}' failed verification (%{err}): %{err_utf8}"
8019
8129
  msgstr ""
8020
8130
 
@@ -8098,20 +8208,24 @@ msgstr ""
8098
8208
  msgid "Couldn't fetch certificate from CA server; you might still need to sign this agent's certificate (%{name}). Exiting now because the maxwaitforcert timeout has been exceeded."
8099
8209
  msgstr ""
8100
8210
 
8101
- #: ../lib/puppet/ssl/state_machine.rb:279
8102
- msgid "Will try again in %{time} seconds."
8211
+ #: ../lib/puppet/ssl/state_machine.rb:305
8212
+ msgid "Another puppet instance is already running and the waitforlock setting is set to 0; exiting"
8103
8213
  msgstr ""
8104
8214
 
8105
- #: ../lib/puppet/ssl/state_machine.rb:379
8106
- msgid "Verified client certificate '%{subject}' fingerprint %{digest}"
8215
+ #: ../lib/puppet/ssl/state_machine.rb:307
8216
+ msgid "Another puppet instance is already running and the maxwaitforlock timeout has been exceeded; exiting"
8107
8217
  msgstr ""
8108
8218
 
8109
- #: ../lib/puppet/ssl/state_machine.rb:381
8110
- msgid "Verified CA certificate '%{subject}' fingerprint %{digest}"
8219
+ #: ../lib/puppet/ssl/state_machine.rb:309
8220
+ msgid "Another puppet instance is already running; waiting for it to finish"
8111
8221
  msgstr ""
8112
8222
 
8113
- #: ../lib/puppet/ssl/state_machine.rb:421
8114
- msgid "Another puppet instance is already running; exiting"
8223
+ #: ../lib/puppet/ssl/state_machine.rb:427
8224
+ msgid "Verified client certificate '%{subject}' fingerprint %{digest}"
8225
+ msgstr ""
8226
+
8227
+ #: ../lib/puppet/ssl/state_machine.rb:429
8228
+ msgid "Verified CA certificate '%{subject}' fingerprint %{digest}"
8115
8229
  msgstr ""
8116
8230
 
8117
8231
  #. TRANSLATORS: `error` is an untranslated message from openssl describing why a certificate in the server's chain is invalid, and `subject` is the identity/name of the failed certificate
@@ -8361,77 +8475,89 @@ msgstr ""
8361
8475
  msgid "audit change: newly-recorded value %s"
8362
8476
  msgstr ""
8363
8477
 
8364
- #: ../lib/puppet/type.rb:509
8478
+ #: ../lib/puppet/trusted_external.rb:6
8479
+ msgid "Retrieving trusted external data from %{command}"
8480
+ msgstr ""
8481
+
8482
+ #: ../lib/puppet/trusted_external.rb:20
8483
+ msgid "Skipping non-executable file %{file}"
8484
+ msgstr ""
8485
+
8486
+ #: ../lib/puppet/trusted_external.rb:25
8487
+ msgid "There is more than one '%{basename}' script in %{dir}"
8488
+ msgstr ""
8489
+
8490
+ #: ../lib/puppet/type.rb:519
8365
8491
  msgid "Options must be a hash, not %{type}"
8366
8492
  msgstr ""
8367
8493
 
8368
- #: ../lib/puppet/type.rb:512
8494
+ #: ../lib/puppet/type.rb:522
8369
8495
  msgid "Class %{class_name} already has a property named %{property}"
8370
8496
  msgstr ""
8371
8497
 
8372
- #: ../lib/puppet/type.rb:599
8498
+ #: ../lib/puppet/type.rb:609
8373
8499
  msgid "Class %{class_name} has not defined parameters"
8374
8500
  msgstr ""
8375
8501
 
8376
- #: ../lib/puppet/type.rb:686
8502
+ #: ../lib/puppet/type.rb:696
8377
8503
  msgid "Parameter %{name} failed on %{ref}: %{detail}"
8378
8504
  msgstr ""
8379
8505
 
8380
- #: ../lib/puppet/type.rb:709
8506
+ #: ../lib/puppet/type.rb:719
8381
8507
  msgid "Undefined attribute '%{attribute}' in %{name}"
8382
8508
  msgstr ""
8383
8509
 
8384
8510
  #. TRANSLATORS 'is' is a variable name and should not be translated
8385
8511
  #. TRANSLATORS 'is' is a variable name and should not be translated
8386
- #: ../lib/puppet/type.rb:1052 ../lib/puppet/type.rb:1063
8512
+ #: ../lib/puppet/type.rb:1062 ../lib/puppet/type.rb:1073
8387
8513
  msgid "The 'is' value is not in the 'is' array for '%{name}'"
8388
8514
  msgstr ""
8389
8515
 
8390
- #: ../lib/puppet/type.rb:1194
8516
+ #: ../lib/puppet/type.rb:1204
8391
8517
  msgid "%{name} has no providers and has not overridden 'instances'"
8392
8518
  msgstr ""
8393
8519
 
8394
- #: ../lib/puppet/type.rb:1456
8520
+ #: ../lib/puppet/type.rb:1468
8395
8521
  msgid "Cannot add aliases without a catalog"
8396
8522
  msgstr ""
8397
8523
 
8398
- #: ../lib/puppet/type.rb:1536
8524
+ #: ../lib/puppet/type.rb:1548
8399
8525
  msgid "Could not find %{description} %{ref} for %{resource}"
8400
8526
  msgstr ""
8401
8527
 
8402
- #: ../lib/puppet/type.rb:1811
8528
+ #: ../lib/puppet/type.rb:1825
8403
8529
  msgid "Found multiple default providers for %{name}: %{provider_list}; using %{selected_provider}"
8404
8530
  msgstr ""
8405
8531
 
8406
- #: ../lib/puppet/type.rb:1898
8532
+ #: ../lib/puppet/type.rb:1912
8407
8533
  msgid "Could not find parent provider %{parent} of %{name}"
8408
8534
  msgstr ""
8409
8535
 
8410
- #: ../lib/puppet/type.rb:1972
8536
+ #: ../lib/puppet/type.rb:1986
8411
8537
  msgid "Invalid %{resource} provider '%{provider_class}'"
8412
8538
  msgstr ""
8413
8539
 
8414
- #: ../lib/puppet/type.rb:2057
8540
+ #: ../lib/puppet/type.rb:2071
8415
8541
  msgid "Could not find %{name} provider of %{provider}"
8416
8542
  msgstr ""
8417
8543
 
8418
- #: ../lib/puppet/type.rb:2175
8544
+ #: ../lib/puppet/type.rb:2189
8419
8545
  msgid "You cannot add relationships without a catalog"
8420
8546
  msgstr ""
8421
8547
 
8422
- #: ../lib/puppet/type.rb:2479
8548
+ #: ../lib/puppet/type.rb:2492
8423
8549
  msgid "Unable to mark '%{name}' as sensitive: %{name} is a parameter and not a property, and cannot be automatically redacted."
8424
8550
  msgstr ""
8425
8551
 
8426
- #: ../lib/puppet/type.rb:2482
8552
+ #: ../lib/puppet/type.rb:2495
8427
8553
  msgid "Unable to mark '%{name}' as sensitive: the property itself was not assigned a value."
8428
8554
  msgstr ""
8429
8555
 
8430
- #: ../lib/puppet/type.rb:2484
8556
+ #: ../lib/puppet/type.rb:2497
8431
8557
  msgid "Unable to mark '%{name}' as sensitive: the property itself is not defined on %{type}."
8432
8558
  msgstr ""
8433
8559
 
8434
- #: ../lib/puppet/type.rb:2542
8560
+ #: ../lib/puppet/type.rb:2555
8435
8561
  msgid "Could not set %{attribute} on %{class_name}: %{detail}"
8436
8562
  msgstr ""
8437
8563
 
@@ -8508,87 +8634,87 @@ msgstr ""
8508
8634
  msgid "File paths must be fully qualified, not '%{path}'"
8509
8635
  msgstr ""
8510
8636
 
8511
- #: ../lib/puppet/type/file.rb:129
8637
+ #: ../lib/puppet/type/file.rb:142
8512
8638
  msgid "Invalid backup type %{value}"
8513
8639
  msgstr ""
8514
8640
 
8515
- #: ../lib/puppet/type/file.rb:173 ../lib/puppet/type/tidy.rb:48
8641
+ #: ../lib/puppet/type/file.rb:186 ../lib/puppet/type/tidy.rb:48
8516
8642
  msgid "Invalid recurse value %{value}"
8517
8643
  msgstr ""
8518
8644
 
8519
- #: ../lib/puppet/type/file.rb:205
8645
+ #: ../lib/puppet/type/file.rb:218
8520
8646
  msgid "Invalid recurselimit value %{value}"
8521
8647
  msgstr ""
8522
8648
 
8523
- #: ../lib/puppet/type/file.rb:401
8649
+ #: ../lib/puppet/type/file.rb:418
8524
8650
  msgid "You cannot specify more than one of %{creators}"
8525
8651
  msgstr ""
8526
8652
 
8527
- #: ../lib/puppet/type/file.rb:403
8653
+ #: ../lib/puppet/type/file.rb:420
8528
8654
  msgid "You cannot specify a remote recursion without a source"
8529
8655
  msgstr ""
8530
8656
 
8531
- #: ../lib/puppet/type/file.rb:405
8657
+ #: ../lib/puppet/type/file.rb:422
8532
8658
  msgid "You cannot specify source when using checksum 'none'"
8533
8659
  msgstr ""
8534
8660
 
8535
- #: ../lib/puppet/type/file.rb:408
8661
+ #: ../lib/puppet/type/file.rb:425
8536
8662
  msgid "You cannot specify content when using checksum '%{checksum_type}'"
8537
8663
  msgstr ""
8538
8664
 
8539
- #: ../lib/puppet/type/file.rb:411
8665
+ #: ../lib/puppet/type/file.rb:428
8540
8666
  msgid "Possible error: recurselimit is set but not recurse, no recursion will happen"
8541
8667
  msgstr ""
8542
8668
 
8543
- #: ../lib/puppet/type/file.rb:419
8669
+ #: ../lib/puppet/type/file.rb:436
8544
8670
  msgid "Checksum value '%{value}' is not a valid checksum type %{checksum}"
8545
8671
  msgstr ""
8546
8672
 
8547
- #: ../lib/puppet/type/file.rb:422
8673
+ #: ../lib/puppet/type/file.rb:439
8548
8674
  msgid "Checksum value is ignored unless content or source are specified"
8549
8675
  msgstr ""
8550
8676
 
8551
- #: ../lib/puppet/type/file.rb:460
8677
+ #: ../lib/puppet/type/file.rb:477
8552
8678
  msgid "Can not find filebucket for backups without a catalog"
8553
8679
  msgstr ""
8554
8680
 
8555
- #: ../lib/puppet/type/file.rb:465
8681
+ #: ../lib/puppet/type/file.rb:482
8556
8682
  msgid "Could not find filebucket %{backup} specified in backup"
8557
8683
  msgstr ""
8558
8684
 
8559
- #: ../lib/puppet/type/file.rb:763
8685
+ #: ../lib/puppet/type/file.rb:780
8560
8686
  msgid "Could not back up file of type %{current_type}"
8561
8687
  msgstr ""
8562
8688
 
8563
- #: ../lib/puppet/type/file.rb:778
8689
+ #: ../lib/puppet/type/file.rb:795
8564
8690
  msgid "Could not remove files of type %{current_type}"
8565
8691
  msgstr ""
8566
8692
 
8567
8693
  #. TRANSLATORS "source_permissions => ignore" should not be translated
8568
- #: ../lib/puppet/type/file.rb:789
8694
+ #: ../lib/puppet/type/file.rb:806
8569
8695
  msgid "Copying owner/mode/group from the source file on Windows is not supported; use source_permissions => ignore."
8570
8696
  msgstr ""
8571
8697
 
8572
8698
  #. TRANSLATORS "stat" is a program name and should not be translated
8573
- #: ../lib/puppet/type/file.rb:870 ../lib/puppet/type/tidy.rb:352
8699
+ #: ../lib/puppet/type/file.rb:887 ../lib/puppet/type/tidy.rb:352
8574
8700
  msgid "Could not stat; permission denied"
8575
8701
  msgstr ""
8576
8702
 
8577
- #: ../lib/puppet/type/file.rb:873
8703
+ #: ../lib/puppet/type/file.rb:890
8578
8704
  msgid "Could not stat; invalid pathname"
8579
8705
  msgstr ""
8580
8706
 
8581
- #: ../lib/puppet/type/file.rb:1001
8707
+ #: ../lib/puppet/type/file.rb:1018
8582
8708
  msgid "Not removing directory; use 'force' to override"
8583
8709
  msgstr ""
8584
8710
 
8585
8711
  #. TRANSLATORS refers to a file which could not be backed up
8586
- #: ../lib/puppet/type/file.rb:1026
8712
+ #: ../lib/puppet/type/file.rb:1043
8587
8713
  msgid "Could not back up; will not remove"
8588
8714
  msgstr ""
8589
8715
 
8590
- #: ../lib/puppet/type/file.rb:1040
8591
- msgid "File written to disk did not match checksum; discarding changes (%{content_checksum} vs %{newsum})"
8716
+ #: ../lib/puppet/type/file.rb:1058
8717
+ msgid "File written to disk did not match desired checksum; discarding changes (%{content_checksum} vs %{desired_checksum})"
8592
8718
  msgstr ""
8593
8719
 
8594
8720
  #: ../lib/puppet/type/file/checksum.rb:20
@@ -8628,12 +8754,8 @@ msgstr ""
8628
8754
  msgid "Not managing symlink mode"
8629
8755
  msgstr ""
8630
8756
 
8631
- #: ../lib/puppet/type/file/source.rb:135
8632
- msgid "No source for content was stored with the metadata"
8633
- msgstr ""
8634
-
8635
8757
  #. TRANSLATORS "source_permissions" is a parameter name and should not be translated
8636
- #: ../lib/puppet/type/file/source.rb:362
8758
+ #: ../lib/puppet/type/file/source.rb:368
8637
8759
  msgid "The `source_permissions` parameter is deprecated. Explicitly set `owner`, `group`, and `mode`."
8638
8760
  msgstr ""
8639
8761
 
@@ -8657,23 +8779,35 @@ msgstr ""
8657
8779
  msgid "Invalid GID %{gid}"
8658
8780
  msgstr ""
8659
8781
 
8660
- #: ../lib/puppet/type/package.rb:118 ../lib/puppet/type/package.rb:132
8782
+ #: ../lib/puppet/type/package.rb:128 ../lib/puppet/type/package.rb:142
8661
8783
  msgid "Could not update: %{detail}"
8662
8784
  msgstr ""
8663
8785
 
8664
- #: ../lib/puppet/type/package.rb:167
8786
+ #: ../lib/puppet/type/package.rb:177
8665
8787
  msgid "Could not get latest version: %{detail}"
8666
8788
  msgstr ""
8667
8789
 
8668
- #: ../lib/puppet/type/package.rb:267
8790
+ #: ../lib/puppet/type/package.rb:277
8669
8791
  msgid "Name must be a String not %{klass}"
8670
8792
  msgstr ""
8671
8793
 
8672
- #: ../lib/puppet/type/package.rb:649
8794
+ #: ../lib/puppet/type/package.rb:423
8795
+ msgid "Cannot have both `ensure => disabled` and `flavor`"
8796
+ msgstr ""
8797
+
8798
+ #: ../lib/puppet/type/package.rb:522
8799
+ msgid "Cannot have both `enable_only => true` and `flavor`"
8800
+ msgstr ""
8801
+
8802
+ #: ../lib/puppet/type/package.rb:525
8803
+ msgid "Cannot have both `ensure => disabled` and `enable_only => true`"
8804
+ msgstr ""
8805
+
8806
+ #: ../lib/puppet/type/package.rb:687
8673
8807
  msgid "Invalid hold value %{value}. %{doc}"
8674
8808
  msgstr ""
8675
8809
 
8676
- #: ../lib/puppet/type/package.rb:679
8810
+ #: ../lib/puppet/type/package.rb:717
8677
8811
  msgid "You cannot use \"mark\" property while \"ensure\" is one of [\"absent\", \"purged\", \"held\"]"
8678
8812
  msgstr ""
8679
8813
 
@@ -8733,7 +8867,15 @@ msgstr ""
8733
8867
  msgid "Setting enable to %{value} is only supported on Microsoft Windows."
8734
8868
  msgstr ""
8735
8869
 
8736
- #: ../lib/puppet/type/service.rb:253
8870
+ #: ../lib/puppet/type/service.rb:162
8871
+ msgid "The 'logonaccount' parameter is mandatory when setting 'logonpassword'."
8872
+ msgstr ""
8873
+
8874
+ #: ../lib/puppet/type/service.rb:163 ../lib/puppet/type/user.rb:256
8875
+ msgid "Passwords cannot include ':'"
8876
+ msgstr ""
8877
+
8878
+ #: ../lib/puppet/type/service.rb:300
8737
8879
  msgid "\"%{value}\" is not a positive integer: the timeout parameter must be specified as a positive integer"
8738
8880
  msgstr ""
8739
8881
 
@@ -8772,10 +8914,6 @@ msgstr ""
8772
8914
  msgid "Could not find group(s) %{groups}"
8773
8915
  msgstr ""
8774
8916
 
8775
- #: ../lib/puppet/type/user.rb:256
8776
- msgid "Passwords cannot include ':'"
8777
- msgstr ""
8778
-
8779
8917
  #: ../lib/puppet/type/user.rb:276
8780
8918
  msgid "Password minimum age must be provided as a number."
8781
8919
  msgstr ""
@@ -8806,55 +8944,47 @@ msgstr ""
8806
8944
  msgid "Expiry dates must be YYYY-MM-DD or the string \"absent\""
8807
8945
  msgstr ""
8808
8946
 
8809
- #: ../lib/puppet/type/user.rb:525
8947
+ #: ../lib/puppet/type/user.rb:506
8810
8948
  msgid "Role names must be provided, not numbers"
8811
8949
  msgstr ""
8812
8950
 
8813
- #: ../lib/puppet/type/user.rb:527
8951
+ #: ../lib/puppet/type/user.rb:508
8814
8952
  msgid "Role names must be provided as an array, not a comma-separated list"
8815
8953
  msgstr ""
8816
8954
 
8817
- #: ../lib/puppet/type/user.rb:564
8955
+ #: ../lib/puppet/type/user.rb:545
8818
8956
  msgid "Auth names must be provided, not numbers"
8819
8957
  msgstr ""
8820
8958
 
8821
- #: ../lib/puppet/type/user.rb:566
8959
+ #: ../lib/puppet/type/user.rb:547
8822
8960
  msgid "Auth names must be provided as an array, not a comma-separated list"
8823
8961
  msgstr ""
8824
8962
 
8825
- #: ../lib/puppet/type/user.rb:590
8963
+ #: ../lib/puppet/type/user.rb:571
8826
8964
  msgid "Profile names must be provided, not numbers"
8827
8965
  msgstr ""
8828
8966
 
8829
- #: ../lib/puppet/type/user.rb:592
8967
+ #: ../lib/puppet/type/user.rb:573
8830
8968
  msgid "Profile names must be provided as an array, not a comma-separated list"
8831
8969
  msgstr ""
8832
8970
 
8833
- #: ../lib/puppet/type/user.rb:703
8971
+ #: ../lib/puppet/type/user.rb:684
8834
8972
  msgid "Ssh_authorized_key type is not available. Cannot purge SSH keys."
8835
8973
  msgstr ""
8836
8974
 
8837
- #: ../lib/puppet/type/user.rb:741
8975
+ #: ../lib/puppet/type/user.rb:722
8838
8976
  msgid "Each entry for purge_ssh_keys must be a string, not a %{klass}"
8839
8977
  msgstr ""
8840
8978
 
8841
- #: ../lib/puppet/type/user.rb:744
8979
+ #: ../lib/puppet/type/user.rb:725
8842
8980
  msgid "Paths to keyfiles must be absolute, not %{entry}"
8843
8981
  msgstr ""
8844
8982
 
8845
- #: ../lib/puppet/type/user.rb:748
8983
+ #: ../lib/puppet/type/user.rb:729
8846
8984
  msgid "purge_ssh_keys must be true, false, or an array of file names, not %{value}"
8847
8985
  msgstr ""
8848
8986
 
8849
- #: ../lib/puppet/type/user.rb:760
8850
- msgid "purge_ssh_keys can only be true for users with a defined home directory"
8851
- msgstr ""
8852
-
8853
- #: ../lib/puppet/type/user.rb:767
8854
- msgid "purge_ssh_keys value '%{value}' meta character ~ or %{home_placeholder} only allowed for users with a defined home directory"
8855
- msgstr ""
8856
-
8857
- #: ../lib/puppet/type/user.rb:782
8987
+ #: ../lib/puppet/type/user.rb:757
8858
8988
  msgid "Class name must be provided."
8859
8989
  msgstr ""
8860
8990
 
@@ -8905,23 +9035,23 @@ msgstr ""
8905
9035
  msgid "Couldn't expand PATH containing a ~ character; ignoring PATH element '%{dir}'."
8906
9036
  msgstr ""
8907
9037
 
8908
- #: ../lib/puppet/util.rb:313
9038
+ #: ../lib/puppet/util.rb:318
8909
9039
  msgid "unknown platform %{platform} in absolute_path"
8910
9040
  msgstr ""
8911
9041
 
8912
- #: ../lib/puppet/util.rb:348
9042
+ #: ../lib/puppet/util.rb:353
8913
9043
  msgid "Failed to convert '%{path}' to URI: %{detail}"
8914
9044
  msgstr ""
8915
9045
 
8916
- #: ../lib/puppet/util.rb:448
9046
+ #: ../lib/puppet/util.rb:453
8917
9047
  msgid "path may not be nil"
8918
9048
  msgstr ""
8919
9049
 
8920
- #: ../lib/puppet/util.rb:596
9050
+ #: ../lib/puppet/util.rb:621
8921
9051
  msgid "replace_file requires a block"
8922
9052
  msgstr ""
8923
9053
 
8924
- #: ../lib/puppet/util.rb:600
9054
+ #: ../lib/puppet/util.rb:625
8925
9055
  msgid "replace_file default_mode: %{default_mode} is invalid"
8926
9056
  msgstr ""
8927
9057
 
@@ -8953,11 +9083,11 @@ msgstr ""
8953
9083
  msgid "Failed to abandon a child process contract"
8954
9084
  msgstr ""
8955
9085
 
8956
- #: ../lib/puppet/util/autoload.rb:71
9086
+ #: ../lib/puppet/util/autoload.rb:75
8957
9087
  msgid "Could not autoload %{name}: %{detail}"
8958
9088
  msgstr ""
8959
9089
 
8960
- #: ../lib/puppet/util/autoload.rb:196
9090
+ #: ../lib/puppet/util/autoload.rb:182
8961
9091
  msgid "Autoload paths cannot be fully qualified"
8962
9092
  msgstr ""
8963
9093
 
@@ -8985,15 +9115,15 @@ msgstr ""
8985
9115
  msgid "Filebucketed %{f} to %{filebucket} with sum %{sum}"
8986
9116
  msgstr ""
8987
9117
 
8988
- #: ../lib/puppet/util/character_encoding.rb:22
9118
+ #: ../lib/puppet/util/character_encoding.rb:23
8989
9119
  msgid "%{value} is already labeled as UTF-8 but this encoding is invalid. It cannot be transcoded by Puppet."
8990
9120
  msgstr ""
8991
9121
 
8992
- #: ../lib/puppet/util/character_encoding.rb:43
9122
+ #: ../lib/puppet/util/character_encoding.rb:45
8993
9123
  msgid "%{error}: %{value} cannot be transcoded by Puppet."
8994
9124
  msgstr ""
8995
9125
 
8996
- #: ../lib/puppet/util/character_encoding.rb:70
9126
+ #: ../lib/puppet/util/character_encoding.rb:73
8997
9127
  msgid "%{value} is not valid UTF-8 and result of overriding encoding would be invalid."
8998
9128
  msgstr ""
8999
9129
 
@@ -9381,7 +9511,7 @@ msgstr ""
9381
9511
  msgid "Section %{name} is already defined, cannot redefine"
9382
9512
  msgstr ""
9383
9513
 
9384
- #: ../lib/puppet/util/instance_loader.rb:53
9514
+ #: ../lib/puppet/util/instance_loader.rb:56
9385
9515
  msgid "Loaded %{type} file for %{name} but %{type} was not defined"
9386
9516
  msgstr ""
9387
9517
 
@@ -9488,10 +9618,6 @@ msgstr ""
9488
9618
  msgid "Creating log directory %{dir}"
9489
9619
  msgstr ""
9490
9620
 
9491
- #: ../lib/puppet/util/log/destinations.rb:102
9492
- msgid "Unable to set ownership to %{user}:%{group} for log file: %{path}"
9493
- msgstr ""
9494
-
9495
9621
  #: ../lib/puppet/util/logging.rb:81 ../lib/puppet/util/logging.rb:105
9496
9622
  msgid "Wrapped exception:"
9497
9623
  msgstr ""
@@ -9529,6 +9655,10 @@ msgstr ""
9529
9655
  msgid "%{value} is an invalid url"
9530
9656
  msgstr ""
9531
9657
 
9658
+ #: ../lib/puppet/util/package/version/rpm.rb:40
9659
+ msgid "Cannot compare, as %{other} is not a Rpm Version"
9660
+ msgstr ""
9661
+
9532
9662
  #: ../lib/puppet/util/plist.rb:48
9533
9663
  msgid "Cannot read file %{file_path}; Puppet is skipping it."
9534
9664
  msgstr ""
@@ -9773,11 +9903,11 @@ msgstr ""
9773
9903
  msgid "Cannot create group if user '%{name}' exists."
9774
9904
  msgstr ""
9775
9905
 
9776
- #: ../lib/puppet/util/windows/api_types.rb:72
9906
+ #: ../lib/puppet/util/windows/api_types.rb:85
9777
9907
  msgid "Unable to read wide strings with %{null_terminator} terminal nulls"
9778
9908
  msgstr ""
9779
9909
 
9780
- #: ../lib/puppet/util/windows/api_types.rb:203
9910
+ #: ../lib/puppet/util/windows/api_types.rb:216
9781
9911
  msgid "Bad GUID format."
9782
9912
  msgstr ""
9783
9913
 
@@ -9832,16 +9962,20 @@ msgstr ""
9832
9962
  msgid "Failed to call GetLongPathName"
9833
9963
  msgstr ""
9834
9964
 
9835
- #: ../lib/puppet/util/windows/principal.rb:68 ../lib/puppet/util/windows/principal.rb:75
9965
+ #: ../lib/puppet/util/windows/principal.rb:67 ../lib/puppet/util/windows/principal.rb:74
9836
9966
  msgid "Failed to call LookupAccountNameW with account: %{account_name}"
9837
9967
  msgstr ""
9838
9968
 
9839
9969
  #. TRANSLATORS `lookup_account_sid` is a variable name and should not be translated
9840
- #: ../lib/puppet/util/windows/principal.rb:98
9970
+ #: ../lib/puppet/util/windows/principal.rb:97
9841
9971
  msgid "Byte array for lookup_account_sid must not be nil and must be at least 1 byte long"
9842
9972
  msgstr ""
9843
9973
 
9844
- #: ../lib/puppet/util/windows/principal.rb:120 ../lib/puppet/util/windows/principal.rb:127
9974
+ #: ../lib/puppet/util/windows/principal.rb:114
9975
+ msgid "Byte array for lookup_account_sid is invalid: %{sid_bytes}"
9976
+ msgstr ""
9977
+
9978
+ #: ../lib/puppet/util/windows/principal.rb:122 ../lib/puppet/util/windows/principal.rb:129
9845
9979
  msgid "Failed to call LookupAccountSidW with bytes: %{sid_bytes}"
9846
9980
  msgstr ""
9847
9981
 
@@ -9849,23 +9983,23 @@ msgstr ""
9849
9983
  msgid "Failed to get child process exit code"
9850
9984
  msgstr ""
9851
9985
 
9852
- #: ../lib/puppet/util/windows/process.rb:285
9986
+ #: ../lib/puppet/util/windows/process.rb:286
9853
9987
  msgid "GetVersionEx failed"
9854
9988
  msgstr ""
9855
9989
 
9856
- #: ../lib/puppet/util/windows/process.rb:314
9990
+ #: ../lib/puppet/util/windows/process.rb:315
9857
9991
  msgid "Discarding environment variable %{string} which contains invalid bytes"
9858
9992
  msgstr ""
9859
9993
 
9860
- #: ../lib/puppet/util/windows/process.rb:330
9994
+ #: ../lib/puppet/util/windows/process.rb:331
9861
9995
  msgid "environment variable name must not be nil or empty"
9862
9996
  msgstr ""
9863
9997
 
9864
- #: ../lib/puppet/util/windows/process.rb:335
9998
+ #: ../lib/puppet/util/windows/process.rb:336
9865
9999
  msgid "Failed to remove environment variable: %{name}"
9866
10000
  msgstr ""
9867
10001
 
9868
- #: ../lib/puppet/util/windows/process.rb:340
10002
+ #: ../lib/puppet/util/windows/process.rb:341
9869
10003
  msgid "Failed to set environment variable: %{name}"
9870
10004
  msgstr ""
9871
10005
 
@@ -9877,39 +10011,39 @@ msgstr ""
9877
10011
  msgid "Failed to open registry key '%{key}\\%{path}'"
9878
10012
  msgstr ""
9879
10013
 
9880
- #: ../lib/puppet/util/windows/registry.rb:130
10014
+ #: ../lib/puppet/util/windows/registry.rb:133
9881
10015
  msgid "Failed to enumerate %{key} registry keys at index %{index}"
9882
10016
  msgstr ""
9883
10017
 
9884
- #: ../lib/puppet/util/windows/registry.rb:161
10018
+ #: ../lib/puppet/util/windows/registry.rb:167
9885
10019
  msgid "Failed to enumerate %{key} registry values at index %{index}"
9886
10020
  msgstr ""
9887
10021
 
9888
- #: ../lib/puppet/util/windows/registry.rb:191
10022
+ #: ../lib/puppet/util/windows/registry.rb:197
9889
10023
  msgid "Failed to query registry %{key} for sizes"
9890
10024
  msgstr ""
9891
10025
 
9892
- #: ../lib/puppet/util/windows/registry.rb:227
10026
+ #: ../lib/puppet/util/windows/registry.rb:233
9893
10027
  msgid "Type mismatch (expect %{rtype} but %{type} present)"
9894
10028
  msgstr ""
9895
10029
 
9896
- #: ../lib/puppet/util/windows/registry.rb:249
10030
+ #: ../lib/puppet/util/windows/registry.rb:255
9897
10031
  msgid "Type %{type} is not supported."
9898
10032
  msgstr ""
9899
10033
 
9900
- #: ../lib/puppet/util/windows/registry.rb:254
10034
+ #: ../lib/puppet/util/windows/registry.rb:260
9901
10035
  msgid "A value in the registry key %{parent_key_name}%{key} is corrupt or invalid"
9902
10036
  msgstr ""
9903
10037
 
9904
- #: ../lib/puppet/util/windows/registry.rb:276
10038
+ #: ../lib/puppet/util/windows/registry.rb:282
9905
10039
  msgid "Failed to read registry value %{value} at %{key}"
9906
10040
  msgstr ""
9907
10041
 
9908
- #: ../lib/puppet/util/windows/registry.rb:294
10042
+ #: ../lib/puppet/util/windows/registry.rb:300
9909
10043
  msgid "Failed to delete registry value %{name} at %{key}"
9910
10044
  msgstr ""
9911
10045
 
9912
- #: ../lib/puppet/util/windows/registry.rb:309
10046
+ #: ../lib/puppet/util/windows/registry.rb:315
9913
10047
  msgid "Failed to delete registry key %{name} at %{key}"
9914
10048
  msgstr ""
9915
10049
 
@@ -9917,77 +10051,77 @@ msgstr ""
9917
10051
  msgid "Failed to import root certificate: %{detail}"
9918
10052
  msgstr ""
9919
10053
 
9920
- #: ../lib/puppet/util/windows/security.rb:173
10054
+ #: ../lib/puppet/util/windows/security.rb:174
9921
10055
  msgid "Failed to get volume information"
9922
10056
  msgstr ""
9923
10057
 
9924
10058
  #. TRANSLATORS 'SYSTEM' is a Windows name and should not be translated
9925
- #: ../lib/puppet/util/windows/security.rb:339
10059
+ #: ../lib/puppet/util/windows/security.rb:340
9926
10060
  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"
9927
10061
  msgstr ""
9928
10062
 
9929
10063
  #. TRANSLATORS 'SYSTEM' is a Windows name and should not be translated
9930
- #: ../lib/puppet/util/windows/security.rb:342
10064
+ #: ../lib/puppet/util/windows/security.rb:343
9931
10065
  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"
9932
10066
  msgstr ""
9933
10067
 
9934
10068
  #. TRANSLATORS 'SYSTEM' is a Windows name and should not be translated
9935
- #: ../lib/puppet/util/windows/security.rb:345
10069
+ #: ../lib/puppet/util/windows/security.rb:346
9936
10070
  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"
9937
10071
  msgstr ""
9938
10072
 
9939
10073
  #. TRANSLATORS 'SYSTEM' is a Windows name and should not be translated
9940
- #: ../lib/puppet/util/windows/security.rb:355
10074
+ #: ../lib/puppet/util/windows/security.rb:356
9941
10075
  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"
9942
10076
  msgstr ""
9943
10077
 
9944
10078
  #. TRANSLATORS 'SYSTEM' is a Windows name and should not be translated
9945
- #: ../lib/puppet/util/windows/security.rb:358
10079
+ #: ../lib/puppet/util/windows/security.rb:359
9946
10080
  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"
9947
10081
  msgstr ""
9948
10082
 
9949
10083
  #. TRANSLATORS 'SYSTEM' is a Windows name and should not be translated
9950
- #: ../lib/puppet/util/windows/security.rb:361
10084
+ #: ../lib/puppet/util/windows/security.rb:362
9951
10085
  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"
9952
10086
  msgstr ""
9953
10087
 
9954
- #: ../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
10088
+ #: ../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:59
9955
10089
  msgid "Invalid SID"
9956
10090
  msgstr ""
9957
10091
 
9958
- #: ../lib/puppet/util/windows/security.rb:436 ../lib/puppet/util/windows/security.rb:453
10092
+ #: ../lib/puppet/util/windows/security.rb:437 ../lib/puppet/util/windows/security.rb:454
9959
10093
  msgid "Failed to add access control entry"
9960
10094
  msgstr ""
9961
10095
 
9962
- #: ../lib/puppet/util/windows/security.rb:464 ../lib/puppet/util/windows/security.rb:646
10096
+ #: ../lib/puppet/util/windows/security.rb:465 ../lib/puppet/util/windows/security.rb:647
9963
10097
  msgid "Invalid DACL"
9964
10098
  msgstr ""
9965
10099
 
9966
- #: ../lib/puppet/util/windows/security.rb:487
10100
+ #: ../lib/puppet/util/windows/security.rb:488
9967
10101
  msgid "Unsupported access control entry type: 0x%{type}"
9968
10102
  msgstr ""
9969
10103
 
9970
- #: ../lib/puppet/util/windows/security.rb:521
10104
+ #: ../lib/puppet/util/windows/security.rb:522
9971
10105
  msgid "Failed to open '%{path}'"
9972
10106
  msgstr ""
9973
10107
 
9974
- #: ../lib/puppet/util/windows/security.rb:568
10108
+ #: ../lib/puppet/util/windows/security.rb:569
9975
10109
  msgid "Failed to adjust process privileges"
9976
10110
  msgstr ""
9977
10111
 
9978
- #: ../lib/puppet/util/windows/security.rb:598
10112
+ #: ../lib/puppet/util/windows/security.rb:599
9979
10113
  msgid "Failed to get security information"
9980
10114
  msgstr ""
9981
10115
 
9982
- #: ../lib/puppet/util/windows/security.rb:609
10116
+ #: ../lib/puppet/util/windows/security.rb:610
9983
10117
  msgid "Failed to get security descriptor control"
9984
10118
  msgstr ""
9985
10119
 
9986
- #: ../lib/puppet/util/windows/security.rb:642
10120
+ #: ../lib/puppet/util/windows/security.rb:643
9987
10121
  msgid "Failed to initialize ACL"
9988
10122
  msgstr ""
9989
10123
 
9990
- #: ../lib/puppet/util/windows/security.rb:681
10124
+ #: ../lib/puppet/util/windows/security.rb:682
9991
10125
  msgid "Failed to set security information"
9992
10126
  msgstr ""
9993
10127
 
@@ -10027,87 +10161,83 @@ msgstr ""
10027
10161
  msgid "Unknown start type '%{start_type}' for '%{service_name}'"
10028
10162
  msgstr ""
10029
10163
 
10030
- #: ../lib/puppet/util/windows/service.rb:453
10031
- msgid "Unknown start type %{start_type}"
10032
- msgstr ""
10033
-
10034
- #: ../lib/puppet/util/windows/service.rb:474
10164
+ #: ../lib/puppet/util/windows/service.rb:487
10035
10165
  msgid "Failed to update service configuration"
10036
10166
  msgstr ""
10037
10167
 
10038
- #: ../lib/puppet/util/windows/service.rb:535
10168
+ #: ../lib/puppet/util/windows/service.rb:552
10039
10169
  msgid "Failed to fetch services"
10040
10170
  msgstr ""
10041
10171
 
10042
- #: ../lib/puppet/util/windows/service.rb:584
10172
+ #: ../lib/puppet/util/windows/service.rb:601
10043
10173
  msgid "Failed to open a handle to the service"
10044
10174
  msgstr ""
10045
10175
 
10046
- #: ../lib/puppet/util/windows/service.rb:601
10176
+ #: ../lib/puppet/util/windows/service.rb:618
10047
10177
  msgid "Failed to open a handle to the service control manager"
10048
10178
  msgstr ""
10049
10179
 
10050
- #: ../lib/puppet/util/windows/service.rb:624
10180
+ #: ../lib/puppet/util/windows/service.rb:641
10051
10181
  msgid "The service is already in the %{final_state} state. No further work needs to be done."
10052
10182
  msgstr ""
10053
10183
 
10054
- #: ../lib/puppet/util/windows/service.rb:636
10184
+ #: ../lib/puppet/util/windows/service.rb:653
10055
10185
  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."
10056
10186
  msgstr ""
10057
10187
 
10058
- #: ../lib/puppet/util/windows/service.rb:647
10188
+ #: ../lib/puppet/util/windows/service.rb:664
10059
10189
  msgid "There is already a pending transition to the %{final_state} state for the %{service_name} service."
10060
10190
  msgstr ""
10061
10191
 
10062
- #: ../lib/puppet/util/windows/service.rb:663
10192
+ #: ../lib/puppet/util/windows/service.rb:680
10063
10193
  msgid "The service is in the %{pending_state} state, which is an unsafe pending state."
10064
10194
  msgstr ""
10065
10195
 
10066
- #: ../lib/puppet/util/windows/service.rb:668
10196
+ #: ../lib/puppet/util/windows/service.rb:685
10067
10197
  msgid "Transitioning the %{service_name} service from %{initial_state} to %{final_state}"
10068
10198
  msgstr ""
10069
10199
 
10070
- #: ../lib/puppet/util/windows/service.rb:672
10200
+ #: ../lib/puppet/util/windows/service.rb:689
10071
10201
  msgid "Waiting for the transition to finish"
10072
10202
  msgstr ""
10073
10203
 
10074
- #: ../lib/puppet/util/windows/service.rb:677
10204
+ #: ../lib/puppet/util/windows/service.rb:694
10075
10205
  msgid "Failed to transition the %{service_name} service to the %{final_state} state. Detail: %{detail}"
10076
10206
  msgstr ""
10077
10207
 
10078
- #: ../lib/puppet/util/windows/service.rb:716 ../lib/puppet/util/windows/service.rb:752
10208
+ #: ../lib/puppet/util/windows/service.rb:733 ../lib/puppet/util/windows/service.rb:769
10079
10209
  msgid "Service query failed"
10080
10210
  msgstr ""
10081
10211
 
10082
- #: ../lib/puppet/util/windows/service.rb:795
10212
+ #: ../lib/puppet/util/windows/service.rb:812
10083
10213
  msgid "Service query for %{parameter_name} failed"
10084
10214
  msgstr ""
10085
10215
 
10086
- #: ../lib/puppet/util/windows/service.rb:818
10216
+ #: ../lib/puppet/util/windows/service.rb:835
10087
10217
  msgid "Failed to update service %{change} configuration"
10088
10218
  msgstr ""
10089
10219
 
10090
- #: ../lib/puppet/util/windows/service.rb:845
10220
+ #: ../lib/puppet/util/windows/service.rb:862
10091
10221
  msgid "Failed to send the %{control_signal} signal to the service. Its current state is %{current_state}. Reason for failure:"
10092
10222
  msgstr ""
10093
10223
 
10094
- #: ../lib/puppet/util/windows/service.rb:880
10224
+ #: ../lib/puppet/util/windows/service.rb:897
10095
10225
  msgid "The service transitioned to the %{pending_state} state."
10096
10226
  msgstr ""
10097
10227
 
10098
- #: ../lib/puppet/util/windows/service.rb:894
10228
+ #: ../lib/puppet/util/windows/service.rb:911
10099
10229
  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}."
10100
10230
  msgstr ""
10101
10231
 
10102
- #: ../lib/puppet/util/windows/service.rb:909
10232
+ #: ../lib/puppet/util/windows/service.rb:926
10103
10233
  msgid "Waiting for the pending transition to the %{final_state} state to finish."
10104
10234
  msgstr ""
10105
10235
 
10106
- #: ../lib/puppet/util/windows/service.rb:923
10236
+ #: ../lib/puppet/util/windows/service.rb:940
10107
10237
  msgid "Unexpected transition to the %{current_state} state while waiting for the pending transition from %{pending_state} to %{final_state} to finish."
10108
10238
  msgstr ""
10109
10239
 
10110
- #: ../lib/puppet/util/windows/service.rb:937
10240
+ #: ../lib/puppet/util/windows/service.rb:954
10111
10241
  msgid "Timed out while waiting for the pending transition from %{pending_state} to %{final_state} to finish. The current state is %{current_state}."
10112
10242
  msgstr ""
10113
10243
 
@@ -10127,23 +10257,23 @@ msgstr ""
10127
10257
  msgid "Failed to convert string SID: %{string_sid}"
10128
10258
  msgstr ""
10129
10259
 
10130
- #: ../lib/puppet/util/windows/user.rb:38
10260
+ #: ../lib/puppet/util/windows/user.rb:54
10131
10261
  msgid "Failed to create administrators SID"
10132
10262
  msgstr ""
10133
10263
 
10134
- #: ../lib/puppet/util/windows/user.rb:48
10264
+ #: ../lib/puppet/util/windows/user.rb:64
10135
10265
  msgid "Failed to check membership"
10136
10266
  msgstr ""
10137
10267
 
10138
- #: ../lib/puppet/util/windows/user.rb:88
10268
+ #: ../lib/puppet/util/windows/user.rb:104
10139
10269
  msgid "Failed to logon user %{name}"
10140
10270
  msgstr ""
10141
10271
 
10142
- #: ../lib/puppet/util/windows/user.rb:120
10272
+ #: ../lib/puppet/util/windows/user.rb:135
10143
10273
  msgid "Failed to load user profile %{user}"
10144
10274
  msgstr ""
10145
10275
 
10146
- #: ../lib/puppet/util/windows/user.rb:126
10276
+ #: ../lib/puppet/util/windows/user.rb:141
10147
10277
  msgid "Failed to unload user profile %{user}"
10148
10278
  msgstr ""
10149
10279