puppet 6.21.1 → 7.4.1

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 (402) hide show
  1. checksums.yaml +4 -4
  2. data/Gemfile +1 -4
  3. data/Gemfile.lock +5 -5
  4. data/README.md +1 -1
  5. data/conf/fileserver.conf +5 -10
  6. data/ext/build_defaults.yaml +1 -2
  7. data/ext/osx/file_mapping.yaml +0 -5
  8. data/ext/project_data.yaml +2 -14
  9. data/ext/redhat/puppet.spec.erb +0 -1
  10. data/ext/windows/service/daemon.rb +6 -5
  11. data/install.rb +21 -17
  12. data/lib/puppet.rb +11 -20
  13. data/lib/puppet/application.rb +172 -98
  14. data/lib/puppet/application/device.rb +100 -104
  15. data/lib/puppet/application/filebucket.rb +13 -9
  16. data/lib/puppet/application/ssl.rb +1 -1
  17. data/lib/puppet/configurer.rb +27 -29
  18. data/lib/puppet/configurer/plugin_handler.rb +21 -19
  19. data/lib/puppet/defaults.rb +57 -162
  20. data/lib/puppet/environments.rb +8 -23
  21. data/lib/puppet/face/facts.rb +73 -49
  22. data/lib/puppet/face/help.rb +1 -1
  23. data/lib/puppet/face/node/clean.rb +8 -0
  24. data/lib/puppet/face/plugin.rb +5 -8
  25. data/lib/puppet/ffi/windows.rb +12 -0
  26. data/lib/puppet/ffi/windows/api_types.rb +311 -0
  27. data/lib/puppet/ffi/windows/constants.rb +404 -0
  28. data/lib/puppet/ffi/windows/functions.rb +628 -0
  29. data/lib/puppet/ffi/windows/structs.rb +338 -0
  30. data/lib/puppet/file_serving/configuration.rb +0 -5
  31. data/lib/puppet/file_serving/configuration/parser.rb +6 -32
  32. data/lib/puppet/file_serving/http_metadata.rb +1 -1
  33. data/lib/puppet/file_serving/mount.rb +1 -2
  34. data/lib/puppet/forge/repository.rb +0 -1
  35. data/lib/puppet/generate/models/type/type.rb +4 -1
  36. data/lib/puppet/http.rb +22 -13
  37. data/lib/puppet/http/client.rb +164 -114
  38. data/lib/puppet/{network/resolver.rb → http/dns.rb} +2 -2
  39. data/lib/puppet/http/errors.rb +16 -0
  40. data/lib/puppet/http/external_client.rb +5 -7
  41. data/lib/puppet/{network/http → http}/factory.rb +8 -11
  42. data/lib/puppet/{network/http → http}/pool.rb +61 -26
  43. data/lib/puppet/{network/http/session.rb → http/pool_entry.rb} +2 -3
  44. data/lib/puppet/http/proxy.rb +137 -0
  45. data/lib/puppet/http/redirector.rb +4 -12
  46. data/lib/puppet/http/resolver.rb +5 -15
  47. data/lib/puppet/http/resolver/server_list.rb +6 -10
  48. data/lib/puppet/http/resolver/settings.rb +4 -7
  49. data/lib/puppet/http/resolver/srv.rb +7 -11
  50. data/lib/puppet/http/response.rb +36 -54
  51. data/lib/puppet/http/response_converter.rb +24 -0
  52. data/lib/puppet/http/response_net_http.rb +42 -0
  53. data/lib/puppet/http/retry_after_handler.rb +4 -13
  54. data/lib/puppet/http/service.rb +12 -26
  55. data/lib/puppet/http/service/ca.rb +11 -22
  56. data/lib/puppet/http/service/compiler.rb +22 -69
  57. data/lib/puppet/http/service/file_server.rb +18 -27
  58. data/lib/puppet/http/service/puppetserver.rb +26 -12
  59. data/lib/puppet/http/service/report.rb +8 -10
  60. data/lib/puppet/http/session.rb +11 -20
  61. data/lib/puppet/{network/http → http}/site.rb +1 -2
  62. data/lib/puppet/indirector/catalog/rest.rb +2 -4
  63. data/lib/puppet/indirector/facts/facter.rb +25 -3
  64. data/lib/puppet/indirector/facts/rest.rb +3 -22
  65. data/lib/puppet/indirector/file_bucket_file/rest.rb +3 -9
  66. data/lib/puppet/indirector/file_content/rest.rb +2 -6
  67. data/lib/puppet/indirector/file_metadata/rest.rb +3 -9
  68. data/lib/puppet/indirector/file_server.rb +1 -8
  69. data/lib/puppet/indirector/generic_http.rb +0 -11
  70. data/lib/puppet/indirector/node/rest.rb +2 -4
  71. data/lib/puppet/indirector/report/rest.rb +3 -8
  72. data/lib/puppet/indirector/request.rb +0 -101
  73. data/lib/puppet/indirector/rest.rb +12 -263
  74. data/lib/puppet/module_tool/applications.rb +0 -1
  75. data/lib/puppet/network/authconfig.rb +2 -96
  76. data/lib/puppet/network/authorization.rb +13 -35
  77. data/lib/puppet/network/formats.rb +67 -0
  78. data/lib/puppet/network/http.rb +3 -3
  79. data/lib/puppet/network/http/api/indirected_routes.rb +2 -20
  80. data/lib/puppet/network/http/api/master/v3.rb +11 -13
  81. data/lib/puppet/network/http/connection.rb +247 -316
  82. data/lib/puppet/network/http/handler.rb +0 -1
  83. data/lib/puppet/network/http_pool.rb +16 -34
  84. data/lib/puppet/node.rb +1 -30
  85. data/lib/puppet/pal/json_catalog_encoder.rb +4 -0
  86. data/lib/puppet/pal/pal_impl.rb +3 -1
  87. data/lib/puppet/parser/ast/pops_bridge.rb +0 -38
  88. data/lib/puppet/parser/compiler.rb +0 -198
  89. data/lib/puppet/parser/compiler/catalog_validator/relationship_validator.rb +14 -39
  90. data/lib/puppet/parser/resource.rb +0 -69
  91. data/lib/puppet/pops/evaluator/evaluator_impl.rb +0 -5
  92. data/lib/puppet/pops/evaluator/runtime3_resource_support.rb +3 -3
  93. data/lib/puppet/pops/evaluator/runtime3_support.rb +1 -1
  94. data/lib/puppet/pops/issues.rb +0 -5
  95. data/lib/puppet/pops/loader/ruby_legacy_function_instantiator.rb +6 -8
  96. data/lib/puppet/pops/model/ast.pp +0 -42
  97. data/lib/puppet/pops/model/ast.rb +0 -290
  98. data/lib/puppet/pops/model/factory.rb +0 -45
  99. data/lib/puppet/pops/model/model_label_provider.rb +0 -5
  100. data/lib/puppet/pops/model/model_tree_dumper.rb +0 -22
  101. data/lib/puppet/pops/model/pn_transformer.rb +0 -16
  102. data/lib/puppet/pops/parser/egrammar.ra +0 -56
  103. data/lib/puppet/pops/parser/eparser.rb +1520 -1712
  104. data/lib/puppet/pops/parser/lexer2.rb +4 -4
  105. data/lib/puppet/pops/parser/parser_support.rb +0 -5
  106. data/lib/puppet/pops/resource/resource_type_impl.rb +2 -24
  107. data/lib/puppet/pops/types/type_calculator.rb +0 -7
  108. data/lib/puppet/pops/types/type_parser.rb +0 -4
  109. data/lib/puppet/pops/types/types.rb +0 -1
  110. data/lib/puppet/pops/validation/checker4_0.rb +9 -37
  111. data/lib/puppet/pops/validation/tasks_checker.rb +0 -12
  112. data/lib/puppet/pops/validation/validator_factory_4_0.rb +1 -2
  113. data/lib/puppet/provider.rb +0 -13
  114. data/lib/puppet/provider/nameservice.rb +0 -18
  115. data/lib/puppet/provider/package/dpkg.rb +0 -10
  116. data/lib/puppet/provider/package/gem.rb +23 -3
  117. data/lib/puppet/provider/package/pip.rb +0 -1
  118. data/lib/puppet/provider/package/pkg.rb +0 -4
  119. data/lib/puppet/provider/package/portage.rb +1 -1
  120. data/lib/puppet/provider/package/puppet_gem.rb +1 -4
  121. data/lib/puppet/provider/service/smf.rb +191 -73
  122. data/lib/puppet/provider/user/directoryservice.rb +0 -10
  123. data/lib/puppet/reference/configuration.rb +7 -5
  124. data/lib/puppet/reference/indirection.rb +1 -1
  125. data/lib/puppet/resource.rb +1 -89
  126. data/lib/puppet/resource/catalog.rb +1 -14
  127. data/lib/puppet/resource/type.rb +3 -119
  128. data/lib/puppet/resource/type_collection.rb +3 -48
  129. data/lib/puppet/runtime.rb +1 -2
  130. data/lib/puppet/settings.rb +45 -33
  131. data/lib/puppet/settings/integer_setting.rb +17 -0
  132. data/lib/puppet/settings/port_setting.rb +15 -0
  133. data/lib/puppet/settings/priority_setting.rb +5 -4
  134. data/lib/puppet/ssl.rb +10 -6
  135. data/lib/puppet/ssl/base.rb +3 -5
  136. data/lib/puppet/ssl/certificate.rb +0 -6
  137. data/lib/puppet/ssl/certificate_request.rb +1 -12
  138. data/lib/puppet/ssl/certificate_signer.rb +6 -0
  139. data/lib/puppet/ssl/oids.rb +3 -1
  140. data/lib/puppet/ssl/ssl_provider.rb +17 -0
  141. data/lib/puppet/ssl/state_machine.rb +3 -1
  142. data/lib/puppet/ssl/verifier.rb +2 -0
  143. data/lib/puppet/test/test_helper.rb +1 -3
  144. data/lib/puppet/transaction.rb +1 -7
  145. data/lib/puppet/transaction/report.rb +2 -4
  146. data/lib/puppet/type.rb +0 -76
  147. data/lib/puppet/type/file.rb +5 -7
  148. data/lib/puppet/type/file/checksum.rb +1 -1
  149. data/lib/puppet/type/file/source.rb +1 -1
  150. data/lib/puppet/type/filebucket.rb +3 -3
  151. data/lib/puppet/type/package.rb +5 -13
  152. data/lib/puppet/type/user.rb +1 -1
  153. data/lib/puppet/util/execution.rb +0 -11
  154. data/lib/puppet/util/http_proxy.rb +2 -215
  155. data/lib/puppet/util/monkey_patches.rb +0 -46
  156. data/lib/puppet/util/rdoc.rb +0 -7
  157. data/lib/puppet/util/retry_action.rb +1 -1
  158. data/lib/puppet/util/run_mode.rb +9 -1
  159. data/lib/puppet/util/windows.rb +3 -8
  160. data/lib/puppet/util/windows/daemon.rb +360 -0
  161. data/lib/puppet/util/windows/error.rb +1 -0
  162. data/lib/puppet/util/windows/eventlog.rb +4 -9
  163. data/lib/puppet/util/windows/file.rb +8 -242
  164. data/lib/puppet/util/windows/monkey_patches/process.rb +414 -0
  165. data/lib/puppet/util/windows/process.rb +4 -226
  166. data/lib/puppet/util/windows/service.rb +9 -460
  167. data/lib/puppet/util/windows/string.rb +12 -13
  168. data/lib/puppet/util/yaml.rb +0 -22
  169. data/lib/puppet/vendor/require_vendored.rb +0 -1
  170. data/lib/puppet/version.rb +1 -1
  171. data/lib/puppet/x509.rb +5 -1
  172. data/lib/puppet/x509/cert_provider.rb +29 -1
  173. data/locales/puppet.pot +521 -1226
  174. data/man/man5/puppet.conf.5 +34 -94
  175. data/man/man8/puppet-facts.8 +56 -35
  176. data/man/man8/puppet-filebucket.8 +3 -3
  177. data/man/man8/puppet-module.8 +0 -57
  178. data/man/man8/puppet.8 +1 -1
  179. data/spec/fixtures/unit/provider/service/smf/{svcs.out → svcs_instances.out} +0 -0
  180. data/spec/integration/application/agent_spec.rb +24 -11
  181. data/spec/integration/application/apply_spec.rb +1 -1
  182. data/spec/integration/application/filebucket_spec.rb +16 -16
  183. data/spec/integration/application/help_spec.rb +2 -0
  184. data/spec/integration/application/plugin_spec.rb +23 -1
  185. data/spec/integration/defaults_spec.rb +7 -3
  186. data/spec/integration/indirector/file_content/file_server_spec.rb +0 -2
  187. data/spec/integration/indirector/file_metadata/file_server_spec.rb +0 -2
  188. data/spec/integration/network/http_pool_spec.rb +3 -21
  189. data/spec/integration/parser/catalog_spec.rb +0 -38
  190. data/spec/integration/parser/node_spec.rb +0 -9
  191. data/spec/integration/parser/pcore_resource_spec.rb +0 -37
  192. data/spec/integration/type/file_spec.rb +5 -4
  193. data/spec/integration/util/windows/monkey_patches/process_spec.rb +231 -0
  194. data/spec/integration/util/windows/security_spec.rb +1 -1
  195. data/spec/lib/puppet_spec/puppetserver.rb +1 -1
  196. data/spec/lib/puppet_spec/settings.rb +1 -0
  197. data/spec/spec_helper.rb +2 -0
  198. data/spec/unit/agent_spec.rb +0 -2
  199. data/spec/unit/application/facts_spec.rb +86 -0
  200. data/spec/unit/application/filebucket_spec.rb +41 -39
  201. data/spec/unit/application/ssl_spec.rb +2 -2
  202. data/spec/unit/certificate_factory_spec.rb +1 -1
  203. data/spec/unit/configurer/downloader_spec.rb +6 -2
  204. data/spec/unit/configurer/plugin_handler_spec.rb +56 -18
  205. data/spec/unit/configurer_spec.rb +12 -9
  206. data/spec/unit/context/trusted_information_spec.rb +2 -6
  207. data/spec/unit/defaults_spec.rb +22 -47
  208. data/spec/unit/environments_spec.rb +0 -3
  209. data/spec/unit/face/facts_spec.rb +4 -0
  210. data/spec/unit/face/node_spec.rb +14 -2
  211. data/spec/unit/face/plugin_spec.rb +73 -33
  212. data/spec/unit/file_bucket/file_spec.rb +1 -1
  213. data/spec/unit/file_serving/configuration/parser_spec.rb +22 -18
  214. data/spec/unit/file_serving/configuration_spec.rb +6 -12
  215. data/spec/unit/functions/camelcase_spec.rb +1 -1
  216. data/spec/unit/functions/capitalize_spec.rb +1 -1
  217. data/spec/unit/functions/downcase_spec.rb +1 -1
  218. data/spec/unit/functions/upcase_spec.rb +1 -1
  219. data/spec/unit/http/client_spec.rb +7 -8
  220. data/spec/unit/{network/resolver_spec.rb → http/dns_spec.rb} +3 -3
  221. data/spec/unit/http/external_client_spec.rb +4 -4
  222. data/spec/unit/{network/http → http}/factory_spec.rb +5 -11
  223. data/spec/unit/{network/http/session_spec.rb → http/pool_entry_spec.rb} +3 -3
  224. data/spec/unit/{network/http → http}/pool_spec.rb +12 -17
  225. data/spec/unit/{util/http_proxy_spec.rb → http/proxy_spec.rb} +2 -69
  226. data/spec/unit/http/resolver_spec.rb +13 -13
  227. data/spec/unit/http/service/compiler_spec.rb +0 -62
  228. data/spec/unit/http/service/file_server_spec.rb +3 -3
  229. data/spec/unit/http/service/puppetserver_spec.rb +34 -4
  230. data/spec/unit/http/service_spec.rb +0 -1
  231. data/spec/unit/http/session_spec.rb +16 -14
  232. data/spec/unit/{network/http → http}/site_spec.rb +3 -3
  233. data/spec/unit/indirector/facts/facter_spec.rb +113 -0
  234. data/spec/unit/indirector/file_bucket_file/file_spec.rb +5 -3
  235. data/spec/unit/indirector/file_content/rest_spec.rb +0 -4
  236. data/spec/unit/indirector/file_metadata/rest_spec.rb +0 -4
  237. data/spec/unit/indirector/file_server_spec.rb +1 -15
  238. data/spec/unit/indirector/report/rest_spec.rb +2 -17
  239. data/spec/unit/indirector/request_spec.rb +0 -264
  240. data/spec/unit/indirector/rest_spec.rb +98 -752
  241. data/spec/unit/network/authconfig_spec.rb +2 -129
  242. data/spec/unit/network/authorization_spec.rb +2 -55
  243. data/spec/unit/network/formats_spec.rb +45 -4
  244. data/spec/unit/network/http/api/indirected_routes_spec.rb +1 -92
  245. data/spec/unit/network/http/api/master/v3_spec.rb +28 -7
  246. data/spec/unit/network/http/api_spec.rb +10 -0
  247. data/spec/unit/network/http/connection_spec.rb +19 -41
  248. data/spec/unit/network/http/handler_spec.rb +0 -1
  249. data/spec/unit/network/http_pool_spec.rb +0 -4
  250. data/spec/unit/node/environment_spec.rb +33 -21
  251. data/spec/unit/node_spec.rb +2 -54
  252. data/spec/unit/parser/functions/create_resources_spec.rb +2 -20
  253. data/spec/unit/pops/evaluator/evaluating_parser_spec.rb +4 -7
  254. data/spec/unit/pops/loaders/loaders_spec.rb +6 -21
  255. data/spec/unit/pops/parser/parse_application_spec.rb +4 -22
  256. data/spec/unit/pops/parser/parse_basic_expressions_spec.rb +0 -1
  257. data/spec/unit/pops/parser/parse_capabilities_spec.rb +8 -21
  258. data/spec/unit/pops/parser/parse_site_spec.rb +20 -24
  259. data/spec/unit/pops/resource/resource_type_impl_spec.rb +0 -71
  260. data/spec/unit/pops/serialization/to_from_hr_spec.rb +1 -1
  261. data/spec/unit/pops/types/type_calculator_spec.rb +6 -6
  262. data/spec/unit/pops/types/type_factory_spec.rb +1 -1
  263. data/spec/unit/pops/validator/validator_spec.rb +61 -46
  264. data/spec/unit/pops/visitor_spec.rb +1 -1
  265. data/spec/unit/provider/nameservice_spec.rb +0 -57
  266. data/spec/unit/provider/package/dpkg_spec.rb +0 -48
  267. data/spec/unit/provider/package/gem_spec.rb +32 -0
  268. data/spec/unit/provider/package/puppet_gem_spec.rb +3 -2
  269. data/spec/unit/provider/service/smf_spec.rb +401 -165
  270. data/spec/unit/provider/service/windows_spec.rb +0 -1
  271. data/spec/unit/provider_spec.rb +0 -12
  272. data/spec/unit/resource/type_collection_spec.rb +2 -22
  273. data/spec/unit/resource_spec.rb +0 -56
  274. data/spec/unit/settings/http_extra_headers_spec.rb +2 -4
  275. data/spec/unit/settings/integer_setting_spec.rb +42 -0
  276. data/spec/unit/settings/port_setting_spec.rb +31 -0
  277. data/spec/unit/settings/priority_setting_spec.rb +4 -4
  278. data/spec/unit/settings_spec.rb +17 -0
  279. data/spec/unit/ssl/base_spec.rb +36 -3
  280. data/spec/unit/ssl/certificate_request_spec.rb +19 -55
  281. data/spec/unit/ssl/certificate_spec.rb +2 -11
  282. data/spec/unit/ssl/state_machine_spec.rb +0 -1
  283. data/spec/unit/ssl/verifier_spec.rb +0 -21
  284. data/spec/unit/transaction/report_spec.rb +0 -2
  285. data/spec/unit/transaction/resource_harness_spec.rb +2 -2
  286. data/spec/unit/transaction_spec.rb +45 -79
  287. data/spec/unit/type/file/checksum_spec.rb +6 -6
  288. data/spec/unit/type/file/content_spec.rb +1 -1
  289. data/spec/unit/type/file/ensure_spec.rb +1 -1
  290. data/spec/unit/type/file/mode_spec.rb +1 -1
  291. data/spec/unit/type/file/source_spec.rb +0 -1
  292. data/spec/unit/type/file_spec.rb +12 -6
  293. data/spec/unit/type/package_spec.rb +1 -1
  294. data/spec/unit/type_spec.rb +20 -0
  295. data/spec/unit/util/backups_spec.rb +0 -2
  296. data/spec/unit/util/execution_spec.rb +0 -29
  297. data/spec/unit/util/monkey_patches_spec.rb +0 -6
  298. data/spec/unit/util/run_mode_spec.rb +21 -121
  299. data/spec/unit/util/windows/string_spec.rb +1 -3
  300. data/spec/unit/util/yaml_spec.rb +0 -54
  301. data/spec/unit/util_spec.rb +0 -18
  302. metadata +47 -162
  303. data/conf/auth.conf +0 -150
  304. data/lib/puppet/application/cert.rb +0 -76
  305. data/lib/puppet/application/key.rb +0 -4
  306. data/lib/puppet/application/man.rb +0 -4
  307. data/lib/puppet/application/status.rb +0 -4
  308. data/lib/puppet/face/key.rb +0 -16
  309. data/lib/puppet/face/man.rb +0 -145
  310. data/lib/puppet/face/module/build.rb +0 -14
  311. data/lib/puppet/face/module/generate.rb +0 -14
  312. data/lib/puppet/face/module/search.rb +0 -103
  313. data/lib/puppet/face/status.rb +0 -51
  314. data/lib/puppet/indirector/certificate/file.rb +0 -9
  315. data/lib/puppet/indirector/certificate/rest.rb +0 -18
  316. data/lib/puppet/indirector/certificate_request/file.rb +0 -9
  317. data/lib/puppet/indirector/certificate_request/memory.rb +0 -7
  318. data/lib/puppet/indirector/certificate_request/rest.rb +0 -11
  319. data/lib/puppet/indirector/file_content/http.rb +0 -22
  320. data/lib/puppet/indirector/key/file.rb +0 -46
  321. data/lib/puppet/indirector/key/memory.rb +0 -7
  322. data/lib/puppet/indirector/ssl_file.rb +0 -162
  323. data/lib/puppet/indirector/status.rb +0 -3
  324. data/lib/puppet/indirector/status/local.rb +0 -12
  325. data/lib/puppet/indirector/status/rest.rb +0 -27
  326. data/lib/puppet/module_tool/applications/searcher.rb +0 -29
  327. data/lib/puppet/network/auth_config_parser.rb +0 -90
  328. data/lib/puppet/network/authstore.rb +0 -283
  329. data/lib/puppet/network/http/api/master/v3/authorization.rb +0 -18
  330. data/lib/puppet/network/http/api/master/v3/environment.rb +0 -88
  331. data/lib/puppet/network/http/base_pool.rb +0 -36
  332. data/lib/puppet/network/http/compression.rb +0 -127
  333. data/lib/puppet/network/http/connection_adapter.rb +0 -184
  334. data/lib/puppet/network/http/nocache_pool.rb +0 -28
  335. data/lib/puppet/network/rest_controller.rb +0 -2
  336. data/lib/puppet/network/rights.rb +0 -210
  337. data/lib/puppet/parser/compiler/catalog_validator/env_relationship_validator.rb +0 -66
  338. data/lib/puppet/parser/compiler/catalog_validator/site_validator.rb +0 -22
  339. data/lib/puppet/parser/environment_compiler.rb +0 -202
  340. data/lib/puppet/pops/types/enumeration.rb +0 -16
  341. data/lib/puppet/resource/capability_finder.rb +0 -154
  342. data/lib/puppet/rest/errors.rb +0 -15
  343. data/lib/puppet/rest/response.rb +0 -35
  344. data/lib/puppet/rest/route.rb +0 -85
  345. data/lib/puppet/rest/routes.rb +0 -135
  346. data/lib/puppet/ssl/host.rb +0 -505
  347. data/lib/puppet/ssl/key.rb +0 -61
  348. data/lib/puppet/ssl/validator.rb +0 -61
  349. data/lib/puppet/ssl/validator/default_validator.rb +0 -209
  350. data/lib/puppet/ssl/validator/no_validator.rb +0 -22
  351. data/lib/puppet/ssl/verifier_adapter.rb +0 -58
  352. data/lib/puppet/status.rb +0 -40
  353. data/lib/puppet/util/connection.rb +0 -88
  354. data/lib/puppet/util/fact_dif.rb +0 -62
  355. data/lib/puppet/util/ssl.rb +0 -83
  356. data/lib/puppet/util/windows/api_types.rb +0 -309
  357. data/lib/puppet/util/windows/monkey_patches/dir.rb +0 -40
  358. data/lib/puppet/vendor/load_pathspec.rb +0 -1
  359. data/lib/puppet/vendor/pathspec/CHANGELOG.md +0 -2
  360. data/lib/puppet/vendor/pathspec/LICENSE +0 -201
  361. data/lib/puppet/vendor/pathspec/PUPPET_README.md +0 -6
  362. data/lib/puppet/vendor/pathspec/README.md +0 -53
  363. data/lib/puppet/vendor/pathspec/lib/pathspec.rb +0 -122
  364. data/lib/puppet/vendor/pathspec/lib/pathspec/gitignorespec.rb +0 -275
  365. data/lib/puppet/vendor/pathspec/lib/pathspec/regexspec.rb +0 -17
  366. data/lib/puppet/vendor/pathspec/lib/pathspec/spec.rb +0 -14
  367. data/man/man8/puppet-key.8 +0 -126
  368. data/man/man8/puppet-man.8 +0 -76
  369. data/man/man8/puppet-status.8 +0 -108
  370. data/spec/integration/network/authconfig_spec.rb +0 -256
  371. data/spec/integration/util/windows/monkey_patches/dir_spec.rb +0 -11
  372. data/spec/unit/application/man_spec.rb +0 -52
  373. data/spec/unit/capability_spec.rb +0 -414
  374. data/spec/unit/face/key_spec.rb +0 -9
  375. data/spec/unit/face/module/search_spec.rb +0 -231
  376. data/spec/unit/face/status_spec.rb +0 -9
  377. data/spec/unit/indirector/certificate/file_spec.rb +0 -14
  378. data/spec/unit/indirector/certificate/rest_spec.rb +0 -61
  379. data/spec/unit/indirector/certificate_request/file_spec.rb +0 -14
  380. data/spec/unit/indirector/certificate_request/rest_spec.rb +0 -25
  381. data/spec/unit/indirector/key/file_spec.rb +0 -78
  382. data/spec/unit/indirector/ssl_file_spec.rb +0 -305
  383. data/spec/unit/indirector/status/local_spec.rb +0 -10
  384. data/spec/unit/indirector/status/rest_spec.rb +0 -50
  385. data/spec/unit/module_tool/applications/searcher_spec.rb +0 -38
  386. data/spec/unit/network/auth_config_parser_spec.rb +0 -115
  387. data/spec/unit/network/authstore_spec.rb +0 -422
  388. data/spec/unit/network/http/api/master/v3/authorization_spec.rb +0 -57
  389. data/spec/unit/network/http/api/master/v3/environment_spec.rb +0 -185
  390. data/spec/unit/network/http/compression_spec.rb +0 -240
  391. data/spec/unit/network/http/nocache_pool_spec.rb +0 -64
  392. data/spec/unit/network/http_spec.rb +0 -9
  393. data/spec/unit/network/rights_spec.rb +0 -439
  394. data/spec/unit/parser/environment_compiler_spec.rb +0 -730
  395. data/spec/unit/pops/types/enumeration_spec.rb +0 -51
  396. data/spec/unit/resource/capability_finder_spec.rb +0 -148
  397. data/spec/unit/rest/route_spec.rb +0 -132
  398. data/spec/unit/ssl/host_spec.rb +0 -645
  399. data/spec/unit/ssl/key_spec.rb +0 -173
  400. data/spec/unit/ssl/validator_spec.rb +0 -278
  401. data/spec/unit/status_spec.rb +0 -45
  402. data/spec/unit/util/ssl_spec.rb +0 -91
@@ -1,16 +1,15 @@
1
- require 'puppet/util/windows'
1
+ module Puppet
2
+ module Util
3
+ module Windows
4
+ module String
5
+ def wide_string(str)
6
+ # if given a nil string, assume caller wants to pass a nil pointer to win32
7
+ return nil if str.nil?
2
8
 
3
- module Puppet::Util::Windows::String
4
- def wide_string(str)
5
- # if given a nil string, assume caller wants to pass a nil pointer to win32
6
- return nil if str.nil?
7
- # ruby (< 2.1) does not respect multibyte terminators, so it is possible
8
- # for a string to contain a single trailing null byte, followed by garbage
9
- # causing buffer overruns.
10
- #
11
- # See http://svn.ruby-lang.org/cgi-bin/viewvc.cgi?revision=41920&view=revision
12
- newstr = str + "\0".encode(str.encoding)
13
- newstr.encode!('UTF-16LE')
9
+ str.encode('UTF-16LE')
10
+ end
11
+ module_function :wide_string
12
+ end
13
+ end
14
14
  end
15
- module_function :wide_string
16
15
  end
@@ -42,28 +42,6 @@ module Puppet::Util::Yaml
42
42
  safe_load(yaml, allowed_classes, filename)
43
43
  end
44
44
 
45
- # @deprecated Use {#safe_load_file} instead.
46
- def self.load_file(filename, default_value = false, strip_classes = false)
47
- Puppet.deprecation_warning(_("Puppet::Util::Yaml.load_file is deprecated. Use safe_load_file instead."))
48
-
49
- if(strip_classes) then
50
- data = YAML::parse_file(filename)
51
- data.root.each do |o|
52
- if o.respond_to?(:tag=) and
53
- o.tag != nil and
54
- o.tag.start_with?("!ruby")
55
- o.tag = nil
56
- end
57
- end
58
- data.to_ruby || default_value
59
- else
60
- yaml = YAML.load_file(filename)
61
- yaml || default_value
62
- end
63
- rescue *YamlLoadExceptions => detail
64
- raise YamlLoadError.new(detail.message, detail)
65
- end
66
-
67
45
  def self.dump(structure, filename)
68
46
  Puppet::FileSystem.replace_file(filename, 0660) do |fh|
69
47
  YAML.dump(structure, fh)
@@ -2,4 +2,3 @@
2
2
  # Add one requirement per vendored package (or a comment if it is loaded on demand).
3
3
 
4
4
  # The vendored library 'rgen' is loaded on demand.
5
- # The vendored library 'pathspec' is loaded on demand.
@@ -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.21.1'
9
+ PUPPETVERSION = '7.4.1'
10
10
 
11
11
  ##
12
12
  # version is a public API method intended to always provide a fast and
data/lib/puppet/x509.rb CHANGED
@@ -1,7 +1,11 @@
1
1
  require 'puppet'
2
2
  require 'puppet/ssl/openssl_loader'
3
3
 
4
- module Puppet::X509 # :nodoc:
4
+ # Responsible for loading and saving certificates and private keys.
5
+ #
6
+ # @see Puppet::X509::CertProvider
7
+ # @api private
8
+ module Puppet::X509
5
9
  require 'puppet/x509/pem_store'
6
10
  require 'puppet/x509/cert_provider'
7
11
  end
@@ -1,6 +1,11 @@
1
1
  require 'puppet/x509'
2
2
 
3
- # Class for loading and saving cert related objects.
3
+ # Class for loading and saving cert related objects. By default the provider
4
+ # loads and saves based on puppet's default settings, such as `Puppet[:localcacert]`.
5
+ # The providers sets the permissions on files it saves, such as the private key.
6
+ # All of the `load_*` methods take an optional `required` parameter. If an object
7
+ # doesn't exist, then by default the provider returns `nil`. However, if the
8
+ # `required` parameter is true, then an exception will be raised instead.
4
9
  #
5
10
  # @api private
6
11
  class Puppet::X509::CertProvider
@@ -32,6 +37,7 @@ class Puppet::X509::CertProvider
32
37
  #
33
38
  # @param certs [Array<OpenSSL::X509::Certificate>] Array of CA certs to save
34
39
  # @raise [Puppet::Error] if the certs cannot be saved
40
+ #
35
41
  # @api private
36
42
  def save_cacerts(certs)
37
43
  save_pem(certs.map(&:to_pem).join, @capath, **permissions_for_setting(:localcacert))
@@ -45,6 +51,7 @@ class Puppet::X509::CertProvider
45
51
  # @return (see #load_cacerts_from_pem)
46
52
  # @raise (see #load_cacerts_from_pem)
47
53
  # @raise [Puppet::Error] if the certs cannot be loaded
54
+ #
48
55
  # @api private
49
56
  def load_cacerts(required: false)
50
57
  pem = load_pem(@capath)
@@ -61,6 +68,7 @@ class Puppet::X509::CertProvider
61
68
  # @param pem [String] PEM encoded certificate(s)
62
69
  # @return [Array<OpenSSL::X509::Certificate>] Array of CA certs
63
70
  # @raise [OpenSSL::X509::CertificateError] The `pem` text does not contain a valid cert
71
+ #
64
72
  # @api private
65
73
  def load_cacerts_from_pem(pem)
66
74
  # TRANSLATORS 'PEM' is an acronym and shouldn't be translated
@@ -75,6 +83,7 @@ class Puppet::X509::CertProvider
75
83
  #
76
84
  # @param crls [Array<OpenSSL::X509::CRL>] Array of CRLs to save
77
85
  # @raise [Puppet::Error] if the CRLs cannot be saved
86
+ #
78
87
  # @api private
79
88
  def save_crls(crls)
80
89
  save_pem(crls.map(&:to_pem).join, @crlpath, **permissions_for_setting(:hostcrl))
@@ -88,6 +97,7 @@ class Puppet::X509::CertProvider
88
97
  # @return (see #load_crls_from_pem)
89
98
  # @raise (see #load_crls_from_pem)
90
99
  # @raise [Puppet::Error] if the CRLs cannot be loaded
100
+ #
91
101
  # @api private
92
102
  def load_crls(required: false)
93
103
  pem = load_pem(@crlpath)
@@ -104,6 +114,7 @@ class Puppet::X509::CertProvider
104
114
  # @param pem [String] PEM encoded CRL(s)
105
115
  # @return [Array<OpenSSL::X509::CRL>] Array of CRLs
106
116
  # @raise [OpenSSL::X509::CRLError] The `pem` text does not contain a valid CRL
117
+ #
107
118
  # @api private
108
119
  def load_crls_from_pem(pem)
109
120
  # TRANSLATORS 'PEM' is an acronym and shouldn't be translated
@@ -118,6 +129,8 @@ class Puppet::X509::CertProvider
118
129
  #
119
130
  # @return [Time, nil] Time when the CRL was last updated, or nil if we don't
120
131
  # have a CRL
132
+ #
133
+ # @api private
121
134
  def crl_last_update
122
135
  stat = Puppet::FileSystem.stat(@crlpath)
123
136
  Time.at(stat.mtime)
@@ -129,6 +142,7 @@ class Puppet::X509::CertProvider
129
142
  #
130
143
  # @param time [Time] The last updated time
131
144
  #
145
+ # @api private
132
146
  def crl_last_update=(time)
133
147
  Puppet::FileSystem.touch(@crlpath, mtime: time)
134
148
  end
@@ -142,6 +156,7 @@ class Puppet::X509::CertProvider
142
156
  # from the password, and use that to encrypt the private key. If nil,
143
157
  # save the private key unencrypted.
144
158
  # @raise [Puppet::Error] if the private key cannot be saved
159
+ #
145
160
  # @api private
146
161
  def save_private_key(name, key, password: nil)
147
162
  pem = if password
@@ -167,6 +182,7 @@ class Puppet::X509::CertProvider
167
182
  # @return (see #load_private_key_from_pem)
168
183
  # @raise (see #load_private_key_from_pem)
169
184
  # @raise [Puppet::Error] if the private key cannot be loaded
185
+ #
170
186
  # @api private
171
187
  def load_private_key(name, required: false, password: nil)
172
188
  path = @hostprivkey || to_path(@privatekeydir, name)
@@ -187,6 +203,7 @@ class Puppet::X509::CertProvider
187
203
  # not specified, then the key cannot be loaded.
188
204
  # @return [OpenSSL::PKey::RSA, OpenSSL::PKey::EC] The private key
189
205
  # @raise [OpenSSL::PKey::PKeyError] The `pem` text does not contain a valid key
206
+ #
190
207
  # @api private
191
208
  def load_private_key_from_pem(pem, password: nil)
192
209
  # set a non-nil password to ensure openssl doesn't prompt
@@ -216,6 +233,8 @@ class Puppet::X509::CertProvider
216
233
  #
217
234
  # @return [String, nil] The private key password as a binary string or nil
218
235
  # if there is none.
236
+ #
237
+ # @api private
219
238
  def load_private_key_password
220
239
  Puppet::FileSystem.read(Puppet[:passfile], :encoding => Encoding::BINARY)
221
240
  rescue Errno::ENOENT
@@ -227,6 +246,7 @@ class Puppet::X509::CertProvider
227
246
  # @param name [String] The client cert identity
228
247
  # @param cert [OpenSSL::X509::Certificate] The cert to save
229
248
  # @raise [Puppet::Error] if the client cert cannot be saved
249
+ #
230
250
  # @api private
231
251
  def save_client_cert(name, cert)
232
252
  path = @hostcert || to_path(@certdir, name)
@@ -242,6 +262,7 @@ class Puppet::X509::CertProvider
242
262
  # @return (see #load_request_from_pem)
243
263
  # @raise (see #load_client_cert_from_pem)
244
264
  # @raise [Puppet::Error] if the client cert cannot be loaded
265
+ #
245
266
  # @api private
246
267
  def load_client_cert(name, required: false)
247
268
  path = @hostcert || to_path(@certdir, name)
@@ -259,6 +280,7 @@ class Puppet::X509::CertProvider
259
280
  # @param pem [String] PEM encoded cert
260
281
  # @return [OpenSSL::X509::Certificate] the certificate
261
282
  # @raise [OpenSSL::X509::CertificateError] The `pem` text does not contain a valid cert
283
+ #
262
284
  # @api private
263
285
  def load_client_cert_from_pem(pem)
264
286
  OpenSSL::X509::Certificate.new(pem)
@@ -270,6 +292,7 @@ class Puppet::X509::CertProvider
270
292
  # @param private_key [OpenSSL::PKey::RSA] private key
271
293
  # @return [Puppet::X509::Request] The request
272
294
  #
295
+ # @api private
273
296
  def create_request(name, private_key)
274
297
  options = {}
275
298
 
@@ -292,6 +315,7 @@ class Puppet::X509::CertProvider
292
315
  # @param name [String] the request identity
293
316
  # @param csr [OpenSSL::X509::Request] the request
294
317
  # @raise [Puppet::Error] if the cert request cannot be saved
318
+ #
295
319
  # @api private
296
320
  def save_request(name, csr)
297
321
  path = to_path(@requestdir, name)
@@ -306,6 +330,7 @@ class Puppet::X509::CertProvider
306
330
  # @return (see #load_request_from_pem)
307
331
  # @raise (see #load_request_from_pem)
308
332
  # @raise [Puppet::Error] if the cert request cannot be saved
333
+ #
309
334
  # @api private
310
335
  def load_request(name)
311
336
  path = to_path(@requestdir, name)
@@ -319,6 +344,8 @@ class Puppet::X509::CertProvider
319
344
  #
320
345
  # @param name [String] The request identity
321
346
  # @return [Boolean] true if the CSR was deleted
347
+ #
348
+ # @api private
322
349
  def delete_request(name)
323
350
  path = to_path(@requestdir, name)
324
351
  delete_pem(path)
@@ -331,6 +358,7 @@ class Puppet::X509::CertProvider
331
358
  # @param pem [String] PEM encoded request
332
359
  # @return [OpenSSL::X509::Request] the request
333
360
  # @raise [OpenSSL::X509::RequestError] The `pem` text does not contain a valid request
361
+ #
334
362
  # @api private
335
363
  def load_request_from_pem(pem)
336
364
  OpenSSL::X509::Request.new(pem)
data/locales/puppet.pot CHANGED
@@ -6,11 +6,11 @@
6
6
  #, fuzzy
7
7
  msgid ""
8
8
  msgstr ""
9
- "Project-Id-Version: Puppet automation framework 6.19.1-133-gcc65fe8151\n"
9
+ "Project-Id-Version: Puppet automation framework 7.3.0-6-g7c55ccd544\n"
10
10
  "\n"
11
11
  "Report-Msgid-Bugs-To: https://tickets.puppetlabs.com\n"
12
- "POT-Creation-Date: 2021-01-14 12:33+0000\n"
13
- "PO-Revision-Date: 2021-01-14 12:33+0000\n"
12
+ "POT-Creation-Date: 2021-01-21 13:07+0000\n"
13
+ "PO-Revision-Date: 2021-01-21 13:07+0000\n"
14
14
  "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
15
15
  "Language-Team: LANGUAGE <LL@li.org>\n"
16
16
  "Language: \n"
@@ -48,21 +48,21 @@ msgstr ""
48
48
  msgid "Config file %{hiera_config} not found, using Hiera defaults"
49
49
  msgstr ""
50
50
 
51
- #: ../lib/puppet.rb:144
51
+ #: ../lib/puppet.rb:138
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:230
55
+ #: ../lib/puppet.rb:224
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:257
60
+ #: ../lib/puppet.rb:250
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:259
65
+ #: ../lib/puppet.rb:252
66
66
  msgid "Run `puppet agent -t`"
67
67
  msgstr ""
68
68
 
@@ -120,59 +120,59 @@ msgstr ""
120
120
  msgid "Failed to acquire lock"
121
121
  msgstr ""
122
122
 
123
- #: ../lib/puppet/application.rb:238
123
+ #: ../lib/puppet/application.rb:231
124
124
  msgid "Unable to find application '%{application_name}'. %{error}"
125
125
  msgstr ""
126
126
 
127
- #: ../lib/puppet/application.rb:259
127
+ #: ../lib/puppet/application.rb:252
128
128
  msgid "Unable to load application class '%{class_name}' from file 'puppet/application/%{application_name}.rb'"
129
129
  msgstr ""
130
130
 
131
- #: ../lib/puppet/application.rb:298
131
+ #: ../lib/puppet/application.rb:305
132
132
  msgid "Invalid environment mode '%{mode_name}'"
133
133
  msgstr ""
134
134
 
135
- #: ../lib/puppet/application.rb:366
135
+ #: ../lib/puppet/application.rb:405
136
136
  msgid "Could not get application-specific default settings"
137
137
  msgstr ""
138
138
 
139
- #: ../lib/puppet/application.rb:372
139
+ #: ../lib/puppet/application.rb:411
140
140
  msgid "Could not initialize"
141
141
  msgstr ""
142
142
 
143
- #: ../lib/puppet/application.rb:373
143
+ #: ../lib/puppet/application.rb:412
144
144
  msgid "Could not parse application options"
145
145
  msgstr ""
146
146
 
147
- #: ../lib/puppet/application.rb:374
147
+ #: ../lib/puppet/application.rb:413
148
148
  msgid "Could not prepare for execution"
149
149
  msgstr ""
150
150
 
151
- #: ../lib/puppet/application.rb:377
151
+ #: ../lib/puppet/application.rb:416
152
152
  msgid "`puppet %{name}` is deprecated and will be removed in a future release."
153
153
  msgstr ""
154
154
 
155
- #: ../lib/puppet/application.rb:380
155
+ #: ../lib/puppet/application.rb:419
156
156
  msgid "Could not configure routes from %{route_file}"
157
157
  msgstr ""
158
158
 
159
- #: ../lib/puppet/application.rb:381
159
+ #: ../lib/puppet/application.rb:420
160
160
  msgid "Could not log runtime debug info"
161
161
  msgstr ""
162
162
 
163
- #: ../lib/puppet/application.rb:382
163
+ #: ../lib/puppet/application.rb:421
164
164
  msgid "Could not run"
165
165
  msgstr ""
166
166
 
167
- #: ../lib/puppet/application.rb:386
167
+ #: ../lib/puppet/application.rb:430
168
168
  msgid "No valid command or main"
169
169
  msgstr ""
170
170
 
171
- #: ../lib/puppet/application.rb:431
171
+ #: ../lib/puppet/application.rb:486
172
172
  msgid "Could not set logdest to %{dest}."
173
173
  msgstr ""
174
174
 
175
- #: ../lib/puppet/application.rb:508
175
+ #: ../lib/puppet/application.rb:580
176
176
  msgid "No help available for puppet %{app_name}"
177
177
  msgstr ""
178
178
 
@@ -238,10 +238,6 @@ msgstr ""
238
238
  msgid "Only one file can be applied per run. Skipping %{files}"
239
239
  msgstr ""
240
240
 
241
- #: ../lib/puppet/application/cert.rb:6
242
- msgid "Manage certificates and requests (Disabled)"
243
- msgstr ""
244
-
245
241
  #: ../lib/puppet/application/describe.rb:177
246
242
  msgid "Display help about resource types"
247
243
  msgstr ""
@@ -274,23 +270,23 @@ msgstr ""
274
270
  msgid "No device found in %{config}"
275
271
  msgstr ""
276
272
 
277
- #: ../lib/puppet/application/device.rb:317
273
+ #: ../lib/puppet/application/device.rb:315
278
274
  msgid "retrieving resource: %{resource} from %{target} at %{scheme}%{url_host}%{port}%{url_path}"
279
275
  msgstr ""
280
276
 
281
- #: ../lib/puppet/application/device.rb:332
277
+ #: ../lib/puppet/application/device.rb:330
282
278
  msgid "retrieving facts from %{target} at %{scheme}%{url_host}%{port}%{url_path}"
283
279
  msgstr ""
284
280
 
285
- #: ../lib/puppet/application/device.rb:355
281
+ #: ../lib/puppet/application/device.rb:353
286
282
  msgid "starting applying configuration to %{target} at %{scheme}%{url_host}%{port}%{url_path}"
287
283
  msgstr ""
288
284
 
289
- #: ../lib/puppet/application/device.rb:393 ../lib/puppet/application/resource.rb:196
285
+ #: ../lib/puppet/application/device.rb:389 ../lib/puppet/application/resource.rb:196
290
286
  msgid "You must specify the type to display"
291
287
  msgstr ""
292
288
 
293
- #: ../lib/puppet/application/device.rb:394 ../lib/puppet/application/resource.rb:197
289
+ #: ../lib/puppet/application/device.rb:390 ../lib/puppet/application/resource.rb:197
294
290
  msgid "Could not find type %{type}"
295
291
  msgstr ""
296
292
 
@@ -356,27 +352,27 @@ msgstr ""
356
352
  msgid "Store and retrieve files in a filebucket"
357
353
  msgstr ""
358
354
 
359
- #: ../lib/puppet/application/filebucket.rb:221
355
+ #: ../lib/puppet/application/filebucket.rb:225
360
356
  msgid "You must specify a file to back up"
361
357
  msgstr ""
362
358
 
363
- #: ../lib/puppet/application/filebucket.rb:225
359
+ #: ../lib/puppet/application/filebucket.rb:229
364
360
  msgid "%{file}: no such file"
365
361
  msgstr ""
366
362
 
367
- #: ../lib/puppet/application/filebucket.rb:229
363
+ #: ../lib/puppet/application/filebucket.rb:233
368
364
  msgid "%{file}: cannot read file"
369
365
  msgstr ""
370
366
 
371
- #: ../lib/puppet/application/filebucket.rb:251 ../lib/puppet/application/filebucket.rb:274
367
+ #: ../lib/puppet/application/filebucket.rb:255 ../lib/puppet/application/filebucket.rb:278
372
368
  msgid "Need exactly two arguments: filebucket diff <file_a> <file_b>"
373
369
  msgstr ""
374
370
 
375
- #: ../lib/puppet/application/filebucket.rb:271
371
+ #: ../lib/puppet/application/filebucket.rb:275
376
372
  msgid "Comparing %{checksum_a} %{checksum_b} %{file_a} %{file_b}"
377
373
  msgstr ""
378
374
 
379
- #: ../lib/puppet/application/filebucket.rb:285
375
+ #: ../lib/puppet/application/filebucket.rb:289
380
376
  msgid "Cancelling"
381
377
  msgstr ""
382
378
 
@@ -470,7 +466,7 @@ msgstr ""
470
466
  msgid "Creating a new EC SSL key for %{name} using curve %{curve}"
471
467
  msgstr ""
472
468
 
473
- #: ../lib/puppet/application/ssl.rb:157 ../lib/puppet/ssl/key.rb:26
469
+ #: ../lib/puppet/application/ssl.rb:157
474
470
  msgid "Creating a new SSL key for %{name}"
475
471
  msgstr ""
476
472
 
@@ -550,81 +546,81 @@ msgstr ""
550
546
  msgid "Applied catalog in %{seconds} seconds"
551
547
  msgstr ""
552
548
 
553
- #: ../lib/puppet/configurer.rb:227
549
+ #: ../lib/puppet/configurer.rb:225
554
550
  msgid "Could not select a functional puppet server from server_list: '%{server_list}'"
555
551
  msgstr ""
556
552
 
557
553
  #. TRANSLATORS 'server_list' is the name of a setting and should not be translated
558
- #: ../lib/puppet/configurer.rb:241
554
+ #: ../lib/puppet/configurer.rb:239
559
555
  msgid "Selected puppet server from the `server_list` setting: %{server}:%{port}"
560
556
  msgstr ""
561
557
 
562
- #: ../lib/puppet/configurer.rb:277
558
+ #: ../lib/puppet/configurer.rb:275
563
559
  msgid "Local environment: '%{local_env}' doesn't match the environment of the cached catalog '%{catalog_env}', switching agent to '%{catalog_env}'."
564
560
  msgstr ""
565
561
 
566
- #: ../lib/puppet/configurer.rb:322
562
+ #: ../lib/puppet/configurer.rb:320
567
563
  msgid "Local environment: '%{local_env}' doesn't match server specified node environment '%{node_env}', switching agent to '%{node_env}'."
568
564
  msgstr ""
569
565
 
570
- #: ../lib/puppet/configurer.rb:337
566
+ #: ../lib/puppet/configurer.rb:335
571
567
  msgid "Using configured environment '%{env}'"
572
568
  msgstr ""
573
569
 
574
- #: ../lib/puppet/configurer.rb:341
570
+ #: ../lib/puppet/configurer.rb:339
575
571
  msgid "Unable to fetch my node definition, but the agent run will continue:"
576
572
  msgstr ""
577
573
 
578
- #: ../lib/puppet/configurer.rb:369
574
+ #: ../lib/puppet/configurer.rb:367
579
575
  msgid "Not using catalog because its environment '%{catalog_env}' does not match agent specified environment '%{local_env}' and strict_environment_mode is set"
580
576
  msgstr ""
581
577
 
582
- #: ../lib/puppet/configurer.rb:380
578
+ #: ../lib/puppet/configurer.rb:378
583
579
  msgid "Catalog environment didn't stabilize after %{tries} fetches, aborting run"
584
580
  msgstr ""
585
581
 
586
- #: ../lib/puppet/configurer.rb:382
582
+ #: ../lib/puppet/configurer.rb:380
587
583
  msgid "Local environment: '%{local_env}' doesn't match server specified environment '%{catalog_env}', restarting agent run with environment '%{catalog_env}'"
588
584
  msgstr ""
589
585
 
590
- #: ../lib/puppet/configurer.rb:426
586
+ #: ../lib/puppet/configurer.rb:434
591
587
  msgid "Failed to apply catalog: %{detail}"
592
588
  msgstr ""
593
589
 
594
- #: ../lib/puppet/configurer.rb:455 ../lib/puppet/http/resolver/server_list.rb:67
590
+ #: ../lib/puppet/configurer.rb:463 ../lib/puppet/http/resolver/server_list.rb:63
595
591
  msgid "Puppet server %{host}:%{port} is unavailable: %{code} %{reason}"
596
592
  msgstr ""
597
593
 
598
594
  #. TRANSLATORS 'server_list' is the name of a setting and should not be translated
599
- #: ../lib/puppet/configurer.rb:459 ../lib/puppet/http/resolver/server_list.rb:70
595
+ #: ../lib/puppet/configurer.rb:467 ../lib/puppet/http/resolver/server_list.rb:66
600
596
  msgid "Unable to connect to server from server_list setting: %{detail}"
601
597
  msgstr ""
602
598
 
603
- #: ../lib/puppet/configurer.rb:470 ../lib/puppet/face/report.rb:47
599
+ #: ../lib/puppet/configurer.rb:478 ../lib/puppet/face/report.rb:47
604
600
  msgid "Could not send report: %{detail}"
605
601
  msgstr ""
606
602
 
607
- #: ../lib/puppet/configurer.rb:479
603
+ #: ../lib/puppet/configurer.rb:487
608
604
  msgid "Could not save last run local report: %{detail}"
609
605
  msgstr ""
610
606
 
611
- #: ../lib/puppet/configurer.rb:498
607
+ #: ../lib/puppet/configurer.rb:506
612
608
  msgid "Uploading facts for %{node} to %{server}"
613
609
  msgstr ""
614
610
 
615
- #: ../lib/puppet/configurer.rb:506
611
+ #: ../lib/puppet/configurer.rb:514
616
612
  msgid "Failed to submit facts: %{detail}"
617
613
  msgstr ""
618
614
 
619
- #: ../lib/puppet/configurer.rb:521
615
+ #: ../lib/puppet/configurer.rb:529
620
616
  msgid "Could not run command from %{setting}: %{detail}"
621
617
  msgstr ""
622
618
 
623
- #: ../lib/puppet/configurer.rb:539
619
+ #: ../lib/puppet/configurer.rb:547
624
620
  msgid "Could not retrieve catalog from cache: %{detail}"
625
621
  msgstr ""
626
622
 
627
- #: ../lib/puppet/configurer.rb:560
623
+ #: ../lib/puppet/configurer.rb:568
628
624
  msgid "Could not retrieve catalog from remote server: %{detail}"
629
625
  msgstr ""
630
626
 
@@ -692,50 +688,42 @@ msgstr ""
692
688
  msgid "a data type can only have one implementation"
693
689
  msgstr ""
694
690
 
695
- #: ../lib/puppet/defaults.rb:179
691
+ #: ../lib/puppet/defaults.rb:172
696
692
  msgid "Cannot disable unrecognized warning types '%{invalid}'."
697
693
  msgstr ""
698
694
 
699
- #: ../lib/puppet/defaults.rb:180
695
+ #: ../lib/puppet/defaults.rb:173
700
696
  msgid "Valid values are '%{values}'."
701
697
  msgstr ""
702
698
 
703
699
  #. TRANSLATORS 'data_binding_terminus' is a setting and should not be translated
704
- #: ../lib/puppet/defaults.rb:547
700
+ #: ../lib/puppet/defaults.rb:538
705
701
  msgid "Setting 'data_binding_terminus' is deprecated."
706
702
  msgstr ""
707
703
 
708
704
  #. TRANSLATORS 'hiera' should not be translated
709
- #: ../lib/puppet/defaults.rb:549
705
+ #: ../lib/puppet/defaults.rb:540
710
706
  msgid "Convert custom terminus to hiera 5 API."
711
707
  msgstr ""
712
708
 
713
709
  #. TRANSLATORS 'environment_data_provider' is a setting and should not be translated
714
- #: ../lib/puppet/defaults.rb:762
710
+ #: ../lib/puppet/defaults.rb:733
715
711
  msgid "Setting 'environment_data_provider' is deprecated."
716
712
  msgstr ""
717
713
 
718
- #: ../lib/puppet/defaults.rb:847
714
+ #: ../lib/puppet/defaults.rb:818
719
715
  msgid "Certificate names must be lower case"
720
716
  msgstr ""
721
717
 
722
- #: ../lib/puppet/defaults.rb:1042
723
- msgid "Setting 'ssl_client_ca_auth' is deprecated."
724
- msgstr ""
725
-
726
- #: ../lib/puppet/defaults.rb:1121 ../lib/puppet/settings/enum_setting.rb:13 ../lib/puppet/settings/symbolic_enum_setting.rb:14
718
+ #: ../lib/puppet/defaults.rb:1069 ../lib/puppet/settings/enum_setting.rb:13 ../lib/puppet/settings/symbolic_enum_setting.rb:14
727
719
  msgid "Invalid value '%{value}' for parameter %{name}. Allowed values are '%{allowed_values}'"
728
720
  msgstr ""
729
721
 
730
722
  #. TRANSLATORS 'pluginsync' is a setting and should not be translated
731
- #: ../lib/puppet/defaults.rb:1995
723
+ #: ../lib/puppet/defaults.rb:1906
732
724
  msgid "Setting 'pluginsync' is deprecated."
733
725
  msgstr ""
734
726
 
735
- #: ../lib/puppet/defaults.rb:2230
736
- msgid "The 'func3x_check' setting is deprecated and will be removed in a future release."
737
- msgstr ""
738
-
739
727
  #: ../lib/puppet/error.rb:77
740
728
  msgid "Could not parse for environment %{environment}: %{message}"
741
729
  msgstr ""
@@ -778,7 +766,7 @@ msgstr ""
778
766
  msgid "no matching resources found"
779
767
  msgstr ""
780
768
 
781
- #: ../lib/puppet/face/config.rb:7 ../lib/puppet/face/epp.rb:8 ../lib/puppet/face/facts.rb:30 ../lib/puppet/face/generate.rb:7 ../lib/puppet/face/help.rb:9 ../lib/puppet/face/key.rb:5 ../lib/puppet/face/man.rb:8 ../lib/puppet/face/module.rb:9 ../lib/puppet/face/node.rb:4 ../lib/puppet/face/parser.rb:6 ../lib/puppet/face/plugin.rb:6 ../lib/puppet/face/report.rb:5 ../lib/puppet/face/resource.rb:5 ../lib/puppet/face/status.rb:5
769
+ #: ../lib/puppet/face/config.rb:7 ../lib/puppet/face/epp.rb:8 ../lib/puppet/face/facts.rb:6 ../lib/puppet/face/generate.rb:7 ../lib/puppet/face/help.rb:9 ../lib/puppet/face/module.rb:9 ../lib/puppet/face/node.rb:4 ../lib/puppet/face/parser.rb:6 ../lib/puppet/face/plugin.rb:6 ../lib/puppet/face/report.rb:5 ../lib/puppet/face/resource.rb:5
782
770
  msgid "Apache 2 license; see COPYING"
783
771
  msgstr ""
784
772
 
@@ -1015,32 +1003,68 @@ msgstr ""
1015
1003
  msgid "--values option must evaluate to a Hash or undef, got: '%{values_class}'"
1016
1004
  msgstr ""
1017
1005
 
1018
- #: ../lib/puppet/face/facts.rb:32
1006
+ #: ../lib/puppet/face/facts.rb:8
1019
1007
  msgid "Retrieve and store facts."
1020
1008
  msgstr ""
1021
1009
 
1022
- #: ../lib/puppet/face/facts.rb:40
1010
+ #: ../lib/puppet/face/facts.rb:16
1023
1011
  msgid "Retrieve a node's facts."
1024
1012
  msgstr ""
1025
1013
 
1026
- #: ../lib/puppet/face/facts.rb:41
1014
+ #: ../lib/puppet/face/facts.rb:17
1027
1015
  msgid "[<node_certname>]"
1028
1016
  msgstr ""
1029
1017
 
1030
- #: ../lib/puppet/face/facts.rb:64
1018
+ #: ../lib/puppet/face/facts.rb:39
1031
1019
  msgid "Upload local facts to the puppet master."
1032
1020
  msgstr ""
1033
1021
 
1034
- #: ../lib/puppet/face/facts.rb:106
1022
+ #: ../lib/puppet/face/facts.rb:77
1035
1023
  msgid "Uploading facts for '%{node}' to '%{server}'"
1036
1024
  msgstr ""
1037
1025
 
1026
+ #: ../lib/puppet/face/facts.rb:87
1027
+ msgid "Retrieve current node's facts."
1028
+ msgstr ""
1029
+
1030
+ #: ../lib/puppet/face/facts.rb:88
1031
+ msgid "[<facts>]"
1032
+ msgstr ""
1033
+
1034
+ #: ../lib/puppet/face/facts.rb:104 ../lib/puppet/face/facts.rb:109 ../lib/puppet/face/facts.rb:114 ../lib/puppet/face/module/changes.rb:21
1035
+ msgid "<path>"
1036
+ msgstr ""
1037
+
1038
+ #: ../lib/puppet/face/facts.rb:106
1039
+ msgid "The location of the config file for Facter."
1040
+ msgstr ""
1041
+
1042
+ #: ../lib/puppet/face/facts.rb:111
1043
+ msgid "The path to a directory that contains custom facts."
1044
+ msgstr ""
1045
+
1038
1046
  #: ../lib/puppet/face/facts.rb:116
1039
- msgid "Compare Facter 3 output with Facter 4 output"
1047
+ msgid "The path to a directory that contains external facts."
1048
+ msgstr ""
1049
+
1050
+ #: ../lib/puppet/face/facts.rb:120
1051
+ msgid "Disable fact blocking mechanism."
1040
1052
  msgstr ""
1041
1053
 
1042
- #: ../lib/puppet/face/facts.rb:145
1043
- msgid "Already using Facter 4. To use `puppet facts diff` remove facterng from the .conf file or run `puppet config set facterng false`."
1054
+ #: ../lib/puppet/face/facts.rb:124
1055
+ msgid "Disable fact caching mechanism."
1056
+ msgstr ""
1057
+
1058
+ #: ../lib/puppet/face/facts.rb:128
1059
+ msgid "Show legacy facts when querying all facts."
1060
+ msgstr ""
1061
+
1062
+ #: ../lib/puppet/face/facts.rb:132
1063
+ msgid "Show only the value when the action is called with a single query"
1064
+ msgstr ""
1065
+
1066
+ #: ../lib/puppet/face/facts.rb:136
1067
+ msgid "Show how much time it took to resolve each fact."
1044
1068
  msgstr ""
1045
1069
 
1046
1070
  #: ../lib/puppet/face/generate.rb:9
@@ -1152,52 +1176,10 @@ msgstr ""
1152
1176
  msgid "Check error logs."
1153
1177
  msgstr ""
1154
1178
 
1155
- #: ../lib/puppet/face/key.rb:7
1156
- msgid "Create, save, and remove certificate keys."
1157
- msgstr ""
1158
-
1159
- #: ../lib/puppet/face/man.rb:10
1160
- msgid "Display Puppet manual pages."
1161
- msgstr ""
1162
-
1163
- #: ../lib/puppet/face/man.rb:28
1164
- msgid "Display the manual page for a Puppet subcommand."
1165
- msgstr ""
1166
-
1167
- #: ../lib/puppet/face/man.rb:29
1168
- msgid "<subcommand>"
1169
- msgstr ""
1170
-
1171
- #. TRANSLATORS '--render-as s' is a command line option and should not be translated
1172
- #: ../lib/puppet/face/man.rb:31
1173
- msgid ""
1174
- " The man data, in Markdown format, suitable for consumption by Ronn.\n"
1175
- "\n"
1176
- " RENDERING ISSUES: To skip fancy formatting and output the raw Markdown\n"
1177
- " text (e.g. for use in a pipeline), call this action with '--render-as s'.\n"
1178
- msgstr ""
1179
-
1180
- #. TRANSLATORS 'puppet man' is a specific command line and should not be translated
1181
- #: ../lib/puppet/face/man.rb:56
1182
- msgid "The 'puppet man' command takes a single subcommand to review the subcommand's manpage"
1183
- msgstr ""
1184
-
1185
1179
  #: ../lib/puppet/face/module.rb:11
1186
1180
  msgid "Creates, installs and searches for modules on the Puppet Forge."
1187
1181
  msgstr ""
1188
1182
 
1189
- #: ../lib/puppet/face/module/build.rb:3
1190
- msgid "Build a module release package."
1191
- msgstr ""
1192
-
1193
- #. TRANSLATORS 'Puppet Development Kit' is the name of the software package replacing this action and should not be translated.
1194
- #. TRANSLATORS 'Puppet Development Kit' is the name of the software package replacing this action and should not be translated.
1195
- #. TRANSLATORS 'Puppet Development Kit' is the name of the software package replacing this action and should not be translated.
1196
- #. TRANSLATORS 'Puppet Development Kit' is the name of the software package replacing this action and should not be translated.
1197
- #: ../lib/puppet/face/module/build.rb:5 ../lib/puppet/face/module/build.rb:9 ../lib/puppet/face/module/generate.rb:5 ../lib/puppet/face/module/generate.rb:9
1198
- msgid "This action has been replaced by Puppet Development Kit. For more information visit https://puppet.com/docs/pdk/latest/pdk.html."
1199
- msgstr ""
1200
-
1201
1183
  #: ../lib/puppet/face/module/changes.rb:3
1202
1184
  msgid "Show modified files of an installed module."
1203
1185
  msgstr ""
@@ -1206,10 +1188,6 @@ msgstr ""
1206
1188
  msgid "Array of strings representing paths of modified files."
1207
1189
  msgstr ""
1208
1190
 
1209
- #: ../lib/puppet/face/module/changes.rb:21
1210
- msgid "<path>"
1211
- msgstr ""
1212
-
1213
1191
  #: ../lib/puppet/face/module/changes.rb:27
1214
1192
  msgid "Could not find a valid module at %{path}"
1215
1193
  msgstr ""
@@ -1222,10 +1200,6 @@ msgstr ""
1222
1200
  msgid "%{count} files modified"
1223
1201
  msgstr ""
1224
1202
 
1225
- #: ../lib/puppet/face/module/generate.rb:3
1226
- msgid "Generate boilerplate for a new module."
1227
- msgstr ""
1228
-
1229
1203
  #: ../lib/puppet/face/module/install.rb:8
1230
1204
  msgid "Install a module from the Puppet Forge or a release archive."
1231
1205
  msgstr ""
@@ -1301,26 +1275,6 @@ msgstr ""
1301
1275
  msgid "invalid"
1302
1276
  msgstr ""
1303
1277
 
1304
- #: ../lib/puppet/face/module/search.rb:6
1305
- msgid "Search the Puppet Forge for a module."
1306
- msgstr ""
1307
-
1308
- #: ../lib/puppet/face/module/search.rb:14
1309
- msgid "Array of module metadata hashes"
1310
- msgstr ""
1311
-
1312
- #: ../lib/puppet/face/module/search.rb:24
1313
- msgid "<search_term>"
1314
- msgstr ""
1315
-
1316
- #: ../lib/puppet/face/module/search.rb:27
1317
- msgid "This action has been deprecated. Please use the Puppet Forge to search for modules."
1318
- msgstr ""
1319
-
1320
- #: ../lib/puppet/face/module/search.rb:37
1321
- msgid "No results found for '%{term}'."
1322
- msgstr ""
1323
-
1324
1278
  #: ../lib/puppet/face/module/uninstall.rb:3
1325
1279
  msgid "Uninstall a puppet module."
1326
1280
  msgstr ""
@@ -1412,19 +1366,19 @@ msgstr ""
1412
1366
  msgid "At least one node should be passed"
1413
1367
  msgstr ""
1414
1368
 
1415
- #: ../lib/puppet/face/node/clean.rb:64
1369
+ #: ../lib/puppet/face/node/clean.rb:72
1416
1370
  msgid "Not managing %{node} certs as this host is not a CA"
1417
1371
  msgstr ""
1418
1372
 
1419
- #: ../lib/puppet/face/node/clean.rb:71
1373
+ #: ../lib/puppet/face/node/clean.rb:79
1420
1374
  msgid "%{node}'s facts removed"
1421
1375
  msgstr ""
1422
1376
 
1423
- #: ../lib/puppet/face/node/clean.rb:77
1377
+ #: ../lib/puppet/face/node/clean.rb:85
1424
1378
  msgid "%{node}'s cached node removed"
1425
1379
  msgstr ""
1426
1380
 
1427
- #: ../lib/puppet/face/node/clean.rb:83
1381
+ #: ../lib/puppet/face/node/clean.rb:91
1428
1382
  msgid "%{node}'s reports removed"
1429
1383
  msgstr ""
1430
1384
 
@@ -1490,11 +1444,11 @@ msgid ""
1490
1444
  " the files downloaded, which will be empty if none were retrieved.\n"
1491
1445
  msgstr ""
1492
1446
 
1493
- #: ../lib/puppet/face/plugin.rb:57
1447
+ #: ../lib/puppet/face/plugin.rb:54
1494
1448
  msgid "No plugins downloaded."
1495
1449
  msgstr ""
1496
1450
 
1497
- #: ../lib/puppet/face/plugin.rb:59
1451
+ #: ../lib/puppet/face/plugin.rb:56
1498
1452
  msgid "Downloaded these plugins: %{plugins}"
1499
1453
  msgstr ""
1500
1454
 
@@ -1562,23 +1516,16 @@ msgstr ""
1562
1516
  msgid "The same resource object passed as an argument."
1563
1517
  msgstr ""
1564
1518
 
1565
- #: ../lib/puppet/face/status.rb:7
1566
- msgid "View puppet server status."
1567
- msgstr ""
1568
-
1569
- #: ../lib/puppet/face/status.rb:15
1570
- msgid "Check status of puppet master server."
1519
+ #: ../lib/puppet/feature/base.rb:19
1520
+ msgid "Cannot determine basic system flavour"
1571
1521
  msgstr ""
1572
1522
 
1573
- #. TRANSLATORS the string 'Puppet::Status' is a Puppet language object and should not be translated
1574
- #: ../lib/puppet/face/status.rb:17
1575
- msgid ""
1576
- " A \"true\" response or a low-level connection error. When used from the Ruby\n"
1577
- " API: returns a Puppet::Status object.\n"
1523
+ #: ../lib/puppet/ffi/windows/api_types.rb:86
1524
+ msgid "Unable to read wide strings with %{null_terminator} terminal nulls"
1578
1525
  msgstr ""
1579
1526
 
1580
- #: ../lib/puppet/feature/base.rb:19
1581
- msgid "Cannot determine basic system flavour"
1527
+ #: ../lib/puppet/ffi/windows/api_types.rb:231
1528
+ msgid "Bad GUID format."
1582
1529
  msgstr ""
1583
1530
 
1584
1531
  #: ../lib/puppet/file_bucket/dipper.rb:39
@@ -1650,7 +1597,7 @@ msgstr ""
1650
1597
  msgid "Cannot find file: Invalid relative path '%{path}'"
1651
1598
  msgstr ""
1652
1599
 
1653
- #: ../lib/puppet/file_serving/configuration.rb:109
1600
+ #: ../lib/puppet/file_serving/configuration.rb:104
1654
1601
  msgid "Error parsing fileserver configuration: %{detail}; using old configuration"
1655
1602
  msgstr ""
1656
1603
 
@@ -1666,31 +1613,23 @@ msgstr ""
1666
1613
  msgid "Fileserver configuration file does not use '=' as a separator"
1667
1614
  msgstr ""
1668
1615
 
1669
- #: ../lib/puppet/file_serving/configuration/parser.rb:41 ../lib/puppet/network/auth_config_parser.rb:72 ../lib/puppet/util/network_device/config.rb:101
1616
+ #: ../lib/puppet/file_serving/configuration/parser.rb:43 ../lib/puppet/util/network_device/config.rb:101
1670
1617
  msgid "Invalid argument '%{var}' at %{error_location}"
1671
1618
  msgstr ""
1672
1619
 
1673
- #: ../lib/puppet/file_serving/configuration/parser.rb:46
1620
+ #: ../lib/puppet/file_serving/configuration/parser.rb:48
1674
1621
  msgid "Invalid entry at %{error_location}: '%{file_text}'"
1675
1622
  msgstr ""
1676
1623
 
1677
- #: ../lib/puppet/file_serving/configuration/parser.rb:71
1678
- msgid "allowing %{val} access"
1679
- msgstr ""
1680
-
1681
- #: ../lib/puppet/file_serving/configuration/parser.rb:85
1682
- msgid "denying %{val} access"
1683
- msgstr ""
1684
-
1685
- #: ../lib/puppet/file_serving/configuration/parser.rb:99
1624
+ #: ../lib/puppet/file_serving/configuration/parser.rb:73
1686
1625
  msgid "%{mount} is already mounted at %{name} at %{error_location}"
1687
1626
  msgstr ""
1688
1627
 
1689
- #: ../lib/puppet/file_serving/configuration/parser.rb:124
1628
+ #: ../lib/puppet/file_serving/configuration/parser.rb:98
1690
1629
  msgid "Removing mount \"%{mount}\": %{detail}"
1691
1630
  msgstr ""
1692
1631
 
1693
- #: ../lib/puppet/file_serving/configuration/parser.rb:128
1632
+ #: ../lib/puppet/file_serving/configuration/parser.rb:102
1694
1633
  msgid "The '%{mount}' module can not have a path. Ignoring attempt to set it"
1695
1634
  msgstr ""
1696
1635
 
@@ -1748,7 +1687,7 @@ msgstr ""
1748
1687
  msgid "Cannot manage files of type %{file_type}"
1749
1688
  msgstr ""
1750
1689
 
1751
- #: ../lib/puppet/file_serving/mount.rb:21
1690
+ #: ../lib/puppet/file_serving/mount.rb:20
1752
1691
  msgid "Invalid mount name format '%{name}'"
1753
1692
  msgstr ""
1754
1693
 
@@ -2248,64 +2187,68 @@ msgstr ""
2248
2187
  msgid "Try the '--graph' option and opening the resulting '.dot' file in OmniGraffle or GraphViz"
2249
2188
  msgstr ""
2250
2189
 
2251
- #: ../lib/puppet/http/client.rb:90
2190
+ #: ../lib/puppet/http/client.rb:156
2252
2191
  msgid "Request to %{uri} timed out connect operation after %{elapsed} seconds"
2253
2192
  msgstr ""
2254
2193
 
2255
- #: ../lib/puppet/http/client.rb:92
2194
+ #: ../lib/puppet/http/client.rb:158
2256
2195
  msgid "Request to %{uri} timed out read operation after %{elapsed} seconds"
2257
2196
  msgstr ""
2258
2197
 
2259
- #: ../lib/puppet/http/client.rb:94
2198
+ #: ../lib/puppet/http/client.rb:160
2260
2199
  msgid "Request to %{uri} interrupted after %{elapsed} seconds"
2261
2200
  msgstr ""
2262
2201
 
2263
- #: ../lib/puppet/http/client.rb:100
2202
+ #: ../lib/puppet/http/client.rb:166
2264
2203
  msgid "Request to %{uri} failed after %{elapsed} seconds: %{message}"
2265
2204
  msgstr ""
2266
2205
 
2267
- #: ../lib/puppet/http/client.rb:326
2206
+ #: ../lib/puppet/http/client.rb:369
2268
2207
  msgid "Sleeping for %{interval} seconds before retrying the request"
2269
2208
  msgstr ""
2270
2209
 
2271
- #: ../lib/puppet/http/client.rb:369 ../lib/puppet/indirector/request.rb:142
2210
+ #: ../lib/puppet/http/client.rb:419
2272
2211
  msgid "HTTP REST queries cannot handle values of type '%{klass}'"
2273
2212
  msgstr ""
2274
2213
 
2275
- #: ../lib/puppet/http/errors.rb:23
2214
+ #: ../lib/puppet/http/errors.rb:37
2276
2215
  msgid "Too many HTTP redirections for %{addr}"
2277
2216
  msgstr ""
2278
2217
 
2279
- #: ../lib/puppet/http/errors.rb:29
2218
+ #: ../lib/puppet/http/errors.rb:45
2280
2219
  msgid "Too many HTTP retries for %{addr}"
2281
2220
  msgstr ""
2282
2221
 
2283
- #: ../lib/puppet/http/redirector.rb:78
2222
+ #: ../lib/puppet/http/pool.rb:84
2223
+ msgid "Failed to close connection for %{site}: %{detail}"
2224
+ msgstr ""
2225
+
2226
+ #: ../lib/puppet/http/redirector.rb:70
2284
2227
  msgid "Location response header is missing"
2285
2228
  msgstr ""
2286
2229
 
2287
- #: ../lib/puppet/http/redirector.rb:82
2230
+ #: ../lib/puppet/http/redirector.rb:74
2288
2231
  msgid "Location URI is invalid: %{detail}"
2289
2232
  msgstr ""
2290
2233
 
2291
- #: ../lib/puppet/http/retry_after_handler.rb:83
2234
+ #: ../lib/puppet/http/retry_after_handler.rb:74
2292
2235
  msgid "Failed to parse Retry-After header '%{retry_after}' as an integer or RFC 2822 date"
2293
2236
  msgstr ""
2294
2237
 
2295
- #: ../lib/puppet/http/service.rb:121
2238
+ #: ../lib/puppet/http/service.rb:107
2296
2239
  msgid "Ignoring extra header \"%{name}\" as it was previously set."
2297
2240
  msgstr ""
2298
2241
 
2299
- #: ../lib/puppet/http/service.rb:124
2242
+ #: ../lib/puppet/http/service.rb:110
2300
2243
  msgid "Ignoring extra header \"%{name}\" as it has no value."
2301
2244
  msgstr ""
2302
2245
 
2303
- #: ../lib/puppet/http/service.rb:147 ../lib/puppet/indirector/rest.rb:288
2246
+ #: ../lib/puppet/http/service.rb:133 ../lib/puppet/indirector/rest.rb:53
2304
2247
  msgid "No content type in http response; cannot parse"
2305
2248
  msgstr ""
2306
2249
 
2307
2250
  #. TRANSLATORS "pson", "preferred_serialization_format", and "puppetserver" should not be translated
2308
- #: ../lib/puppet/http/service/report.rb:61
2251
+ #: ../lib/puppet/http/service/report.rb:59
2309
2252
  msgid "To submit reports to a server running puppetserver %{server_version}, set preferred_serialization_format to pson"
2310
2253
  msgstr ""
2311
2254
 
@@ -2454,7 +2397,7 @@ msgstr ""
2454
2397
  msgid "Unable to serialize catalog to json, retrying with pson"
2455
2398
  msgstr ""
2456
2399
 
2457
- #: ../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
2400
+ #: ../lib/puppet/indirector/catalog/rest.rb:32 ../lib/puppet/indirector/facts/rest.rb:20 ../lib/puppet/indirector/file_content/rest.rb:29 ../lib/puppet/indirector/file_metadata/rest.rb:26 ../lib/puppet/indirector/node/rest.rb:23
2458
2401
  msgid "Find %{uri} resulted in 404 with the message: %{body}"
2459
2402
  msgstr ""
2460
2403
 
@@ -2546,7 +2489,11 @@ msgstr ""
2546
2489
  msgid "You cannot save facts to the code store; it is only used for getting facts from Facter"
2547
2490
  msgstr ""
2548
2491
 
2549
- #: ../lib/puppet/indirector/facts/facter.rb:56
2492
+ #: ../lib/puppet/indirector/facts/facter.rb:36
2493
+ msgid "puppet facts show requires version 4.0.40 or greater of Facter."
2494
+ msgstr ""
2495
+
2496
+ #: ../lib/puppet/indirector/facts/facter.rb:62
2550
2497
  msgid "Loading facts"
2551
2498
  msgstr ""
2552
2499
 
@@ -2558,7 +2505,7 @@ msgstr ""
2558
2505
  msgid "You cannot save facts to the code store; it is only used for getting facts from a remote device"
2559
2506
  msgstr ""
2560
2507
 
2561
- #: ../lib/puppet/indirector/facts/rest.rb:30 ../lib/puppet/indirector/rest.rb:198
2508
+ #: ../lib/puppet/indirector/facts/rest.rb:28
2562
2509
  msgid "PUT does not accept options"
2563
2510
  msgstr ""
2564
2511
 
@@ -2609,19 +2556,11 @@ msgstr ""
2609
2556
  msgid "Invalid checksum %{checksum}"
2610
2557
  msgstr ""
2611
2558
 
2612
- #: ../lib/puppet/indirector/file_content/http.rb:14
2613
- msgid "Puppet::Indirector::FileContent::Http is deprecated. Use Puppet::HTTP::Client instead."
2614
- msgstr ""
2615
-
2616
2559
  #: ../lib/puppet/indirector/file_metadata/http.rb:32
2617
2560
  msgid "cannot lookup multiple files"
2618
2561
  msgstr ""
2619
2562
 
2620
- #: ../lib/puppet/indirector/file_server.rb:25
2621
- msgid "Denying %{method} request for %{desc} on fileserver mount '%{mount_name}'. Use of auth directives for 'fileserver.conf' mount points is no longer supported. Remove these directives and use the 'auth.conf' file instead for access control."
2622
- msgstr ""
2623
-
2624
- #: ../lib/puppet/indirector/file_server.rb:49
2563
+ #: ../lib/puppet/indirector/file_server.rb:42
2625
2564
  msgid "Could not find filesystem info for file '%{request}' in environment %{env}"
2626
2565
  msgstr ""
2627
2566
 
@@ -2716,7 +2655,7 @@ msgstr ""
2716
2655
  msgid "directory traversal detected in %{json}: %{name}"
2717
2656
  msgstr ""
2718
2657
 
2719
- #: ../lib/puppet/indirector/json.rb:41 ../lib/puppet/indirector/msgpack.rb:48 ../lib/puppet/indirector/ssl_file.rb:40 ../lib/puppet/indirector/yaml.rb:40
2658
+ #: ../lib/puppet/indirector/json.rb:41 ../lib/puppet/indirector/msgpack.rb:48 ../lib/puppet/indirector/yaml.rb:40
2720
2659
  msgid "invalid key"
2721
2660
  msgstr ""
2722
2661
 
@@ -2728,14 +2667,6 @@ msgstr ""
2728
2667
  msgid "Could not parse JSON data for %{name} %{key}: %{detail}"
2729
2668
  msgstr ""
2730
2669
 
2731
- #: ../lib/puppet/indirector/key/file.rb:29
2732
- msgid "Could not remove %{request} public key: %{detail}"
2733
- msgstr ""
2734
-
2735
- #: ../lib/puppet/indirector/key/file.rb:43
2736
- msgid "Could not write %{request}: %{detail}"
2737
- msgstr ""
2738
-
2739
2670
  #: ../lib/puppet/indirector/memory.rb:14
2740
2671
  msgid "Could not find %{request} to destroy"
2741
2672
  msgstr ""
@@ -2752,7 +2683,7 @@ msgstr ""
2752
2683
  msgid "Could not destroy %{name} %{request}: %{detail}"
2753
2684
  msgstr ""
2754
2685
 
2755
- #: ../lib/puppet/indirector/msgpack.rb:47 ../lib/puppet/indirector/ssl_file.rb:39 ../lib/puppet/indirector/yaml.rb:39
2686
+ #: ../lib/puppet/indirector/msgpack.rb:47 ../lib/puppet/indirector/yaml.rb:39
2756
2687
  msgid "directory traversal detected in %{indirection}: %{name}"
2757
2688
  msgstr ""
2758
2689
 
@@ -2797,39 +2728,15 @@ msgstr ""
2797
2728
  msgid "No report named '%{name}'"
2798
2729
  msgstr ""
2799
2730
 
2800
- #: ../lib/puppet/indirector/report/rest.rb:36
2731
+ #: ../lib/puppet/indirector/report/rest.rb:31
2801
2732
  msgid "Server version %{version} does not accept reports in '%{format}', use `preferred_serialization_format=pson`"
2802
2733
  msgstr ""
2803
2734
 
2804
- #: ../lib/puppet/indirector/request.rb:103
2735
+ #: ../lib/puppet/indirector/request.rb:102
2805
2736
  msgid "Could not find indirection '%{indirection}'"
2806
2737
  msgstr ""
2807
2738
 
2808
- #: ../lib/puppet/indirector/request.rb:202
2809
- msgid "Error connecting to %{srv_server}:%{srv_port}: %{message}"
2810
- msgstr ""
2811
-
2812
- #. TRANSLATORS 'server_list' is the name of a setting and should not be translated
2813
- #: ../lib/puppet/indirector/request.rb:214
2814
- msgid "Selected server from first entry of the `server_list` setting: %{server}"
2815
- msgstr ""
2816
-
2817
- #. TRANSLATORS 'server' is the name of a setting and should not be translated
2818
- #: ../lib/puppet/indirector/request.rb:218
2819
- msgid "Selected server from the `server` setting: %{server}"
2820
- msgstr ""
2821
-
2822
- #. TRANSLATORS 'server_list' is the name of a setting and should not be translated
2823
- #: ../lib/puppet/indirector/request.rb:231
2824
- msgid "Selected port from the first entry of the `server_list` setting: %{port}"
2825
- msgstr ""
2826
-
2827
- #. TRANSLATORS 'serverport' is the name of a setting and should not be translated
2828
- #: ../lib/puppet/indirector/request.rb:235
2829
- msgid "Selected port from the `serverport` setting: %{port}"
2830
- msgstr ""
2831
-
2832
- #: ../lib/puppet/indirector/request.rb:266
2739
+ #: ../lib/puppet/indirector/request.rb:165
2833
2740
  msgid "Could not understand URL %{key}: %{detail}"
2834
2741
  msgstr ""
2835
2742
 
@@ -2841,75 +2748,10 @@ msgstr ""
2841
2748
  msgid "Resource instance does not match request key"
2842
2749
  msgstr ""
2843
2750
 
2844
- #: ../lib/puppet/indirector/rest.rb:115
2845
- msgid "Puppet::Indirector::Rest#find is deprecated. Use Puppet::HTTP::Client instead."
2846
- msgstr ""
2847
-
2848
- #: ../lib/puppet/indirector/rest.rb:154
2849
- msgid "Puppet::Indirector::Rest#head is deprecated. Use Puppet::HTTP::Client instead."
2850
- msgstr ""
2851
-
2852
- #: ../lib/puppet/indirector/rest.rb:167
2853
- msgid "Puppet::Indirector::Rest#search is deprecated. Use Puppet::HTTP::Client instead."
2854
- msgstr ""
2855
-
2856
- #: ../lib/puppet/indirector/rest.rb:181
2857
- msgid "Puppet::Indirector::Rest#destroy is deprecated. Use Puppet::HTTP::Client instead."
2858
- msgstr ""
2859
-
2860
- #: ../lib/puppet/indirector/rest.rb:182
2861
- msgid "DELETE does not accept options"
2862
- msgstr ""
2863
-
2864
- #: ../lib/puppet/indirector/rest.rb:197
2865
- msgid "Puppet::Indirector::Rest#save is deprecated. Use Puppet::HTTP::Client instead."
2866
- msgstr ""
2867
-
2868
- #. TRANSLATORS "PSON" should not be translated
2869
- #: ../lib/puppet/indirector/rest.rb:235
2870
- msgid "Downgrading to PSON for future requests"
2871
- msgstr ""
2872
-
2873
- #: ../lib/puppet/indirector/rest.rb:277 ../lib/puppet/rest/response.rb:31
2751
+ #: ../lib/puppet/indirector/rest.rb:43
2874
2752
  msgid "Error %{code} on SERVER: %{returned_message}"
2875
2753
  msgstr ""
2876
2754
 
2877
- #: ../lib/puppet/indirector/ssl_file.rb:34
2878
- msgid "No file or directory setting provided; terminus %{class_name} cannot function"
2879
- msgstr ""
2880
-
2881
- #: ../lib/puppet/indirector/ssl_file.rb:55
2882
- msgid "Removing file %{model} %{request} at '%{path}'"
2883
- msgstr ""
2884
-
2885
- #: ../lib/puppet/indirector/ssl_file.rb:59
2886
- msgid "Could not remove %{request}: %{detail}"
2887
- msgstr ""
2888
-
2889
- #: ../lib/puppet/indirector/ssl_file.rb:75
2890
- msgid "Cannot save %{request}; parent directory %{dir} does not exist"
2891
- msgstr ""
2892
-
2893
- #: ../lib/puppet/indirector/ssl_file.rb:76
2894
- msgid "Cannot save %{request}; parent directory %{dir} is not writable"
2895
- msgstr ""
2896
-
2897
- #: ../lib/puppet/indirector/ssl_file.rb:121
2898
- msgid "Tried to fix SSL files to a file containing uppercase"
2899
- msgstr ""
2900
-
2901
- #: ../lib/puppet/indirector/ssl_file.rb:130
2902
- msgid "Automatic downcasing and renaming of ssl files is deprecated; please request the file using its correct case: %{full_file}"
2903
- msgstr ""
2904
-
2905
- #: ../lib/puppet/indirector/ssl_file.rb:150
2906
- msgid "Could not write %{path} to %{setting}: %{detail}"
2907
- msgstr ""
2908
-
2909
- #: ../lib/puppet/indirector/ssl_file.rb:153
2910
- msgid "You must provide a setting to determine where the files are stored"
2911
- msgstr ""
2912
-
2913
2755
  #: ../lib/puppet/indirector/terminus.rb:37
2914
2756
  msgid "Could not find indirection instance %{name} for %{terminus}"
2915
2757
  msgstr ""
@@ -3364,10 +3206,6 @@ msgstr ""
3364
3206
  msgid "Installing -- do not interrupt ..."
3365
3207
  msgstr ""
3366
3208
 
3367
- #: ../lib/puppet/module_tool/applications/searcher.rb:15
3368
- msgid "Searching %{host} ..."
3369
- msgstr ""
3370
-
3371
3209
  #: ../lib/puppet/module_tool/applications/uninstaller.rb:92
3372
3210
  msgid "Either the `--ignore_changes` or `--force` argument must be specified to uninstall modules when running in FIPS mode."
3373
3211
  msgstr ""
@@ -3789,67 +3627,6 @@ msgstr ""
3789
3627
  msgid "No suitable tar implementation found"
3790
3628
  msgstr ""
3791
3629
 
3792
- #. TRANSLATORS "path" is a configuration file entry and should not be translated
3793
- #: ../lib/puppet/network/auth_config_parser.rb:32
3794
- msgid "Missing or invalid 'path' before right directive at %{error_location}"
3795
- msgstr ""
3796
-
3797
- #: ../lib/puppet/network/auth_config_parser.rb:38 ../lib/puppet/util/network_device/config.rb:71
3798
- msgid "Invalid entry at %{error_location}: %{file_text}"
3799
- msgstr ""
3800
-
3801
- #: ../lib/puppet/network/auth_config_parser.rb:57
3802
- msgid "allowing %{value} access"
3803
- msgstr ""
3804
-
3805
- #: ../lib/puppet/network/auth_config_parser.rb:59
3806
- msgid "denying %{value} access"
3807
- msgstr ""
3808
-
3809
- #: ../lib/puppet/network/auth_config_parser.rb:61
3810
- msgid "allowing IP %{value} access"
3811
- msgstr ""
3812
-
3813
- #: ../lib/puppet/network/auth_config_parser.rb:63
3814
- msgid "denying IP %{value} access"
3815
- msgstr ""
3816
-
3817
- #: ../lib/puppet/network/auth_config_parser.rb:65
3818
- msgid "allowing 'method' %{value}"
3819
- msgstr ""
3820
-
3821
- #: ../lib/puppet/network/auth_config_parser.rb:67
3822
- msgid "adding environment %{value}"
3823
- msgstr ""
3824
-
3825
- #: ../lib/puppet/network/auth_config_parser.rb:69
3826
- msgid "adding authentication %{value}"
3827
- msgstr ""
3828
-
3829
- #: ../lib/puppet/network/authconfig.rb:41
3830
- msgid "Inserting default '%{acl}' (auth %{auth}) ACL"
3831
- msgstr ""
3832
-
3833
- #: ../lib/puppet/network/authconfig.rb:71
3834
- msgid "Denying access: %{authorization_failure_exception}"
3835
- msgstr ""
3836
-
3837
- #: ../lib/puppet/network/authstore.rb:22
3838
- msgid "Name and IP must be passed to 'allowed?'"
3839
- msgstr ""
3840
-
3841
- #: ../lib/puppet/network/authstore.rb:37
3842
- msgid "defaulting to no access for %{name}"
3843
- msgstr ""
3844
-
3845
- #: ../lib/puppet/network/authstore.rb:190
3846
- msgid "Invalid declaration type %{type}"
3847
- msgstr ""
3848
-
3849
- #: ../lib/puppet/network/authstore.rb:258
3850
- msgid "Invalid IP pattern %{value}"
3851
- msgstr ""
3852
-
3853
3630
  #: ../lib/puppet/network/client_request.rb:15
3854
3631
  msgid "Request is not set up; cannot build call"
3855
3632
  msgstr ""
@@ -3903,77 +3680,77 @@ msgstr ""
3903
3680
  msgid "Serialized YAML did not contain a valid instance of %{klass}"
3904
3681
  msgstr ""
3905
3682
 
3906
- #: ../lib/puppet/network/http/api/indirected_routes.rb:43
3683
+ #: ../lib/puppet/network/http/api/indirected_routes.rb:42
3907
3684
  msgid "No handler for %{indirection}"
3908
3685
  msgstr ""
3909
3686
 
3910
- #: ../lib/puppet/network/http/api/indirected_routes.rb:66
3687
+ #: ../lib/puppet/network/http/api/indirected_routes.rb:65
3911
3688
  msgid "The indirection name must be purely alphanumeric, not '%{indirection_name}'"
3912
3689
  msgstr ""
3913
3690
 
3914
- #: ../lib/puppet/network/http/api/indirected_routes.rb:76
3691
+ #: ../lib/puppet/network/http/api/indirected_routes.rb:75
3915
3692
  msgid "Indirection '%{indirection_name}' does not match url prefix '%{url_prefix}'"
3916
3693
  msgstr ""
3917
3694
 
3918
- #: ../lib/puppet/network/http/api/indirected_routes.rb:82
3695
+ #: ../lib/puppet/network/http/api/indirected_routes.rb:81
3919
3696
  msgid "Could not find indirection '%{indirection_name}'"
3920
3697
  msgstr ""
3921
3698
 
3922
- #: ../lib/puppet/network/http/api/indirected_routes.rb:88
3699
+ #: ../lib/puppet/network/http/api/indirected_routes.rb:87
3923
3700
  msgid "An environment parameter must be specified"
3924
3701
  msgstr ""
3925
3702
 
3926
- #: ../lib/puppet/network/http/api/indirected_routes.rb:93
3703
+ #: ../lib/puppet/network/http/api/indirected_routes.rb:92
3927
3704
  msgid "The environment must be purely alphanumeric, not '%{environment}'"
3928
3705
  msgstr ""
3929
3706
 
3930
- #: ../lib/puppet/network/http/api/indirected_routes.rb:110
3707
+ #: ../lib/puppet/network/http/api/indirected_routes.rb:103
3931
3708
  msgid "Could not find environment '%{environment}'"
3932
3709
  msgstr ""
3933
3710
 
3934
- #: ../lib/puppet/network/http/api/indirected_routes.rb:117
3711
+ #: ../lib/puppet/network/http/api/indirected_routes.rb:110
3935
3712
  msgid "No request key specified in %{uri}"
3936
3713
  msgstr ""
3937
3714
 
3938
- #: ../lib/puppet/network/http/api/indirected_routes.rb:140
3715
+ #: ../lib/puppet/network/http/api/indirected_routes.rb:122
3939
3716
  msgid "Could not find %{value0} %{key}"
3940
3717
  msgstr ""
3941
3718
 
3942
- #: ../lib/puppet/network/http/api/indirected_routes.rb:147
3719
+ #: ../lib/puppet/network/http/api/indirected_routes.rb:129
3943
3720
  msgid "Rendered result in %{format}"
3944
3721
  msgstr ""
3945
3722
 
3946
- #: ../lib/puppet/network/http/api/indirected_routes.rb:153
3723
+ #: ../lib/puppet/network/http/api/indirected_routes.rb:135
3947
3724
  msgid "Sent response"
3948
3725
  msgstr ""
3949
3726
 
3950
- #: ../lib/puppet/network/http/api/indirected_routes.rb:161
3727
+ #: ../lib/puppet/network/http/api/indirected_routes.rb:143
3951
3728
  msgid "Could not find %{indirection} %{key}"
3952
3729
  msgstr ""
3953
3730
 
3954
- #: ../lib/puppet/network/http/api/indirected_routes.rb:173
3731
+ #: ../lib/puppet/network/http/api/indirected_routes.rb:155
3955
3732
  msgid "Could not find instances in %{indirection} with '%{key}'"
3956
3733
  msgstr ""
3957
3734
 
3958
- #: ../lib/puppet/network/http/api/indirected_routes.rb:221 ../lib/puppet/network/http/request.rb:61
3735
+ #: ../lib/puppet/network/http/api/indirected_routes.rb:203 ../lib/puppet/network/http/request.rb:61
3959
3736
  msgid "No supported formats are acceptable (Accept: %{accepted_formats})"
3960
3737
  msgstr ""
3961
3738
 
3962
- #: ../lib/puppet/network/http/api/indirected_routes.rb:246
3739
+ #: ../lib/puppet/network/http/api/indirected_routes.rb:228
3963
3740
  msgid "The request body is invalid: %{message}"
3964
3741
  msgstr ""
3965
3742
 
3966
3743
  #. TRANSLATORS "mime-type" is a keyword and should not be translated
3967
3744
  #. TRANSLATORS "mime-type" is a keyword and should not be translated
3968
- #: ../lib/puppet/network/http/api/indirected_routes.rb:252 ../lib/puppet/network/http/request.rb:32
3745
+ #: ../lib/puppet/network/http/api/indirected_routes.rb:234 ../lib/puppet/network/http/request.rb:32
3969
3746
  msgid "Client sent a mime-type (%{header}) that doesn't correspond to a format we support"
3970
3747
  msgstr ""
3971
3748
 
3972
- #: ../lib/puppet/network/http/api/indirected_routes.rb:258
3749
+ #: ../lib/puppet/network/http/api/indirected_routes.rb:240
3973
3750
  msgid "No support for http method %{http_method}"
3974
3751
  msgstr ""
3975
3752
 
3976
- #: ../lib/puppet/network/http/api/indirected_routes.rb:263
3753
+ #: ../lib/puppet/network/http/api/indirected_routes.rb:245
3977
3754
  msgid "No support for plurality %{indirection} for %{http_method} operations"
3978
3755
  msgstr ""
3979
3756
 
@@ -3981,92 +3758,18 @@ msgstr ""
3981
3758
  msgid "Not a valid indirection type"
3982
3759
  msgstr ""
3983
3760
 
3984
- #: ../lib/puppet/network/http/api/master/v3/environment.rb:14
3985
- msgid "%{env_name} is not a known environment"
3986
- msgstr ""
3987
-
3988
- #: ../lib/puppet/network/http/api/master/v3/environment.rb:43
3989
- msgid "Application %{application} assigns nodes to non-existent components: %{component_list}"
3990
- msgstr ""
3991
-
3992
- #: ../lib/puppet/network/http/api/master/v3/environment.rb:49
3993
- msgid "Application %{application} has components without assigned nodes: %{component_list}"
3994
- msgstr ""
3995
-
3996
- #: ../lib/puppet/network/http/api/master/v3/environment.rb:58
3997
- msgid "Application %{app} assigns multiple nodes to component %{comp}"
3998
- msgstr ""
3999
-
4000
- #: ../lib/puppet/network/http/compression.rb:23 ../lib/puppet/network/http/compression.rb:27
4001
- msgid "Puppet::Network::HTTP::Compression::Active#uncompress_body is deprecated."
4002
- msgstr ""
4003
-
4004
- #: ../lib/puppet/network/http/compression.rb:32 ../lib/puppet/network/http/compression.rb:46
4005
- msgid "Unknown content encoding - %{encoding}"
4006
- msgstr ""
4007
-
4008
- #: ../lib/puppet/network/http/compression.rb:37
4009
- msgid "Puppet::Network::HTTP::Compression::Active#uncompress is deprecated."
4010
- msgstr ""
4011
-
4012
- #: ../lib/puppet/network/http/compression.rb:77
4013
- msgid "Puppet::Network::HTTP::Compression::ZlibAdapter#uncompress is deprecated."
4014
- msgstr ""
4015
-
4016
- #: ../lib/puppet/network/http/compression.rb:104
4017
- msgid "Puppet::Network::HTTP::Compression::None#uncompress_body is deprecated."
4018
- msgstr ""
4019
-
4020
- #: ../lib/puppet/network/http/compression.rb:113
4021
- msgid "Puppet::Network::HTTP::Compression::None#uncompress is deprecated."
4022
- msgstr ""
4023
-
4024
- #: ../lib/puppet/network/http/compression.rb:120
4025
- msgid "Puppet::Network::HTTP::Compression::IdentityAdapter#uncompress is deprecated."
4026
- msgstr ""
4027
-
4028
- #: ../lib/puppet/network/http/connection.rb:56
3761
+ #: ../lib/puppet/network/http/connection.rb:47
4029
3762
  msgid "Unrecognized option(s): %{opts}"
4030
3763
  msgstr ""
4031
3764
 
4032
- #: ../lib/puppet/network/http/connection.rb:63
3765
+ #: ../lib/puppet/network/http/connection.rb:53
4033
3766
  msgid "Expected an instance of Puppet::SSL::Verifier but was passed a %{klass}"
4034
3767
  msgstr ""
4035
3768
 
4036
- #: ../lib/puppet/network/http/connection.rb:229 ../lib/puppet/network/http/connection_adapter.rb:174
3769
+ #: ../lib/puppet/network/http/connection.rb:276
4037
3770
  msgid "Too many HTTP redirections for %{host}:%{port}"
4038
3771
  msgstr ""
4039
3772
 
4040
- #. TRANSLATORS: Used in the phrase:
4041
- #. "Received a response from the remote server."
4042
- #: ../lib/puppet/network/http/connection.rb:259
4043
- msgid "the remote server"
4044
- msgstr ""
4045
-
4046
- #: ../lib/puppet/network/http/connection.rb:263
4047
- 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."
4048
- msgstr ""
4049
-
4050
- #: ../lib/puppet/network/http/connection.rb:274
4051
- msgid "Received a %{status_code} response from %{server_hostname}. Sleeping for %{retry_sleep} seconds before retrying the request."
4052
- msgstr ""
4053
-
4054
- #: ../lib/puppet/network/http/connection.rb:335
4055
- msgid "request %{uri} interrupted after %{elapsed} seconds"
4056
- msgstr ""
4057
-
4058
- #: ../lib/puppet/network/http/connection.rb:337
4059
- msgid "request %{uri} timed out after %{elapsed} seconds"
4060
- msgstr ""
4061
-
4062
- #: ../lib/puppet/network/http/connection.rb:339
4063
- msgid "request %{uri} failed: %{msg}"
4064
- msgstr ""
4065
-
4066
- #: ../lib/puppet/network/http/connection.rb:346
4067
- msgid "Puppet::Network::HTTP::Connection is deprecated. Please use Puppet::Network::HTTP::ConnectionAdapter instead."
4068
- msgstr ""
4069
-
4070
3773
  #: ../lib/puppet/network/http/error.rb:23
4071
3774
  msgid "Not Acceptable: %{message}"
4072
3775
  msgstr ""
@@ -4095,30 +3798,22 @@ msgstr ""
4095
3798
  msgid "Server Error: %{message}"
4096
3799
  msgstr ""
4097
3800
 
4098
- #: ../lib/puppet/network/http/handler.rb:23
3801
+ #: ../lib/puppet/network/http/handler.rb:22
4099
3802
  msgid "Given multiple routes with identical path regexes: %{regexes}"
4100
3803
  msgstr ""
4101
3804
 
4102
- #: ../lib/puppet/network/http/handler.rb:67
3805
+ #: ../lib/puppet/network/http/handler.rb:66
4103
3806
  msgid "Processed request %{request_method} %{request_path}"
4104
3807
  msgstr ""
4105
3808
 
4106
- #: ../lib/puppet/network/http/handler.rb:113
3809
+ #: ../lib/puppet/network/http/handler.rb:112
4107
3810
  msgid "No route for %{request} %{path}"
4108
3811
  msgstr ""
4109
3812
 
4110
- #: ../lib/puppet/network/http/handler.rb:138
3813
+ #: ../lib/puppet/network/http/handler.rb:137
4111
3814
  msgid "Could not resolve %{ip}: %{detail}"
4112
3815
  msgstr ""
4113
3816
 
4114
- #: ../lib/puppet/network/http/nocache_pool.rb:6
4115
- msgid "Puppet::Network::HTTP::NoCachePool is deprecated."
4116
- msgstr ""
4117
-
4118
- #: ../lib/puppet/network/http/pool.rb:66
4119
- msgid "Failed to close connection for %{site}: %{detail}"
4120
- msgstr ""
4121
-
4122
3817
  #: ../lib/puppet/network/http/request.rb:14
4123
3818
  msgid "Unknown arguments: %{args}"
4124
3819
  msgstr ""
@@ -4132,39 +3827,15 @@ msgid "Missing required Accept header"
4132
3827
  msgstr ""
4133
3828
 
4134
3829
  #. TRANSLATORS 'ssl_context' is an argument and should not be translated
4135
- #: ../lib/puppet/network/http_pool.rb:81
3830
+ #: ../lib/puppet/network/http_pool.rb:63
4136
3831
  msgid "An ssl_context is required when connecting to 'https://%{host}:%{port}'"
4137
3832
  msgstr ""
4138
3833
 
4139
3834
  #. TRANSLATORS 'ssl_context' is an argument and should not be translated
4140
- #: ../lib/puppet/network/http_pool.rb:89
3835
+ #: ../lib/puppet/network/http_pool.rb:71
4141
3836
  msgid "An ssl_context is unnecessary when connecting to 'http://%{host}:%{port}' and will be ignored"
4142
3837
  msgstr ""
4143
3838
 
4144
- #: ../lib/puppet/network/rights.rb:59
4145
- msgid "Forbidden request: %{msg}"
4146
- msgstr ""
4147
-
4148
- #: ../lib/puppet/network/rights.rb:127
4149
- msgid "Unknown right type '%{name}'"
4150
- msgstr ""
4151
-
4152
- #: ../lib/puppet/network/rights.rb:169
4153
- msgid "'%{m}' is not an allowed value for method directive"
4154
- msgstr ""
4155
-
4156
- #: ../lib/puppet/network/rights.rb:176
4157
- msgid "'%{m}' is already in the '%{name}' ACL"
4158
- msgstr ""
4159
-
4160
- #: ../lib/puppet/network/rights.rb:183
4161
- msgid "'%{env}' is already in the '%{name}' ACL"
4162
- msgstr ""
4163
-
4164
- #: ../lib/puppet/network/rights.rb:195
4165
- msgid "'%{name}' incorrect authenticated value: %{authentication}"
4166
- msgstr ""
4167
-
4168
3839
  #: ../lib/puppet/node.rb:27
4169
3840
  msgid "No name provided in serialized data"
4170
3841
  msgstr ""
@@ -4181,11 +3852,7 @@ msgstr ""
4181
3852
  msgid "The node parameter '%{param_name}' for node '%{node_name}' was already set to '%{value}'. It could not be set to '%{desired_value}'"
4182
3853
  msgstr ""
4183
3854
 
4184
- #: ../lib/puppet/node.rb:198
4185
- msgid "Host is missing hostname and/or domain: %{name}"
4186
- msgstr ""
4187
-
4188
- #: ../lib/puppet/node.rb:230
3855
+ #: ../lib/puppet/node.rb:201
4189
3856
  msgid "Trusted node data modified for node %{name}"
4190
3857
  msgstr ""
4191
3858
 
@@ -4219,60 +3886,60 @@ msgid "Given data_type value is not a data type, got '%{type}'"
4219
3886
  msgstr ""
4220
3887
 
4221
3888
  #. TRANSLATORS 'type' and 'title' are internal parameter names - do not translate
4222
- #: ../lib/puppet/pal/json_catalog_encoder.rb:52
3889
+ #: ../lib/puppet/pal/json_catalog_encoder.rb:54
4223
3890
  msgid "Both type and title must be given"
4224
3891
  msgstr ""
4225
3892
 
4226
3893
  #. TRANSLATORS: do not translate the variable names in this error message
4227
3894
  #. TRANSLATORS: do not translate the variable names in this error message
4228
- #: ../lib/puppet/pal/pal_impl.rb:75 ../lib/puppet/pal/pal_impl.rb:181
3895
+ #: ../lib/puppet/pal/pal_impl.rb:76 ../lib/puppet/pal/pal_impl.rb:182
4229
3896
  msgid "manifest_file or code_string cannot be given when configured_by_env is true"
4230
3897
  msgstr ""
4231
3898
 
4232
- #: ../lib/puppet/pal/pal_impl.rb:237
3899
+ #: ../lib/puppet/pal/pal_impl.rb:238
4233
3900
  msgid "temporary environment name"
4234
3901
  msgstr ""
4235
3902
 
4236
3903
  #. TRANSLATORS: do not translate variable name string in these assertions
4237
- #: ../lib/puppet/pal/pal_impl.rb:242
3904
+ #: ../lib/puppet/pal/pal_impl.rb:243
4238
3905
  msgid "A block must be given to 'in_tmp_environment'"
4239
3906
  msgstr ""
4240
3907
 
4241
3908
  #. TRANSLATORS terms in the assertions below are names of terms in code
4242
- #: ../lib/puppet/pal/pal_impl.rb:296
3909
+ #: ../lib/puppet/pal/pal_impl.rb:298
4243
3910
  msgid "A block must be given to 'in_environment'"
4244
3911
  msgstr ""
4245
3912
 
4246
3913
  #. TRANSLATORS 'in_environment' is a name, do not translate
4247
- #: ../lib/puppet/pal/pal_impl.rb:301
3914
+ #: ../lib/puppet/pal/pal_impl.rb:303
4248
3915
  msgid "The environment directory '%{env_dir}' does not exist"
4249
3916
  msgstr ""
4250
3917
 
4251
- #: ../lib/puppet/pal/pal_impl.rb:324
3918
+ #: ../lib/puppet/pal/pal_impl.rb:326
4252
3919
  msgid "No directory found for the environment '%{env_name}' on the path '%{envpath}'"
4253
3920
  msgstr ""
4254
3921
 
4255
- #: ../lib/puppet/pal/pal_impl.rb:378
3922
+ #: ../lib/puppet/pal/pal_impl.rb:380
4256
3923
  msgid "Given variables must be a hash, got %{type}"
4257
3924
  msgstr ""
4258
3925
 
4259
- #: ../lib/puppet/pal/pal_impl.rb:384
3926
+ #: ../lib/puppet/pal/pal_impl.rb:386
4260
3927
  msgid "Given variable '%{varname}' has illegal name"
4261
3928
  msgstr ""
4262
3929
 
4263
- #: ../lib/puppet/pal/pal_impl.rb:388
3930
+ #: ../lib/puppet/pal/pal_impl.rb:390
4264
3931
  msgid "Given value for '%{varname}' has illegal type - got: %{type}"
4265
3932
  msgstr ""
4266
3933
 
4267
- #: ../lib/puppet/pal/pal_impl.rb:562
3934
+ #: ../lib/puppet/pal/pal_impl.rb:564
4268
3935
  msgid "Puppet Pal: %{what}"
4269
3936
  msgstr ""
4270
3937
 
4271
- #: ../lib/puppet/pal/pal_impl.rb:576
3938
+ #: ../lib/puppet/pal/pal_impl.rb:578
4272
3939
  msgid "Cannot use '%{a_term}' and '%{b_term}' at the same time"
4273
3940
  msgstr ""
4274
3941
 
4275
- #: ../lib/puppet/pal/pal_impl.rb:583
3942
+ #: ../lib/puppet/pal/pal_impl.rb:585
4276
3943
  msgid "A block must be given"
4277
3944
  msgstr ""
4278
3945
 
@@ -4337,7 +4004,7 @@ msgstr ""
4337
4004
  msgid "Node inheritance is removed in Puppet 4.0.0. See http://links.puppet.com/puppet-node-inheritance-deprecation"
4338
4005
  msgstr ""
4339
4006
 
4340
- #: ../lib/puppet/parser/ast/pops_bridge.rb:186
4007
+ #: ../lib/puppet/parser/ast/pops_bridge.rb:180
4341
4008
  msgid "Instantiating Resource with type checked parameters - scope is missing, skipping type checking."
4342
4009
  msgstr ""
4343
4010
 
@@ -4362,209 +4029,100 @@ msgid "For more information, see https://puppet.com/docs/puppet/latest/environme
4362
4029
  msgstr ""
4363
4030
 
4364
4031
  #. TRANSLATORS "stage" is a keyword in Puppet and should not be translated
4365
- #: ../lib/puppet/parser/compiler.rb:98 ../lib/puppet/parser/environment_compiler.rb:137
4032
+ #: ../lib/puppet/parser/compiler.rb:82
4366
4033
  msgid "Only classes can set 'stage'; normal resources like %{resource} cannot change run stage"
4367
4034
  msgstr ""
4368
4035
 
4369
- #. TRANSLATORS "Site" is a puppet keyword and should not be translated
4370
- #: ../lib/puppet/parser/compiler.rb:125
4371
- msgid "Application instances like '%{resource}' can only be contained within a Site"
4372
- msgstr ""
4373
-
4374
- #: ../lib/puppet/parser/compiler.rb:155
4036
+ #: ../lib/puppet/parser/compiler.rb:123
4375
4037
  msgid "For compiling %{node}"
4376
4038
  msgstr ""
4377
4039
 
4378
- #: ../lib/puppet/parser/compiler.rb:159
4040
+ #: ../lib/puppet/parser/compiler.rb:127
4379
4041
  msgid "Compile: Set node parameters"
4380
4042
  msgstr ""
4381
4043
 
4382
- #: ../lib/puppet/parser/compiler.rb:161
4044
+ #: ../lib/puppet/parser/compiler.rb:129
4383
4045
  msgid "Compile: Created settings scope"
4384
4046
  msgstr ""
4385
4047
 
4386
- #: ../lib/puppet/parser/compiler.rb:163
4387
- msgid "Compile: Evaluated capability mappings"
4388
- msgstr ""
4389
-
4390
4048
  #. TRANSLATORS "main" is a function name and should not be translated
4391
- #: ../lib/puppet/parser/compiler.rb:166
4049
+ #: ../lib/puppet/parser/compiler.rb:132
4392
4050
  msgid "Compile: Evaluated main"
4393
4051
  msgstr ""
4394
4052
 
4395
- #: ../lib/puppet/parser/compiler.rb:168
4396
- msgid "Compile: Evaluated site"
4397
- msgstr ""
4398
-
4399
- #: ../lib/puppet/parser/compiler.rb:170
4053
+ #: ../lib/puppet/parser/compiler.rb:134
4400
4054
  msgid "Compile: Evaluated AST node"
4401
4055
  msgstr ""
4402
4056
 
4403
- #: ../lib/puppet/parser/compiler.rb:172
4057
+ #: ../lib/puppet/parser/compiler.rb:136
4404
4058
  msgid "Compile: Evaluated node classes"
4405
4059
  msgstr ""
4406
4060
 
4407
- #: ../lib/puppet/parser/compiler.rb:174
4408
- msgid "Compile: Evaluated application instances"
4409
- msgstr ""
4410
-
4411
- #: ../lib/puppet/parser/compiler.rb:177
4412
- msgid "Compile: Evaluated site capability mappings"
4413
- msgstr ""
4414
-
4415
- #: ../lib/puppet/parser/compiler.rb:179
4061
+ #: ../lib/puppet/parser/compiler.rb:138
4416
4062
  msgid "Compile: Evaluated generators"
4417
4063
  msgstr ""
4418
4064
 
4419
- #: ../lib/puppet/parser/compiler.rb:181
4065
+ #: ../lib/puppet/parser/compiler.rb:140
4420
4066
  msgid "Compile: Validate Catalog pre-finish"
4421
4067
  msgstr ""
4422
4068
 
4423
- #: ../lib/puppet/parser/compiler.rb:185
4069
+ #: ../lib/puppet/parser/compiler.rb:144
4424
4070
  msgid "Compile: Finished catalog"
4425
4071
  msgstr ""
4426
4072
 
4427
- #: ../lib/puppet/parser/compiler.rb:187
4428
- msgid "Compile: Prune"
4429
- msgstr ""
4430
-
4431
- #: ../lib/puppet/parser/compiler.rb:191
4073
+ #: ../lib/puppet/parser/compiler.rb:148
4432
4074
  msgid "Compile: Validate Catalog final"
4433
4075
  msgstr ""
4434
4076
 
4435
- #: ../lib/puppet/parser/compiler.rb:321
4436
- msgid "Invalid node mapping in %{app}: Mapping must be a hash"
4437
- msgstr ""
4438
-
4439
- #: ../lib/puppet/parser/compiler.rb:324
4440
- msgid "Invalid node mapping in %{app}: Key %{k} is not a Node"
4441
- msgstr ""
4442
-
4443
- #: ../lib/puppet/parser/compiler.rb:327
4444
- msgid "Invalid node mapping in %{app}: Value %{res} is not a resource"
4445
- msgstr ""
4446
-
4447
- #: ../lib/puppet/parser/compiler.rb:328
4448
- msgid "Application %{app} maps component %{res} to multiple nodes"
4449
- msgstr ""
4450
-
4451
- #: ../lib/puppet/parser/compiler.rb:367
4077
+ #: ../lib/puppet/parser/compiler.rb:218
4452
4078
  msgid "Could not find node statement with name 'default' or '%{names}'"
4453
4079
  msgstr ""
4454
4080
 
4455
- #: ../lib/puppet/parser/compiler.rb:385
4081
+ #: ../lib/puppet/parser/compiler.rb:236
4456
4082
  msgid "No source for scope passed to evaluate_classes"
4457
4083
  msgstr ""
4458
4084
 
4459
- #: ../lib/puppet/parser/compiler.rb:401
4085
+ #: ../lib/puppet/parser/compiler.rb:246
4460
4086
  msgid "Could not find class %{name} for %{node}"
4461
4087
  msgstr ""
4462
4088
 
4463
- #: ../lib/puppet/parser/compiler.rb:503
4464
- msgid "Capability mapping error: %{kind} clause references nonexistent %{component_type} %{component_name}"
4465
- msgstr ""
4466
-
4467
- #: ../lib/puppet/parser/compiler.rb:526
4089
+ #: ../lib/puppet/parser/compiler.rb:328
4468
4090
  msgid "Evaluated collections"
4469
4091
  msgstr ""
4470
4092
 
4471
- #: ../lib/puppet/parser/compiler.rb:541
4093
+ #: ../lib/puppet/parser/compiler.rb:343
4472
4094
  msgid "Evaluated definitions"
4473
4095
  msgstr ""
4474
4096
 
4475
- #: ../lib/puppet/parser/compiler.rb:570
4097
+ #: ../lib/puppet/parser/compiler.rb:372
4476
4098
  msgid "Iterated (%{count}) on generators"
4477
4099
  msgstr ""
4478
4100
 
4479
- #: ../lib/puppet/parser/compiler.rb:581
4101
+ #: ../lib/puppet/parser/compiler.rb:383
4480
4102
  msgid "Somehow looped more than 1000 times while evaluating host catalog"
4481
4103
  msgstr ""
4482
4104
 
4483
- #: ../lib/puppet/parser/compiler.rb:613
4105
+ #: ../lib/puppet/parser/compiler.rb:415
4484
4106
  msgid "Could not find resource(s) %{resources} for overriding"
4485
4107
  msgstr ""
4486
4108
 
4487
- #: ../lib/puppet/parser/compiler.rb:624
4109
+ #: ../lib/puppet/parser/compiler.rb:426
4488
4110
  msgid "Failed to realize virtual resources %{resources}"
4489
4111
  msgstr ""
4490
4112
 
4491
4113
  #. TRANSLATORS "main" is a function name and should not be translated
4492
- #: ../lib/puppet/parser/compiler.rb:657
4114
+ #: ../lib/puppet/parser/compiler.rb:459
4493
4115
  msgid "Couldn't find main"
4494
4116
  msgstr ""
4495
4117
 
4496
- #: ../lib/puppet/parser/compiler.rb:730
4118
+ #: ../lib/puppet/parser/compiler.rb:532
4497
4119
  msgid "For initializing compiler"
4498
4120
  msgstr ""
4499
4121
 
4500
- #: ../lib/puppet/parser/compiler/catalog_validator/env_relationship_validator.rb:19
4501
- msgid "Capability '%{cap}' referenced by '%{param}' is never exported"
4502
- msgstr ""
4503
-
4504
- #: ../lib/puppet/parser/compiler/catalog_validator/env_relationship_validator.rb:58
4505
- msgid "'%{value}' is exported by both '%{hash}' and '%{resource}'"
4506
- msgstr ""
4507
-
4508
- #: ../lib/puppet/parser/compiler/catalog_validator/relationship_validator.rb:27
4509
- msgid "'%{param}' is not a valid relationship to a capability"
4510
- msgstr ""
4511
-
4512
- #: ../lib/puppet/parser/compiler/catalog_validator/relationship_validator.rb:43
4122
+ #: ../lib/puppet/parser/compiler/catalog_validator/relationship_validator.rb:31
4513
4123
  msgid "Could not find resource '%{res}' in parameter '%{param}'"
4514
4124
  msgstr ""
4515
4125
 
4516
- #: ../lib/puppet/parser/compiler/catalog_validator/site_validator.rb:16
4517
- msgid "Only application components can appear inside a site - %{res} is not allowed"
4518
- msgstr ""
4519
-
4520
- #: ../lib/puppet/parser/environment_compiler.rb:13
4521
- msgid "%{detail} in environment %{env}"
4522
- msgstr ""
4523
-
4524
- #: ../lib/puppet/parser/environment_compiler.rb:62
4525
- msgid "For compiling environment catalog %{env}"
4526
- msgstr ""
4527
-
4528
- #: ../lib/puppet/parser/environment_compiler.rb:65
4529
- msgid "Env Compile: Created settings scope"
4530
- msgstr ""
4531
-
4532
- #: ../lib/puppet/parser/environment_compiler.rb:67
4533
- msgid "Env Compile: Evaluated main"
4534
- msgstr ""
4535
-
4536
- #: ../lib/puppet/parser/environment_compiler.rb:69
4537
- msgid "Env Compile: Evaluated site"
4538
- msgstr ""
4539
-
4540
- #: ../lib/puppet/parser/environment_compiler.rb:71
4541
- msgid "Env Compile: Evaluated application instances"
4542
- msgstr ""
4543
-
4544
- #: ../lib/puppet/parser/environment_compiler.rb:73
4545
- msgid "Env Compile: Prune"
4546
- msgstr ""
4547
-
4548
- #: ../lib/puppet/parser/environment_compiler.rb:75
4549
- msgid "Env Compile: Validate Catalog pre-finish"
4550
- msgstr ""
4551
-
4552
- #: ../lib/puppet/parser/environment_compiler.rb:79
4553
- msgid "Env Compile: Finished catalog"
4554
- msgstr ""
4555
-
4556
- #: ../lib/puppet/parser/environment_compiler.rb:83
4557
- msgid "Env Compile: Validate Catalog final"
4558
- msgstr ""
4559
-
4560
- #: ../lib/puppet/parser/environment_compiler.rb:159
4561
- msgid "Environment Compiler: Could not find a site definition to evaluate"
4562
- msgstr ""
4563
-
4564
- #: ../lib/puppet/parser/environment_compiler.rb:165
4565
- msgid "Evaluated application %{resource}"
4566
- msgstr ""
4567
-
4568
4126
  #: ../lib/puppet/parser/functions.rb:43
4569
4127
  msgid "The method 'Puppet::Parser::Functions.autoloader#loadall' is deprecated in favor of using 'Scope#call_function'."
4570
4128
  msgstr ""
@@ -4699,55 +4257,35 @@ msgstr ""
4699
4257
  msgid "Resources require a scope"
4700
4258
  msgstr ""
4701
4259
 
4702
- #: ../lib/puppet/parser/resource.rb:168
4260
+ #: ../lib/puppet/parser/resource.rb:159
4703
4261
  msgid "Only subclasses can override parameters"
4704
4262
  msgstr ""
4705
4263
 
4706
- #: ../lib/puppet/parser/resource.rb:174
4264
+ #: ../lib/puppet/parser/resource.rb:165
4707
4265
  msgid "Attempt to override an already evaluated resource with new values"
4708
4266
  msgstr ""
4709
4267
 
4710
- #: ../lib/puppet/parser/resource.rb:176
4268
+ #: ../lib/puppet/parser/resource.rb:167
4711
4269
  msgid "Attempt to override an already evaluated resource, defined at %{error_location}, with new values"
4712
4270
  msgstr ""
4713
4271
 
4714
- #: ../lib/puppet/parser/resource.rb:273
4715
- msgid "Invalid consume in %{value0}: %{ref} is not a resource"
4716
- msgstr ""
4717
-
4718
- #: ../lib/puppet/parser/resource.rb:280
4719
- msgid "Resource %{ref} could not be found; it might not have been produced yet"
4720
- msgstr ""
4721
-
4722
- #: ../lib/puppet/parser/resource.rb:284
4723
- msgid "Invalid consume in %{ref}: %{cap} is not a capability resource"
4724
- msgstr ""
4725
-
4726
- #: ../lib/puppet/parser/resource.rb:293
4727
- msgid "Resource %{res} tries to consume %{cns} but no 'consumes' mapping exists for %{resource_type} and %{cns_type}"
4728
- msgstr ""
4729
-
4730
- #: ../lib/puppet/parser/resource.rb:313
4731
- msgid "Attempt to reassign attribute '%{name}' in '%{resource}' caused by multiple consumed mappings to the same attribute"
4732
- msgstr ""
4733
-
4734
- #: ../lib/puppet/parser/resource.rb:365
4272
+ #: ../lib/puppet/parser/resource.rb:296
4735
4273
  msgid "Parameter '%{name}' is already set on %{resource}; cannot redefine"
4736
4274
  msgstr ""
4737
4275
 
4738
- #: ../lib/puppet/parser/resource.rb:368
4276
+ #: ../lib/puppet/parser/resource.rb:299
4739
4277
  msgid "Parameter '%{name}' is already set on %{resource} at %{error_location}; cannot redefine"
4740
4278
  msgstr ""
4741
4279
 
4742
- #: ../lib/puppet/parser/resource.rb:373
4280
+ #: ../lib/puppet/parser/resource.rb:304
4743
4281
  msgid "Parameter '%{name}' is already set on %{resource} by %{source}; cannot redefine"
4744
4282
  msgstr ""
4745
4283
 
4746
- #: ../lib/puppet/parser/resource.rb:376
4284
+ #: ../lib/puppet/parser/resource.rb:307
4747
4285
  msgid "Parameter '%{name}' is already set on %{resource} by %{source} at %{error_location}; cannot redefine"
4748
4286
  msgstr ""
4749
4287
 
4750
- #: ../lib/puppet/parser/resource.rb:415
4288
+ #: ../lib/puppet/parser/resource.rb:346
4751
4289
  msgid "Duplicate parameter '%{param}' for on %{resource}"
4752
4290
  msgstr ""
4753
4291
 
@@ -4989,19 +4527,19 @@ msgstr ""
4989
4527
  msgid "break() from context where this is illegal"
4990
4528
  msgstr ""
4991
4529
 
4992
- #: ../lib/puppet/pops/evaluator/evaluator_impl.rb:1241
4530
+ #: ../lib/puppet/pops/evaluator/evaluator_impl.rb:1236
4993
4531
  msgid "Can only append Array or Hash to a Hash"
4994
4532
  msgstr ""
4995
4533
 
4996
- #: ../lib/puppet/pops/evaluator/evaluator_impl.rb:1245
4534
+ #: ../lib/puppet/pops/evaluator/evaluator_impl.rb:1240
4997
4535
  msgid "An URI can only be merged with an URI or String"
4998
4536
  msgstr ""
4999
4537
 
5000
- #: ../lib/puppet/pops/evaluator/evaluator_impl.rb:1248
4538
+ #: ../lib/puppet/pops/evaluator/evaluator_impl.rb:1243
5001
4539
  msgid "Can only append Binary to a Binary"
5002
4540
  msgstr ""
5003
4541
 
5004
- #: ../lib/puppet/pops/evaluator/evaluator_impl.rb:1281
4542
+ #: ../lib/puppet/pops/evaluator/evaluator_impl.rb:1276
5005
4543
  msgid "Can only delete from an Array or Hash."
5006
4544
  msgstr ""
5007
4545
 
@@ -5773,10 +5311,6 @@ msgstr ""
5773
5311
  msgid "Failed to load: %{type_name}"
5774
5312
  msgstr ""
5775
5313
 
5776
- #: ../lib/puppet/pops/issues.rb:925
5777
- msgid "Use of the application-orchestration %{expr} is deprecated. See https://puppet.com/docs/puppet/5.5/deprecated_language.html"
5778
- msgstr ""
5779
-
5780
5314
  #: ../lib/puppet/pops/label_provider.rb:76
5781
5315
  msgid "<%{string}> does not appear to contain a word"
5782
5316
  msgstr ""
@@ -5899,21 +5433,21 @@ msgstr ""
5899
5433
  msgid "The code loaded from %{source_ref} did not produce a Function class when evaluated. Got '%{klass}'"
5900
5434
  msgstr ""
5901
5435
 
5902
- #: ../lib/puppet/pops/loader/ruby_legacy_function_instantiator.rb:24
5436
+ #: ../lib/puppet/pops/loader/ruby_legacy_function_instantiator.rb:23
5903
5437
  msgid "The code loaded from %{source_ref} does not seem to be a Puppet 3x API function - no 'newfunction' call."
5904
5438
  msgstr ""
5905
5439
 
5906
5440
  #. TRANSLATORS - the word 'newfunction' should not be translated as it is a method name.
5907
- #: ../lib/puppet/pops/loader/ruby_legacy_function_instantiator.rb:47
5441
+ #: ../lib/puppet/pops/loader/ruby_legacy_function_instantiator.rb:45
5908
5442
  msgid "Illegal legacy function definition! The code loaded from %{source_ref} did not return the result of calling 'newfunction'. Got '%{klass}'"
5909
5443
  msgstr ""
5910
5444
 
5911
- #: ../lib/puppet/pops/loader/ruby_legacy_function_instantiator.rb:50
5445
+ #: ../lib/puppet/pops/loader/ruby_legacy_function_instantiator.rb:48
5912
5446
  msgid "The code loaded from %{source_ref} produced mis-matched name, expected 'function_%{type_name}', got '%{created_name}'"
5913
5447
  msgstr ""
5914
5448
 
5915
- #: ../lib/puppet/pops/loader/ruby_legacy_function_instantiator.rb:94
5916
- msgid "Illegal method definition of method '%{method_name}' on line %{line}' in legacy function. See %{url} for more information"
5449
+ #: ../lib/puppet/pops/loader/ruby_legacy_function_instantiator.rb:92
5450
+ msgid "Illegal method definition of method '%{method_name}' on line %{line} in legacy function. See %{url} for more information"
5917
5451
  msgstr ""
5918
5452
 
5919
5453
  #: ../lib/puppet/pops/loader/task_instantiator.rb:22
@@ -6115,19 +5649,19 @@ msgid "Unacceptable transform - found an Object without a rule: %{klass}"
6115
5649
  msgstr ""
6116
5650
 
6117
5651
  #. TRANSLATORS 'NUMBER' refers to a method name and the 'name_or_numeric' was the passed in value and should not be translated
6118
- #: ../lib/puppet/pops/model/factory.rb:849
5652
+ #: ../lib/puppet/pops/model/factory.rb:812
6119
5653
  msgid "Internal Error, NUMBER token does not contain a valid number, %{name_or_numeric}"
6120
5654
  msgstr ""
6121
5655
 
6122
- #: ../lib/puppet/pops/model/factory.rb:1166
5656
+ #: ../lib/puppet/pops/model/factory.rb:1121
6123
5657
  msgid "can only concatenate strings, got %{class_name}"
6124
5658
  msgstr ""
6125
5659
 
6126
- #: ../lib/puppet/pops/parser/parser_support.rb:204
5660
+ #: ../lib/puppet/pops/parser/parser_support.rb:199
6127
5661
  msgid "attempt to pass argument list to the function '%{name}' which cannot be called without parentheses"
6128
5662
  msgstr ""
6129
5663
 
6130
- #: ../lib/puppet/pops/parser/parser_support.rb:206
5664
+ #: ../lib/puppet/pops/parser/parser_support.rb:201
6131
5665
  msgid "illegal comma separated argument list"
6132
5666
  msgstr ""
6133
5667
 
@@ -6167,7 +5701,7 @@ msgstr ""
6167
5701
  msgid "digit expected"
6168
5702
  msgstr ""
6169
5703
 
6170
- #: ../lib/puppet/pops/resource/resource_type_impl.rb:167 ../lib/puppet/type.rb:444
5704
+ #: ../lib/puppet/pops/resource/resource_type_impl.rb:165 ../lib/puppet/type.rb:421
6171
5705
  msgid "you must specify title patterns when there are two or more key attributes"
6172
5706
  msgstr ""
6173
5707
 
@@ -6292,10 +5826,6 @@ msgstr ""
6292
5826
  msgid "%{klass} cannot be subtracted from a Timestamp"
6293
5827
  msgstr ""
6294
5828
 
6295
- #: ../lib/puppet/pops/types/enumeration.rb:7 ../lib/puppet/pops/types/enumeration.rb:12
6296
- msgid "Enumeration.enumerator is deprecated. Use Iterable.on instead"
6297
- msgstr ""
6298
-
6299
5829
  #: ../lib/puppet/pops/types/p_binary_type.rb:77
6300
5830
  msgid "The given string in encoding '%{enc}' is invalid. Cannot create a Binary UTF-8 representation"
6301
5831
  msgstr ""
@@ -6409,10 +5939,6 @@ msgstr ""
6409
5939
  msgid "Options 'include_containers' and 'include_values' cannot both be false"
6410
5940
  msgstr ""
6411
5941
 
6412
- #: ../lib/puppet/pops/types/type_calculator.rb:187
6413
- msgid "TypeCalculator.enumerable is deprecated. Use iterable"
6414
- msgstr ""
6415
-
6416
5942
  #. TRANSLATORS 'TypeFactory#string' is a class and method name and should not be translated
6417
5943
  #: ../lib/puppet/pops/types/type_factory.rb:117
6418
5944
  msgid "Passing more than one argument to TypeFactory#string is deprecated"
@@ -6427,85 +5953,85 @@ msgstr ""
6427
5953
  msgid "Everything is now reported using present tense"
6428
5954
  msgstr ""
6429
5955
 
6430
- #: ../lib/puppet/pops/types/type_parser.rb:429
5956
+ #: ../lib/puppet/pops/types/type_parser.rb:425
6431
5957
  msgid "Enum parameters must be identifiers or strings"
6432
5958
  msgstr ""
6433
5959
 
6434
- #: ../lib/puppet/pops/types/type_parser.rb:665
5960
+ #: ../lib/puppet/pops/types/type_parser.rb:661
6435
5961
  msgid "The expression <%{expression}> is not a valid type specification."
6436
5962
  msgstr ""
6437
5963
 
6438
- #: ../lib/puppet/pops/types/type_parser.rb:670
5964
+ #: ../lib/puppet/pops/types/type_parser.rb:666
6439
5965
  msgid "Invalid number of type parameters specified: %{type} requires %{required}, %{given} provided"
6440
5966
  msgstr ""
6441
5967
 
6442
- #: ../lib/puppet/pops/types/type_parser.rb:675
5968
+ #: ../lib/puppet/pops/types/type_parser.rb:671
6443
5969
  msgid "Not a parameterized type <%{type}>"
6444
5970
  msgstr ""
6445
5971
 
6446
- #: ../lib/puppet/pops/types/type_parser.rb:679
5972
+ #: ../lib/puppet/pops/types/type_parser.rb:675
6447
5973
  msgid "Unknown type <%{type}>"
6448
5974
  msgstr ""
6449
5975
 
6450
- #: ../lib/puppet/pops/types/types.rb:930
5976
+ #: ../lib/puppet/pops/types/types.rb:929
6451
5977
  msgid "The string '%{str}' cannot be converted to Numeric"
6452
5978
  msgstr ""
6453
5979
 
6454
- #: ../lib/puppet/pops/types/types.rb:933
5980
+ #: ../lib/puppet/pops/types/types.rb:932
6455
5981
  msgid "Value of type %{type} cannot be converted to Numeric"
6456
5982
  msgstr ""
6457
5983
 
6458
- #: ../lib/puppet/pops/types/types.rb:1171
5984
+ #: ../lib/puppet/pops/types/types.rb:1170
6459
5985
  msgid "The string '%{str}' cannot be converted to Integer"
6460
5986
  msgstr ""
6461
5987
 
6462
- #: ../lib/puppet/pops/types/types.rb:1174
5988
+ #: ../lib/puppet/pops/types/types.rb:1173
6463
5989
  msgid "Value of type %{type} cannot be converted to Integer"
6464
5990
  msgstr ""
6465
5991
 
6466
- #: ../lib/puppet/pops/types/types.rb:1182
5992
+ #: ../lib/puppet/pops/types/types.rb:1181
6467
5993
  msgid "Illegal radix: %{radix}, expected 2, 8, 10, 16, or default"
6468
5994
  msgstr ""
6469
5995
 
6470
- #: ../lib/puppet/pops/types/types.rb:1295
5996
+ #: ../lib/puppet/pops/types/types.rb:1294
6471
5997
  msgid "The string '%{str}' cannot be converted to Float"
6472
5998
  msgstr ""
6473
5999
 
6474
- #: ../lib/puppet/pops/types/types.rb:1298
6000
+ #: ../lib/puppet/pops/types/types.rb:1297
6475
6001
  msgid "Value of type %{type} cannot be converted to Float"
6476
6002
  msgstr ""
6477
6003
 
6478
6004
  #. TRANSLATORS 'PStringType#initialize' is a class and method name and should not be translated
6479
- #: ../lib/puppet/pops/types/types.rb:1515
6005
+ #: ../lib/puppet/pops/types/types.rb:1514
6480
6006
  msgid "Passing more than one argument to PStringType#initialize is deprecated"
6481
6007
  msgstr ""
6482
6008
 
6483
6009
  #. TRANSLATORS 'PStringType#values' and '#value' are classes and method names and should not be translated
6484
- #: ../lib/puppet/pops/types/types.rb:1569
6010
+ #: ../lib/puppet/pops/types/types.rb:1568
6485
6011
  msgid "Method PStringType#values is deprecated. Use #value instead"
6486
6012
  msgstr ""
6487
6013
 
6488
- #: ../lib/puppet/pops/types/types.rb:1895
6014
+ #: ../lib/puppet/pops/types/types.rb:1894
6489
6015
  msgid "The string '%{str}' cannot be converted to Boolean"
6490
6016
  msgstr ""
6491
6017
 
6492
- #: ../lib/puppet/pops/types/types.rb:1898
6018
+ #: ../lib/puppet/pops/types/types.rb:1897
6493
6019
  msgid "Value of type %{type} cannot be converted to Boolean"
6494
6020
  msgstr ""
6495
6021
 
6496
- #: ../lib/puppet/pops/types/types.rb:2626
6022
+ #: ../lib/puppet/pops/types/types.rb:2625
6497
6023
  msgid "Value of type %{type} cannot be converted to Array"
6498
6024
  msgstr ""
6499
6025
 
6500
- #: ../lib/puppet/pops/types/types.rb:2696
6026
+ #: ../lib/puppet/pops/types/types.rb:2695
6501
6027
  msgid "Puppet::Pops::Types::PHashType#element_type is deprecated, use #value_type instead"
6502
6028
  msgstr ""
6503
6029
 
6504
- #: ../lib/puppet/pops/types/types.rb:2833
6030
+ #: ../lib/puppet/pops/types/types.rb:2832
6505
6031
  msgid "odd number of arguments for Hash"
6506
6032
  msgstr ""
6507
6033
 
6508
- #: ../lib/puppet/pops/types/types.rb:2844
6034
+ #: ../lib/puppet/pops/types/types.rb:2843
6509
6035
  msgid "Value of type %{type} cannot be converted to Hash"
6510
6036
  msgstr ""
6511
6037
 
@@ -6584,19 +6110,19 @@ msgstr ""
6584
6110
  msgid "Key/value pairs must be separated by '%{separator}'"
6585
6111
  msgstr ""
6586
6112
 
6587
- #: ../lib/puppet/provider.rb:145
6113
+ #: ../lib/puppet/provider.rb:132
6588
6114
  msgid "No command %{command} defined for provider %{provider}"
6589
6115
  msgstr ""
6590
6116
 
6591
- #: ../lib/puppet/provider.rb:397
6117
+ #: ../lib/puppet/provider.rb:384
6592
6118
  msgid "To support listing resources of this type the '%{provider}' provider needs to implement an 'instances' class method returning the current set of resources. We recommend porting your module to the simpler Resource API instead: https://puppet.com/search/docs?keys=resource+api"
6593
6119
  msgstr ""
6594
6120
 
6595
- #: ../lib/puppet/provider.rb:470
6121
+ #: ../lib/puppet/provider.rb:457
6596
6122
  msgid "'%{parameter_name}' is not a valid parameter for %{resource_type}"
6597
6123
  msgstr ""
6598
6124
 
6599
- #: ../lib/puppet/provider.rb:556
6125
+ #: ../lib/puppet/provider.rb:543
6600
6126
  msgid "No resource and no name in property hash in %{class_name} instance"
6601
6127
  msgstr ""
6602
6128
 
@@ -6624,11 +6150,11 @@ msgstr ""
6624
6150
  msgid "aix.object_info(): Could not find %{resource}[%{name}]"
6625
6151
  msgstr ""
6626
6152
 
6627
- #: ../lib/puppet/provider/aix_object.rb:471 ../lib/puppet/provider/nameservice.rb:182 ../lib/puppet/provider/nameservice/directoryservice.rb:425
6153
+ #: ../lib/puppet/provider/aix_object.rb:471 ../lib/puppet/provider/nameservice.rb:164 ../lib/puppet/provider/nameservice/directoryservice.rb:425
6628
6154
  msgid "Could not create %{resource} %{name}: %{detail}"
6629
6155
  msgstr ""
6630
6156
 
6631
- #: ../lib/puppet/provider/aix_object.rb:483 ../lib/puppet/provider/nameservice.rb:196
6157
+ #: ../lib/puppet/provider/aix_object.rb:483 ../lib/puppet/provider/nameservice.rb:178
6632
6158
  msgid "Could not delete %{resource} %{name}: %{detail}"
6633
6159
  msgstr ""
6634
6160
 
@@ -6717,32 +6243,28 @@ msgstr ""
6717
6243
  msgid "%{name} is not a valid attribute for %{resource_type}"
6718
6244
  msgstr ""
6719
6245
 
6720
- #: ../lib/puppet/provider/nameservice.rb:60
6721
- msgid "listbyname is deprecated and will be removed in a future release of Puppet. Please use `self.instances` to obtain a list of users."
6722
- msgstr ""
6723
-
6724
- #: ../lib/puppet/provider/nameservice.rb:103
6246
+ #: ../lib/puppet/provider/nameservice.rb:85
6725
6247
  msgid "Invalid value %{value}: %{error}"
6726
6248
  msgstr ""
6727
6249
 
6728
6250
  #. TRANSLATORS "autogen_id()" is a method name and should not be translated
6729
- #: ../lib/puppet/provider/nameservice.rb:148
6251
+ #: ../lib/puppet/provider/nameservice.rb:130
6730
6252
  msgid "autogen_id() does not support auto generation of id for resource type %{resource_type}"
6731
6253
  msgstr ""
6732
6254
 
6733
- #: ../lib/puppet/provider/nameservice.rb:170 ../lib/puppet/provider/nameservice/directoryservice.rb:379
6255
+ #: ../lib/puppet/provider/nameservice.rb:152 ../lib/puppet/provider/nameservice/directoryservice.rb:379
6734
6256
  msgid "already exists"
6735
6257
  msgstr ""
6736
6258
 
6737
- #: ../lib/puppet/provider/nameservice.rb:188
6259
+ #: ../lib/puppet/provider/nameservice.rb:170
6738
6260
  msgid "already absent"
6739
6261
  msgstr ""
6740
6262
 
6741
- #: ../lib/puppet/provider/nameservice.rb:282
6263
+ #: ../lib/puppet/provider/nameservice.rb:264
6742
6264
  msgid "Nameservice command must be an array"
6743
6265
  msgstr ""
6744
6266
 
6745
- #: ../lib/puppet/provider/nameservice.rb:287 ../lib/puppet/provider/nameservice/directoryservice.rb:340 ../lib/puppet/provider/nameservice/directoryservice.rb:369
6267
+ #: ../lib/puppet/provider/nameservice.rb:269 ../lib/puppet/provider/nameservice/directoryservice.rb:340 ../lib/puppet/provider/nameservice/directoryservice.rb:369
6746
6268
  msgid "Could not set %{param} on %{resource}[%{name}]: %{detail}"
6747
6269
  msgstr ""
6748
6270
 
@@ -6888,27 +6410,27 @@ msgstr ""
6888
6410
  msgid "source is defined but does not have trailing slash, ignoring %{source}"
6889
6411
  msgstr ""
6890
6412
 
6891
- #: ../lib/puppet/provider/package/gem.rb:102 ../lib/puppet/provider/package/puppetserver_gem.rb:61
6413
+ #: ../lib/puppet/provider/package/gem.rb:122 ../lib/puppet/provider/package/puppetserver_gem.rb:61
6892
6414
  msgid "Could not list gems: %{detail}"
6893
6415
  msgstr ""
6894
6416
 
6895
- #: ../lib/puppet/provider/package/gem.rb:128
6417
+ #: ../lib/puppet/provider/package/gem.rb:148
6896
6418
  msgid "Could not match %{desc}"
6897
6419
  msgstr ""
6898
6420
 
6899
- #: ../lib/puppet/provider/package/gem.rb:206 ../lib/puppet/provider/package/puppetserver_gem.rb:93
6421
+ #: ../lib/puppet/provider/package/gem.rb:226 ../lib/puppet/provider/package/puppetserver_gem.rb:93
6900
6422
  msgid "Invalid source '%{uri}': %{detail}"
6901
6423
  msgstr ""
6902
6424
 
6903
- #: ../lib/puppet/provider/package/gem.rb:217 ../lib/puppet/provider/package/puppetserver_gem.rb:104
6425
+ #: ../lib/puppet/provider/package/gem.rb:237 ../lib/puppet/provider/package/puppetserver_gem.rb:104
6904
6426
  msgid "puppet:// URLs are not supported as gem sources"
6905
6427
  msgstr ""
6906
6428
 
6907
- #: ../lib/puppet/provider/package/gem.rb:233 ../lib/puppet/provider/package/puppetserver_gem.rb:115
6429
+ #: ../lib/puppet/provider/package/gem.rb:253 ../lib/puppet/provider/package/puppetserver_gem.rb:115
6908
6430
  msgid "Could not install: %{output}"
6909
6431
  msgstr ""
6910
6432
 
6911
- #: ../lib/puppet/provider/package/gem.rb:259 ../lib/puppet/provider/package/puppetserver_gem.rb:125
6433
+ #: ../lib/puppet/provider/package/gem.rb:279 ../lib/puppet/provider/package/puppetserver_gem.rb:125
6912
6434
  msgid "Could not uninstall: %{output}"
6913
6435
  msgstr ""
6914
6436
 
@@ -7018,7 +6540,7 @@ msgstr ""
7018
6540
  msgid "Refusing to install package group %{resource_name}, because allow_virtual is false."
7019
6541
  msgstr ""
7020
6542
 
7021
- #: ../lib/puppet/provider/package/pip.rb:58
6543
+ #: ../lib/puppet/provider/package/pip.rb:57
7022
6544
  msgid "Cannot resolve pip version"
7023
6545
  msgstr ""
7024
6546
 
@@ -7034,27 +6556,27 @@ msgstr ""
7034
6556
  msgid "Unknown line format %{resource_name}: %{parse_line}"
7035
6557
  msgstr ""
7036
6558
 
7037
- #: ../lib/puppet/provider/package/pkg.rb:127
6559
+ #: ../lib/puppet/provider/package/pkg.rb:123
7038
6560
  msgid "Unable to unfreeze %{package}"
7039
6561
  msgstr ""
7040
6562
 
7041
- #: ../lib/puppet/provider/package/pkg.rb:162
6563
+ #: ../lib/puppet/provider/package/pkg.rb:158
7042
6564
  msgid "Implicit version %{should} has %{n} possible matches"
7043
6565
  msgstr ""
7044
6566
 
7045
- #: ../lib/puppet/provider/package/pkg.rb:174
6567
+ #: ../lib/puppet/provider/package/pkg.rb:170
7046
6568
  msgid "Selecting version '%{version}' for implicit '%{should}'"
7047
6569
  msgstr ""
7048
6570
 
7049
- #: ../lib/puppet/provider/package/pkg.rb:179
6571
+ #: ../lib/puppet/provider/package/pkg.rb:175
7050
6572
  msgid "No version of %{name} matching %{should} is installable, even though the package is currently installed"
7051
6573
  msgstr ""
7052
6574
 
7053
- #: ../lib/puppet/provider/package/pkg.rb:198
6575
+ #: ../lib/puppet/provider/package/pkg.rb:194
7054
6576
  msgid "pkg warning: %{warnings}"
7055
6577
  msgstr ""
7056
6578
 
7057
- #: ../lib/puppet/provider/package/pkg.rb:242 ../lib/puppet/provider/package/pkg.rb:268
6579
+ #: ../lib/puppet/provider/package/pkg.rb:238 ../lib/puppet/provider/package/pkg.rb:264
7058
6580
  msgid "Unable to update %{package}"
7059
6581
  msgstr ""
7060
6582
 
@@ -7241,15 +6763,15 @@ msgstr ""
7241
6763
  msgid "Waiting 5 seconds for runsvdir to discover service %{service}"
7242
6764
  msgstr ""
7243
6765
 
7244
- #: ../lib/puppet/provider/service/smf.rb:68
6766
+ #: ../lib/puppet/provider/service/smf.rb:120
7245
6767
  msgid "Failed to get the FMRI of the %{service} service: The pattern '%{service}' matches multiple FMRIs! These are the FMRIs it matches: %{all_fmris}"
7246
6768
  msgstr ""
7247
6769
 
7248
- #: ../lib/puppet/provider/service/smf.rb:83
6770
+ #: ../lib/puppet/provider/service/smf.rb:135
7249
6771
  msgid "Cannot query if the %{service} service is complete: The concept of complete/incomplete services was introduced in Solaris 11.1. You are on a Solaris %{release} machine."
7250
6772
  msgstr ""
7251
6773
 
7252
- #: ../lib/puppet/provider/service/smf.rb:182
6774
+ #: ../lib/puppet/provider/service/smf.rb:221
7253
6775
  msgid "The %{service} service is incomplete so its status will be reported as :stopped. See `svcs -xv %{fmri}` for more details."
7254
6776
  msgstr ""
7255
6777
 
@@ -7374,142 +6896,90 @@ msgstr ""
7374
6896
  msgid "Invalid node name %{host}"
7375
6897
  msgstr ""
7376
6898
 
7377
- #: ../lib/puppet/resource.rb:48
6899
+ #: ../lib/puppet/resource.rb:47
7378
6900
  msgid "No resource type provided in serialized data"
7379
6901
  msgstr ""
7380
6902
 
7381
- #: ../lib/puppet/resource.rb:50
6903
+ #: ../lib/puppet/resource.rb:49
7382
6904
  msgid "No resource title provided in serialized data"
7383
6905
  msgstr ""
7384
6906
 
7385
6907
  #. TRANSLATORS 'Puppet::Resource.new' should not be translated
7386
- #: ../lib/puppet/resource.rb:277
6908
+ #: ../lib/puppet/resource.rb:276
7387
6909
  msgid "Puppet::Resource.new does not take a hash as the first argument."
7388
6910
  msgstr ""
7389
6911
 
7390
- #: ../lib/puppet/resource.rb:278
6912
+ #: ../lib/puppet/resource.rb:277
7391
6913
  msgid "Did you mean (%{type}, %{title}) ?"
7392
6914
  msgstr ""
7393
6915
 
7394
- #: ../lib/puppet/resource.rb:315
6916
+ #: ../lib/puppet/resource.rb:314
7395
6917
  msgid "Could not find declared class %{title}"
7396
6918
  msgstr ""
7397
6919
 
7398
- #: ../lib/puppet/resource.rb:317
6920
+ #: ../lib/puppet/resource.rb:316
7399
6921
  msgid "Invalid resource type %{type}"
7400
6922
  msgstr ""
7401
6923
 
7402
- #: ../lib/puppet/resource.rb:521
7403
- msgid "The method Puppet::Resource.set_default_parameters is deprecated and will be removed in the next major release of Puppet."
7404
- msgstr ""
7405
-
7406
- #: ../lib/puppet/resource.rb:526
7407
- msgid "Cannot evaluate default parameters for %{resource} - not a parser resource"
7408
- msgstr ""
7409
-
7410
- #: ../lib/puppet/resource.rb:566
7411
- msgid "The method Puppet::Resource.validate_complete is deprecated and will be removed in the next major release of Puppet."
7412
- msgstr ""
7413
-
7414
- #: ../lib/puppet/resource.rb:572
7415
- msgid "Must pass %{param} to %{resource}"
7416
- msgstr ""
7417
-
7418
- #: ../lib/puppet/resource.rb:584
7419
- msgid "Expected parameter '%{name}' of '%{value0}' to have type %{value1}, got %{value2}"
7420
- msgstr ""
7421
-
7422
- #: ../lib/puppet/resource.rb:590
6924
+ #: ../lib/puppet/resource.rb:502
7423
6925
  msgid "no parameter named '%{name}'"
7424
6926
  msgstr ""
7425
6927
 
7426
- #: ../lib/puppet/resource.rb:635
6928
+ #: ../lib/puppet/resource.rb:547
7427
6929
  msgid "No title provided and %{type} is not a valid resource reference"
7428
6930
  msgstr ""
7429
6931
 
7430
- #: ../lib/puppet/resource.rb:709
6932
+ #: ../lib/puppet/resource.rb:621
7431
6933
  msgid "No set of title patterns matched the title \"%{title}\"."
7432
6934
  msgstr ""
7433
6935
 
7434
- #: ../lib/puppet/resource/capability_finder.rb:27
7435
- msgid "PuppetDB is not available"
7436
- msgstr ""
7437
-
7438
- #: ../lib/puppet/resource/capability_finder.rb:47
7439
- msgid "Unexpected response from PuppetDB when looking up %{capability}:"
7440
- msgstr ""
7441
-
7442
- #: ../lib/puppet/resource/capability_finder.rb:48
7443
- msgid "expected exactly one resource but got %{count};"
7444
- msgstr ""
7445
-
7446
- #: ../lib/puppet/resource/capability_finder.rb:49
7447
- msgid ""
7448
- "returned data is:\n"
7449
- "%{resources}"
7450
- msgstr ""
7451
-
7452
- #: ../lib/puppet/resource/capability_finder.rb:81
7453
- msgid "Looking up capability %{capability} in PuppetDB: %{query_terms}"
7454
- msgstr ""
7455
-
7456
- #: ../lib/puppet/resource/capability_finder.rb:105
7457
- msgid "Unexpected response from PuppetDB when looking up %{capability}: expected an Array but got %{result}"
7458
- msgstr ""
7459
-
7460
- #: ../lib/puppet/resource/capability_finder.rb:112
7461
- msgid ""
7462
- "Invalid JSON from PuppetDB when looking up %{capability}\n"
7463
- "%{detail}"
7464
- msgstr ""
7465
-
7466
- #: ../lib/puppet/resource/catalog.rb:104
6936
+ #: ../lib/puppet/resource/catalog.rb:102
7467
6937
  msgid "Cannot add resource %{resource_1} before %{resource_2} because %{resource_2} is not yet in the catalog"
7468
6938
  msgstr ""
7469
6939
 
7470
- #: ../lib/puppet/resource/catalog.rb:119
6940
+ #: ../lib/puppet/resource/catalog.rb:117
7471
6941
  msgid "Cannot add resource %{resource_1} after %{resource_2} because %{resource_2} is not yet in the catalog"
7472
6942
  msgstr ""
7473
6943
 
7474
6944
  #. TRANSLATORS 'alias' should not be translated
7475
- #: ../lib/puppet/resource/catalog.rb:206
6945
+ #: ../lib/puppet/resource/catalog.rb:204
7476
6946
  msgid "Cannot alias %{resource} to %{key}; resource %{newref} already declared"
7477
6947
  msgstr ""
7478
6948
 
7479
6949
  #. TRANSLATORS 'alias' should not be translated
7480
- #: ../lib/puppet/resource/catalog.rb:210
6950
+ #: ../lib/puppet/resource/catalog.rb:208
7481
6951
  msgid "Cannot alias %{resource} to %{key} at %{resource_declaration}; resource %{newref} already declared"
7482
6952
  msgstr ""
7483
6953
 
7484
- #: ../lib/puppet/resource/catalog.rb:292
6954
+ #: ../lib/puppet/resource/catalog.rb:290
7485
6955
  msgid "Unknown resource type %{type}"
7486
6956
  msgstr ""
7487
6957
 
7488
- #: ../lib/puppet/resource/catalog.rb:446
6958
+ #: ../lib/puppet/resource/catalog.rb:433
7489
6959
  msgid "Could not intern from data: Could not find relationship source %{source} for %{target}"
7490
6960
  msgstr ""
7491
6961
 
7492
- #: ../lib/puppet/resource/catalog.rb:453
6962
+ #: ../lib/puppet/resource/catalog.rb:440
7493
6963
  msgid "Could not intern from data: Could not find relationship target %{target} for %{source}"
7494
6964
  msgstr ""
7495
6965
 
7496
- #: ../lib/puppet/resource/catalog.rb:543
6966
+ #: ../lib/puppet/resource/catalog.rb:530
7497
6967
  msgid "Could not create class file %{file}: %{detail}"
7498
6968
  msgstr ""
7499
6969
 
7500
- #: ../lib/puppet/resource/catalog.rb:559
6970
+ #: ../lib/puppet/resource/catalog.rb:546
7501
6971
  msgid "Could not create resource file %{file}: %{detail}"
7502
6972
  msgstr ""
7503
6973
 
7504
- #: ../lib/puppet/resource/catalog.rb:594
6974
+ #: ../lib/puppet/resource/catalog.rb:581
7505
6975
  msgid "Duplicate declaration: %{resource} is already declared; cannot redeclare"
7506
6976
  msgstr ""
7507
6977
 
7508
- #: ../lib/puppet/resource/catalog.rb:596
6978
+ #: ../lib/puppet/resource/catalog.rb:583
7509
6979
  msgid "Duplicate declaration: %{resource} is already declared at %{error_location}; cannot redeclare"
7510
6980
  msgstr ""
7511
6981
 
7512
- #: ../lib/puppet/resource/catalog.rb:645 ../lib/puppet/resource/catalog.rb:650
6982
+ #: ../lib/puppet/resource/catalog.rb:632 ../lib/puppet/resource/catalog.rb:637
7513
6983
  msgid "Could not find resource %{resource} when converting %{message} resources"
7514
6984
  msgstr ""
7515
6985
 
@@ -7517,201 +6987,145 @@ msgstr ""
7517
6987
  msgid "Could not evaluate: %{detail}"
7518
6988
  msgstr ""
7519
6989
 
7520
- #: ../lib/puppet/resource/type.rb:82
7521
- msgid "Invalid export in %{reference}: %{ex} is not a resource"
7522
- msgstr ""
7523
-
7524
- #: ../lib/puppet/resource/type.rb:83
7525
- msgid "Invalid export in %{reference}: %{ex} is not a capability resource"
7526
- msgstr ""
7527
-
7528
6990
  #: ../lib/puppet/resource/type.rb:87
7529
- msgid "Resource type %{res_type} does not produce %{ex_type}"
7530
- msgstr ""
7531
-
7532
- #: ../lib/puppet/resource/type.rb:148
7533
6991
  msgid "Invalid resource supertype '%{type}'"
7534
6992
  msgstr ""
7535
6993
 
7536
- #: ../lib/puppet/resource/type.rb:200
6994
+ #: ../lib/puppet/resource/type.rb:117
7537
6995
  msgid "%{name} is not a class; cannot add code to it"
7538
6996
  msgstr ""
7539
6997
 
7540
- #: ../lib/puppet/resource/type.rb:201
6998
+ #: ../lib/puppet/resource/type.rb:118
7541
6999
  msgid "%{name} is not a class; cannot add code from it"
7542
7000
  msgstr ""
7543
7001
 
7544
- #: ../lib/puppet/resource/type.rb:205
7002
+ #: ../lib/puppet/resource/type.rb:122
7545
7003
  msgid "Cannot have code outside of a class/node/define because 'freeze_main' is enabled"
7546
7004
  msgstr ""
7547
7005
 
7548
- #: ../lib/puppet/resource/type.rb:209
7006
+ #: ../lib/puppet/resource/type.rb:126
7549
7007
  msgid "Cannot merge classes with different parent classes (%{name} => %{parent} vs. %{other_name} => %{other_parent})"
7550
7008
  msgstr ""
7551
7009
 
7552
- #: ../lib/puppet/resource/type.rb:240
7010
+ #: ../lib/puppet/resource/type.rb:157
7553
7011
  msgid "Cannot create resources for defined resource types"
7554
7012
  msgstr ""
7555
7013
 
7556
- #: ../lib/puppet/resource/type.rb:295
7557
- msgid "The method Puppet::Resource::Type.assign_parameter_values is deprecated and will be removed in the next major release of Puppet."
7558
- msgstr ""
7559
-
7560
- #: ../lib/puppet/resource/type.rb:311
7014
+ #: ../lib/puppet/resource/type.rb:210
7561
7015
  msgid "Could not find parent resource type '%{parent}' of type %{parent_type} in %{env}"
7562
7016
  msgstr ""
7563
7017
 
7564
- #: ../lib/puppet/resource/type.rb:438
7018
+ #: ../lib/puppet/resource/type.rb:336
7565
7019
  msgid "Parameter '%{name}' is given a type, but is not a valid parameter."
7566
7020
  msgstr ""
7567
7021
 
7568
- #: ../lib/puppet/resource/type.rb:441
7022
+ #: ../lib/puppet/resource/type.rb:339
7569
7023
  msgid "Parameter '%{name}' is given a type that is not a Puppet Type, got %{class_name}"
7570
7024
  msgstr ""
7571
7025
 
7572
- #: ../lib/puppet/resource/type.rb:483
7026
+ #: ../lib/puppet/resource/type.rb:373
7573
7027
  msgid "Could not find scope for %{class_name}"
7574
7028
  msgstr ""
7575
7029
 
7576
- #: ../lib/puppet/resource/type.rb:504
7030
+ #: ../lib/puppet/resource/type.rb:394
7577
7031
  msgid "%{param} is a metaparam; this value will inherit to all contained resources in the %{name} definition"
7578
7032
  msgstr ""
7579
7033
 
7580
- #: ../lib/puppet/resource/type.rb:506
7034
+ #: ../lib/puppet/resource/type.rb:396
7581
7035
  msgid "%{param} is a metaparameter; please choose another parameter name in the %{name} definition"
7582
7036
  msgstr ""
7583
7037
 
7584
- #: ../lib/puppet/resource/type_collection.rb:72
7038
+ #: ../lib/puppet/resource/type_collection.rb:63
7585
7039
  msgid "Class '%{klass}' is already defined%{error}; cannot redefine"
7586
7040
  msgstr ""
7587
7041
 
7588
- #: ../lib/puppet/resource/type_collection.rb:73
7042
+ #: ../lib/puppet/resource/type_collection.rb:64
7589
7043
  msgid "Definition '%{klass}' is already defined%{error}; cannot be redefined as a class"
7590
7044
  msgstr ""
7591
7045
 
7592
- #: ../lib/puppet/resource/type_collection.rb:74
7593
- msgid "Application '%{klass}' is already defined%{error}; cannot be redefined as a class"
7594
- msgstr ""
7595
-
7596
- #: ../lib/puppet/resource/type_collection.rb:105
7046
+ #: ../lib/puppet/resource/type_collection.rb:95
7597
7047
  msgid "Node '%{name}' is already defined%{error}; cannot redefine"
7598
7048
  msgstr ""
7599
7049
 
7600
- #: ../lib/puppet/resource/type_collection.rb:113
7601
- msgid "Site is already defined%{error}; cannot redefine"
7602
- msgstr ""
7603
-
7604
- #: ../lib/puppet/resource/type_collection.rb:150
7050
+ #: ../lib/puppet/resource/type_collection.rb:130
7605
7051
  msgid "'%{name}' is already defined%{error} as a class; cannot redefine as a definition"
7606
7052
  msgstr ""
7607
7053
 
7608
- #: ../lib/puppet/resource/type_collection.rb:151
7054
+ #: ../lib/puppet/resource/type_collection.rb:131
7609
7055
  msgid "Definition '%{name}' is already defined%{error}; cannot be redefined"
7610
7056
  msgstr ""
7611
7057
 
7612
- #: ../lib/puppet/resource/type_collection.rb:152 ../lib/puppet/resource/type_collection.rb:168
7613
- msgid "'%{name}' is already defined%{error} as an application; cannot be redefined"
7614
- msgstr ""
7615
-
7616
- #: ../lib/puppet/resource/type_collection.rb:157
7617
- msgid "'%{name}' is already defined%{error} as a class; cannot redefine as a mapping"
7618
- msgstr ""
7619
-
7620
- #: ../lib/puppet/resource/type_collection.rb:166
7621
- msgid "'%{name}' is already defined%{error} as a class; cannot redefine as an application"
7622
- msgstr ""
7623
-
7624
- #: ../lib/puppet/resource/type_collection.rb:167
7625
- msgid "'%{name}' is already defined%{error} as a definition; cannot redefine as an application"
7626
- msgstr ""
7627
-
7628
- #: ../lib/puppet/resource/type_collection.rb:220
7058
+ #: ../lib/puppet/resource/type_collection.rb:175
7629
7059
  msgid "Execution of config_version command `%{cmd}` failed: %{message}"
7630
7060
  msgstr ""
7631
7061
 
7632
- #: ../lib/puppet/resource/type_collection.rb:241
7062
+ #: ../lib/puppet/resource/type_collection.rb:196
7633
7063
  msgid "Not attempting to load %{type} %{fqname} as this object was missing during a prior compilation"
7634
7064
  msgstr ""
7635
7065
 
7636
- #: ../lib/puppet/rest/route.rb:47
7637
- msgid "Connection to cached server and port %{server}:%{port} failed: %{message}"
7638
- msgstr ""
7639
-
7640
- #: ../lib/puppet/rest/routes.rb:46
7641
- msgid "Downloaded certificate for %{name} from %{server}"
7642
- msgstr ""
7643
-
7644
- #: ../lib/puppet/rest/routes.rb:76
7645
- msgid "Downloaded certificate revocation list for %{name} from %{server}"
7646
- msgstr ""
7647
-
7648
- #: ../lib/puppet/rest/routes.rb:129
7649
- msgid "Downloaded existing certificate request for %{name} from %{server}"
7650
- msgstr ""
7651
-
7652
- #: ../lib/puppet/settings.rb:99
7066
+ #: ../lib/puppet/settings.rb:102
7653
7067
  msgid "New environment loaders generated from the requested section."
7654
7068
  msgstr ""
7655
7069
 
7656
- #: ../lib/puppet/settings.rb:301
7070
+ #: ../lib/puppet/settings.rb:304
7657
7071
  msgid "Attempting to initialize global default settings more than once!"
7658
7072
  msgstr ""
7659
7073
 
7660
- #: ../lib/puppet/settings.rb:501
7074
+ #: ../lib/puppet/settings.rb:504
7661
7075
  msgid "Using --configprint is deprecated. Use 'puppet config <subcommand>' instead."
7662
7076
  msgstr ""
7663
7077
 
7664
- #: ../lib/puppet/settings.rb:643
7078
+ #: ../lib/puppet/settings.rb:646
7665
7079
  msgid "Could not load %{file}: %{detail}"
7666
7080
  msgstr ""
7667
7081
 
7668
- #: ../lib/puppet/settings.rb:750
7082
+ #: ../lib/puppet/settings.rb:755
7669
7083
  msgid "Invalid setting type '%{type}'"
7670
7084
  msgstr ""
7671
7085
 
7672
- #: ../lib/puppet/settings.rb:905
7086
+ #: ../lib/puppet/settings.rb:910
7673
7087
  msgid "Unknown searchpath case: %{source_type} for the %{source} settings path element."
7674
7088
  msgstr ""
7675
7089
 
7676
- #: ../lib/puppet/settings.rb:978
7090
+ #: ../lib/puppet/settings.rb:983
7677
7091
  msgid "setting definition for '%{name}' is not a hash!"
7678
7092
  msgstr ""
7679
7093
 
7680
- #: ../lib/puppet/settings.rb:983
7094
+ #: ../lib/puppet/settings.rb:988
7681
7095
  msgid "Setting %{name} is already defined"
7682
7096
  msgstr ""
7683
7097
 
7684
- #: ../lib/puppet/settings.rb:989
7098
+ #: ../lib/puppet/settings.rb:994
7685
7099
  msgid "Setting %{name} is already using short name '%{short}'"
7686
7100
  msgstr ""
7687
7101
 
7688
- #: ../lib/puppet/settings.rb:1253
7102
+ #: ../lib/puppet/settings.rb:1265
7689
7103
  msgid "Setting %{name} is deprecated."
7690
7104
  msgstr ""
7691
7105
 
7692
7106
  #. TRANSLATORS 'puppet.conf' is a file name and should not be translated
7693
- #: ../lib/puppet/settings.rb:1258
7107
+ #: ../lib/puppet/settings.rb:1270
7694
7108
  msgid "Setting %{name} is deprecated in puppet.conf."
7695
7109
  msgstr ""
7696
7110
 
7697
- #: ../lib/puppet/settings.rb:1435
7111
+ #: ../lib/puppet/settings.rb:1457
7698
7112
  msgid "Error converting value for param '%{name}': %{detail}"
7699
7113
  msgstr ""
7700
7114
 
7701
- #: ../lib/puppet/settings.rb:1459
7115
+ #: ../lib/puppet/settings.rb:1481
7702
7116
  msgid "Could not find value for %{expression}"
7703
7117
  msgstr ""
7704
7118
 
7705
7119
  #. TRANSLATORS '$environment' is a Puppet specific variable and should not be translated
7706
- #: ../lib/puppet/settings.rb:1469
7120
+ #: ../lib/puppet/settings.rb:1491
7707
7121
  msgid "You cannot interpolate $environment within '%{setting_name}' when using directory environments."
7708
7122
  msgstr ""
7709
7123
 
7710
- #: ../lib/puppet/settings.rb:1470
7124
+ #: ../lib/puppet/settings.rb:1492
7711
7125
  msgid "Its value will remain %{value}."
7712
7126
  msgstr ""
7713
7127
 
7714
- #: ../lib/puppet/settings.rb:1501
7128
+ #: ../lib/puppet/settings.rb:1523
7715
7129
  msgid "Attempt to assign a value to unknown setting %{name}"
7716
7130
  msgstr ""
7717
7131
 
@@ -7833,7 +7247,15 @@ msgstr ""
7833
7247
  msgid "Expected an Array, String, or Hash, got a %{klass}"
7834
7248
  msgstr ""
7835
7249
 
7836
- #: ../lib/puppet/settings/priority_setting.rb:39
7250
+ #: ../lib/puppet/settings/integer_setting.rb:8
7251
+ msgid "Cannot convert '%{value}' to an integer for parameter: %{name}"
7252
+ msgstr ""
7253
+
7254
+ #: ../lib/puppet/settings/port_setting.rb:6
7255
+ msgid "Value '%{value}' is not a valid port number for parameter: %{name}"
7256
+ msgstr ""
7257
+
7258
+ #: ../lib/puppet/settings/priority_setting.rb:40
7837
7259
  msgid "Invalid priority format '%{value}' for parameter: %{name}"
7838
7260
  msgstr ""
7839
7261
 
@@ -7853,83 +7275,83 @@ msgstr ""
7853
7275
  msgid "Invalid 'time to live' format '%{value}' for parameter: %{param_name}"
7854
7276
  msgstr ""
7855
7277
 
7856
- #: ../lib/puppet/ssl/base.rb:27
7278
+ #: ../lib/puppet/ssl/base.rb:26
7857
7279
  msgid "%{name} has not declared what class it wraps"
7858
7280
  msgstr ""
7859
7281
 
7860
- #: ../lib/puppet/ssl/base.rb:32 ../lib/puppet/x509/cert_provider.rb:342
7282
+ #: ../lib/puppet/ssl/base.rb:31 ../lib/puppet/x509/cert_provider.rb:370
7861
7283
  msgid "Certname %{name} must not contain unprintable or non-ASCII characters"
7862
7284
  msgstr ""
7863
7285
 
7864
- #: ../lib/puppet/ssl/base.rb:38
7286
+ #: ../lib/puppet/ssl/base.rb:37
7865
7287
  msgid "%{class_name} did not override 'generate'"
7866
7288
  msgstr ""
7867
7289
 
7868
- #: ../lib/puppet/ssl/base.rb:63
7290
+ #: ../lib/puppet/ssl/base.rb:64
7869
7291
  msgid "Object must be an instance of %{class_name}, %{actual_class} given"
7870
7292
  msgstr ""
7871
7293
 
7872
- #: ../lib/puppet/ssl/base.rb:67
7294
+ #: ../lib/puppet/ssl/base.rb:68
7873
7295
  msgid "Name must be supplied if it cannot be determined from the instance"
7874
7296
  msgstr ""
7875
7297
 
7876
- #: ../lib/puppet/ssl/base.rb:142
7298
+ #: ../lib/puppet/ssl/base.rb:140
7877
7299
  msgid "Unknown signature algorithm '%{ln}'"
7878
7300
  msgstr ""
7879
7301
 
7880
- #: ../lib/puppet/ssl/certificate_request.rb:65
7302
+ #: ../lib/puppet/ssl/certificate_request.rb:57
7881
7303
  msgid "Creating a new SSL certificate request for %{name}"
7882
7304
  msgstr ""
7883
7305
 
7884
- #: ../lib/puppet/ssl/certificate_request.rb:101
7306
+ #: ../lib/puppet/ssl/certificate_request.rb:90
7885
7307
  msgid "CSR sign verification failed; you need to clean the certificate request for %{name} on the server"
7886
7308
  msgstr ""
7887
7309
 
7888
- #: ../lib/puppet/ssl/certificate_request.rb:107
7310
+ #: ../lib/puppet/ssl/certificate_request.rb:96
7889
7311
  msgid "Certificate Request fingerprint (%{digest}): %{hex_digest}"
7890
7312
  msgstr ""
7891
7313
 
7892
- #: ../lib/puppet/ssl/certificate_request.rb:151
7314
+ #: ../lib/puppet/ssl/certificate_request.rb:140
7893
7315
  msgid "CSR needs content to extract fields"
7894
7316
  msgstr ""
7895
7317
 
7896
- #: ../lib/puppet/ssl/certificate_request.rb:178
7318
+ #: ../lib/puppet/ssl/certificate_request.rb:167
7897
7319
  msgid "In %{attr}, expected extension record %{index} to have two or three items, but found %{count}"
7898
7320
  msgstr ""
7899
7321
 
7900
- #: ../lib/puppet/ssl/certificate_request.rb:229
7322
+ #: ../lib/puppet/ssl/certificate_request.rb:218
7901
7323
  msgid "Cannot specify CSR attribute %{oid}: conflicts with internally used CSR attribute"
7902
7324
  msgstr ""
7903
7325
 
7904
- #: ../lib/puppet/ssl/certificate_request.rb:238
7326
+ #: ../lib/puppet/ssl/certificate_request.rb:227
7905
7327
  msgid "Cannot create CSR with attribute %{oid}: %{message}"
7906
7328
  msgstr ""
7907
7329
 
7908
- #: ../lib/puppet/ssl/certificate_request.rb:255
7330
+ #: ../lib/puppet/ssl/certificate_request.rb:244
7909
7331
  msgid "Cannot specify CSR extension request %{oid}: conflicts with internally used extension request"
7910
7332
  msgstr ""
7911
7333
 
7912
- #: ../lib/puppet/ssl/certificate_request.rb:261
7334
+ #: ../lib/puppet/ssl/certificate_request.rb:250
7913
7335
  msgid "Cannot create CSR with extension request %{oid}: %{message}"
7914
7336
  msgstr ""
7915
7337
 
7916
- #: ../lib/puppet/ssl/certificate_request.rb:312
7338
+ #: ../lib/puppet/ssl/certificate_request.rb:301
7917
7339
  msgid "In %{attr}, expected Set but found %{klass}"
7918
7340
  msgstr ""
7919
7341
 
7920
- #: ../lib/puppet/ssl/certificate_request.rb:316
7342
+ #: ../lib/puppet/ssl/certificate_request.rb:305
7921
7343
  msgid "In %{attr}, expected Set[Array] but found %{klass}"
7922
7344
  msgstr ""
7923
7345
 
7924
- #: ../lib/puppet/ssl/certificate_request.rb:320
7346
+ #: ../lib/puppet/ssl/certificate_request.rb:309
7925
7347
  msgid "In %{attr}, expected Set[Array] with one value but found %{count} elements"
7926
7348
  msgstr ""
7927
7349
 
7928
- #: ../lib/puppet/ssl/certificate_request.rb:324
7350
+ #: ../lib/puppet/ssl/certificate_request.rb:313
7929
7351
  msgid "In %{attr}, expected Set[Array[Sequence[...]]], but found %{klass}"
7930
7352
  msgstr ""
7931
7353
 
7932
- #: ../lib/puppet/ssl/certificate_request.rb:328
7354
+ #: ../lib/puppet/ssl/certificate_request.rb:317
7933
7355
  msgid "In %{attr}, expected Set[Array[Sequence[Array[...]]]], but found %{klass}"
7934
7356
  msgstr ""
7935
7357
 
@@ -7957,195 +7379,107 @@ msgstr ""
7957
7379
  msgid "Server hostname '%{host}' did not match server certificate; %{expected_certnames}"
7958
7380
  msgstr ""
7959
7381
 
7960
- #: ../lib/puppet/ssl/host.rb:154
7961
- msgid "No certificate to validate."
7962
- msgstr ""
7963
-
7964
- #: ../lib/puppet/ssl/host.rb:155
7965
- msgid "No private key with which to validate certificate with fingerprint: %{fingerprint}"
7966
- msgstr ""
7967
-
7968
- #: ../lib/puppet/ssl/host.rb:157
7969
- msgid ""
7970
- "The certificate retrieved from the master does not match the agent's private key. Did you forget to run as root?\n"
7971
- "Certificate fingerprint: %{fingerprint}\n"
7972
- "To fix this, remove the certificate from both the master and the agent and then start a puppet run, which will automatically regenerate a certificate.\n"
7973
- "On the master:\n"
7974
- " puppetserver ca clean --certname %{cert_name}\n"
7975
- "On the agent:\n"
7976
- " 1. puppet ssl clean %{clean_params}\n"
7977
- " 2. puppet %{puppet_params}\n"
7978
- msgstr ""
7979
-
7980
- #: ../lib/puppet/ssl/host.rb:212
7981
- msgid ""
7982
- "The CSR retrieved from the master does not match the agent's public key.\n"
7983
- "CSR fingerprint: %{fingerprint}\n"
7984
- "CSR public key: %{csr_public_key}\n"
7985
- "Agent public key: %{agent_public_key}\n"
7986
- "To fix this, remove the CSR from both the master and the agent and then start a puppet run, which will automatically regenerate a CSR.\n"
7987
- "On the master:\n"
7988
- " puppetserver ca clean --certname %{cert_name}\n"
7989
- "On the agent:\n"
7990
- " 1. puppet ssl clean %{clean_params}\n"
7991
- " 2. puppet %{puppet_params}\n"
7992
- msgstr ""
7993
-
7994
- #: ../lib/puppet/ssl/host.rb:235
7995
- msgid "Puppet::SSL::Host is deprecated and will be removed in a future release of Puppet."
7996
- msgstr ""
7997
-
7998
- #: ../lib/puppet/ssl/host.rb:267 ../lib/puppet/ssl/host.rb:288
7999
- msgid "Could not request certificate: %{message}"
8000
- msgstr ""
8001
-
8002
- #: ../lib/puppet/ssl/host.rb:269
8003
- msgid "Exiting; failed to retrieve certificate and waitforcert is disabled"
8004
- msgstr ""
8005
-
8006
- #: ../lib/puppet/ssl/host.rb:278
8007
- msgid "Exiting; no certificate found and waitforcert is disabled"
8008
- msgstr ""
8009
-
8010
- #: ../lib/puppet/ssl/host.rb:286
8011
- msgid "Did not receive certificate"
8012
- msgstr ""
8013
-
8014
- #: ../lib/puppet/ssl/host.rb:326
8015
- msgid "Response from the CA did not contain a valid certificate request: %{message}"
8016
- msgstr ""
8017
-
8018
- #: ../lib/puppet/ssl/host.rb:332
8019
- msgid "Could not download certificate request: %{message}"
8020
- msgstr ""
8021
-
8022
- #: ../lib/puppet/ssl/host.rb:359
8023
- msgid ""
8024
- "Failed attempting to load CRL from %{crl_path}! The CRL below caused the error '%{error}':\n"
8025
- "%{crl}"
8026
- msgstr ""
8027
-
8028
- #: ../lib/puppet/ssl/host.rb:391 ../lib/puppet/ssl/state_machine.rb:120
8029
- msgid "Could not download CRLs: %{message}"
8030
- msgstr ""
8031
-
8032
- #: ../lib/puppet/ssl/host.rb:425
8033
- msgid "The certificate at %{file_path} is invalid. Could not load."
8034
- msgstr ""
8035
-
8036
- #: ../lib/puppet/ssl/host.rb:446
8037
- msgid "Response from the CA did not contain a valid certificate for %{cert_name}."
8038
- msgstr ""
8039
-
8040
- #: ../lib/puppet/ssl/host.rb:450
8041
- msgid "No certificate for %{cert_name} on CA"
8042
- msgstr ""
8043
-
8044
- #: ../lib/puppet/ssl/host.rb:453
8045
- msgid "Could not download host certificate: %{message}"
8046
- msgstr ""
8047
-
8048
- #: ../lib/puppet/ssl/oids.rb:110
7382
+ #: ../lib/puppet/ssl/oids.rb:112
8049
7383
  msgid "Error loading ssl custom OIDs mapping file from '%{custom_oid_file}': %{err}"
8050
7384
  msgstr ""
8051
7385
 
8052
- #: ../lib/puppet/ssl/oids.rb:114
7386
+ #: ../lib/puppet/ssl/oids.rb:116
8053
7387
  msgid "Error loading ssl custom OIDs mapping file from '%{custom_oid_file}': no such index '%{map_key}'"
8054
7388
  msgstr ""
8055
7389
 
8056
- #: ../lib/puppet/ssl/oids.rb:118
7390
+ #: ../lib/puppet/ssl/oids.rb:120
8057
7391
  msgid "Error loading ssl custom OIDs mapping file from '%{custom_oid_file}': data under index '%{map_key}' must be a Hash"
8058
7392
  msgstr ""
8059
7393
 
8060
- #: ../lib/puppet/ssl/oids.rb:125
7394
+ #: ../lib/puppet/ssl/oids.rb:127
8061
7395
  msgid "Error loading ssl custom OIDs mapping file from '%{custom_oid_file}': incomplete definition of oid '%{oid}'"
8062
7396
  msgstr ""
8063
7397
 
8064
- #: ../lib/puppet/ssl/oids.rb:157
7398
+ #: ../lib/puppet/ssl/oids.rb:159
8065
7399
  msgid "Error registering ssl custom OIDs mapping from file '%{custom_oid_file}': %{err}"
8066
7400
  msgstr ""
8067
7401
 
8068
- #: ../lib/puppet/ssl/ssl_provider.rb:66
7402
+ #: ../lib/puppet/ssl/ssl_provider.rb:83
8069
7403
  msgid "Failed to add '%{path}' as a trusted CA file: %{detail}"
8070
7404
  msgstr ""
8071
7405
 
8072
- #: ../lib/puppet/ssl/ssl_provider.rb:70
7406
+ #: ../lib/puppet/ssl/ssl_provider.rb:87
8073
7407
  msgid "The 'ssl_trust_store' setting does not refer to a file and will be ignored: '%{path}'"
8074
7408
  msgstr ""
8075
7409
 
8076
- #: ../lib/puppet/ssl/ssl_provider.rb:104
7410
+ #: ../lib/puppet/ssl/ssl_provider.rb:121
8077
7411
  msgid "CA certs are missing"
8078
7412
  msgstr ""
8079
7413
 
8080
- #: ../lib/puppet/ssl/ssl_provider.rb:105
7414
+ #: ../lib/puppet/ssl/ssl_provider.rb:122
8081
7415
  msgid "CRLs are missing"
8082
7416
  msgstr ""
8083
7417
 
8084
- #: ../lib/puppet/ssl/ssl_provider.rb:106
7418
+ #: ../lib/puppet/ssl/ssl_provider.rb:123
8085
7419
  msgid "Private key is missing"
8086
7420
  msgstr ""
8087
7421
 
8088
- #: ../lib/puppet/ssl/ssl_provider.rb:107
7422
+ #: ../lib/puppet/ssl/ssl_provider.rb:124
8089
7423
  msgid "Client cert is missing"
8090
7424
  msgstr ""
8091
7425
 
8092
- #: ../lib/puppet/ssl/ssl_provider.rb:113
7426
+ #: ../lib/puppet/ssl/ssl_provider.rb:130
8093
7427
  msgid "Unsupported key '%{type}'"
8094
7428
  msgstr ""
8095
7429
 
8096
- #: ../lib/puppet/ssl/ssl_provider.rb:117
7430
+ #: ../lib/puppet/ssl/ssl_provider.rb:134
8097
7431
  msgid "The certificate for '%{name}' does not match its private key"
8098
7432
  msgstr ""
8099
7433
 
8100
- #: ../lib/puppet/ssl/ssl_provider.rb:156
7434
+ #: ../lib/puppet/ssl/ssl_provider.rb:173
8101
7435
  msgid "Failed to load private key for host '%{name}': %{message}"
8102
7436
  msgstr ""
8103
7437
 
8104
- #: ../lib/puppet/ssl/ssl_provider.rb:170
7438
+ #: ../lib/puppet/ssl/ssl_provider.rb:187
8105
7439
  msgid "The CSR for host '%{name}' does not match the public key"
8106
7440
  msgstr ""
8107
7441
 
8108
- #: ../lib/puppet/ssl/ssl_provider.rb:234
7442
+ #: ../lib/puppet/ssl/ssl_provider.rb:251
8109
7443
  msgid "The issuer '%{issuer}' of certificate '%{subject}' cannot be found locally"
8110
7444
  msgstr ""
8111
7445
 
8112
- #: ../lib/puppet/ssl/ssl_provider.rb:250
7446
+ #: ../lib/puppet/ssl/ssl_provider.rb:267
8113
7447
  msgid "The certificate '%{subject}' is not yet valid, verify time is synchronized"
8114
7448
  msgstr ""
8115
7449
 
8116
- #: ../lib/puppet/ssl/ssl_provider.rb:252
7450
+ #: ../lib/puppet/ssl/ssl_provider.rb:269
8117
7451
  msgid "The certificate '%{subject}' has expired, verify time is synchronized"
8118
7452
  msgstr ""
8119
7453
 
8120
- #: ../lib/puppet/ssl/ssl_provider.rb:254
7454
+ #: ../lib/puppet/ssl/ssl_provider.rb:271
8121
7455
  msgid "The CRL issued by '%{issuer}' is not yet valid, verify time is synchronized"
8122
7456
  msgstr ""
8123
7457
 
8124
- #: ../lib/puppet/ssl/ssl_provider.rb:256
7458
+ #: ../lib/puppet/ssl/ssl_provider.rb:273
8125
7459
  msgid "The CRL issued by '%{issuer}' has expired, verify time is synchronized"
8126
7460
  msgstr ""
8127
7461
 
8128
- #: ../lib/puppet/ssl/ssl_provider.rb:258
7462
+ #: ../lib/puppet/ssl/ssl_provider.rb:275
8129
7463
  msgid "Invalid signature for certificate '%{subject}'"
8130
7464
  msgstr ""
8131
7465
 
8132
- #: ../lib/puppet/ssl/ssl_provider.rb:260
7466
+ #: ../lib/puppet/ssl/ssl_provider.rb:277
8133
7467
  msgid "Invalid signature for CRL issued by '%{issuer}'"
8134
7468
  msgstr ""
8135
7469
 
8136
- #: ../lib/puppet/ssl/ssl_provider.rb:262
7470
+ #: ../lib/puppet/ssl/ssl_provider.rb:279
8137
7471
  msgid "The issuer '%{issuer}' of certificate '%{subject}' is missing"
8138
7472
  msgstr ""
8139
7473
 
8140
- #: ../lib/puppet/ssl/ssl_provider.rb:265
7474
+ #: ../lib/puppet/ssl/ssl_provider.rb:282
8141
7475
  msgid "The CRL issued by '%{issuer}' is missing"
8142
7476
  msgstr ""
8143
7477
 
8144
- #: ../lib/puppet/ssl/ssl_provider.rb:267
7478
+ #: ../lib/puppet/ssl/ssl_provider.rb:284
8145
7479
  msgid "Certificate '%{subject}' is revoked"
8146
7480
  msgstr ""
8147
7481
 
8148
- #: ../lib/puppet/ssl/ssl_provider.rb:271
7482
+ #: ../lib/puppet/ssl/ssl_provider.rb:288
8149
7483
  msgid "Certificate '%{subject}' failed verification (%{err}): %{err_utf8}"
8150
7484
  msgstr ""
8151
7485
 
@@ -8169,6 +7503,10 @@ msgstr ""
8169
7503
  msgid "CRL is missing from the server"
8170
7504
  msgstr ""
8171
7505
 
7506
+ #: ../lib/puppet/ssl/state_machine.rb:120
7507
+ msgid "Could not download CRLs: %{message}"
7508
+ msgstr ""
7509
+
8172
7510
  #: ../lib/puppet/ssl/state_machine.rb:127
8173
7511
  msgid "Refreshing CRL"
8174
7512
  msgstr ""
@@ -8241,16 +7579,16 @@ msgstr ""
8241
7579
  msgid "Another puppet instance is already running; waiting for it to finish"
8242
7580
  msgstr ""
8243
7581
 
8244
- #: ../lib/puppet/ssl/state_machine.rb:427
7582
+ #: ../lib/puppet/ssl/state_machine.rb:429
8245
7583
  msgid "Verified client certificate '%{subject}' fingerprint %{digest}"
8246
7584
  msgstr ""
8247
7585
 
8248
- #: ../lib/puppet/ssl/state_machine.rb:429
7586
+ #: ../lib/puppet/ssl/state_machine.rb:431
8249
7587
  msgid "Verified CA certificate '%{subject}' fingerprint %{digest}"
8250
7588
  msgstr ""
8251
7589
 
8252
7590
  #. 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
8253
- #: ../lib/puppet/ssl/verifier.rb:128
7591
+ #: ../lib/puppet/ssl/verifier.rb:130
8254
7592
  msgid "certificate verify failed [%{error} for %{subject}]"
8255
7593
  msgstr ""
8256
7594
 
@@ -8375,19 +7713,19 @@ msgid "Prefetch failed for %{type_name} provider '%{name}'"
8375
7713
  msgstr ""
8376
7714
 
8377
7715
  #. TRANSLATORS `prefetch` is a function name and should not be translated
8378
- #: ../lib/puppet/transaction.rb:381 ../lib/puppet/transaction.rb:384
7716
+ #: ../lib/puppet/transaction.rb:381
8379
7717
  msgid "Could not prefetch %{type_name} provider '%{name}': %{detail}"
8380
7718
  msgstr ""
8381
7719
 
8382
- #: ../lib/puppet/transaction.rb:421
7720
+ #: ../lib/puppet/transaction.rb:415
8383
7721
  msgid "Skipping resources in class because of failed class dependencies"
8384
7722
  msgstr ""
8385
7723
 
8386
- #: ../lib/puppet/transaction.rb:425
7724
+ #: ../lib/puppet/transaction.rb:419
8387
7725
  msgid "Skipping because of failed dependencies"
8388
7726
  msgstr ""
8389
7727
 
8390
- #: ../lib/puppet/transaction.rb:430
7728
+ #: ../lib/puppet/transaction.rb:424
8391
7729
  msgid "Skipping because provider prefetch failed"
8392
7730
  msgstr ""
8393
7731
 
@@ -8508,77 +7846,77 @@ msgstr ""
8508
7846
  msgid "There is more than one '%{basename}' script in %{dir}"
8509
7847
  msgstr ""
8510
7848
 
8511
- #: ../lib/puppet/type.rb:519
7849
+ #: ../lib/puppet/type.rb:496
8512
7850
  msgid "Options must be a hash, not %{type}"
8513
7851
  msgstr ""
8514
7852
 
8515
- #: ../lib/puppet/type.rb:522
7853
+ #: ../lib/puppet/type.rb:499
8516
7854
  msgid "Class %{class_name} already has a property named %{property}"
8517
7855
  msgstr ""
8518
7856
 
8519
- #: ../lib/puppet/type.rb:609
7857
+ #: ../lib/puppet/type.rb:586
8520
7858
  msgid "Class %{class_name} has not defined parameters"
8521
7859
  msgstr ""
8522
7860
 
8523
- #: ../lib/puppet/type.rb:696
7861
+ #: ../lib/puppet/type.rb:673
8524
7862
  msgid "Parameter %{name} failed on %{ref}: %{detail}"
8525
7863
  msgstr ""
8526
7864
 
8527
- #: ../lib/puppet/type.rb:719
7865
+ #: ../lib/puppet/type.rb:696
8528
7866
  msgid "Undefined attribute '%{attribute}' in %{name}"
8529
7867
  msgstr ""
8530
7868
 
8531
7869
  #. TRANSLATORS 'is' is a variable name and should not be translated
8532
7870
  #. TRANSLATORS 'is' is a variable name and should not be translated
8533
- #: ../lib/puppet/type.rb:1062 ../lib/puppet/type.rb:1073
7871
+ #: ../lib/puppet/type.rb:1039 ../lib/puppet/type.rb:1050
8534
7872
  msgid "The 'is' value is not in the 'is' array for '%{name}'"
8535
7873
  msgstr ""
8536
7874
 
8537
- #: ../lib/puppet/type.rb:1204
7875
+ #: ../lib/puppet/type.rb:1181
8538
7876
  msgid "%{name} has no providers and has not overridden 'instances'"
8539
7877
  msgstr ""
8540
7878
 
8541
- #: ../lib/puppet/type.rb:1468
7879
+ #: ../lib/puppet/type.rb:1445
8542
7880
  msgid "Cannot add aliases without a catalog"
8543
7881
  msgstr ""
8544
7882
 
8545
- #: ../lib/puppet/type.rb:1548
7883
+ #: ../lib/puppet/type.rb:1525
8546
7884
  msgid "Could not find %{description} %{ref} for %{resource}"
8547
7885
  msgstr ""
8548
7886
 
8549
- #: ../lib/puppet/type.rb:1825
7887
+ #: ../lib/puppet/type.rb:1749
8550
7888
  msgid "Found multiple default providers for %{name}: %{provider_list}; using %{selected_provider}"
8551
7889
  msgstr ""
8552
7890
 
8553
- #: ../lib/puppet/type.rb:1912
7891
+ #: ../lib/puppet/type.rb:1836
8554
7892
  msgid "Could not find parent provider %{parent} of %{name}"
8555
7893
  msgstr ""
8556
7894
 
8557
- #: ../lib/puppet/type.rb:1986
7895
+ #: ../lib/puppet/type.rb:1910
8558
7896
  msgid "Invalid %{resource} provider '%{provider_class}'"
8559
7897
  msgstr ""
8560
7898
 
8561
- #: ../lib/puppet/type.rb:2071
7899
+ #: ../lib/puppet/type.rb:1995
8562
7900
  msgid "Could not find %{name} provider of %{provider}"
8563
7901
  msgstr ""
8564
7902
 
8565
- #: ../lib/puppet/type.rb:2189
7903
+ #: ../lib/puppet/type.rb:2113
8566
7904
  msgid "You cannot add relationships without a catalog"
8567
7905
  msgstr ""
8568
7906
 
8569
- #: ../lib/puppet/type.rb:2492
7907
+ #: ../lib/puppet/type.rb:2416
8570
7908
  msgid "Unable to mark '%{name}' as sensitive: %{name} is a parameter and not a property, and cannot be automatically redacted."
8571
7909
  msgstr ""
8572
7910
 
8573
- #: ../lib/puppet/type.rb:2495
7911
+ #: ../lib/puppet/type.rb:2419
8574
7912
  msgid "Unable to mark '%{name}' as sensitive: the property itself was not assigned a value."
8575
7913
  msgstr ""
8576
7914
 
8577
- #: ../lib/puppet/type.rb:2497
7915
+ #: ../lib/puppet/type.rb:2421
8578
7916
  msgid "Unable to mark '%{name}' as sensitive: the property itself is not defined on %{type}."
8579
7917
  msgstr ""
8580
7918
 
8581
- #: ../lib/puppet/type.rb:2555
7919
+ #: ../lib/puppet/type.rb:2479
8582
7920
  msgid "Could not set %{attribute} on %{class_name}: %{detail}"
8583
7921
  msgstr ""
8584
7922
 
@@ -8655,86 +7993,86 @@ msgstr ""
8655
7993
  msgid "File paths must be fully qualified, not '%{path}'"
8656
7994
  msgstr ""
8657
7995
 
8658
- #: ../lib/puppet/type/file.rb:142
7996
+ #: ../lib/puppet/type/file.rb:140
8659
7997
  msgid "Invalid backup type %{value}"
8660
7998
  msgstr ""
8661
7999
 
8662
- #: ../lib/puppet/type/file.rb:186 ../lib/puppet/type/tidy.rb:48
8000
+ #: ../lib/puppet/type/file.rb:184 ../lib/puppet/type/tidy.rb:48
8663
8001
  msgid "Invalid recurse value %{value}"
8664
8002
  msgstr ""
8665
8003
 
8666
- #: ../lib/puppet/type/file.rb:218
8004
+ #: ../lib/puppet/type/file.rb:216
8667
8005
  msgid "Invalid recurselimit value %{value}"
8668
8006
  msgstr ""
8669
8007
 
8670
- #: ../lib/puppet/type/file.rb:418
8008
+ #: ../lib/puppet/type/file.rb:416
8671
8009
  msgid "You cannot specify more than one of %{creators}"
8672
8010
  msgstr ""
8673
8011
 
8674
- #: ../lib/puppet/type/file.rb:420
8012
+ #: ../lib/puppet/type/file.rb:418
8675
8013
  msgid "You cannot specify a remote recursion without a source"
8676
8014
  msgstr ""
8677
8015
 
8678
- #: ../lib/puppet/type/file.rb:422
8016
+ #: ../lib/puppet/type/file.rb:420
8679
8017
  msgid "You cannot specify source when using checksum 'none'"
8680
8018
  msgstr ""
8681
8019
 
8682
- #: ../lib/puppet/type/file.rb:425
8020
+ #: ../lib/puppet/type/file.rb:423
8683
8021
  msgid "You cannot specify content when using checksum '%{checksum_type}'"
8684
8022
  msgstr ""
8685
8023
 
8686
- #: ../lib/puppet/type/file.rb:428
8024
+ #: ../lib/puppet/type/file.rb:426
8687
8025
  msgid "Possible error: recurselimit is set but not recurse, no recursion will happen"
8688
8026
  msgstr ""
8689
8027
 
8690
- #: ../lib/puppet/type/file.rb:436
8028
+ #: ../lib/puppet/type/file.rb:434
8691
8029
  msgid "Checksum value '%{value}' is not a valid checksum type %{checksum}"
8692
8030
  msgstr ""
8693
8031
 
8694
- #: ../lib/puppet/type/file.rb:439
8032
+ #: ../lib/puppet/type/file.rb:437
8695
8033
  msgid "Checksum value is ignored unless content or source are specified"
8696
8034
  msgstr ""
8697
8035
 
8698
- #: ../lib/puppet/type/file.rb:477
8036
+ #: ../lib/puppet/type/file.rb:475
8699
8037
  msgid "Can not find filebucket for backups without a catalog"
8700
8038
  msgstr ""
8701
8039
 
8702
- #: ../lib/puppet/type/file.rb:482
8040
+ #: ../lib/puppet/type/file.rb:480
8703
8041
  msgid "Could not find filebucket %{backup} specified in backup"
8704
8042
  msgstr ""
8705
8043
 
8706
- #: ../lib/puppet/type/file.rb:780
8044
+ #: ../lib/puppet/type/file.rb:778
8707
8045
  msgid "Could not back up file of type %{current_type}"
8708
8046
  msgstr ""
8709
8047
 
8710
- #: ../lib/puppet/type/file.rb:795
8048
+ #: ../lib/puppet/type/file.rb:793
8711
8049
  msgid "Could not remove files of type %{current_type}"
8712
8050
  msgstr ""
8713
8051
 
8714
8052
  #. TRANSLATORS "source_permissions => ignore" should not be translated
8715
- #: ../lib/puppet/type/file.rb:806
8053
+ #: ../lib/puppet/type/file.rb:804
8716
8054
  msgid "Copying owner/mode/group from the source file on Windows is not supported; use source_permissions => ignore."
8717
8055
  msgstr ""
8718
8056
 
8719
8057
  #. TRANSLATORS "stat" is a program name and should not be translated
8720
- #: ../lib/puppet/type/file.rb:887 ../lib/puppet/type/tidy.rb:352
8058
+ #: ../lib/puppet/type/file.rb:885 ../lib/puppet/type/tidy.rb:352
8721
8059
  msgid "Could not stat; permission denied"
8722
8060
  msgstr ""
8723
8061
 
8724
- #: ../lib/puppet/type/file.rb:890
8062
+ #: ../lib/puppet/type/file.rb:888
8725
8063
  msgid "Could not stat; invalid pathname"
8726
8064
  msgstr ""
8727
8065
 
8728
- #: ../lib/puppet/type/file.rb:1018
8066
+ #: ../lib/puppet/type/file.rb:1016
8729
8067
  msgid "Not removing directory; use 'force' to override"
8730
8068
  msgstr ""
8731
8069
 
8732
8070
  #. TRANSLATORS refers to a file which could not be backed up
8733
- #: ../lib/puppet/type/file.rb:1043
8071
+ #: ../lib/puppet/type/file.rb:1041
8734
8072
  msgid "Could not back up; will not remove"
8735
8073
  msgstr ""
8736
8074
 
8737
- #: ../lib/puppet/type/file.rb:1058
8075
+ #: ../lib/puppet/type/file.rb:1056
8738
8076
  msgid "File written to disk did not match desired checksum; discarding changes (%{content_checksum} vs %{desired_checksum})"
8739
8077
  msgstr ""
8740
8078
 
@@ -8800,36 +8138,36 @@ msgstr ""
8800
8138
  msgid "Invalid GID %{gid}"
8801
8139
  msgstr ""
8802
8140
 
8803
- #: ../lib/puppet/type/package.rb:128 ../lib/puppet/type/package.rb:142
8141
+ #: ../lib/puppet/type/package.rb:124 ../lib/puppet/type/package.rb:138
8804
8142
  msgid "Could not update: %{detail}"
8805
8143
  msgstr ""
8806
8144
 
8807
- #: ../lib/puppet/type/package.rb:177
8145
+ #: ../lib/puppet/type/package.rb:173
8808
8146
  msgid "Could not get latest version: %{detail}"
8809
8147
  msgstr ""
8810
8148
 
8811
- #: ../lib/puppet/type/package.rb:277
8149
+ #: ../lib/puppet/type/package.rb:273
8812
8150
  msgid "Name must be a String not %{klass}"
8813
8151
  msgstr ""
8814
8152
 
8815
- #: ../lib/puppet/type/package.rb:423
8153
+ #: ../lib/puppet/type/package.rb:419
8816
8154
  msgid "Cannot have both `ensure => disabled` and `flavor`"
8817
8155
  msgstr ""
8818
8156
 
8819
- #: ../lib/puppet/type/package.rb:522
8157
+ #: ../lib/puppet/type/package.rb:518
8820
8158
  msgid "Cannot have both `enable_only => true` and `flavor`"
8821
8159
  msgstr ""
8822
8160
 
8823
- #: ../lib/puppet/type/package.rb:525
8161
+ #: ../lib/puppet/type/package.rb:521
8824
8162
  msgid "Cannot have both `ensure => disabled` and `enable_only => true`"
8825
8163
  msgstr ""
8826
8164
 
8827
- #: ../lib/puppet/type/package.rb:687
8165
+ #: ../lib/puppet/type/package.rb:682
8828
8166
  msgid "Invalid hold value %{value}. %{doc}"
8829
8167
  msgstr ""
8830
8168
 
8831
- #: ../lib/puppet/type/package.rb:717
8832
- msgid "You cannot use \"mark\" property while \"ensure\" is one of [\"absent\", \"purged\", \"held\"]"
8169
+ #: ../lib/puppet/type/package.rb:709
8170
+ msgid "You cannot use \"mark\" property while \"ensure\" is one of [\"absent\", \"purged\"]"
8833
8171
  msgstr ""
8834
8172
 
8835
8173
  #: ../lib/puppet/type/resources.rb:15
@@ -9321,37 +8659,6 @@ msgstr ""
9321
8659
  msgid "Trollop::die can only be called after Trollop::options"
9322
8660
  msgstr ""
9323
8661
 
9324
- #: ../lib/puppet/util/connection.rb:28
9325
- msgid "Selected server from the %{setting} setting: %{server}"
9326
- msgstr ""
9327
-
9328
- #. TRANSLATORS 'server_list' is the name of a setting and should not be translated
9329
- #: ../lib/puppet/util/connection.rb:35
9330
- msgid "Dynamically-bound server lookup failed; using first entry from the `server_list` setting: %{server}"
9331
- msgstr ""
9332
-
9333
- #: ../lib/puppet/util/connection.rb:39
9334
- msgid "Dynamically-bound server lookup failed, falling back to %{setting} setting: %{server}"
9335
- msgstr ""
9336
-
9337
- #: ../lib/puppet/util/connection.rb:60
9338
- msgid "Selected port from the %{setting} setting: %{port}"
9339
- msgstr ""
9340
-
9341
- #. TRANSLATORS 'server_list' is the name of a setting and should not be translated
9342
- #: ../lib/puppet/util/connection.rb:71
9343
- msgid "Dynamically-bound port lookup failed; using first entry from the `server_list` setting: %{port}"
9344
- msgstr ""
9345
-
9346
- #. TRANSLATORS 'serverport' is the name of a setting and should not be translated
9347
- #: ../lib/puppet/util/connection.rb:75
9348
- msgid "Dynamically-bound port lookup failed; falling back to `serverport` setting: %{port}"
9349
- msgstr ""
9350
-
9351
- #: ../lib/puppet/util/connection.rb:80
9352
- msgid "Dynamically-bound port lookup failed; falling back to %{setting} setting: %{port}"
9353
- msgstr ""
9354
-
9355
8662
  #: ../lib/puppet/util/diff.rb:30
9356
8663
  msgid "Cannot provide diff without the diff/lcs Ruby library"
9357
8664
  msgstr ""
@@ -9384,23 +8691,23 @@ msgstr ""
9384
8691
  msgid "%{klass} failed with error %{error_type}: %{detail}"
9385
8692
  msgstr ""
9386
8693
 
9387
- #: ../lib/puppet/util/execution.rb:196
8694
+ #: ../lib/puppet/util/execution.rb:185
9388
8695
  msgid "Working directory %{cwd} does not exist!"
9389
8696
  msgstr ""
9390
8697
 
9391
- #: ../lib/puppet/util/execution.rb:288
8698
+ #: ../lib/puppet/util/execution.rb:277
9392
8699
  msgid "Could not get output"
9393
8700
  msgstr ""
9394
8701
 
9395
- #: ../lib/puppet/util/execution.rb:297
8702
+ #: ../lib/puppet/util/execution.rb:286
9396
8703
  msgid "Execution of '%{str}' returned %{exit_status}: %{output}"
9397
8704
  msgstr ""
9398
8705
 
9399
- #: ../lib/puppet/util/execution.rb:374
8706
+ #: ../lib/puppet/util/execution.rb:363
9400
8707
  msgid "Could not execute posix command: %{detail}"
9401
8708
  msgstr ""
9402
8709
 
9403
- #: ../lib/puppet/util/execution.rb:422
8710
+ #: ../lib/puppet/util/execution.rb:411
9404
8711
  msgid "Waiting for output; will sleep %{time_to_sleep} seconds"
9405
8712
  msgstr ""
9406
8713
 
@@ -9512,10 +8819,6 @@ msgstr ""
9512
8819
  msgid "Could not write crontab for %{path}: %{detail}"
9513
8820
  msgstr ""
9514
8821
 
9515
- #: ../lib/puppet/util/http_proxy.rb:215
9516
- msgid "Too many HTTP redirections for %{uri}"
9517
- msgstr ""
9518
-
9519
8822
  #: ../lib/puppet/util/inifile.rb:139
9520
8823
  msgid "Cannot read nonexistent file %{file}"
9521
8824
  msgstr ""
@@ -9664,6 +8967,10 @@ msgstr ""
9664
8967
  msgid "Duplicate device found at %{file_error_location}, already found at %{device_error_location}"
9665
8968
  msgstr ""
9666
8969
 
8970
+ #: ../lib/puppet/util/network_device/config.rb:71
8971
+ msgid "Invalid entry at %{error_location}: %{file_text}"
8972
+ msgstr ""
8973
+
9667
8974
  #: ../lib/puppet/util/network_device/config.rb:77
9668
8975
  msgid "Configuration error: Cannot read %{file}; cannot serve"
9669
8976
  msgstr ""
@@ -9720,7 +9027,7 @@ msgstr ""
9720
9027
  msgid "Could not create feature %{name}: %{detail}"
9721
9028
  msgstr ""
9722
9029
 
9723
- #: ../lib/puppet/util/rdoc.rb:44 ../lib/puppet/util/rdoc.rb:50 ../lib/puppet/util/rdoc.rb:54 ../lib/puppet/util/rdoc.rb:58
9030
+ #: ../lib/puppet/util/rdoc.rb:37 ../lib/puppet/util/rdoc.rb:43 ../lib/puppet/util/rdoc.rb:47 ../lib/puppet/util/rdoc.rb:51
9724
9031
  msgid "RDOC SUPPORT FOR MANIFEST HAS BEEN REMOVED - See PUP-3638"
9725
9032
  msgstr ""
9726
9033
 
@@ -9924,14 +9231,6 @@ msgstr ""
9924
9231
  msgid "Cannot create group if user '%{name}' exists."
9925
9232
  msgstr ""
9926
9233
 
9927
- #: ../lib/puppet/util/windows/api_types.rb:85
9928
- msgid "Unable to read wide strings with %{null_terminator} terminal nulls"
9929
- msgstr ""
9930
-
9931
- #: ../lib/puppet/util/windows/api_types.rb:230
9932
- msgid "Bad GUID format."
9933
- msgstr ""
9934
-
9935
9234
  #: ../lib/puppet/util/windows/com.rb:17
9936
9235
  msgid "%{name} failed (hresult %{result})."
9937
9236
  msgstr ""
@@ -9944,11 +9243,11 @@ msgstr ""
9944
9243
  msgid "CoCreateInstance failed (%{klass})."
9945
9244
  msgstr ""
9946
9245
 
9947
- #: ../lib/puppet/util/windows/error.rb:42
9246
+ #: ../lib/puppet/util/windows/error.rb:43
9948
9247
  msgid "FormatMessageW could not format code %{code}"
9949
9248
  msgstr ""
9950
9249
 
9951
- #: ../lib/puppet/util/windows/error.rb:48
9250
+ #: ../lib/puppet/util/windows/error.rb:49
9952
9251
  msgid "FormatMessageW failed to allocate buffer for code %{code}"
9953
9252
  msgstr ""
9954
9253
 
@@ -9971,15 +9270,15 @@ msgstr ""
9971
9270
  msgid "(Win32 error: %{detail})"
9972
9271
  msgstr ""
9973
9272
 
9974
- #: ../lib/puppet/util/windows/file.rb:180
9273
+ #: ../lib/puppet/util/windows/file.rb:117
9975
9274
  msgid "Failed to set file attributes"
9976
9275
  msgstr ""
9977
9276
 
9978
- #: ../lib/puppet/util/windows/file.rb:255
9277
+ #: ../lib/puppet/util/windows/file.rb:180
9979
9278
  msgid "out_buffer is required"
9980
9279
  msgstr ""
9981
9280
 
9982
- #: ../lib/puppet/util/windows/file.rb:342
9281
+ #: ../lib/puppet/util/windows/file.rb:253
9983
9282
  msgid "Failed to call GetLongPathName"
9984
9283
  msgstr ""
9985
9284
 
@@ -10146,119 +9445,119 @@ msgstr ""
10146
9445
  msgid "Failed to set security information"
10147
9446
  msgstr ""
10148
9447
 
10149
- #: ../lib/puppet/util/windows/service.rb:338
9448
+ #: ../lib/puppet/util/windows/service.rb:44
10150
9449
  msgid "Starting the %{service_name} service. Timeout set to: %{timeout} seconds"
10151
9450
  msgstr ""
10152
9451
 
10153
- #: ../lib/puppet/util/windows/service.rb:348
9452
+ #: ../lib/puppet/util/windows/service.rb:54
10154
9453
  msgid "Failed to start the service"
10155
9454
  msgstr ""
10156
9455
 
10157
- #: ../lib/puppet/util/windows/service.rb:352
9456
+ #: ../lib/puppet/util/windows/service.rb:58
10158
9457
  msgid "Successfully started the %{service_name} service"
10159
9458
  msgstr ""
10160
9459
 
10161
- #: ../lib/puppet/util/windows/service.rb:361
9460
+ #: ../lib/puppet/util/windows/service.rb:67
10162
9461
  msgid "Stopping the %{service_name} service. Timeout set to: %{timeout} seconds"
10163
9462
  msgstr ""
10164
9463
 
10165
- #: ../lib/puppet/util/windows/service.rb:369
9464
+ #: ../lib/puppet/util/windows/service.rb:75
10166
9465
  msgid "Successfully stopped the %{service_name} service"
10167
9466
  msgstr ""
10168
9467
 
10169
- #: ../lib/puppet/util/windows/service.rb:378
9468
+ #: ../lib/puppet/util/windows/service.rb:84
10170
9469
  msgid "Resuming the %{service_name} service. Timeout set to: %{timeout} seconds"
10171
9470
  msgstr ""
10172
9471
 
10173
- #: ../lib/puppet/util/windows/service.rb:394
9472
+ #: ../lib/puppet/util/windows/service.rb:100
10174
9473
  msgid "Successfully resumed the %{service_name} service"
10175
9474
  msgstr ""
10176
9475
 
10177
- #: ../lib/puppet/util/windows/service.rb:410
9476
+ #: ../lib/puppet/util/windows/service.rb:116
10178
9477
  msgid "Unknown Service state '%{current_state}' for '%{service_name}'"
10179
9478
  msgstr ""
10180
9479
 
10181
- #: ../lib/puppet/util/windows/service.rb:437
9480
+ #: ../lib/puppet/util/windows/service.rb:143
10182
9481
  msgid "Unknown start type '%{start_type}' for '%{service_name}'"
10183
9482
  msgstr ""
10184
9483
 
10185
- #: ../lib/puppet/util/windows/service.rb:487
9484
+ #: ../lib/puppet/util/windows/service.rb:193
10186
9485
  msgid "Failed to update service configuration"
10187
9486
  msgstr ""
10188
9487
 
10189
- #: ../lib/puppet/util/windows/service.rb:552
9488
+ #: ../lib/puppet/util/windows/service.rb:258
10190
9489
  msgid "Failed to fetch services"
10191
9490
  msgstr ""
10192
9491
 
10193
- #: ../lib/puppet/util/windows/service.rb:601
9492
+ #: ../lib/puppet/util/windows/service.rb:307
10194
9493
  msgid "Failed to open a handle to the service"
10195
9494
  msgstr ""
10196
9495
 
10197
- #: ../lib/puppet/util/windows/service.rb:618
9496
+ #: ../lib/puppet/util/windows/service.rb:324
10198
9497
  msgid "Failed to open a handle to the service control manager"
10199
9498
  msgstr ""
10200
9499
 
10201
- #: ../lib/puppet/util/windows/service.rb:641
9500
+ #: ../lib/puppet/util/windows/service.rb:347
10202
9501
  msgid "The service is already in the %{final_state} state. No further work needs to be done."
10203
9502
  msgstr ""
10204
9503
 
10205
- #: ../lib/puppet/util/windows/service.rb:653
9504
+ #: ../lib/puppet/util/windows/service.rb:359
10206
9505
  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."
10207
9506
  msgstr ""
10208
9507
 
10209
- #: ../lib/puppet/util/windows/service.rb:664
9508
+ #: ../lib/puppet/util/windows/service.rb:370
10210
9509
  msgid "There is already a pending transition to the %{final_state} state for the %{service_name} service."
10211
9510
  msgstr ""
10212
9511
 
10213
- #: ../lib/puppet/util/windows/service.rb:680
9512
+ #: ../lib/puppet/util/windows/service.rb:386
10214
9513
  msgid "The service is in the %{pending_state} state, which is an unsafe pending state."
10215
9514
  msgstr ""
10216
9515
 
10217
- #: ../lib/puppet/util/windows/service.rb:685
9516
+ #: ../lib/puppet/util/windows/service.rb:391
10218
9517
  msgid "Transitioning the %{service_name} service from %{initial_state} to %{final_state}"
10219
9518
  msgstr ""
10220
9519
 
10221
- #: ../lib/puppet/util/windows/service.rb:689
9520
+ #: ../lib/puppet/util/windows/service.rb:395
10222
9521
  msgid "Waiting for the transition to finish"
10223
9522
  msgstr ""
10224
9523
 
10225
- #: ../lib/puppet/util/windows/service.rb:694
9524
+ #: ../lib/puppet/util/windows/service.rb:400
10226
9525
  msgid "Failed to transition the %{service_name} service to the %{final_state} state. Detail: %{detail}"
10227
9526
  msgstr ""
10228
9527
 
10229
- #: ../lib/puppet/util/windows/service.rb:733 ../lib/puppet/util/windows/service.rb:769
9528
+ #: ../lib/puppet/util/windows/service.rb:439 ../lib/puppet/util/windows/service.rb:475
10230
9529
  msgid "Service query failed"
10231
9530
  msgstr ""
10232
9531
 
10233
- #: ../lib/puppet/util/windows/service.rb:812
9532
+ #: ../lib/puppet/util/windows/service.rb:518
10234
9533
  msgid "Service query for %{parameter_name} failed"
10235
9534
  msgstr ""
10236
9535
 
10237
- #: ../lib/puppet/util/windows/service.rb:835
9536
+ #: ../lib/puppet/util/windows/service.rb:541
10238
9537
  msgid "Failed to update service %{change} configuration"
10239
9538
  msgstr ""
10240
9539
 
10241
- #: ../lib/puppet/util/windows/service.rb:862
9540
+ #: ../lib/puppet/util/windows/service.rb:568
10242
9541
  msgid "Failed to send the %{control_signal} signal to the service. Its current state is %{current_state}. Reason for failure:"
10243
9542
  msgstr ""
10244
9543
 
10245
- #: ../lib/puppet/util/windows/service.rb:897
9544
+ #: ../lib/puppet/util/windows/service.rb:603
10246
9545
  msgid "The service transitioned to the %{pending_state} state."
10247
9546
  msgstr ""
10248
9547
 
10249
- #: ../lib/puppet/util/windows/service.rb:911
9548
+ #: ../lib/puppet/util/windows/service.rb:617
10250
9549
  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}."
10251
9550
  msgstr ""
10252
9551
 
10253
- #: ../lib/puppet/util/windows/service.rb:926
9552
+ #: ../lib/puppet/util/windows/service.rb:632
10254
9553
  msgid "Waiting for the pending transition to the %{final_state} state to finish."
10255
9554
  msgstr ""
10256
9555
 
10257
- #: ../lib/puppet/util/windows/service.rb:940
9556
+ #: ../lib/puppet/util/windows/service.rb:646
10258
9557
  msgid "Unexpected transition to the %{current_state} state while waiting for the pending transition from %{pending_state} to %{final_state} to finish."
10259
9558
  msgstr ""
10260
9559
 
10261
- #: ../lib/puppet/util/windows/service.rb:954
9560
+ #: ../lib/puppet/util/windows/service.rb:660
10262
9561
  msgid "Timed out while waiting for the pending transition from %{pending_state} to %{final_state} to finish. The current state is %{current_state}."
10263
9562
  msgstr ""
10264
9563
 
@@ -10298,76 +9597,72 @@ msgstr ""
10298
9597
  msgid "Failed to unload user profile %{user}"
10299
9598
  msgstr ""
10300
9599
 
10301
- #: ../lib/puppet/util/yaml.rb:47
10302
- msgid "Puppet::Util::Yaml.load_file is deprecated. Use safe_load_file instead."
10303
- msgstr ""
10304
-
10305
- #: ../lib/puppet/x509/cert_provider.rb:39
9600
+ #: ../lib/puppet/x509/cert_provider.rb:45
10306
9601
  msgid "Failed to save CA certificates to '%{capath}'"
10307
9602
  msgstr ""
10308
9603
 
10309
- #: ../lib/puppet/x509/cert_provider.rb:52
9604
+ #: ../lib/puppet/x509/cert_provider.rb:59
10310
9605
  msgid "The CA certificates are missing from '%{path}'"
10311
9606
  msgstr ""
10312
9607
 
10313
- #: ../lib/puppet/x509/cert_provider.rb:56
9608
+ #: ../lib/puppet/x509/cert_provider.rb:63
10314
9609
  msgid "Failed to load CA certificates from '%{capath}'"
10315
9610
  msgstr ""
10316
9611
 
10317
9612
  #. TRANSLATORS 'PEM' is an acronym and shouldn't be translated
10318
- #: ../lib/puppet/x509/cert_provider.rb:67
9613
+ #: ../lib/puppet/x509/cert_provider.rb:75
10319
9614
  msgid "Failed to parse CA certificates as PEM"
10320
9615
  msgstr ""
10321
9616
 
10322
- #: ../lib/puppet/x509/cert_provider.rb:82
9617
+ #: ../lib/puppet/x509/cert_provider.rb:91
10323
9618
  msgid "Failed to save CRLs to '%{crlpath}'"
10324
9619
  msgstr ""
10325
9620
 
10326
- #: ../lib/puppet/x509/cert_provider.rb:95
9621
+ #: ../lib/puppet/x509/cert_provider.rb:105
10327
9622
  msgid "The CRL is missing from '%{path}'"
10328
9623
  msgstr ""
10329
9624
 
10330
- #: ../lib/puppet/x509/cert_provider.rb:99
9625
+ #: ../lib/puppet/x509/cert_provider.rb:109
10331
9626
  msgid "Failed to load CRLs from '%{crlpath}'"
10332
9627
  msgstr ""
10333
9628
 
10334
9629
  #. TRANSLATORS 'PEM' is an acronym and shouldn't be translated
10335
- #: ../lib/puppet/x509/cert_provider.rb:110
9630
+ #: ../lib/puppet/x509/cert_provider.rb:121
10336
9631
  msgid "Failed to parse CRLs as PEM"
10337
9632
  msgstr ""
10338
9633
 
10339
- #: ../lib/puppet/x509/cert_provider.rb:156
9634
+ #: ../lib/puppet/x509/cert_provider.rb:171
10340
9635
  msgid "Failed to save private key for '%{name}'"
10341
9636
  msgstr ""
10342
9637
 
10343
- #: ../lib/puppet/x509/cert_provider.rb:175
9638
+ #: ../lib/puppet/x509/cert_provider.rb:191
10344
9639
  msgid "The private key is missing from '%{path}'"
10345
9640
  msgstr ""
10346
9641
 
10347
- #: ../lib/puppet/x509/cert_provider.rb:179
9642
+ #: ../lib/puppet/x509/cert_provider.rb:195
10348
9643
  msgid "Failed to load private key for '%{name}'"
10349
9644
  msgstr ""
10350
9645
 
10351
- #: ../lib/puppet/x509/cert_provider.rb:235
9646
+ #: ../lib/puppet/x509/cert_provider.rb:255
10352
9647
  msgid "Failed to save client certificate for '%{name}'"
10353
9648
  msgstr ""
10354
9649
 
10355
- #: ../lib/puppet/x509/cert_provider.rb:250
9650
+ #: ../lib/puppet/x509/cert_provider.rb:271
10356
9651
  msgid "The client certificate is missing from '%{path}'"
10357
9652
  msgstr ""
10358
9653
 
10359
- #: ../lib/puppet/x509/cert_provider.rb:254
9654
+ #: ../lib/puppet/x509/cert_provider.rb:275
10360
9655
  msgid "Failed to load client certificate for '%{name}'"
10361
9656
  msgstr ""
10362
9657
 
10363
- #: ../lib/puppet/x509/cert_provider.rb:300
9658
+ #: ../lib/puppet/x509/cert_provider.rb:324
10364
9659
  msgid "Failed to save certificate request for '%{name}'"
10365
9660
  msgstr ""
10366
9661
 
10367
- #: ../lib/puppet/x509/cert_provider.rb:315
9662
+ #: ../lib/puppet/x509/cert_provider.rb:340
10368
9663
  msgid "Failed to load certificate request for '%{name}'"
10369
9664
  msgstr ""
10370
9665
 
10371
- #: ../lib/puppet/x509/cert_provider.rb:326
9666
+ #: ../lib/puppet/x509/cert_provider.rb:353
10372
9667
  msgid "Failed to delete certificate request for '%{name}'"
10373
9668
  msgstr ""