puppet 6.19.0-x86-mingw32 → 7.3.0-x86-mingw32

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

Potentially problematic release.


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

Files changed (513) hide show
  1. checksums.yaml +4 -4
  2. data/CODEOWNERS +2 -16
  3. data/Gemfile +3 -4
  4. data/Gemfile.lock +33 -28
  5. data/README.md +1 -1
  6. data/conf/fileserver.conf +5 -10
  7. data/ext/build_defaults.yaml +1 -1
  8. data/ext/osx/file_mapping.yaml +0 -5
  9. data/ext/project_data.yaml +2 -14
  10. data/ext/redhat/puppet.spec.erb +0 -1
  11. data/ext/windows/service/daemon.rb +6 -5
  12. data/install.rb +21 -17
  13. data/lib/puppet.rb +11 -20
  14. data/lib/puppet/application.rb +182 -104
  15. data/lib/puppet/application/agent.rb +1 -0
  16. data/lib/puppet/application/apply.rb +3 -2
  17. data/lib/puppet/application/device.rb +101 -104
  18. data/lib/puppet/application/filebucket.rb +15 -11
  19. data/lib/puppet/application/script.rb +1 -0
  20. data/lib/puppet/application/ssl.rb +1 -1
  21. data/lib/puppet/application_support.rb +7 -0
  22. data/lib/puppet/configurer.rb +44 -36
  23. data/lib/puppet/configurer/plugin_handler.rb +21 -19
  24. data/lib/puppet/defaults.rb +71 -170
  25. data/lib/puppet/environments.rb +44 -75
  26. data/lib/puppet/face/config.rb +10 -0
  27. data/lib/puppet/face/epp.rb +12 -2
  28. data/lib/puppet/face/facts.rb +80 -6
  29. data/lib/puppet/face/help.rb +1 -1
  30. data/lib/puppet/face/node/clean.rb +8 -0
  31. data/lib/puppet/face/plugin.rb +5 -8
  32. data/lib/puppet/ffi/posix.rb +10 -0
  33. data/lib/puppet/ffi/posix/constants.rb +14 -0
  34. data/lib/puppet/ffi/posix/functions.rb +24 -0
  35. data/lib/puppet/ffi/windows.rb +12 -0
  36. data/lib/puppet/ffi/windows/api_types.rb +311 -0
  37. data/lib/puppet/ffi/windows/constants.rb +404 -0
  38. data/lib/puppet/ffi/windows/functions.rb +628 -0
  39. data/lib/puppet/ffi/windows/structs.rb +338 -0
  40. data/lib/puppet/file_serving/configuration.rb +0 -5
  41. data/lib/puppet/file_serving/configuration/parser.rb +6 -32
  42. data/lib/puppet/file_serving/http_metadata.rb +1 -1
  43. data/lib/puppet/file_serving/mount.rb +1 -2
  44. data/lib/puppet/forge/repository.rb +0 -1
  45. data/lib/puppet/functions/epp.rb +1 -0
  46. data/lib/puppet/functions/inline_epp.rb +1 -0
  47. data/lib/puppet/generate/models/type/type.rb +4 -1
  48. data/lib/puppet/http.rb +22 -13
  49. data/lib/puppet/http/client.rb +164 -114
  50. data/lib/puppet/{network/resolver.rb → http/dns.rb} +2 -2
  51. data/lib/puppet/http/errors.rb +16 -0
  52. data/lib/puppet/http/external_client.rb +5 -7
  53. data/lib/puppet/{network/http → http}/factory.rb +8 -11
  54. data/lib/puppet/{network/http → http}/pool.rb +61 -26
  55. data/lib/puppet/{network/http/session.rb → http/pool_entry.rb} +2 -3
  56. data/lib/puppet/http/proxy.rb +137 -0
  57. data/lib/puppet/http/redirector.rb +4 -12
  58. data/lib/puppet/http/resolver.rb +5 -15
  59. data/lib/puppet/http/resolver/server_list.rb +6 -10
  60. data/lib/puppet/http/resolver/settings.rb +4 -7
  61. data/lib/puppet/http/resolver/srv.rb +7 -11
  62. data/lib/puppet/http/response.rb +36 -54
  63. data/lib/puppet/http/response_converter.rb +24 -0
  64. data/lib/puppet/http/response_net_http.rb +42 -0
  65. data/lib/puppet/http/retry_after_handler.rb +4 -13
  66. data/lib/puppet/http/service.rb +12 -26
  67. data/lib/puppet/http/service/ca.rb +11 -22
  68. data/lib/puppet/http/service/compiler.rb +22 -69
  69. data/lib/puppet/http/service/file_server.rb +18 -27
  70. data/lib/puppet/http/service/puppetserver.rb +26 -12
  71. data/lib/puppet/http/service/report.rb +8 -10
  72. data/lib/puppet/http/session.rb +11 -20
  73. data/lib/puppet/{network/http → http}/site.rb +1 -2
  74. data/lib/puppet/indirector/catalog/rest.rb +2 -4
  75. data/lib/puppet/indirector/fact_search.rb +60 -0
  76. data/lib/puppet/indirector/facts/facter.rb +24 -3
  77. data/lib/puppet/indirector/facts/json.rb +27 -0
  78. data/lib/puppet/indirector/facts/rest.rb +3 -22
  79. data/lib/puppet/indirector/facts/yaml.rb +3 -58
  80. data/lib/puppet/indirector/file_bucket_file/rest.rb +3 -9
  81. data/lib/puppet/indirector/file_content/rest.rb +2 -6
  82. data/lib/puppet/indirector/file_metadata/rest.rb +3 -9
  83. data/lib/puppet/indirector/file_server.rb +1 -8
  84. data/lib/puppet/indirector/generic_http.rb +0 -11
  85. data/lib/puppet/indirector/json.rb +5 -1
  86. data/lib/puppet/indirector/node/json.rb +8 -0
  87. data/lib/puppet/indirector/node/rest.rb +2 -4
  88. data/lib/puppet/indirector/report/json.rb +34 -0
  89. data/lib/puppet/indirector/report/rest.rb +3 -8
  90. data/lib/puppet/indirector/request.rb +0 -101
  91. data/lib/puppet/indirector/rest.rb +12 -263
  92. data/lib/puppet/module_tool/applications.rb +0 -1
  93. data/lib/puppet/module_tool/applications/installer.rb +48 -2
  94. data/lib/puppet/module_tool/errors/shared.rb +17 -2
  95. data/lib/puppet/network/authconfig.rb +2 -96
  96. data/lib/puppet/network/authorization.rb +13 -35
  97. data/lib/puppet/network/formats.rb +69 -1
  98. data/lib/puppet/network/http.rb +3 -3
  99. data/lib/puppet/network/http/api/indirected_routes.rb +2 -20
  100. data/lib/puppet/network/http/api/master/v3.rb +11 -13
  101. data/lib/puppet/network/http/connection.rb +247 -316
  102. data/lib/puppet/network/http/handler.rb +0 -1
  103. data/lib/puppet/network/http_pool.rb +16 -34
  104. data/lib/puppet/node.rb +1 -30
  105. data/lib/puppet/pal/json_catalog_encoder.rb +4 -0
  106. data/lib/puppet/pal/pal_impl.rb +73 -18
  107. data/lib/puppet/parser/ast/leaf.rb +3 -2
  108. data/lib/puppet/parser/ast/pops_bridge.rb +0 -38
  109. data/lib/puppet/parser/compiler.rb +0 -198
  110. data/lib/puppet/parser/compiler/catalog_validator/relationship_validator.rb +14 -39
  111. data/lib/puppet/parser/resource.rb +0 -69
  112. data/lib/puppet/parser/templatewrapper.rb +1 -1
  113. data/lib/puppet/pops/evaluator/deferred_resolver.rb +5 -3
  114. data/lib/puppet/pops/evaluator/evaluator_impl.rb +22 -8
  115. data/lib/puppet/pops/evaluator/runtime3_resource_support.rb +3 -3
  116. data/lib/puppet/pops/evaluator/runtime3_support.rb +1 -1
  117. data/lib/puppet/pops/issues.rb +0 -5
  118. data/lib/puppet/pops/loader/ruby_legacy_function_instantiator.rb +6 -8
  119. data/lib/puppet/pops/model/ast.pp +0 -42
  120. data/lib/puppet/pops/model/ast.rb +0 -290
  121. data/lib/puppet/pops/model/ast_transformer.rb +1 -1
  122. data/lib/puppet/pops/model/factory.rb +0 -45
  123. data/lib/puppet/pops/model/model_label_provider.rb +0 -5
  124. data/lib/puppet/pops/model/model_tree_dumper.rb +0 -22
  125. data/lib/puppet/pops/model/pn_transformer.rb +0 -16
  126. data/lib/puppet/pops/parser/egrammar.ra +0 -56
  127. data/lib/puppet/pops/parser/eparser.rb +1520 -1712
  128. data/lib/puppet/pops/parser/lexer2.rb +4 -4
  129. data/lib/puppet/pops/parser/parser_support.rb +0 -5
  130. data/lib/puppet/pops/resource/resource_type_impl.rb +2 -24
  131. data/lib/puppet/pops/types/type_calculator.rb +0 -7
  132. data/lib/puppet/pops/types/type_parser.rb +0 -4
  133. data/lib/puppet/pops/types/types.rb +0 -1
  134. data/lib/puppet/pops/validation/checker4_0.rb +9 -37
  135. data/lib/puppet/pops/validation/tasks_checker.rb +0 -12
  136. data/lib/puppet/pops/validation/validator_factory_4_0.rb +1 -2
  137. data/lib/puppet/provider.rb +0 -13
  138. data/lib/puppet/provider/nameservice.rb +0 -18
  139. data/lib/puppet/provider/package/apt.rb +4 -0
  140. data/lib/puppet/provider/package/dpkg.rb +0 -10
  141. data/lib/puppet/provider/package/gem.rb +23 -3
  142. data/lib/puppet/provider/package/pip.rb +0 -1
  143. data/lib/puppet/provider/package/pkg.rb +0 -4
  144. data/lib/puppet/provider/package/portage.rb +1 -1
  145. data/lib/puppet/provider/package/puppet_gem.rb +1 -4
  146. data/lib/puppet/provider/service/smf.rb +191 -73
  147. data/lib/puppet/provider/user/aix.rb +2 -2
  148. data/lib/puppet/provider/user/directoryservice.rb +0 -10
  149. data/lib/puppet/reference/configuration.rb +8 -5
  150. data/lib/puppet/reference/indirection.rb +1 -1
  151. data/lib/puppet/resource.rb +1 -89
  152. data/lib/puppet/resource/catalog.rb +1 -14
  153. data/lib/puppet/resource/type.rb +3 -119
  154. data/lib/puppet/resource/type_collection.rb +3 -48
  155. data/lib/puppet/runtime.rb +1 -2
  156. data/lib/puppet/settings.rb +88 -48
  157. data/lib/puppet/settings/alias_setting.rb +37 -0
  158. data/lib/puppet/settings/base_setting.rb +26 -2
  159. data/lib/puppet/settings/integer_setting.rb +17 -0
  160. data/lib/puppet/settings/port_setting.rb +15 -0
  161. data/lib/puppet/settings/priority_setting.rb +5 -4
  162. data/lib/puppet/ssl.rb +10 -6
  163. data/lib/puppet/ssl/base.rb +3 -5
  164. data/lib/puppet/ssl/certificate.rb +0 -6
  165. data/lib/puppet/ssl/certificate_request.rb +1 -12
  166. data/lib/puppet/ssl/certificate_signer.rb +6 -0
  167. data/lib/puppet/ssl/oids.rb +3 -1
  168. data/lib/puppet/ssl/ssl_provider.rb +17 -0
  169. data/lib/puppet/ssl/state_machine.rb +3 -1
  170. data/lib/puppet/ssl/verifier.rb +2 -0
  171. data/lib/puppet/test/test_helper.rb +1 -3
  172. data/lib/puppet/transaction.rb +1 -7
  173. data/lib/puppet/transaction/report.rb +2 -4
  174. data/lib/puppet/type.rb +0 -76
  175. data/lib/puppet/type/file.rb +5 -7
  176. data/lib/puppet/type/file/checksum.rb +1 -1
  177. data/lib/puppet/type/file/source.rb +1 -1
  178. data/lib/puppet/type/filebucket.rb +3 -3
  179. data/lib/puppet/type/package.rb +5 -13
  180. data/lib/puppet/type/user.rb +1 -1
  181. data/lib/puppet/util/autoload.rb +1 -8
  182. data/lib/puppet/util/execution.rb +0 -11
  183. data/lib/puppet/util/http_proxy.rb +2 -215
  184. data/lib/puppet/util/monkey_patches.rb +0 -46
  185. data/lib/puppet/util/posix.rb +54 -5
  186. data/lib/puppet/util/rdoc.rb +0 -7
  187. data/lib/puppet/util/retry_action.rb +1 -1
  188. data/lib/puppet/util/rubygems.rb +5 -1
  189. data/lib/puppet/util/run_mode.rb +9 -1
  190. data/lib/puppet/util/windows.rb +3 -8
  191. data/lib/puppet/util/windows/daemon.rb +360 -0
  192. data/lib/puppet/util/windows/error.rb +1 -0
  193. data/lib/puppet/util/windows/eventlog.rb +4 -9
  194. data/lib/puppet/util/windows/file.rb +8 -242
  195. data/lib/puppet/util/windows/monkey_patches/process.rb +414 -0
  196. data/lib/puppet/util/windows/process.rb +4 -226
  197. data/lib/puppet/util/windows/service.rb +9 -460
  198. data/lib/puppet/util/windows/string.rb +12 -13
  199. data/lib/puppet/util/yaml.rb +0 -22
  200. data/lib/puppet/vendor/require_vendored.rb +0 -1
  201. data/lib/puppet/version.rb +1 -1
  202. data/lib/puppet/x509.rb +5 -1
  203. data/lib/puppet/x509/cert_provider.rb +29 -1
  204. data/locales/puppet.pot +629 -1314
  205. data/man/man5/puppet.conf.5 +39 -99
  206. data/man/man8/puppet-agent.8 +2 -2
  207. data/man/man8/puppet-apply.8 +2 -2
  208. data/man/man8/puppet-catalog.8 +1 -1
  209. data/man/man8/puppet-config.8 +1 -1
  210. data/man/man8/puppet-describe.8 +1 -1
  211. data/man/man8/puppet-device.8 +2 -2
  212. data/man/man8/puppet-doc.8 +1 -1
  213. data/man/man8/puppet-epp.8 +1 -1
  214. data/man/man8/puppet-facts.8 +58 -9
  215. data/man/man8/puppet-filebucket.8 +6 -6
  216. data/man/man8/puppet-generate.8 +1 -1
  217. data/man/man8/puppet-help.8 +1 -1
  218. data/man/man8/puppet-lookup.8 +1 -1
  219. data/man/man8/puppet-module.8 +1 -58
  220. data/man/man8/puppet-node.8 +4 -1
  221. data/man/man8/puppet-parser.8 +1 -1
  222. data/man/man8/puppet-plugin.8 +1 -1
  223. data/man/man8/puppet-report.8 +4 -1
  224. data/man/man8/puppet-resource.8 +1 -1
  225. data/man/man8/puppet-script.8 +2 -2
  226. data/man/man8/puppet-ssl.8 +1 -1
  227. data/man/man8/puppet.8 +2 -2
  228. data/spec/fixtures/integration/application/agent/cached_deferred_catalog.json +91 -0
  229. data/spec/fixtures/unit/provider/service/smf/{svcs.out → svcs_instances.out} +0 -0
  230. data/spec/fixtures/unit/provider/user/aix/aix_passwd_file.out +4 -0
  231. data/spec/integration/application/agent_spec.rb +151 -14
  232. data/spec/integration/application/apply_spec.rb +20 -1
  233. data/spec/integration/application/filebucket_spec.rb +16 -16
  234. data/spec/integration/application/help_spec.rb +2 -0
  235. data/spec/integration/application/plugin_spec.rb +23 -1
  236. data/spec/integration/defaults_spec.rb +7 -10
  237. data/spec/integration/environments/setting_hooks_spec.rb +1 -1
  238. data/spec/integration/indirector/file_content/file_server_spec.rb +0 -2
  239. data/spec/integration/indirector/file_metadata/file_server_spec.rb +0 -2
  240. data/spec/integration/network/http_pool_spec.rb +3 -21
  241. data/spec/integration/parser/catalog_spec.rb +0 -38
  242. data/spec/integration/parser/node_spec.rb +0 -9
  243. data/spec/integration/parser/pcore_resource_spec.rb +0 -37
  244. data/spec/integration/resource/type_collection_spec.rb +2 -6
  245. data/spec/integration/transaction_spec.rb +4 -9
  246. data/spec/integration/type/file_spec.rb +5 -4
  247. data/spec/integration/util/windows/adsi_spec.rb +3 -1
  248. data/spec/integration/util/windows/monkey_patches/process_spec.rb +231 -0
  249. data/spec/integration/util/windows/registry_spec.rb +0 -10
  250. data/spec/integration/util/windows/security_spec.rb +1 -1
  251. data/spec/lib/puppet_spec/puppetserver.rb +1 -1
  252. data/spec/lib/puppet_spec/settings.rb +7 -1
  253. data/spec/spec_helper.rb +3 -4
  254. data/spec/unit/agent_spec.rb +8 -8
  255. data/spec/unit/application/agent_spec.rb +0 -1
  256. data/spec/unit/application/config_spec.rb +224 -4
  257. data/spec/unit/application/facts_spec.rb +35 -0
  258. data/spec/unit/application/filebucket_spec.rb +41 -41
  259. data/spec/unit/application/ssl_spec.rb +2 -2
  260. data/spec/unit/application_spec.rb +51 -9
  261. data/spec/unit/certificate_factory_spec.rb +1 -1
  262. data/spec/unit/configurer/downloader_spec.rb +6 -2
  263. data/spec/unit/configurer/plugin_handler_spec.rb +56 -18
  264. data/spec/unit/configurer_spec.rb +12 -9
  265. data/spec/unit/confine/feature_spec.rb +1 -1
  266. data/spec/unit/confine_spec.rb +8 -2
  267. data/spec/unit/context/trusted_information_spec.rb +2 -6
  268. data/spec/unit/defaults_spec.rb +26 -32
  269. data/spec/unit/environments_spec.rb +96 -22
  270. data/spec/unit/face/config_spec.rb +27 -32
  271. data/spec/unit/face/facts_spec.rb +4 -0
  272. data/spec/unit/face/node_spec.rb +14 -13
  273. data/spec/unit/face/plugin_spec.rb +73 -33
  274. data/spec/unit/file_bucket/file_spec.rb +1 -1
  275. data/spec/unit/file_serving/configuration/parser_spec.rb +22 -19
  276. data/spec/unit/file_serving/configuration_spec.rb +6 -12
  277. data/spec/unit/file_serving/metadata_spec.rb +3 -3
  278. data/spec/unit/file_serving/terminus_helper_spec.rb +11 -4
  279. data/spec/unit/forge/module_release_spec.rb +2 -7
  280. data/spec/unit/functions/camelcase_spec.rb +1 -1
  281. data/spec/unit/functions/capitalize_spec.rb +1 -1
  282. data/spec/unit/functions/downcase_spec.rb +1 -1
  283. data/spec/unit/functions/inline_epp_spec.rb +26 -1
  284. data/spec/unit/functions/upcase_spec.rb +1 -1
  285. data/spec/unit/http/client_spec.rb +7 -8
  286. data/spec/unit/{network/resolver_spec.rb → http/dns_spec.rb} +3 -3
  287. data/spec/unit/http/external_client_spec.rb +4 -4
  288. data/spec/unit/{network/http → http}/factory_spec.rb +5 -11
  289. data/spec/unit/{network/http/session_spec.rb → http/pool_entry_spec.rb} +3 -3
  290. data/spec/unit/{network/http → http}/pool_spec.rb +12 -17
  291. data/spec/unit/{util/http_proxy_spec.rb → http/proxy_spec.rb} +2 -69
  292. data/spec/unit/http/resolver_spec.rb +13 -13
  293. data/spec/unit/http/service/compiler_spec.rb +49 -62
  294. data/spec/unit/http/service/file_server_spec.rb +3 -3
  295. data/spec/unit/http/service/puppetserver_spec.rb +34 -4
  296. data/spec/unit/http/service_spec.rb +1 -2
  297. data/spec/unit/http/session_spec.rb +16 -14
  298. data/spec/unit/{network/http → http}/site_spec.rb +3 -3
  299. data/spec/unit/indirector/face_spec.rb +0 -1
  300. data/spec/unit/indirector/facts/facter_spec.rb +104 -1
  301. data/spec/unit/indirector/facts/json_spec.rb +255 -0
  302. data/spec/unit/indirector/file_bucket_file/file_spec.rb +5 -3
  303. data/spec/unit/indirector/file_bucket_file/selector_spec.rb +26 -8
  304. data/spec/unit/indirector/file_content/rest_spec.rb +0 -4
  305. data/spec/unit/indirector/file_metadata/rest_spec.rb +0 -4
  306. data/spec/unit/indirector/file_server_spec.rb +1 -15
  307. data/spec/unit/indirector/indirection_spec.rb +8 -12
  308. data/spec/unit/indirector/node/json_spec.rb +33 -0
  309. data/spec/{integration/indirector/report/yaml.rb → unit/indirector/report/json_spec.rb} +13 -24
  310. data/spec/unit/indirector/report/rest_spec.rb +2 -17
  311. data/spec/unit/indirector/report/yaml_spec.rb +72 -8
  312. data/spec/unit/indirector/request_spec.rb +0 -264
  313. data/spec/unit/indirector/rest_spec.rb +98 -752
  314. data/spec/unit/indirector_spec.rb +2 -2
  315. data/spec/unit/module_tool/applications/installer_spec.rb +66 -0
  316. data/spec/unit/network/authconfig_spec.rb +2 -132
  317. data/spec/unit/network/authorization_spec.rb +2 -55
  318. data/spec/unit/network/formats_spec.rb +45 -4
  319. data/spec/unit/network/http/api/indirected_routes_spec.rb +1 -101
  320. data/spec/unit/network/http/api/master/v3_spec.rb +28 -7
  321. data/spec/unit/network/http/api_spec.rb +10 -0
  322. data/spec/unit/network/http/connection_spec.rb +19 -41
  323. data/spec/unit/network/http/handler_spec.rb +0 -6
  324. data/spec/unit/network/http_pool_spec.rb +0 -4
  325. data/spec/unit/node/environment_spec.rb +33 -21
  326. data/spec/unit/node_spec.rb +2 -54
  327. data/spec/unit/parser/compiler_spec.rb +3 -19
  328. data/spec/unit/parser/functions/create_resources_spec.rb +2 -20
  329. data/spec/unit/parser/resource_spec.rb +14 -8
  330. data/spec/unit/parser/templatewrapper_spec.rb +4 -3
  331. data/spec/unit/pops/evaluator/deferred_resolver_spec.rb +20 -0
  332. data/spec/unit/pops/evaluator/evaluating_parser_spec.rb +4 -7
  333. data/spec/unit/pops/loaders/loaders_spec.rb +6 -21
  334. data/spec/unit/pops/parser/parse_application_spec.rb +4 -22
  335. data/spec/unit/pops/parser/parse_basic_expressions_spec.rb +0 -1
  336. data/spec/unit/pops/parser/parse_capabilities_spec.rb +8 -21
  337. data/spec/unit/pops/parser/parse_site_spec.rb +20 -24
  338. data/spec/unit/pops/resource/resource_type_impl_spec.rb +0 -71
  339. data/spec/unit/pops/serialization/to_from_hr_spec.rb +1 -1
  340. data/spec/unit/pops/types/type_calculator_spec.rb +6 -6
  341. data/spec/unit/pops/types/type_factory_spec.rb +1 -1
  342. data/spec/unit/pops/validator/validator_spec.rb +61 -46
  343. data/spec/unit/pops/visitor_spec.rb +1 -1
  344. data/spec/unit/property_spec.rb +1 -0
  345. data/spec/unit/provider/nameservice_spec.rb +66 -122
  346. data/spec/unit/provider/package/apt_spec.rb +4 -8
  347. data/spec/unit/provider/package/base_spec.rb +6 -5
  348. data/spec/unit/provider/package/dpkg_spec.rb +0 -48
  349. data/spec/unit/provider/package/gem_spec.rb +32 -0
  350. data/spec/unit/provider/package/pacman_spec.rb +18 -12
  351. data/spec/unit/provider/package/pip_spec.rb +6 -11
  352. data/spec/unit/provider/package/pkgdmg_spec.rb +0 -4
  353. data/spec/unit/provider/package/puppet_gem_spec.rb +3 -2
  354. data/spec/unit/provider/service/smf_spec.rb +401 -165
  355. data/spec/unit/provider/service/windows_spec.rb +0 -1
  356. data/spec/unit/provider/user/aix_spec.rb +5 -0
  357. data/spec/unit/provider/user/hpux_spec.rb +1 -1
  358. data/spec/unit/provider/user/pw_spec.rb +2 -0
  359. data/spec/unit/provider/user/useradd_spec.rb +1 -0
  360. data/spec/unit/provider_spec.rb +6 -20
  361. data/spec/unit/puppet_pal_catalog_spec.rb +45 -0
  362. data/spec/unit/resource/type_collection_spec.rb +2 -22
  363. data/spec/unit/resource/type_spec.rb +1 -1
  364. data/spec/unit/resource_spec.rb +11 -66
  365. data/spec/unit/settings/http_extra_headers_spec.rb +2 -4
  366. data/spec/unit/settings/integer_setting_spec.rb +42 -0
  367. data/spec/unit/settings/port_setting_spec.rb +31 -0
  368. data/spec/unit/settings/priority_setting_spec.rb +4 -4
  369. data/spec/unit/settings_spec.rb +560 -228
  370. data/spec/unit/ssl/base_spec.rb +36 -4
  371. data/spec/unit/ssl/certificate_request_spec.rb +15 -45
  372. data/spec/unit/ssl/certificate_spec.rb +2 -11
  373. data/spec/unit/ssl/ssl_provider_spec.rb +14 -8
  374. data/spec/unit/ssl/state_machine_spec.rb +0 -1
  375. data/spec/unit/ssl/verifier_spec.rb +0 -21
  376. data/spec/unit/transaction/additional_resource_generator_spec.rb +3 -7
  377. data/spec/unit/transaction/event_manager_spec.rb +14 -11
  378. data/spec/unit/transaction/report_spec.rb +0 -2
  379. data/spec/unit/transaction/resource_harness_spec.rb +2 -2
  380. data/spec/unit/transaction_spec.rb +57 -82
  381. data/spec/unit/type/file/checksum_spec.rb +6 -6
  382. data/spec/unit/type/file/content_spec.rb +1 -2
  383. data/spec/unit/type/file/ensure_spec.rb +1 -1
  384. data/spec/unit/type/file/mode_spec.rb +1 -1
  385. data/spec/unit/type/file/selinux_spec.rb +0 -2
  386. data/spec/unit/type/file/source_spec.rb +0 -1
  387. data/spec/unit/type/file_spec.rb +12 -12
  388. data/spec/unit/type/group_spec.rb +13 -6
  389. data/spec/unit/type/package_spec.rb +1 -1
  390. data/spec/unit/type/resources_spec.rb +7 -7
  391. data/spec/unit/type/service_spec.rb +1 -1
  392. data/spec/unit/type/tidy_spec.rb +0 -1
  393. data/spec/unit/type_spec.rb +22 -2
  394. data/spec/unit/util/at_fork_spec.rb +2 -2
  395. data/spec/unit/util/autoload_spec.rb +5 -1
  396. data/spec/unit/util/backups_spec.rb +1 -4
  397. data/spec/unit/util/execution_spec.rb +15 -40
  398. data/spec/unit/util/inifile_spec.rb +6 -14
  399. data/spec/unit/util/log_spec.rb +8 -7
  400. data/spec/unit/util/logging_spec.rb +3 -3
  401. data/spec/unit/util/monkey_patches_spec.rb +0 -6
  402. data/spec/unit/util/posix_spec.rb +363 -15
  403. data/spec/unit/util/rubygems_spec.rb +2 -2
  404. data/spec/unit/util/run_mode_spec.rb +21 -121
  405. data/spec/unit/util/selinux_spec.rb +76 -52
  406. data/spec/unit/util/storage_spec.rb +3 -1
  407. data/spec/unit/util/suidmanager_spec.rb +44 -41
  408. data/spec/unit/util/windows/string_spec.rb +1 -3
  409. data/spec/unit/util/yaml_spec.rb +0 -54
  410. data/spec/unit/util_spec.rb +13 -24
  411. metadata +66 -226
  412. data/conf/auth.conf +0 -150
  413. data/lib/puppet/application/cert.rb +0 -76
  414. data/lib/puppet/application/key.rb +0 -4
  415. data/lib/puppet/application/man.rb +0 -4
  416. data/lib/puppet/application/status.rb +0 -4
  417. data/lib/puppet/face/key.rb +0 -16
  418. data/lib/puppet/face/man.rb +0 -145
  419. data/lib/puppet/face/module/build.rb +0 -14
  420. data/lib/puppet/face/module/generate.rb +0 -14
  421. data/lib/puppet/face/module/search.rb +0 -103
  422. data/lib/puppet/face/status.rb +0 -51
  423. data/lib/puppet/indirector/certificate/file.rb +0 -9
  424. data/lib/puppet/indirector/certificate/rest.rb +0 -18
  425. data/lib/puppet/indirector/certificate_request/file.rb +0 -9
  426. data/lib/puppet/indirector/certificate_request/memory.rb +0 -7
  427. data/lib/puppet/indirector/certificate_request/rest.rb +0 -11
  428. data/lib/puppet/indirector/file_content/http.rb +0 -22
  429. data/lib/puppet/indirector/key/file.rb +0 -46
  430. data/lib/puppet/indirector/key/memory.rb +0 -7
  431. data/lib/puppet/indirector/ssl_file.rb +0 -162
  432. data/lib/puppet/indirector/status.rb +0 -3
  433. data/lib/puppet/indirector/status/local.rb +0 -12
  434. data/lib/puppet/indirector/status/rest.rb +0 -27
  435. data/lib/puppet/module_tool/applications/searcher.rb +0 -29
  436. data/lib/puppet/network/auth_config_parser.rb +0 -90
  437. data/lib/puppet/network/authstore.rb +0 -283
  438. data/lib/puppet/network/http/api/master/v3/authorization.rb +0 -18
  439. data/lib/puppet/network/http/api/master/v3/environment.rb +0 -88
  440. data/lib/puppet/network/http/base_pool.rb +0 -36
  441. data/lib/puppet/network/http/compression.rb +0 -127
  442. data/lib/puppet/network/http/connection_adapter.rb +0 -184
  443. data/lib/puppet/network/http/nocache_pool.rb +0 -28
  444. data/lib/puppet/network/rest_controller.rb +0 -2
  445. data/lib/puppet/network/rights.rb +0 -210
  446. data/lib/puppet/parser/compiler/catalog_validator/env_relationship_validator.rb +0 -66
  447. data/lib/puppet/parser/compiler/catalog_validator/site_validator.rb +0 -22
  448. data/lib/puppet/parser/environment_compiler.rb +0 -202
  449. data/lib/puppet/pops/types/enumeration.rb +0 -16
  450. data/lib/puppet/resource/capability_finder.rb +0 -154
  451. data/lib/puppet/rest/errors.rb +0 -15
  452. data/lib/puppet/rest/response.rb +0 -35
  453. data/lib/puppet/rest/route.rb +0 -85
  454. data/lib/puppet/rest/routes.rb +0 -135
  455. data/lib/puppet/ssl/host.rb +0 -505
  456. data/lib/puppet/ssl/key.rb +0 -61
  457. data/lib/puppet/ssl/validator.rb +0 -61
  458. data/lib/puppet/ssl/validator/default_validator.rb +0 -209
  459. data/lib/puppet/ssl/validator/no_validator.rb +0 -22
  460. data/lib/puppet/ssl/verifier_adapter.rb +0 -58
  461. data/lib/puppet/status.rb +0 -40
  462. data/lib/puppet/util/connection.rb +0 -88
  463. data/lib/puppet/util/ssl.rb +0 -83
  464. data/lib/puppet/util/windows/api_types.rb +0 -309
  465. data/lib/puppet/util/windows/monkey_patches/dir.rb +0 -40
  466. data/lib/puppet/vendor/load_pathspec.rb +0 -1
  467. data/lib/puppet/vendor/pathspec/CHANGELOG.md +0 -2
  468. data/lib/puppet/vendor/pathspec/LICENSE +0 -201
  469. data/lib/puppet/vendor/pathspec/PUPPET_README.md +0 -6
  470. data/lib/puppet/vendor/pathspec/README.md +0 -53
  471. data/lib/puppet/vendor/pathspec/lib/pathspec.rb +0 -122
  472. data/lib/puppet/vendor/pathspec/lib/pathspec/gitignorespec.rb +0 -275
  473. data/lib/puppet/vendor/pathspec/lib/pathspec/regexspec.rb +0 -17
  474. data/lib/puppet/vendor/pathspec/lib/pathspec/spec.rb +0 -14
  475. data/man/man8/puppet-key.8 +0 -126
  476. data/man/man8/puppet-man.8 +0 -76
  477. data/man/man8/puppet-status.8 +0 -108
  478. data/spec/integration/application/config_spec.rb +0 -74
  479. data/spec/integration/network/authconfig_spec.rb +0 -256
  480. data/spec/integration/util/windows/monkey_patches/dir_spec.rb +0 -11
  481. data/spec/unit/application/man_spec.rb +0 -52
  482. data/spec/unit/capability_spec.rb +0 -414
  483. data/spec/unit/face/catalog_spec.rb +0 -6
  484. data/spec/unit/face/key_spec.rb +0 -9
  485. data/spec/unit/face/module/search_spec.rb +0 -231
  486. data/spec/unit/face/module_spec.rb +0 -3
  487. data/spec/unit/face/status_spec.rb +0 -9
  488. data/spec/unit/indirector/certificate/file_spec.rb +0 -14
  489. data/spec/unit/indirector/certificate/rest_spec.rb +0 -61
  490. data/spec/unit/indirector/certificate_request/file_spec.rb +0 -14
  491. data/spec/unit/indirector/certificate_request/rest_spec.rb +0 -25
  492. data/spec/unit/indirector/key/file_spec.rb +0 -79
  493. data/spec/unit/indirector/ssl_file_spec.rb +0 -305
  494. data/spec/unit/indirector/status/local_spec.rb +0 -10
  495. data/spec/unit/indirector/status/rest_spec.rb +0 -50
  496. data/spec/unit/module_tool/applications/searcher_spec.rb +0 -38
  497. data/spec/unit/network/auth_config_parser_spec.rb +0 -115
  498. data/spec/unit/network/authstore_spec.rb +0 -422
  499. data/spec/unit/network/http/api/master/v3/authorization_spec.rb +0 -57
  500. data/spec/unit/network/http/api/master/v3/environment_spec.rb +0 -185
  501. data/spec/unit/network/http/compression_spec.rb +0 -240
  502. data/spec/unit/network/http/nocache_pool_spec.rb +0 -64
  503. data/spec/unit/network/http_spec.rb +0 -9
  504. data/spec/unit/network/rights_spec.rb +0 -439
  505. data/spec/unit/parser/environment_compiler_spec.rb +0 -730
  506. data/spec/unit/pops/types/enumeration_spec.rb +0 -51
  507. data/spec/unit/resource/capability_finder_spec.rb +0 -143
  508. data/spec/unit/rest/route_spec.rb +0 -132
  509. data/spec/unit/ssl/host_spec.rb +0 -650
  510. data/spec/unit/ssl/key_spec.rb +0 -173
  511. data/spec/unit/ssl/validator_spec.rb +0 -278
  512. data/spec/unit/status_spec.rb +0 -45
  513. 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.19.0'
9
+ PUPPETVERSION = '7.3.0'
10
10
 
11
11
  ##
12
12
  # version is a public API method intended to always provide a fast and
@@ -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)
@@ -1,16 +1,16 @@
1
1
  # SOME DESCRIPTIVE TITLE.
2
- # Copyright (C) 2020 Puppet, Inc.
2
+ # Copyright (C) 2021 Puppet, Inc.
3
3
  # This file is distributed under the same license as the Puppet automation framework package.
4
- # FIRST AUTHOR <EMAIL@ADDRESS>, 2020.
4
+ # FIRST AUTHOR <EMAIL@ADDRESS>, 2021.
5
5
  #
6
6
  #, fuzzy
7
7
  msgid ""
8
8
  msgstr ""
9
- "Project-Id-Version: Puppet automation framework 6.18.0-104-g9f65e07e38\n"
9
+ "Project-Id-Version: Puppet automation framework 7.1.0-89-g309d69a162\n"
10
10
  "\n"
11
11
  "Report-Msgid-Bugs-To: https://tickets.puppetlabs.com\n"
12
- "POT-Creation-Date: 2020-10-13 14:34+0000\n"
13
- "PO-Revision-Date: 2020-10-13 14:34+0000\n"
12
+ "POT-Creation-Date: 2021-01-13 14:37+0000\n"
13
+ "PO-Revision-Date: 2021-01-13 14:37+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:428
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:504
175
+ #: ../lib/puppet/application.rb:580
176
176
  msgid "No help available for puppet %{app_name}"
177
177
  msgstr ""
178
178
 
@@ -184,19 +184,19 @@ msgstr ""
184
184
  msgid "The puppet agent daemon"
185
185
  msgstr ""
186
186
 
187
- #: ../lib/puppet/application/agent.rb:414
187
+ #: ../lib/puppet/application/agent.rb:415
188
188
  msgid "Fingerprint asked but neither the certificate, nor the certificate request have been issued"
189
189
  msgstr ""
190
190
 
191
- #: ../lib/puppet/application/agent.rb:419
191
+ #: ../lib/puppet/application/agent.rb:420
192
192
  msgid "Failed to generate fingerprint: %{message}"
193
193
  msgstr ""
194
194
 
195
- #: ../lib/puppet/application/agent.rb:442
195
+ #: ../lib/puppet/application/agent.rb:443
196
196
  msgid "Starting Puppet client version %{version}"
197
197
  msgstr ""
198
198
 
199
- #: ../lib/puppet/application/agent.rb:458
199
+ #: ../lib/puppet/application/agent.rb:459
200
200
  msgid "The puppet agent command does not take parameters"
201
201
  msgstr ""
202
202
 
@@ -206,42 +206,38 @@ msgstr ""
206
206
 
207
207
  #. TRANSLATORS "puppet apply" is a program command and should not be translated
208
208
  #. TRANSLATORS "puppet apply" is a program command and should not be translated
209
- #: ../lib/puppet/application/apply.rb:207 ../lib/puppet/application/apply.rb:320
209
+ #: ../lib/puppet/application/apply.rb:208 ../lib/puppet/application/apply.rb:321
210
210
  msgid "For puppet apply"
211
211
  msgstr ""
212
212
 
213
- #: ../lib/puppet/application/apply.rb:215
213
+ #: ../lib/puppet/application/apply.rb:216
214
214
  msgid "%{file} is not readable"
215
215
  msgstr ""
216
216
 
217
- #: ../lib/puppet/application/apply.rb:286 ../lib/puppet/application/script.rb:239
217
+ #: ../lib/puppet/application/apply.rb:287 ../lib/puppet/application/script.rb:240
218
218
  msgid "Exiting"
219
219
  msgstr ""
220
220
 
221
- #: ../lib/puppet/application/apply.rb:330
221
+ #: ../lib/puppet/application/apply.rb:331
222
222
  msgid "Could not deserialize catalog from %{format}: %{detail}"
223
223
  msgstr ""
224
224
 
225
- #: ../lib/puppet/application/apply.rb:351 ../lib/puppet/application/script.rb:144
225
+ #: ../lib/puppet/application/apply.rb:352 ../lib/puppet/application/script.rb:145
226
226
  msgid "Could not find facts for %{node}"
227
227
  msgstr ""
228
228
 
229
- #: ../lib/puppet/application/apply.rb:363 ../lib/puppet/application/script.rb:152
229
+ #: ../lib/puppet/application/apply.rb:364 ../lib/puppet/application/script.rb:153
230
230
  msgid "Could not find node %{node}"
231
231
  msgstr ""
232
232
 
233
- #: ../lib/puppet/application/apply.rb:376 ../lib/puppet/application/script.rb:137
233
+ #: ../lib/puppet/application/apply.rb:377 ../lib/puppet/application/script.rb:138
234
234
  msgid "Could not find file %{manifest}"
235
235
  msgstr ""
236
236
 
237
- #: ../lib/puppet/application/apply.rb:377
237
+ #: ../lib/puppet/application/apply.rb:378
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 ""
@@ -250,47 +246,47 @@ msgstr ""
250
246
  msgid "Manage remote network devices"
251
247
  msgstr ""
252
248
 
253
- #: ../lib/puppet/application/device.rb:230
249
+ #: ../lib/puppet/application/device.rb:231
254
250
  msgid "resource command requires target"
255
251
  msgstr ""
256
252
 
257
- #: ../lib/puppet/application/device.rb:233
253
+ #: ../lib/puppet/application/device.rb:234
258
254
  msgid "facts command requires target"
259
255
  msgstr ""
260
256
 
261
- #: ../lib/puppet/application/device.rb:236
257
+ #: ../lib/puppet/application/device.rb:237
262
258
  msgid "missing argument: --target is required when using --apply"
263
259
  msgstr ""
264
260
 
265
- #: ../lib/puppet/application/device.rb:237
261
+ #: ../lib/puppet/application/device.rb:238
266
262
  msgid "%{file} does not exist, cannot apply"
267
263
  msgstr ""
268
264
 
269
- #: ../lib/puppet/application/device.rb:255
265
+ #: ../lib/puppet/application/device.rb:256
270
266
  msgid "Target device / certificate '%{target}' not found in %{config}"
271
267
  msgstr ""
272
268
 
273
- #: ../lib/puppet/application/device.rb:257
269
+ #: ../lib/puppet/application/device.rb:258
274
270
  msgid "No device found in %{config}"
275
271
  msgstr ""
276
272
 
277
- #: ../lib/puppet/application/device.rb:316
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:331
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:354
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:392 ../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:393 ../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
 
@@ -414,7 +410,7 @@ msgstr ""
414
410
  msgid "Unknown rendering format '%{format}'"
415
411
  msgstr ""
416
412
 
417
- #: ../lib/puppet/application/lookup.rb:366 ../lib/puppet/face/epp.rb:520
413
+ #: ../lib/puppet/application/lookup.rb:366 ../lib/puppet/face/epp.rb:530
418
414
  msgid "Incorrect formatted data in %{fact_file} given via the --facts flag"
419
415
  msgstr ""
420
416
 
@@ -438,11 +434,11 @@ msgstr ""
438
434
  msgid "Run a puppet manifests as a script without compiling a catalog"
439
435
  msgstr ""
440
436
 
441
- #: ../lib/puppet/application/script.rb:124
437
+ #: ../lib/puppet/application/script.rb:125
442
438
  msgid "Bolt must be installed to use the script application"
443
439
  msgstr ""
444
440
 
445
- #: ../lib/puppet/application/script.rb:138
441
+ #: ../lib/puppet/application/script.rb:139
446
442
  msgid "Only one file can be used per run. Skipping %{files}"
447
443
  msgstr ""
448
444
 
@@ -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:228
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:231
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:280
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:325
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:340
566
+ #: ../lib/puppet/configurer.rb:335
571
567
  msgid "Using configured environment '%{env}'"
572
568
  msgstr ""
573
569
 
574
- #: ../lib/puppet/configurer.rb:344
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:372
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:383
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:385
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:424
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:453 ../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:457 ../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:468 ../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:477
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:496
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:504
616
612
  msgid "Failed to submit facts: %{detail}"
617
613
  msgstr ""
618
614
 
619
- #: ../lib/puppet/configurer.rb:521
615
+ #: ../lib/puppet/configurer.rb:519
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:537
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:558
628
624
  msgid "Could not retrieve catalog from remote server: %{detail}"
629
625
  msgstr ""
630
626
 
@@ -692,43 +688,39 @@ msgstr ""
692
688
  msgid "a data type can only have one implementation"
693
689
  msgstr ""
694
690
 
695
- #: ../lib/puppet/defaults.rb:178
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:179
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:546
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:548
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:771
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:854
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:1048
723
- msgid "Setting 'ssl_client_ca_auth' is deprecated."
724
- msgstr ""
725
-
726
- #: ../lib/puppet/defaults.rb:1127 ../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:2005
723
+ #: ../lib/puppet/defaults.rb:1906
732
724
  msgid "Setting 'pluginsync' is deprecated."
733
725
  msgstr ""
734
726
 
@@ -774,7 +766,7 @@ msgstr ""
774
766
  msgid "no matching resources found"
775
767
  msgstr ""
776
768
 
777
- #: ../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/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
778
770
  msgid "Apache 2 license; see COPYING"
779
771
  msgstr ""
780
772
 
@@ -840,28 +832,28 @@ msgid ""
840
832
  "https://puppet.com/docs/puppet/latest/configuration.html#environment\n"
841
833
  msgstr ""
842
834
 
843
- #: ../lib/puppet/face/config.rb:176
835
+ #: ../lib/puppet/face/config.rb:186
844
836
  msgid "Deleted setting from '%{section_name}': '%{setting_string}', and adding it to 'server' section"
845
837
  msgstr ""
846
838
 
847
- #: ../lib/puppet/face/config.rb:191
839
+ #: ../lib/puppet/face/config.rb:201
848
840
  msgid "Delete a Puppet setting."
849
841
  msgstr ""
850
842
 
851
- #: ../lib/puppet/face/config.rb:192
843
+ #: ../lib/puppet/face/config.rb:202
852
844
  msgid "<setting>"
853
845
  msgstr ""
854
846
 
855
- #: ../lib/puppet/face/config.rb:226 ../lib/puppet/face/config.rb:230 ../lib/puppet/face/config.rb:241
847
+ #: ../lib/puppet/face/config.rb:236 ../lib/puppet/face/config.rb:240 ../lib/puppet/face/config.rb:251
856
848
  msgid "Deleted setting from '%{section_name}': '%{setting_string}'"
857
849
  msgstr ""
858
850
 
859
- #: ../lib/puppet/face/config.rb:244
851
+ #: ../lib/puppet/face/config.rb:254
860
852
  msgid "No setting found in configuration file for section '%{section_name}' setting name '%{name}'"
861
853
  msgstr ""
862
854
 
863
855
  #. TRANSLATORS the 'puppet.conf' is a specific file and should not be translated
864
- #: ../lib/puppet/face/config.rb:252
856
+ #: ../lib/puppet/face/config.rb:262
865
857
  msgid "The puppet.conf file does not exist %{puppet_conf}"
866
858
  msgstr ""
867
859
 
@@ -1023,14 +1015,54 @@ msgstr ""
1023
1015
  msgid "[<node_certname>]"
1024
1016
  msgstr ""
1025
1017
 
1026
- #: ../lib/puppet/face/facts.rb:40
1018
+ #: ../lib/puppet/face/facts.rb:39
1027
1019
  msgid "Upload local facts to the puppet master."
1028
1020
  msgstr ""
1029
1021
 
1030
- #: ../lib/puppet/face/facts.rb:82
1022
+ #: ../lib/puppet/face/facts.rb:77
1031
1023
  msgid "Uploading facts for '%{node}' to '%{server}'"
1032
1024
  msgstr ""
1033
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
+
1046
+ #: ../lib/puppet/face/facts.rb:116
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."
1052
+ msgstr ""
1053
+
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
+
1034
1066
  #: ../lib/puppet/face/generate.rb:9
1035
1067
  msgid "Generates Puppet code from Ruby definitions."
1036
1068
  msgstr ""
@@ -1140,52 +1172,10 @@ msgstr ""
1140
1172
  msgid "Check error logs."
1141
1173
  msgstr ""
1142
1174
 
1143
- #: ../lib/puppet/face/key.rb:7
1144
- msgid "Create, save, and remove certificate keys."
1145
- msgstr ""
1146
-
1147
- #: ../lib/puppet/face/man.rb:10
1148
- msgid "Display Puppet manual pages."
1149
- msgstr ""
1150
-
1151
- #: ../lib/puppet/face/man.rb:28
1152
- msgid "Display the manual page for a Puppet subcommand."
1153
- msgstr ""
1154
-
1155
- #: ../lib/puppet/face/man.rb:29
1156
- msgid "<subcommand>"
1157
- msgstr ""
1158
-
1159
- #. TRANSLATORS '--render-as s' is a command line option and should not be translated
1160
- #: ../lib/puppet/face/man.rb:31
1161
- msgid ""
1162
- " The man data, in Markdown format, suitable for consumption by Ronn.\n"
1163
- "\n"
1164
- " RENDERING ISSUES: To skip fancy formatting and output the raw Markdown\n"
1165
- " text (e.g. for use in a pipeline), call this action with '--render-as s'.\n"
1166
- msgstr ""
1167
-
1168
- #. TRANSLATORS 'puppet man' is a specific command line and should not be translated
1169
- #: ../lib/puppet/face/man.rb:56
1170
- msgid "The 'puppet man' command takes a single subcommand to review the subcommand's manpage"
1171
- msgstr ""
1172
-
1173
1175
  #: ../lib/puppet/face/module.rb:11
1174
1176
  msgid "Creates, installs and searches for modules on the Puppet Forge."
1175
1177
  msgstr ""
1176
1178
 
1177
- #: ../lib/puppet/face/module/build.rb:3
1178
- msgid "Build a module release package."
1179
- msgstr ""
1180
-
1181
- #. TRANSLATORS 'Puppet Development Kit' is the name of the software package replacing this action and should not be translated.
1182
- #. TRANSLATORS 'Puppet Development Kit' is the name of the software package replacing this action and should not be translated.
1183
- #. TRANSLATORS 'Puppet Development Kit' is the name of the software package replacing this action and should not be translated.
1184
- #. TRANSLATORS 'Puppet Development Kit' is the name of the software package replacing this action and should not be translated.
1185
- #: ../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
1186
- msgid "This action has been replaced by Puppet Development Kit. For more information visit https://puppet.com/docs/pdk/latest/pdk.html."
1187
- msgstr ""
1188
-
1189
1179
  #: ../lib/puppet/face/module/changes.rb:3
1190
1180
  msgid "Show modified files of an installed module."
1191
1181
  msgstr ""
@@ -1194,10 +1184,6 @@ msgstr ""
1194
1184
  msgid "Array of strings representing paths of modified files."
1195
1185
  msgstr ""
1196
1186
 
1197
- #: ../lib/puppet/face/module/changes.rb:21
1198
- msgid "<path>"
1199
- msgstr ""
1200
-
1201
1187
  #: ../lib/puppet/face/module/changes.rb:27
1202
1188
  msgid "Could not find a valid module at %{path}"
1203
1189
  msgstr ""
@@ -1210,10 +1196,6 @@ msgstr ""
1210
1196
  msgid "%{count} files modified"
1211
1197
  msgstr ""
1212
1198
 
1213
- #: ../lib/puppet/face/module/generate.rb:3
1214
- msgid "Generate boilerplate for a new module."
1215
- msgstr ""
1216
-
1217
1199
  #: ../lib/puppet/face/module/install.rb:8
1218
1200
  msgid "Install a module from the Puppet Forge or a release archive."
1219
1201
  msgstr ""
@@ -1289,26 +1271,6 @@ msgstr ""
1289
1271
  msgid "invalid"
1290
1272
  msgstr ""
1291
1273
 
1292
- #: ../lib/puppet/face/module/search.rb:6
1293
- msgid "Search the Puppet Forge for a module."
1294
- msgstr ""
1295
-
1296
- #: ../lib/puppet/face/module/search.rb:14
1297
- msgid "Array of module metadata hashes"
1298
- msgstr ""
1299
-
1300
- #: ../lib/puppet/face/module/search.rb:24
1301
- msgid "<search_term>"
1302
- msgstr ""
1303
-
1304
- #: ../lib/puppet/face/module/search.rb:27
1305
- msgid "This action has been deprecated. Please use the Puppet Forge to search for modules."
1306
- msgstr ""
1307
-
1308
- #: ../lib/puppet/face/module/search.rb:37
1309
- msgid "No results found for '%{term}'."
1310
- msgstr ""
1311
-
1312
1274
  #: ../lib/puppet/face/module/uninstall.rb:3
1313
1275
  msgid "Uninstall a puppet module."
1314
1276
  msgstr ""
@@ -1400,19 +1362,19 @@ msgstr ""
1400
1362
  msgid "At least one node should be passed"
1401
1363
  msgstr ""
1402
1364
 
1403
- #: ../lib/puppet/face/node/clean.rb:64
1365
+ #: ../lib/puppet/face/node/clean.rb:72
1404
1366
  msgid "Not managing %{node} certs as this host is not a CA"
1405
1367
  msgstr ""
1406
1368
 
1407
- #: ../lib/puppet/face/node/clean.rb:71
1369
+ #: ../lib/puppet/face/node/clean.rb:79
1408
1370
  msgid "%{node}'s facts removed"
1409
1371
  msgstr ""
1410
1372
 
1411
- #: ../lib/puppet/face/node/clean.rb:77
1373
+ #: ../lib/puppet/face/node/clean.rb:85
1412
1374
  msgid "%{node}'s cached node removed"
1413
1375
  msgstr ""
1414
1376
 
1415
- #: ../lib/puppet/face/node/clean.rb:83
1377
+ #: ../lib/puppet/face/node/clean.rb:91
1416
1378
  msgid "%{node}'s reports removed"
1417
1379
  msgstr ""
1418
1380
 
@@ -1478,11 +1440,11 @@ msgid ""
1478
1440
  " the files downloaded, which will be empty if none were retrieved.\n"
1479
1441
  msgstr ""
1480
1442
 
1481
- #: ../lib/puppet/face/plugin.rb:57
1443
+ #: ../lib/puppet/face/plugin.rb:54
1482
1444
  msgid "No plugins downloaded."
1483
1445
  msgstr ""
1484
1446
 
1485
- #: ../lib/puppet/face/plugin.rb:59
1447
+ #: ../lib/puppet/face/plugin.rb:56
1486
1448
  msgid "Downloaded these plugins: %{plugins}"
1487
1449
  msgstr ""
1488
1450
 
@@ -1550,23 +1512,16 @@ msgstr ""
1550
1512
  msgid "The same resource object passed as an argument."
1551
1513
  msgstr ""
1552
1514
 
1553
- #: ../lib/puppet/face/status.rb:7
1554
- msgid "View puppet server status."
1555
- msgstr ""
1556
-
1557
- #: ../lib/puppet/face/status.rb:15
1558
- msgid "Check status of puppet master server."
1515
+ #: ../lib/puppet/feature/base.rb:19
1516
+ msgid "Cannot determine basic system flavour"
1559
1517
  msgstr ""
1560
1518
 
1561
- #. TRANSLATORS the string 'Puppet::Status' is a Puppet language object and should not be translated
1562
- #: ../lib/puppet/face/status.rb:17
1563
- msgid ""
1564
- " A \"true\" response or a low-level connection error. When used from the Ruby\n"
1565
- " API: returns a Puppet::Status object.\n"
1519
+ #: ../lib/puppet/ffi/windows/api_types.rb:86
1520
+ msgid "Unable to read wide strings with %{null_terminator} terminal nulls"
1566
1521
  msgstr ""
1567
1522
 
1568
- #: ../lib/puppet/feature/base.rb:19
1569
- msgid "Cannot determine basic system flavour"
1523
+ #: ../lib/puppet/ffi/windows/api_types.rb:231
1524
+ msgid "Bad GUID format."
1570
1525
  msgstr ""
1571
1526
 
1572
1527
  #: ../lib/puppet/file_bucket/dipper.rb:39
@@ -1638,7 +1593,7 @@ msgstr ""
1638
1593
  msgid "Cannot find file: Invalid relative path '%{path}'"
1639
1594
  msgstr ""
1640
1595
 
1641
- #: ../lib/puppet/file_serving/configuration.rb:109
1596
+ #: ../lib/puppet/file_serving/configuration.rb:104
1642
1597
  msgid "Error parsing fileserver configuration: %{detail}; using old configuration"
1643
1598
  msgstr ""
1644
1599
 
@@ -1654,31 +1609,23 @@ msgstr ""
1654
1609
  msgid "Fileserver configuration file does not use '=' as a separator"
1655
1610
  msgstr ""
1656
1611
 
1657
- #: ../lib/puppet/file_serving/configuration/parser.rb:41 ../lib/puppet/network/auth_config_parser.rb:72 ../lib/puppet/util/network_device/config.rb:101
1612
+ #: ../lib/puppet/file_serving/configuration/parser.rb:40 ../lib/puppet/util/network_device/config.rb:101
1658
1613
  msgid "Invalid argument '%{var}' at %{error_location}"
1659
1614
  msgstr ""
1660
1615
 
1661
- #: ../lib/puppet/file_serving/configuration/parser.rb:46
1616
+ #: ../lib/puppet/file_serving/configuration/parser.rb:45
1662
1617
  msgid "Invalid entry at %{error_location}: '%{file_text}'"
1663
1618
  msgstr ""
1664
1619
 
1665
- #: ../lib/puppet/file_serving/configuration/parser.rb:71
1666
- msgid "allowing %{val} access"
1667
- msgstr ""
1668
-
1669
- #: ../lib/puppet/file_serving/configuration/parser.rb:85
1670
- msgid "denying %{val} access"
1671
- msgstr ""
1672
-
1673
- #: ../lib/puppet/file_serving/configuration/parser.rb:99
1620
+ #: ../lib/puppet/file_serving/configuration/parser.rb:70
1674
1621
  msgid "%{mount} is already mounted at %{name} at %{error_location}"
1675
1622
  msgstr ""
1676
1623
 
1677
- #: ../lib/puppet/file_serving/configuration/parser.rb:124
1624
+ #: ../lib/puppet/file_serving/configuration/parser.rb:95
1678
1625
  msgid "Removing mount \"%{mount}\": %{detail}"
1679
1626
  msgstr ""
1680
1627
 
1681
- #: ../lib/puppet/file_serving/configuration/parser.rb:128
1628
+ #: ../lib/puppet/file_serving/configuration/parser.rb:99
1682
1629
  msgid "The '%{mount}' module can not have a path. Ignoring attempt to set it"
1683
1630
  msgstr ""
1684
1631
 
@@ -1736,7 +1683,7 @@ msgstr ""
1736
1683
  msgid "Cannot manage files of type %{file_type}"
1737
1684
  msgstr ""
1738
1685
 
1739
- #: ../lib/puppet/file_serving/mount.rb:21
1686
+ #: ../lib/puppet/file_serving/mount.rb:20
1740
1687
  msgid "Invalid mount name format '%{name}'"
1741
1688
  msgstr ""
1742
1689
 
@@ -2236,64 +2183,68 @@ msgstr ""
2236
2183
  msgid "Try the '--graph' option and opening the resulting '.dot' file in OmniGraffle or GraphViz"
2237
2184
  msgstr ""
2238
2185
 
2239
- #: ../lib/puppet/http/client.rb:90
2186
+ #: ../lib/puppet/http/client.rb:156
2240
2187
  msgid "Request to %{uri} timed out connect operation after %{elapsed} seconds"
2241
2188
  msgstr ""
2242
2189
 
2243
- #: ../lib/puppet/http/client.rb:92
2190
+ #: ../lib/puppet/http/client.rb:158
2244
2191
  msgid "Request to %{uri} timed out read operation after %{elapsed} seconds"
2245
2192
  msgstr ""
2246
2193
 
2247
- #: ../lib/puppet/http/client.rb:94
2194
+ #: ../lib/puppet/http/client.rb:160
2248
2195
  msgid "Request to %{uri} interrupted after %{elapsed} seconds"
2249
2196
  msgstr ""
2250
2197
 
2251
- #: ../lib/puppet/http/client.rb:100
2198
+ #: ../lib/puppet/http/client.rb:166
2252
2199
  msgid "Request to %{uri} failed after %{elapsed} seconds: %{message}"
2253
2200
  msgstr ""
2254
2201
 
2255
- #: ../lib/puppet/http/client.rb:326
2202
+ #: ../lib/puppet/http/client.rb:369
2256
2203
  msgid "Sleeping for %{interval} seconds before retrying the request"
2257
2204
  msgstr ""
2258
2205
 
2259
- #: ../lib/puppet/http/client.rb:369 ../lib/puppet/indirector/request.rb:142
2206
+ #: ../lib/puppet/http/client.rb:419
2260
2207
  msgid "HTTP REST queries cannot handle values of type '%{klass}'"
2261
2208
  msgstr ""
2262
2209
 
2263
- #: ../lib/puppet/http/errors.rb:23
2210
+ #: ../lib/puppet/http/errors.rb:37
2264
2211
  msgid "Too many HTTP redirections for %{addr}"
2265
2212
  msgstr ""
2266
2213
 
2267
- #: ../lib/puppet/http/errors.rb:29
2214
+ #: ../lib/puppet/http/errors.rb:45
2268
2215
  msgid "Too many HTTP retries for %{addr}"
2269
2216
  msgstr ""
2270
2217
 
2271
- #: ../lib/puppet/http/redirector.rb:78
2218
+ #: ../lib/puppet/http/pool.rb:84
2219
+ msgid "Failed to close connection for %{site}: %{detail}"
2220
+ msgstr ""
2221
+
2222
+ #: ../lib/puppet/http/redirector.rb:70
2272
2223
  msgid "Location response header is missing"
2273
2224
  msgstr ""
2274
2225
 
2275
- #: ../lib/puppet/http/redirector.rb:82
2226
+ #: ../lib/puppet/http/redirector.rb:74
2276
2227
  msgid "Location URI is invalid: %{detail}"
2277
2228
  msgstr ""
2278
2229
 
2279
- #: ../lib/puppet/http/retry_after_handler.rb:83
2230
+ #: ../lib/puppet/http/retry_after_handler.rb:74
2280
2231
  msgid "Failed to parse Retry-After header '%{retry_after}' as an integer or RFC 2822 date"
2281
2232
  msgstr ""
2282
2233
 
2283
- #: ../lib/puppet/http/service.rb:121
2234
+ #: ../lib/puppet/http/service.rb:107
2284
2235
  msgid "Ignoring extra header \"%{name}\" as it was previously set."
2285
2236
  msgstr ""
2286
2237
 
2287
- #: ../lib/puppet/http/service.rb:124
2238
+ #: ../lib/puppet/http/service.rb:110
2288
2239
  msgid "Ignoring extra header \"%{name}\" as it has no value."
2289
2240
  msgstr ""
2290
2241
 
2291
- #: ../lib/puppet/http/service.rb:147 ../lib/puppet/indirector/rest.rb:288
2242
+ #: ../lib/puppet/http/service.rb:133 ../lib/puppet/indirector/rest.rb:53
2292
2243
  msgid "No content type in http response; cannot parse"
2293
2244
  msgstr ""
2294
2245
 
2295
2246
  #. TRANSLATORS "pson", "preferred_serialization_format", and "puppetserver" should not be translated
2296
- #: ../lib/puppet/http/service/report.rb:61
2247
+ #: ../lib/puppet/http/service/report.rb:59
2297
2248
  msgid "To submit reports to a server running puppetserver %{server_version}, set preferred_serialization_format to pson"
2298
2249
  msgstr ""
2299
2250
 
@@ -2442,7 +2393,7 @@ msgstr ""
2442
2393
  msgid "Unable to serialize catalog to json, retrying with pson"
2443
2394
  msgstr ""
2444
2395
 
2445
- #: ../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
2396
+ #: ../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
2446
2397
  msgid "Find %{uri} resulted in 404 with the message: %{body}"
2447
2398
  msgstr ""
2448
2399
 
@@ -2534,7 +2485,11 @@ msgstr ""
2534
2485
  msgid "You cannot save facts to the code store; it is only used for getting facts from Facter"
2535
2486
  msgstr ""
2536
2487
 
2537
- #: ../lib/puppet/indirector/facts/facter.rb:56
2488
+ #: ../lib/puppet/indirector/facts/facter.rb:36
2489
+ msgid "puppet facts show requires version 4.0.40 or greater of Facter."
2490
+ msgstr ""
2491
+
2492
+ #: ../lib/puppet/indirector/facts/facter.rb:62
2538
2493
  msgid "Loading facts"
2539
2494
  msgstr ""
2540
2495
 
@@ -2546,7 +2501,7 @@ msgstr ""
2546
2501
  msgid "You cannot save facts to the code store; it is only used for getting facts from a remote device"
2547
2502
  msgstr ""
2548
2503
 
2549
- #: ../lib/puppet/indirector/facts/rest.rb:30 ../lib/puppet/indirector/rest.rb:198
2504
+ #: ../lib/puppet/indirector/facts/rest.rb:28
2550
2505
  msgid "PUT does not accept options"
2551
2506
  msgstr ""
2552
2507
 
@@ -2597,19 +2552,11 @@ msgstr ""
2597
2552
  msgid "Invalid checksum %{checksum}"
2598
2553
  msgstr ""
2599
2554
 
2600
- #: ../lib/puppet/indirector/file_content/http.rb:14
2601
- msgid "Puppet::Indirector::FileContent::Http is deprecated. Use Puppet::HTTP::Client instead."
2602
- msgstr ""
2603
-
2604
2555
  #: ../lib/puppet/indirector/file_metadata/http.rb:32
2605
2556
  msgid "cannot lookup multiple files"
2606
2557
  msgstr ""
2607
2558
 
2608
- #: ../lib/puppet/indirector/file_server.rb:25
2609
- 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."
2610
- msgstr ""
2611
-
2612
- #: ../lib/puppet/indirector/file_server.rb:49
2559
+ #: ../lib/puppet/indirector/file_server.rb:42
2613
2560
  msgid "Could not find filesystem info for file '%{request}' in environment %{env}"
2614
2561
  msgstr ""
2615
2562
 
@@ -2704,26 +2651,18 @@ msgstr ""
2704
2651
  msgid "directory traversal detected in %{json}: %{name}"
2705
2652
  msgstr ""
2706
2653
 
2707
- #: ../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
2654
+ #: ../lib/puppet/indirector/json.rb:41 ../lib/puppet/indirector/msgpack.rb:48 ../lib/puppet/indirector/yaml.rb:40
2708
2655
  msgid "invalid key"
2709
2656
  msgstr ""
2710
2657
 
2711
- #: ../lib/puppet/indirector/json.rb:58
2658
+ #: ../lib/puppet/indirector/json.rb:62
2712
2659
  msgid "Could not read JSON data for %{name} %{key}: %{detail}"
2713
2660
  msgstr ""
2714
2661
 
2715
- #: ../lib/puppet/indirector/json.rb:64
2662
+ #: ../lib/puppet/indirector/json.rb:68
2716
2663
  msgid "Could not parse JSON data for %{name} %{key}: %{detail}"
2717
2664
  msgstr ""
2718
2665
 
2719
- #: ../lib/puppet/indirector/key/file.rb:29
2720
- msgid "Could not remove %{request} public key: %{detail}"
2721
- msgstr ""
2722
-
2723
- #: ../lib/puppet/indirector/key/file.rb:43
2724
- msgid "Could not write %{request}: %{detail}"
2725
- msgstr ""
2726
-
2727
2666
  #: ../lib/puppet/indirector/memory.rb:14
2728
2667
  msgid "Could not find %{request} to destroy"
2729
2668
  msgstr ""
@@ -2740,7 +2679,7 @@ msgstr ""
2740
2679
  msgid "Could not destroy %{name} %{request}: %{detail}"
2741
2680
  msgstr ""
2742
2681
 
2743
- #: ../lib/puppet/indirector/msgpack.rb:47 ../lib/puppet/indirector/ssl_file.rb:39 ../lib/puppet/indirector/yaml.rb:39
2682
+ #: ../lib/puppet/indirector/msgpack.rb:47 ../lib/puppet/indirector/yaml.rb:39
2744
2683
  msgid "directory traversal detected in %{indirection}: %{name}"
2745
2684
  msgstr ""
2746
2685
 
@@ -2769,55 +2708,31 @@ msgstr ""
2769
2708
  msgid "Could not load external node results for %{name}: %{detail}"
2770
2709
  msgstr ""
2771
2710
 
2772
- #: ../lib/puppet/indirector/report/processor.rb:39
2773
- msgid "Report %{report} failed: %{detail}"
2774
- msgstr ""
2775
-
2776
- #: ../lib/puppet/indirector/report/processor.rb:56
2777
- msgid "No report named '%{name}'"
2778
- msgstr ""
2779
-
2780
- #: ../lib/puppet/indirector/report/rest.rb:36
2781
- msgid "Server version %{version} does not accept reports in '%{format}', use `preferred_serialization_format=pson`"
2782
- msgstr ""
2783
-
2784
- #: ../lib/puppet/indirector/report/yaml.rb:19
2711
+ #: ../lib/puppet/indirector/report/json.rb:19 ../lib/puppet/indirector/report/yaml.rb:19
2785
2712
  msgid "replace_file mode: %{mode} is invalid"
2786
2713
  msgstr ""
2787
2714
 
2788
- #: ../lib/puppet/indirector/report/yaml.rb:31 ../lib/puppet/indirector/yaml.rb:32
2715
+ #: ../lib/puppet/indirector/report/json.rb:31 ../lib/puppet/indirector/report/yaml.rb:31 ../lib/puppet/indirector/yaml.rb:32
2789
2716
  msgid "Could not save %{indirection} %{request}: %{detail}"
2790
2717
  msgstr ""
2791
2718
 
2792
- #: ../lib/puppet/indirector/request.rb:103
2793
- msgid "Could not find indirection '%{indirection}'"
2794
- msgstr ""
2795
-
2796
- #: ../lib/puppet/indirector/request.rb:202
2797
- msgid "Error connecting to %{srv_server}:%{srv_port}: %{message}"
2798
- msgstr ""
2799
-
2800
- #. TRANSLATORS 'server_list' is the name of a setting and should not be translated
2801
- #: ../lib/puppet/indirector/request.rb:214
2802
- msgid "Selected server from first entry of the `server_list` setting: %{server}"
2719
+ #: ../lib/puppet/indirector/report/processor.rb:39
2720
+ msgid "Report %{report} failed: %{detail}"
2803
2721
  msgstr ""
2804
2722
 
2805
- #. TRANSLATORS 'server' is the name of a setting and should not be translated
2806
- #: ../lib/puppet/indirector/request.rb:218
2807
- msgid "Selected server from the `server` setting: %{server}"
2723
+ #: ../lib/puppet/indirector/report/processor.rb:56
2724
+ msgid "No report named '%{name}'"
2808
2725
  msgstr ""
2809
2726
 
2810
- #. TRANSLATORS 'server_list' is the name of a setting and should not be translated
2811
- #: ../lib/puppet/indirector/request.rb:231
2812
- msgid "Selected port from the first entry of the `server_list` setting: %{port}"
2727
+ #: ../lib/puppet/indirector/report/rest.rb:31
2728
+ msgid "Server version %{version} does not accept reports in '%{format}', use `preferred_serialization_format=pson`"
2813
2729
  msgstr ""
2814
2730
 
2815
- #. TRANSLATORS 'serverport' is the name of a setting and should not be translated
2816
- #: ../lib/puppet/indirector/request.rb:235
2817
- msgid "Selected port from the `serverport` setting: %{port}"
2731
+ #: ../lib/puppet/indirector/request.rb:102
2732
+ msgid "Could not find indirection '%{indirection}'"
2818
2733
  msgstr ""
2819
2734
 
2820
- #: ../lib/puppet/indirector/request.rb:266
2735
+ #: ../lib/puppet/indirector/request.rb:165
2821
2736
  msgid "Could not understand URL %{key}: %{detail}"
2822
2737
  msgstr ""
2823
2738
 
@@ -2829,75 +2744,10 @@ msgstr ""
2829
2744
  msgid "Resource instance does not match request key"
2830
2745
  msgstr ""
2831
2746
 
2832
- #: ../lib/puppet/indirector/rest.rb:115
2833
- msgid "Puppet::Indirector::Rest#find is deprecated. Use Puppet::HTTP::Client instead."
2834
- msgstr ""
2835
-
2836
- #: ../lib/puppet/indirector/rest.rb:154
2837
- msgid "Puppet::Indirector::Rest#head is deprecated. Use Puppet::HTTP::Client instead."
2838
- msgstr ""
2839
-
2840
- #: ../lib/puppet/indirector/rest.rb:167
2841
- msgid "Puppet::Indirector::Rest#search is deprecated. Use Puppet::HTTP::Client instead."
2842
- msgstr ""
2843
-
2844
- #: ../lib/puppet/indirector/rest.rb:181
2845
- msgid "Puppet::Indirector::Rest#destroy is deprecated. Use Puppet::HTTP::Client instead."
2846
- msgstr ""
2847
-
2848
- #: ../lib/puppet/indirector/rest.rb:182
2849
- msgid "DELETE does not accept options"
2850
- msgstr ""
2851
-
2852
- #: ../lib/puppet/indirector/rest.rb:197
2853
- msgid "Puppet::Indirector::Rest#save is deprecated. Use Puppet::HTTP::Client instead."
2854
- msgstr ""
2855
-
2856
- #. TRANSLATORS "PSON" should not be translated
2857
- #: ../lib/puppet/indirector/rest.rb:235
2858
- msgid "Downgrading to PSON for future requests"
2859
- msgstr ""
2860
-
2861
- #: ../lib/puppet/indirector/rest.rb:277 ../lib/puppet/rest/response.rb:31
2747
+ #: ../lib/puppet/indirector/rest.rb:43
2862
2748
  msgid "Error %{code} on SERVER: %{returned_message}"
2863
2749
  msgstr ""
2864
2750
 
2865
- #: ../lib/puppet/indirector/ssl_file.rb:34
2866
- msgid "No file or directory setting provided; terminus %{class_name} cannot function"
2867
- msgstr ""
2868
-
2869
- #: ../lib/puppet/indirector/ssl_file.rb:55
2870
- msgid "Removing file %{model} %{request} at '%{path}'"
2871
- msgstr ""
2872
-
2873
- #: ../lib/puppet/indirector/ssl_file.rb:59
2874
- msgid "Could not remove %{request}: %{detail}"
2875
- msgstr ""
2876
-
2877
- #: ../lib/puppet/indirector/ssl_file.rb:75
2878
- msgid "Cannot save %{request}; parent directory %{dir} does not exist"
2879
- msgstr ""
2880
-
2881
- #: ../lib/puppet/indirector/ssl_file.rb:76
2882
- msgid "Cannot save %{request}; parent directory %{dir} is not writable"
2883
- msgstr ""
2884
-
2885
- #: ../lib/puppet/indirector/ssl_file.rb:121
2886
- msgid "Tried to fix SSL files to a file containing uppercase"
2887
- msgstr ""
2888
-
2889
- #: ../lib/puppet/indirector/ssl_file.rb:130
2890
- msgid "Automatic downcasing and renaming of ssl files is deprecated; please request the file using its correct case: %{full_file}"
2891
- msgstr ""
2892
-
2893
- #: ../lib/puppet/indirector/ssl_file.rb:150
2894
- msgid "Could not write %{path} to %{setting}: %{detail}"
2895
- msgstr ""
2896
-
2897
- #: ../lib/puppet/indirector/ssl_file.rb:153
2898
- msgid "You must provide a setting to determine where the files are stored"
2899
- msgstr ""
2900
-
2901
2751
  #: ../lib/puppet/indirector/terminus.rb:37
2902
2752
  msgid "Could not find indirection instance %{name} for %{terminus}"
2903
2753
  msgstr ""
@@ -2987,8 +2837,8 @@ msgstr ""
2987
2837
  msgid "Option %{option} conflicts with existing option %{conflict} on %{face}"
2988
2838
  msgstr ""
2989
2839
 
2990
- #. TRANSLATORS 'Puppet.settings' should not be translated
2991
2840
  #. TRANSLATORS 'Puppet.settings' references to the Puppet settings options and should not be translated
2841
+ #. TRANSLATORS 'Puppet.settings' should not be translated
2992
2842
  #: ../lib/puppet/interface/action.rb:315 ../lib/puppet/interface/option_manager.rb:14
2993
2843
  msgid "Global option %{option} does not exist in Puppet.settings"
2994
2844
  msgstr ""
@@ -3344,18 +3194,14 @@ msgstr ""
3344
3194
  msgid "Resolving dependencies ..."
3345
3195
  msgstr ""
3346
3196
 
3347
- #: ../lib/puppet/module_tool/applications/installer.rb:162
3197
+ #: ../lib/puppet/module_tool/applications/installer.rb:208
3348
3198
  msgid "Preparing to install ..."
3349
3199
  msgstr ""
3350
3200
 
3351
- #: ../lib/puppet/module_tool/applications/installer.rb:165
3201
+ #: ../lib/puppet/module_tool/applications/installer.rb:211
3352
3202
  msgid "Installing -- do not interrupt ..."
3353
3203
  msgstr ""
3354
3204
 
3355
- #: ../lib/puppet/module_tool/applications/searcher.rb:15
3356
- msgid "Searching %{host} ..."
3357
- msgstr ""
3358
-
3359
3205
  #: ../lib/puppet/module_tool/applications/uninstaller.rb:92
3360
3206
  msgid "Either the `--ignore_changes` or `--force` argument must be specified to uninstall modules when running in FIPS mode."
3361
3207
  msgstr ""
@@ -3392,7 +3238,7 @@ msgstr ""
3392
3238
  msgid "'%{module_name}' (%{version}) requested; '%{module_name}' (%{installed_version}) already installed"
3393
3239
  msgstr ""
3394
3240
 
3395
- #: ../lib/puppet/module_tool/errors/installer.rb:16 ../lib/puppet/module_tool/errors/installer.rb:54 ../lib/puppet/module_tool/errors/installer.rb:72 ../lib/puppet/module_tool/errors/shared.rb:64 ../lib/puppet/module_tool/errors/shared.rb:106
3241
+ #: ../lib/puppet/module_tool/errors/installer.rb:16 ../lib/puppet/module_tool/errors/installer.rb:54 ../lib/puppet/module_tool/errors/installer.rb:72 ../lib/puppet/module_tool/errors/shared.rb:79 ../lib/puppet/module_tool/errors/shared.rb:121
3396
3242
  msgid "Could not install module '%{module_name}' (%{version})"
3397
3243
  msgstr ""
3398
3244
 
@@ -3422,7 +3268,7 @@ msgstr ""
3422
3268
  msgid "Could not install '%{requested_package}'"
3423
3269
  msgstr ""
3424
3270
 
3425
- #: ../lib/puppet/module_tool/errors/installer.rb:38 ../lib/puppet/module_tool/errors/shared.rb:43
3271
+ #: ../lib/puppet/module_tool/errors/installer.rb:38 ../lib/puppet/module_tool/errors/shared.rb:58
3426
3272
  msgid " No releases are available from %{source}"
3427
3273
  msgstr ""
3428
3274
 
@@ -3467,150 +3313,162 @@ msgstr ""
3467
3313
  msgid " Package attempted to install file into %{path} under %{directory}."
3468
3314
  msgstr ""
3469
3315
 
3470
- #: ../lib/puppet/module_tool/errors/shared.rb:11
3316
+ #: ../lib/puppet/module_tool/errors/shared.rb:12
3471
3317
  msgid "Could not %{action} '%{module_name}' (%{version}); no version satisfies all dependencies"
3472
3318
  msgstr ""
3473
3319
 
3474
- #: ../lib/puppet/module_tool/errors/shared.rb:16 ../lib/puppet/module_tool/errors/shared.rb:171 ../lib/puppet/module_tool/errors/upgrader.rb:58
3320
+ #: ../lib/puppet/module_tool/errors/shared.rb:17 ../lib/puppet/module_tool/errors/shared.rb:186 ../lib/puppet/module_tool/errors/upgrader.rb:58
3475
3321
  msgid "Could not %{action} module '%{module_name}' (%{version})"
3476
3322
  msgstr ""
3477
3323
 
3478
- #: ../lib/puppet/module_tool/errors/shared.rb:17
3479
- msgid " No version of '%{module_name}' can satisfy all dependencies"
3324
+ #: ../lib/puppet/module_tool/errors/shared.rb:20
3325
+ msgid " The requested version cannot satisfy one or more of the following installed modules:"
3326
+ msgstr ""
3327
+
3328
+ #: ../lib/puppet/module_tool/errors/shared.rb:22
3329
+ msgid " %{name}, installed: %{current_version}, expected: %{constraints}"
3330
+ msgstr ""
3331
+
3332
+ #: ../lib/puppet/module_tool/errors/shared.rb:25
3333
+ msgid " %{mod}, expects '%{name}': %{range}"
3334
+ msgstr ""
3335
+
3336
+ #: ../lib/puppet/module_tool/errors/shared.rb:30
3337
+ msgid " The requested version cannot satisfy all dependencies"
3480
3338
  msgstr ""
3481
3339
 
3482
3340
  #. TRANSLATORS `puppet module %{action} --ignore-dependencies` is a command line and should not be translated
3483
- #: ../lib/puppet/module_tool/errors/shared.rb:19
3484
- msgid " Use `puppet module %{action} --ignore-dependencies` to %{action} only this module"
3341
+ #: ../lib/puppet/module_tool/errors/shared.rb:34
3342
+ msgid " Use `puppet module %{action} '%{module_name}' --ignore-dependencies` to %{action} only this module"
3485
3343
  msgstr ""
3486
3344
 
3487
- #: ../lib/puppet/module_tool/errors/shared.rb:33
3345
+ #: ../lib/puppet/module_tool/errors/shared.rb:48
3488
3346
  msgid "Could not %{action} '%{module_name}'; no releases are available from %{source}"
3489
3347
  msgstr ""
3490
3348
 
3491
- #: ../lib/puppet/module_tool/errors/shared.rb:35
3349
+ #: ../lib/puppet/module_tool/errors/shared.rb:50
3492
3350
  msgid "Could not %{action} '%{module_name}'; no releases matching '%{version}' are available from %{source}"
3493
3351
  msgstr ""
3494
3352
 
3495
- #: ../lib/puppet/module_tool/errors/shared.rb:41
3353
+ #: ../lib/puppet/module_tool/errors/shared.rb:56
3496
3354
  msgid "Could not %{action} '%{module_name}' (%{version})"
3497
3355
  msgstr ""
3498
3356
 
3499
- #: ../lib/puppet/module_tool/errors/shared.rb:44
3357
+ #: ../lib/puppet/module_tool/errors/shared.rb:59
3500
3358
  msgid " Does '%{module_name}' have at least one published release?"
3501
3359
  msgstr ""
3502
3360
 
3503
- #: ../lib/puppet/module_tool/errors/shared.rb:46
3361
+ #: ../lib/puppet/module_tool/errors/shared.rb:61
3504
3362
  msgid " No releases matching '%{requested_version}' are available from %{source}"
3505
3363
  msgstr ""
3506
3364
 
3507
- #: ../lib/puppet/module_tool/errors/shared.rb:59
3365
+ #: ../lib/puppet/module_tool/errors/shared.rb:74
3508
3366
  msgid "'%{module_name}' (%{version}) requested; installation conflict"
3509
3367
  msgstr ""
3510
3368
 
3511
- #: ../lib/puppet/module_tool/errors/shared.rb:67
3369
+ #: ../lib/puppet/module_tool/errors/shared.rb:82
3512
3370
  msgid " Dependency '%{name}' (%{version}) would overwrite %{directory}"
3513
3371
  msgstr ""
3514
3372
 
3515
- #: ../lib/puppet/module_tool/errors/shared.rb:69
3373
+ #: ../lib/puppet/module_tool/errors/shared.rb:84
3516
3374
  msgid " Installation would overwrite %{directory}"
3517
3375
  msgstr ""
3518
3376
 
3519
- #: ../lib/puppet/module_tool/errors/shared.rb:73
3377
+ #: ../lib/puppet/module_tool/errors/shared.rb:88
3520
3378
  msgid " Currently, '%{current_name}' (%{current_version}) is installed to that directory"
3521
3379
  msgstr ""
3522
3380
 
3523
3381
  #. TRANSLATORS `puppet module install --ignore-dependencies` is a command line and should not be translated
3524
- #: ../lib/puppet/module_tool/errors/shared.rb:78
3382
+ #: ../lib/puppet/module_tool/errors/shared.rb:93
3525
3383
  msgid " Use `puppet module install --ignore-dependencies` to install only this module"
3526
3384
  msgstr ""
3527
3385
 
3528
3386
  #. TRANSLATORS `puppet module install --force` is a command line and should not be translated
3529
3387
  #. TRANSLATORS `puppet module install --force` is a command line and should not be translated
3530
- #: ../lib/puppet/module_tool/errors/shared.rb:81 ../lib/puppet/module_tool/errors/shared.rb:110
3388
+ #: ../lib/puppet/module_tool/errors/shared.rb:96 ../lib/puppet/module_tool/errors/shared.rb:125
3531
3389
  msgid " Use `puppet module install --force` to install this module anyway"
3532
3390
  msgstr ""
3533
3391
 
3534
- #: ../lib/puppet/module_tool/errors/shared.rb:95
3392
+ #: ../lib/puppet/module_tool/errors/shared.rb:110
3535
3393
  msgid "'%{module_name}' (%{version}) requested; Invalid dependency cycle"
3536
3394
  msgstr ""
3537
3395
 
3538
- #: ../lib/puppet/module_tool/errors/shared.rb:100
3396
+ #: ../lib/puppet/module_tool/errors/shared.rb:115
3539
3397
  msgid "You specified '%{name}' (%{version})"
3540
3398
  msgstr ""
3541
3399
 
3542
3400
  #. TRANSLATORS This message repeats as separate lines as a list under the heading "You specified '%{name}' (%{version})\n"
3543
- #: ../lib/puppet/module_tool/errors/shared.rb:103
3401
+ #: ../lib/puppet/module_tool/errors/shared.rb:118
3544
3402
  msgid "This depends on '%{name}' (%{version})"
3545
3403
  msgstr ""
3546
3404
 
3547
- #: ../lib/puppet/module_tool/errors/shared.rb:107
3405
+ #: ../lib/puppet/module_tool/errors/shared.rb:122
3548
3406
  msgid " No version of '%{module_name}' will satisfy dependencies"
3549
3407
  msgstr ""
3550
3408
 
3551
- #: ../lib/puppet/module_tool/errors/shared.rb:120
3409
+ #: ../lib/puppet/module_tool/errors/shared.rb:135
3552
3410
  msgid "Could not %{action} '%{module_name}'; module is not installed"
3553
3411
  msgstr ""
3554
3412
 
3555
- #: ../lib/puppet/module_tool/errors/shared.rb:125 ../lib/puppet/module_tool/errors/shared.rb:148 ../lib/puppet/module_tool/errors/shared.rb:189
3413
+ #: ../lib/puppet/module_tool/errors/shared.rb:140 ../lib/puppet/module_tool/errors/shared.rb:163 ../lib/puppet/module_tool/errors/shared.rb:204
3556
3414
  msgid "Could not %{action} module '%{module_name}'"
3557
3415
  msgstr ""
3558
3416
 
3559
- #: ../lib/puppet/module_tool/errors/shared.rb:126
3417
+ #: ../lib/puppet/module_tool/errors/shared.rb:141
3560
3418
  msgid " Module '%{module_name}' is not installed"
3561
3419
  msgstr ""
3562
3420
 
3563
3421
  #. TRANSLATORS `puppet module %{action} %{suggestion}` is a command line and should not be translated
3564
- #: ../lib/puppet/module_tool/errors/shared.rb:129
3422
+ #: ../lib/puppet/module_tool/errors/shared.rb:144
3565
3423
  msgid " You may have meant `puppet module %{action} %{suggestion}`"
3566
3424
  msgstr ""
3567
3425
 
3568
3426
  #. TRANSLATORS `puppet module install` is a command line and should not be translated
3569
- #: ../lib/puppet/module_tool/errors/shared.rb:132
3427
+ #: ../lib/puppet/module_tool/errors/shared.rb:147
3570
3428
  msgid " Use `puppet module install` to install this module"
3571
3429
  msgstr ""
3572
3430
 
3573
3431
  #. TRANSLATORS "module path" refers to a set of directories where modules may be installed
3574
- #: ../lib/puppet/module_tool/errors/shared.rb:143
3432
+ #: ../lib/puppet/module_tool/errors/shared.rb:158
3575
3433
  msgid "Could not %{action} '%{module_name}'; module appears in multiple places in the module path"
3576
3434
  msgstr ""
3577
3435
 
3578
- #: ../lib/puppet/module_tool/errors/shared.rb:149
3436
+ #: ../lib/puppet/module_tool/errors/shared.rb:164
3579
3437
  msgid " Module '%{module_name}' appears multiple places in the module path"
3580
3438
  msgstr ""
3581
3439
 
3582
3440
  #. TRANSLATORS This is repeats as separate lines as a list under "Module '%{module_name}' appears multiple places in the module path"
3583
- #: ../lib/puppet/module_tool/errors/shared.rb:152
3441
+ #: ../lib/puppet/module_tool/errors/shared.rb:167
3584
3442
  msgid " '%{module_name}' (%{version}) was found in %{path}"
3585
3443
  msgstr ""
3586
3444
 
3587
3445
  #. TRANSLATORS `--modulepath` is command line option and should not be translated
3588
- #: ../lib/puppet/module_tool/errors/shared.rb:155
3446
+ #: ../lib/puppet/module_tool/errors/shared.rb:170
3589
3447
  msgid " Use the `--modulepath` option to limit the search to specific directories"
3590
3448
  msgstr ""
3591
3449
 
3592
- #: ../lib/puppet/module_tool/errors/shared.rb:166
3450
+ #: ../lib/puppet/module_tool/errors/shared.rb:181
3593
3451
  msgid "Could not %{action} '%{module_name}'; module has had changes made locally"
3594
3452
  msgstr ""
3595
3453
 
3596
- #: ../lib/puppet/module_tool/errors/shared.rb:172
3454
+ #: ../lib/puppet/module_tool/errors/shared.rb:187
3597
3455
  msgid " Installed module has had changes made locally"
3598
3456
  msgstr ""
3599
3457
 
3600
3458
  #. TRANSLATORS `puppet module %{action} --ignore-changes` is a command line and should not be translated
3601
- #: ../lib/puppet/module_tool/errors/shared.rb:174
3459
+ #: ../lib/puppet/module_tool/errors/shared.rb:189
3602
3460
  msgid " Use `puppet module %{action} --ignore-changes` to %{action} this module anyway"
3603
3461
  msgstr ""
3604
3462
 
3605
- #: ../lib/puppet/module_tool/errors/shared.rb:184
3463
+ #: ../lib/puppet/module_tool/errors/shared.rb:199
3606
3464
  msgid "Could not %{action} '%{module_name}'; %{error}"
3607
3465
  msgstr ""
3608
3466
 
3609
- #: ../lib/puppet/module_tool/errors/shared.rb:190
3467
+ #: ../lib/puppet/module_tool/errors/shared.rb:205
3610
3468
  msgid " Failure trying to parse metadata"
3611
3469
  msgstr ""
3612
3470
 
3613
- #: ../lib/puppet/module_tool/errors/shared.rb:191
3471
+ #: ../lib/puppet/module_tool/errors/shared.rb:206
3614
3472
  msgid " Original message was: %{message}"
3615
3473
  msgstr ""
3616
3474
 
@@ -3765,67 +3623,6 @@ msgstr ""
3765
3623
  msgid "No suitable tar implementation found"
3766
3624
  msgstr ""
3767
3625
 
3768
- #. TRANSLATORS "path" is a configuration file entry and should not be translated
3769
- #: ../lib/puppet/network/auth_config_parser.rb:32
3770
- msgid "Missing or invalid 'path' before right directive at %{error_location}"
3771
- msgstr ""
3772
-
3773
- #: ../lib/puppet/network/auth_config_parser.rb:38 ../lib/puppet/util/network_device/config.rb:71
3774
- msgid "Invalid entry at %{error_location}: %{file_text}"
3775
- msgstr ""
3776
-
3777
- #: ../lib/puppet/network/auth_config_parser.rb:57
3778
- msgid "allowing %{value} access"
3779
- msgstr ""
3780
-
3781
- #: ../lib/puppet/network/auth_config_parser.rb:59
3782
- msgid "denying %{value} access"
3783
- msgstr ""
3784
-
3785
- #: ../lib/puppet/network/auth_config_parser.rb:61
3786
- msgid "allowing IP %{value} access"
3787
- msgstr ""
3788
-
3789
- #: ../lib/puppet/network/auth_config_parser.rb:63
3790
- msgid "denying IP %{value} access"
3791
- msgstr ""
3792
-
3793
- #: ../lib/puppet/network/auth_config_parser.rb:65
3794
- msgid "allowing 'method' %{value}"
3795
- msgstr ""
3796
-
3797
- #: ../lib/puppet/network/auth_config_parser.rb:67
3798
- msgid "adding environment %{value}"
3799
- msgstr ""
3800
-
3801
- #: ../lib/puppet/network/auth_config_parser.rb:69
3802
- msgid "adding authentication %{value}"
3803
- msgstr ""
3804
-
3805
- #: ../lib/puppet/network/authconfig.rb:41
3806
- msgid "Inserting default '%{acl}' (auth %{auth}) ACL"
3807
- msgstr ""
3808
-
3809
- #: ../lib/puppet/network/authconfig.rb:71
3810
- msgid "Denying access: %{authorization_failure_exception}"
3811
- msgstr ""
3812
-
3813
- #: ../lib/puppet/network/authstore.rb:22
3814
- msgid "Name and IP must be passed to 'allowed?'"
3815
- msgstr ""
3816
-
3817
- #: ../lib/puppet/network/authstore.rb:37
3818
- msgid "defaulting to no access for %{name}"
3819
- msgstr ""
3820
-
3821
- #: ../lib/puppet/network/authstore.rb:190
3822
- msgid "Invalid declaration type %{type}"
3823
- msgstr ""
3824
-
3825
- #: ../lib/puppet/network/authstore.rb:258
3826
- msgid "Invalid IP pattern %{value}"
3827
- msgstr ""
3828
-
3829
3626
  #: ../lib/puppet/network/client_request.rb:15
3830
3627
  msgid "Request is not set up; cannot build call"
3831
3628
  msgstr ""
@@ -3879,77 +3676,77 @@ msgstr ""
3879
3676
  msgid "Serialized YAML did not contain a valid instance of %{klass}"
3880
3677
  msgstr ""
3881
3678
 
3882
- #: ../lib/puppet/network/http/api/indirected_routes.rb:43
3679
+ #: ../lib/puppet/network/http/api/indirected_routes.rb:42
3883
3680
  msgid "No handler for %{indirection}"
3884
3681
  msgstr ""
3885
3682
 
3886
- #: ../lib/puppet/network/http/api/indirected_routes.rb:66
3683
+ #: ../lib/puppet/network/http/api/indirected_routes.rb:65
3887
3684
  msgid "The indirection name must be purely alphanumeric, not '%{indirection_name}'"
3888
3685
  msgstr ""
3889
3686
 
3890
- #: ../lib/puppet/network/http/api/indirected_routes.rb:76
3687
+ #: ../lib/puppet/network/http/api/indirected_routes.rb:75
3891
3688
  msgid "Indirection '%{indirection_name}' does not match url prefix '%{url_prefix}'"
3892
3689
  msgstr ""
3893
3690
 
3894
- #: ../lib/puppet/network/http/api/indirected_routes.rb:82
3691
+ #: ../lib/puppet/network/http/api/indirected_routes.rb:81
3895
3692
  msgid "Could not find indirection '%{indirection_name}'"
3896
3693
  msgstr ""
3897
3694
 
3898
- #: ../lib/puppet/network/http/api/indirected_routes.rb:88
3695
+ #: ../lib/puppet/network/http/api/indirected_routes.rb:87
3899
3696
  msgid "An environment parameter must be specified"
3900
3697
  msgstr ""
3901
3698
 
3902
- #: ../lib/puppet/network/http/api/indirected_routes.rb:93
3699
+ #: ../lib/puppet/network/http/api/indirected_routes.rb:92
3903
3700
  msgid "The environment must be purely alphanumeric, not '%{environment}'"
3904
3701
  msgstr ""
3905
3702
 
3906
- #: ../lib/puppet/network/http/api/indirected_routes.rb:110
3703
+ #: ../lib/puppet/network/http/api/indirected_routes.rb:103
3907
3704
  msgid "Could not find environment '%{environment}'"
3908
3705
  msgstr ""
3909
3706
 
3910
- #: ../lib/puppet/network/http/api/indirected_routes.rb:117
3707
+ #: ../lib/puppet/network/http/api/indirected_routes.rb:110
3911
3708
  msgid "No request key specified in %{uri}"
3912
3709
  msgstr ""
3913
3710
 
3914
- #: ../lib/puppet/network/http/api/indirected_routes.rb:140
3711
+ #: ../lib/puppet/network/http/api/indirected_routes.rb:122
3915
3712
  msgid "Could not find %{value0} %{key}"
3916
3713
  msgstr ""
3917
3714
 
3918
- #: ../lib/puppet/network/http/api/indirected_routes.rb:147
3715
+ #: ../lib/puppet/network/http/api/indirected_routes.rb:129
3919
3716
  msgid "Rendered result in %{format}"
3920
3717
  msgstr ""
3921
3718
 
3922
- #: ../lib/puppet/network/http/api/indirected_routes.rb:153
3719
+ #: ../lib/puppet/network/http/api/indirected_routes.rb:135
3923
3720
  msgid "Sent response"
3924
3721
  msgstr ""
3925
3722
 
3926
- #: ../lib/puppet/network/http/api/indirected_routes.rb:161
3723
+ #: ../lib/puppet/network/http/api/indirected_routes.rb:143
3927
3724
  msgid "Could not find %{indirection} %{key}"
3928
3725
  msgstr ""
3929
3726
 
3930
- #: ../lib/puppet/network/http/api/indirected_routes.rb:173
3727
+ #: ../lib/puppet/network/http/api/indirected_routes.rb:155
3931
3728
  msgid "Could not find instances in %{indirection} with '%{key}'"
3932
3729
  msgstr ""
3933
3730
 
3934
- #: ../lib/puppet/network/http/api/indirected_routes.rb:221 ../lib/puppet/network/http/request.rb:61
3731
+ #: ../lib/puppet/network/http/api/indirected_routes.rb:203 ../lib/puppet/network/http/request.rb:61
3935
3732
  msgid "No supported formats are acceptable (Accept: %{accepted_formats})"
3936
3733
  msgstr ""
3937
3734
 
3938
- #: ../lib/puppet/network/http/api/indirected_routes.rb:246
3735
+ #: ../lib/puppet/network/http/api/indirected_routes.rb:228
3939
3736
  msgid "The request body is invalid: %{message}"
3940
3737
  msgstr ""
3941
3738
 
3942
3739
  #. TRANSLATORS "mime-type" is a keyword and should not be translated
3943
3740
  #. TRANSLATORS "mime-type" is a keyword and should not be translated
3944
- #: ../lib/puppet/network/http/api/indirected_routes.rb:252 ../lib/puppet/network/http/request.rb:32
3741
+ #: ../lib/puppet/network/http/api/indirected_routes.rb:234 ../lib/puppet/network/http/request.rb:32
3945
3742
  msgid "Client sent a mime-type (%{header}) that doesn't correspond to a format we support"
3946
3743
  msgstr ""
3947
3744
 
3948
- #: ../lib/puppet/network/http/api/indirected_routes.rb:258
3745
+ #: ../lib/puppet/network/http/api/indirected_routes.rb:240
3949
3746
  msgid "No support for http method %{http_method}"
3950
3747
  msgstr ""
3951
3748
 
3952
- #: ../lib/puppet/network/http/api/indirected_routes.rb:263
3749
+ #: ../lib/puppet/network/http/api/indirected_routes.rb:245
3953
3750
  msgid "No support for plurality %{indirection} for %{http_method} operations"
3954
3751
  msgstr ""
3955
3752
 
@@ -3957,92 +3754,18 @@ msgstr ""
3957
3754
  msgid "Not a valid indirection type"
3958
3755
  msgstr ""
3959
3756
 
3960
- #: ../lib/puppet/network/http/api/master/v3/environment.rb:14
3961
- msgid "%{env_name} is not a known environment"
3962
- msgstr ""
3963
-
3964
- #: ../lib/puppet/network/http/api/master/v3/environment.rb:43
3965
- msgid "Application %{application} assigns nodes to non-existent components: %{component_list}"
3966
- msgstr ""
3967
-
3968
- #: ../lib/puppet/network/http/api/master/v3/environment.rb:49
3969
- msgid "Application %{application} has components without assigned nodes: %{component_list}"
3970
- msgstr ""
3971
-
3972
- #: ../lib/puppet/network/http/api/master/v3/environment.rb:58
3973
- msgid "Application %{app} assigns multiple nodes to component %{comp}"
3974
- msgstr ""
3975
-
3976
- #: ../lib/puppet/network/http/compression.rb:23 ../lib/puppet/network/http/compression.rb:27
3977
- msgid "Puppet::Network::HTTP::Compression::Active#uncompress_body is deprecated."
3978
- msgstr ""
3979
-
3980
- #: ../lib/puppet/network/http/compression.rb:32 ../lib/puppet/network/http/compression.rb:46
3981
- msgid "Unknown content encoding - %{encoding}"
3982
- msgstr ""
3983
-
3984
- #: ../lib/puppet/network/http/compression.rb:37
3985
- msgid "Puppet::Network::HTTP::Compression::Active#uncompress is deprecated."
3986
- msgstr ""
3987
-
3988
- #: ../lib/puppet/network/http/compression.rb:77
3989
- msgid "Puppet::Network::HTTP::Compression::ZlibAdapter#uncompress is deprecated."
3990
- msgstr ""
3991
-
3992
- #: ../lib/puppet/network/http/compression.rb:104
3993
- msgid "Puppet::Network::HTTP::Compression::None#uncompress_body is deprecated."
3994
- msgstr ""
3995
-
3996
- #: ../lib/puppet/network/http/compression.rb:113
3997
- msgid "Puppet::Network::HTTP::Compression::None#uncompress is deprecated."
3998
- msgstr ""
3999
-
4000
- #: ../lib/puppet/network/http/compression.rb:120
4001
- msgid "Puppet::Network::HTTP::Compression::IdentityAdapter#uncompress is deprecated."
4002
- msgstr ""
4003
-
4004
- #: ../lib/puppet/network/http/connection.rb:56
3757
+ #: ../lib/puppet/network/http/connection.rb:47
4005
3758
  msgid "Unrecognized option(s): %{opts}"
4006
3759
  msgstr ""
4007
3760
 
4008
- #: ../lib/puppet/network/http/connection.rb:63
3761
+ #: ../lib/puppet/network/http/connection.rb:53
4009
3762
  msgid "Expected an instance of Puppet::SSL::Verifier but was passed a %{klass}"
4010
3763
  msgstr ""
4011
3764
 
4012
- #: ../lib/puppet/network/http/connection.rb:229 ../lib/puppet/network/http/connection_adapter.rb:174
3765
+ #: ../lib/puppet/network/http/connection.rb:276
4013
3766
  msgid "Too many HTTP redirections for %{host}:%{port}"
4014
3767
  msgstr ""
4015
3768
 
4016
- #. TRANSLATORS: Used in the phrase:
4017
- #. "Received a response from the remote server."
4018
- #: ../lib/puppet/network/http/connection.rb:259
4019
- msgid "the remote server"
4020
- msgstr ""
4021
-
4022
- #: ../lib/puppet/network/http/connection.rb:263
4023
- 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."
4024
- msgstr ""
4025
-
4026
- #: ../lib/puppet/network/http/connection.rb:274
4027
- msgid "Received a %{status_code} response from %{server_hostname}. Sleeping for %{retry_sleep} seconds before retrying the request."
4028
- msgstr ""
4029
-
4030
- #: ../lib/puppet/network/http/connection.rb:335
4031
- msgid "request %{uri} interrupted after %{elapsed} seconds"
4032
- msgstr ""
4033
-
4034
- #: ../lib/puppet/network/http/connection.rb:337
4035
- msgid "request %{uri} timed out after %{elapsed} seconds"
4036
- msgstr ""
4037
-
4038
- #: ../lib/puppet/network/http/connection.rb:339
4039
- msgid "request %{uri} failed: %{msg}"
4040
- msgstr ""
4041
-
4042
- #: ../lib/puppet/network/http/connection.rb:346
4043
- msgid "Puppet::Network::HTTP::Connection is deprecated. Please use Puppet::Network::HTTP::ConnectionAdapter instead."
4044
- msgstr ""
4045
-
4046
3769
  #: ../lib/puppet/network/http/error.rb:23
4047
3770
  msgid "Not Acceptable: %{message}"
4048
3771
  msgstr ""
@@ -4071,30 +3794,22 @@ msgstr ""
4071
3794
  msgid "Server Error: %{message}"
4072
3795
  msgstr ""
4073
3796
 
4074
- #: ../lib/puppet/network/http/handler.rb:23
3797
+ #: ../lib/puppet/network/http/handler.rb:22
4075
3798
  msgid "Given multiple routes with identical path regexes: %{regexes}"
4076
3799
  msgstr ""
4077
3800
 
4078
- #: ../lib/puppet/network/http/handler.rb:67
3801
+ #: ../lib/puppet/network/http/handler.rb:66
4079
3802
  msgid "Processed request %{request_method} %{request_path}"
4080
3803
  msgstr ""
4081
3804
 
4082
- #: ../lib/puppet/network/http/handler.rb:113
3805
+ #: ../lib/puppet/network/http/handler.rb:112
4083
3806
  msgid "No route for %{request} %{path}"
4084
3807
  msgstr ""
4085
3808
 
4086
- #: ../lib/puppet/network/http/handler.rb:138
3809
+ #: ../lib/puppet/network/http/handler.rb:137
4087
3810
  msgid "Could not resolve %{ip}: %{detail}"
4088
3811
  msgstr ""
4089
3812
 
4090
- #: ../lib/puppet/network/http/nocache_pool.rb:6
4091
- msgid "Puppet::Network::HTTP::NoCachePool is deprecated."
4092
- msgstr ""
4093
-
4094
- #: ../lib/puppet/network/http/pool.rb:66
4095
- msgid "Failed to close connection for %{site}: %{detail}"
4096
- msgstr ""
4097
-
4098
3813
  #: ../lib/puppet/network/http/request.rb:14
4099
3814
  msgid "Unknown arguments: %{args}"
4100
3815
  msgstr ""
@@ -4108,39 +3823,15 @@ msgid "Missing required Accept header"
4108
3823
  msgstr ""
4109
3824
 
4110
3825
  #. TRANSLATORS 'ssl_context' is an argument and should not be translated
4111
- #: ../lib/puppet/network/http_pool.rb:81
3826
+ #: ../lib/puppet/network/http_pool.rb:63
4112
3827
  msgid "An ssl_context is required when connecting to 'https://%{host}:%{port}'"
4113
3828
  msgstr ""
4114
3829
 
4115
3830
  #. TRANSLATORS 'ssl_context' is an argument and should not be translated
4116
- #: ../lib/puppet/network/http_pool.rb:89
3831
+ #: ../lib/puppet/network/http_pool.rb:71
4117
3832
  msgid "An ssl_context is unnecessary when connecting to 'http://%{host}:%{port}' and will be ignored"
4118
3833
  msgstr ""
4119
3834
 
4120
- #: ../lib/puppet/network/rights.rb:59
4121
- msgid "Forbidden request: %{msg}"
4122
- msgstr ""
4123
-
4124
- #: ../lib/puppet/network/rights.rb:127
4125
- msgid "Unknown right type '%{name}'"
4126
- msgstr ""
4127
-
4128
- #: ../lib/puppet/network/rights.rb:169
4129
- msgid "'%{m}' is not an allowed value for method directive"
4130
- msgstr ""
4131
-
4132
- #: ../lib/puppet/network/rights.rb:176
4133
- msgid "'%{m}' is already in the '%{name}' ACL"
4134
- msgstr ""
4135
-
4136
- #: ../lib/puppet/network/rights.rb:183
4137
- msgid "'%{env}' is already in the '%{name}' ACL"
4138
- msgstr ""
4139
-
4140
- #: ../lib/puppet/network/rights.rb:195
4141
- msgid "'%{name}' incorrect authenticated value: %{authentication}"
4142
- msgstr ""
4143
-
4144
3835
  #: ../lib/puppet/node.rb:27
4145
3836
  msgid "No name provided in serialized data"
4146
3837
  msgstr ""
@@ -4157,11 +3848,7 @@ msgstr ""
4157
3848
  msgid "The node parameter '%{param_name}' for node '%{node_name}' was already set to '%{value}'. It could not be set to '%{desired_value}'"
4158
3849
  msgstr ""
4159
3850
 
4160
- #: ../lib/puppet/node.rb:198
4161
- msgid "Host is missing hostname and/or domain: %{name}"
4162
- msgstr ""
4163
-
4164
- #: ../lib/puppet/node.rb:230
3851
+ #: ../lib/puppet/node.rb:201
4165
3852
  msgid "Trusted node data modified for node %{name}"
4166
3853
  msgstr ""
4167
3854
 
@@ -4195,60 +3882,60 @@ msgid "Given data_type value is not a data type, got '%{type}'"
4195
3882
  msgstr ""
4196
3883
 
4197
3884
  #. TRANSLATORS 'type' and 'title' are internal parameter names - do not translate
4198
- #: ../lib/puppet/pal/json_catalog_encoder.rb:52
3885
+ #: ../lib/puppet/pal/json_catalog_encoder.rb:54
4199
3886
  msgid "Both type and title must be given"
4200
3887
  msgstr ""
4201
3888
 
4202
3889
  #. TRANSLATORS: do not translate the variable names in this error message
4203
3890
  #. TRANSLATORS: do not translate the variable names in this error message
4204
- #: ../lib/puppet/pal/pal_impl.rb:75 ../lib/puppet/pal/pal_impl.rb:173
3891
+ #: ../lib/puppet/pal/pal_impl.rb:76 ../lib/puppet/pal/pal_impl.rb:182
4205
3892
  msgid "manifest_file or code_string cannot be given when configured_by_env is true"
4206
3893
  msgstr ""
4207
3894
 
4208
- #: ../lib/puppet/pal/pal_impl.rb:221
3895
+ #: ../lib/puppet/pal/pal_impl.rb:238
4209
3896
  msgid "temporary environment name"
4210
3897
  msgstr ""
4211
3898
 
4212
3899
  #. TRANSLATORS: do not translate variable name string in these assertions
4213
- #: ../lib/puppet/pal/pal_impl.rb:226
3900
+ #: ../lib/puppet/pal/pal_impl.rb:243
4214
3901
  msgid "A block must be given to 'in_tmp_environment'"
4215
3902
  msgstr ""
4216
3903
 
4217
3904
  #. TRANSLATORS terms in the assertions below are names of terms in code
4218
- #: ../lib/puppet/pal/pal_impl.rb:280
3905
+ #: ../lib/puppet/pal/pal_impl.rb:298
4219
3906
  msgid "A block must be given to 'in_environment'"
4220
3907
  msgstr ""
4221
3908
 
4222
3909
  #. TRANSLATORS 'in_environment' is a name, do not translate
4223
- #: ../lib/puppet/pal/pal_impl.rb:285
3910
+ #: ../lib/puppet/pal/pal_impl.rb:303
4224
3911
  msgid "The environment directory '%{env_dir}' does not exist"
4225
3912
  msgstr ""
4226
3913
 
4227
- #: ../lib/puppet/pal/pal_impl.rb:308
3914
+ #: ../lib/puppet/pal/pal_impl.rb:326
4228
3915
  msgid "No directory found for the environment '%{env_name}' on the path '%{envpath}'"
4229
3916
  msgstr ""
4230
3917
 
4231
- #: ../lib/puppet/pal/pal_impl.rb:362
3918
+ #: ../lib/puppet/pal/pal_impl.rb:380
4232
3919
  msgid "Given variables must be a hash, got %{type}"
4233
3920
  msgstr ""
4234
3921
 
4235
- #: ../lib/puppet/pal/pal_impl.rb:368
3922
+ #: ../lib/puppet/pal/pal_impl.rb:386
4236
3923
  msgid "Given variable '%{varname}' has illegal name"
4237
3924
  msgstr ""
4238
3925
 
4239
- #: ../lib/puppet/pal/pal_impl.rb:372
3926
+ #: ../lib/puppet/pal/pal_impl.rb:390
4240
3927
  msgid "Given value for '%{varname}' has illegal type - got: %{type}"
4241
3928
  msgstr ""
4242
3929
 
4243
- #: ../lib/puppet/pal/pal_impl.rb:509
3930
+ #: ../lib/puppet/pal/pal_impl.rb:564
4244
3931
  msgid "Puppet Pal: %{what}"
4245
3932
  msgstr ""
4246
3933
 
4247
- #: ../lib/puppet/pal/pal_impl.rb:523
3934
+ #: ../lib/puppet/pal/pal_impl.rb:578
4248
3935
  msgid "Cannot use '%{a_term}' and '%{b_term}' at the same time"
4249
3936
  msgstr ""
4250
3937
 
4251
- #: ../lib/puppet/pal/pal_impl.rb:530
3938
+ #: ../lib/puppet/pal/pal_impl.rb:585
4252
3939
  msgid "A block must be given"
4253
3940
  msgstr ""
4254
3941
 
@@ -4313,7 +4000,7 @@ msgstr ""
4313
4000
  msgid "Node inheritance is removed in Puppet 4.0.0. See http://links.puppet.com/puppet-node-inheritance-deprecation"
4314
4001
  msgstr ""
4315
4002
 
4316
- #: ../lib/puppet/parser/ast/pops_bridge.rb:186
4003
+ #: ../lib/puppet/parser/ast/pops_bridge.rb:180
4317
4004
  msgid "Instantiating Resource with type checked parameters - scope is missing, skipping type checking."
4318
4005
  msgstr ""
4319
4006
 
@@ -4338,209 +4025,100 @@ msgid "For more information, see https://puppet.com/docs/puppet/latest/environme
4338
4025
  msgstr ""
4339
4026
 
4340
4027
  #. TRANSLATORS "stage" is a keyword in Puppet and should not be translated
4341
- #: ../lib/puppet/parser/compiler.rb:98 ../lib/puppet/parser/environment_compiler.rb:137
4028
+ #: ../lib/puppet/parser/compiler.rb:82
4342
4029
  msgid "Only classes can set 'stage'; normal resources like %{resource} cannot change run stage"
4343
4030
  msgstr ""
4344
4031
 
4345
- #. TRANSLATORS "Site" is a puppet keyword and should not be translated
4346
- #: ../lib/puppet/parser/compiler.rb:125
4347
- msgid "Application instances like '%{resource}' can only be contained within a Site"
4348
- msgstr ""
4349
-
4350
- #: ../lib/puppet/parser/compiler.rb:155
4032
+ #: ../lib/puppet/parser/compiler.rb:123
4351
4033
  msgid "For compiling %{node}"
4352
4034
  msgstr ""
4353
4035
 
4354
- #: ../lib/puppet/parser/compiler.rb:159
4036
+ #: ../lib/puppet/parser/compiler.rb:127
4355
4037
  msgid "Compile: Set node parameters"
4356
4038
  msgstr ""
4357
4039
 
4358
- #: ../lib/puppet/parser/compiler.rb:161
4040
+ #: ../lib/puppet/parser/compiler.rb:129
4359
4041
  msgid "Compile: Created settings scope"
4360
4042
  msgstr ""
4361
4043
 
4362
- #: ../lib/puppet/parser/compiler.rb:163
4363
- msgid "Compile: Evaluated capability mappings"
4364
- msgstr ""
4365
-
4366
4044
  #. TRANSLATORS "main" is a function name and should not be translated
4367
- #: ../lib/puppet/parser/compiler.rb:166
4045
+ #: ../lib/puppet/parser/compiler.rb:132
4368
4046
  msgid "Compile: Evaluated main"
4369
4047
  msgstr ""
4370
4048
 
4371
- #: ../lib/puppet/parser/compiler.rb:168
4372
- msgid "Compile: Evaluated site"
4373
- msgstr ""
4374
-
4375
- #: ../lib/puppet/parser/compiler.rb:170
4049
+ #: ../lib/puppet/parser/compiler.rb:134
4376
4050
  msgid "Compile: Evaluated AST node"
4377
4051
  msgstr ""
4378
4052
 
4379
- #: ../lib/puppet/parser/compiler.rb:172
4053
+ #: ../lib/puppet/parser/compiler.rb:136
4380
4054
  msgid "Compile: Evaluated node classes"
4381
4055
  msgstr ""
4382
4056
 
4383
- #: ../lib/puppet/parser/compiler.rb:174
4384
- msgid "Compile: Evaluated application instances"
4385
- msgstr ""
4386
-
4387
- #: ../lib/puppet/parser/compiler.rb:177
4388
- msgid "Compile: Evaluated site capability mappings"
4389
- msgstr ""
4390
-
4391
- #: ../lib/puppet/parser/compiler.rb:179
4057
+ #: ../lib/puppet/parser/compiler.rb:138
4392
4058
  msgid "Compile: Evaluated generators"
4393
4059
  msgstr ""
4394
4060
 
4395
- #: ../lib/puppet/parser/compiler.rb:181
4061
+ #: ../lib/puppet/parser/compiler.rb:140
4396
4062
  msgid "Compile: Validate Catalog pre-finish"
4397
4063
  msgstr ""
4398
4064
 
4399
- #: ../lib/puppet/parser/compiler.rb:185
4065
+ #: ../lib/puppet/parser/compiler.rb:144
4400
4066
  msgid "Compile: Finished catalog"
4401
4067
  msgstr ""
4402
4068
 
4403
- #: ../lib/puppet/parser/compiler.rb:187
4404
- msgid "Compile: Prune"
4405
- msgstr ""
4406
-
4407
- #: ../lib/puppet/parser/compiler.rb:191
4069
+ #: ../lib/puppet/parser/compiler.rb:148
4408
4070
  msgid "Compile: Validate Catalog final"
4409
4071
  msgstr ""
4410
4072
 
4411
- #: ../lib/puppet/parser/compiler.rb:321
4412
- msgid "Invalid node mapping in %{app}: Mapping must be a hash"
4413
- msgstr ""
4414
-
4415
- #: ../lib/puppet/parser/compiler.rb:324
4416
- msgid "Invalid node mapping in %{app}: Key %{k} is not a Node"
4417
- msgstr ""
4418
-
4419
- #: ../lib/puppet/parser/compiler.rb:327
4420
- msgid "Invalid node mapping in %{app}: Value %{res} is not a resource"
4421
- msgstr ""
4422
-
4423
- #: ../lib/puppet/parser/compiler.rb:328
4424
- msgid "Application %{app} maps component %{res} to multiple nodes"
4425
- msgstr ""
4426
-
4427
- #: ../lib/puppet/parser/compiler.rb:367
4073
+ #: ../lib/puppet/parser/compiler.rb:218
4428
4074
  msgid "Could not find node statement with name 'default' or '%{names}'"
4429
4075
  msgstr ""
4430
4076
 
4431
- #: ../lib/puppet/parser/compiler.rb:385
4077
+ #: ../lib/puppet/parser/compiler.rb:236
4432
4078
  msgid "No source for scope passed to evaluate_classes"
4433
4079
  msgstr ""
4434
4080
 
4435
- #: ../lib/puppet/parser/compiler.rb:401
4081
+ #: ../lib/puppet/parser/compiler.rb:246
4436
4082
  msgid "Could not find class %{name} for %{node}"
4437
4083
  msgstr ""
4438
4084
 
4439
- #: ../lib/puppet/parser/compiler.rb:503
4440
- msgid "Capability mapping error: %{kind} clause references nonexistent %{component_type} %{component_name}"
4441
- msgstr ""
4442
-
4443
- #: ../lib/puppet/parser/compiler.rb:526
4085
+ #: ../lib/puppet/parser/compiler.rb:328
4444
4086
  msgid "Evaluated collections"
4445
4087
  msgstr ""
4446
4088
 
4447
- #: ../lib/puppet/parser/compiler.rb:541
4089
+ #: ../lib/puppet/parser/compiler.rb:343
4448
4090
  msgid "Evaluated definitions"
4449
4091
  msgstr ""
4450
4092
 
4451
- #: ../lib/puppet/parser/compiler.rb:570
4093
+ #: ../lib/puppet/parser/compiler.rb:372
4452
4094
  msgid "Iterated (%{count}) on generators"
4453
4095
  msgstr ""
4454
4096
 
4455
- #: ../lib/puppet/parser/compiler.rb:581
4097
+ #: ../lib/puppet/parser/compiler.rb:383
4456
4098
  msgid "Somehow looped more than 1000 times while evaluating host catalog"
4457
4099
  msgstr ""
4458
4100
 
4459
- #: ../lib/puppet/parser/compiler.rb:613
4101
+ #: ../lib/puppet/parser/compiler.rb:415
4460
4102
  msgid "Could not find resource(s) %{resources} for overriding"
4461
4103
  msgstr ""
4462
4104
 
4463
- #: ../lib/puppet/parser/compiler.rb:624
4105
+ #: ../lib/puppet/parser/compiler.rb:426
4464
4106
  msgid "Failed to realize virtual resources %{resources}"
4465
4107
  msgstr ""
4466
4108
 
4467
4109
  #. TRANSLATORS "main" is a function name and should not be translated
4468
- #: ../lib/puppet/parser/compiler.rb:657
4110
+ #: ../lib/puppet/parser/compiler.rb:459
4469
4111
  msgid "Couldn't find main"
4470
4112
  msgstr ""
4471
4113
 
4472
- #: ../lib/puppet/parser/compiler.rb:730
4114
+ #: ../lib/puppet/parser/compiler.rb:532
4473
4115
  msgid "For initializing compiler"
4474
4116
  msgstr ""
4475
4117
 
4476
- #: ../lib/puppet/parser/compiler/catalog_validator/env_relationship_validator.rb:19
4477
- msgid "Capability '%{cap}' referenced by '%{param}' is never exported"
4478
- msgstr ""
4479
-
4480
- #: ../lib/puppet/parser/compiler/catalog_validator/env_relationship_validator.rb:58
4481
- msgid "'%{value}' is exported by both '%{hash}' and '%{resource}'"
4482
- msgstr ""
4483
-
4484
- #: ../lib/puppet/parser/compiler/catalog_validator/relationship_validator.rb:27
4485
- msgid "'%{param}' is not a valid relationship to a capability"
4486
- msgstr ""
4487
-
4488
- #: ../lib/puppet/parser/compiler/catalog_validator/relationship_validator.rb:43
4118
+ #: ../lib/puppet/parser/compiler/catalog_validator/relationship_validator.rb:31
4489
4119
  msgid "Could not find resource '%{res}' in parameter '%{param}'"
4490
4120
  msgstr ""
4491
4121
 
4492
- #: ../lib/puppet/parser/compiler/catalog_validator/site_validator.rb:16
4493
- msgid "Only application components can appear inside a site - %{res} is not allowed"
4494
- msgstr ""
4495
-
4496
- #: ../lib/puppet/parser/environment_compiler.rb:13
4497
- msgid "%{detail} in environment %{env}"
4498
- msgstr ""
4499
-
4500
- #: ../lib/puppet/parser/environment_compiler.rb:62
4501
- msgid "For compiling environment catalog %{env}"
4502
- msgstr ""
4503
-
4504
- #: ../lib/puppet/parser/environment_compiler.rb:65
4505
- msgid "Env Compile: Created settings scope"
4506
- msgstr ""
4507
-
4508
- #: ../lib/puppet/parser/environment_compiler.rb:67
4509
- msgid "Env Compile: Evaluated main"
4510
- msgstr ""
4511
-
4512
- #: ../lib/puppet/parser/environment_compiler.rb:69
4513
- msgid "Env Compile: Evaluated site"
4514
- msgstr ""
4515
-
4516
- #: ../lib/puppet/parser/environment_compiler.rb:71
4517
- msgid "Env Compile: Evaluated application instances"
4518
- msgstr ""
4519
-
4520
- #: ../lib/puppet/parser/environment_compiler.rb:73
4521
- msgid "Env Compile: Prune"
4522
- msgstr ""
4523
-
4524
- #: ../lib/puppet/parser/environment_compiler.rb:75
4525
- msgid "Env Compile: Validate Catalog pre-finish"
4526
- msgstr ""
4527
-
4528
- #: ../lib/puppet/parser/environment_compiler.rb:79
4529
- msgid "Env Compile: Finished catalog"
4530
- msgstr ""
4531
-
4532
- #: ../lib/puppet/parser/environment_compiler.rb:83
4533
- msgid "Env Compile: Validate Catalog final"
4534
- msgstr ""
4535
-
4536
- #: ../lib/puppet/parser/environment_compiler.rb:159
4537
- msgid "Environment Compiler: Could not find a site definition to evaluate"
4538
- msgstr ""
4539
-
4540
- #: ../lib/puppet/parser/environment_compiler.rb:165
4541
- msgid "Evaluated application %{resource}"
4542
- msgstr ""
4543
-
4544
4122
  #: ../lib/puppet/parser/functions.rb:43
4545
4123
  msgid "The method 'Puppet::Parser::Functions.autoloader#loadall' is deprecated in favor of using 'Scope#call_function'."
4546
4124
  msgstr ""
@@ -4675,55 +4253,35 @@ msgstr ""
4675
4253
  msgid "Resources require a scope"
4676
4254
  msgstr ""
4677
4255
 
4678
- #: ../lib/puppet/parser/resource.rb:168
4256
+ #: ../lib/puppet/parser/resource.rb:159
4679
4257
  msgid "Only subclasses can override parameters"
4680
4258
  msgstr ""
4681
4259
 
4682
- #: ../lib/puppet/parser/resource.rb:174
4260
+ #: ../lib/puppet/parser/resource.rb:165
4683
4261
  msgid "Attempt to override an already evaluated resource with new values"
4684
4262
  msgstr ""
4685
4263
 
4686
- #: ../lib/puppet/parser/resource.rb:176
4264
+ #: ../lib/puppet/parser/resource.rb:167
4687
4265
  msgid "Attempt to override an already evaluated resource, defined at %{error_location}, with new values"
4688
4266
  msgstr ""
4689
4267
 
4690
- #: ../lib/puppet/parser/resource.rb:273
4691
- msgid "Invalid consume in %{value0}: %{ref} is not a resource"
4692
- msgstr ""
4693
-
4694
- #: ../lib/puppet/parser/resource.rb:280
4695
- msgid "Resource %{ref} could not be found; it might not have been produced yet"
4696
- msgstr ""
4697
-
4698
- #: ../lib/puppet/parser/resource.rb:284
4699
- msgid "Invalid consume in %{ref}: %{cap} is not a capability resource"
4700
- msgstr ""
4701
-
4702
- #: ../lib/puppet/parser/resource.rb:293
4703
- msgid "Resource %{res} tries to consume %{cns} but no 'consumes' mapping exists for %{resource_type} and %{cns_type}"
4704
- msgstr ""
4705
-
4706
- #: ../lib/puppet/parser/resource.rb:313
4707
- msgid "Attempt to reassign attribute '%{name}' in '%{resource}' caused by multiple consumed mappings to the same attribute"
4708
- msgstr ""
4709
-
4710
- #: ../lib/puppet/parser/resource.rb:365
4268
+ #: ../lib/puppet/parser/resource.rb:296
4711
4269
  msgid "Parameter '%{name}' is already set on %{resource}; cannot redefine"
4712
4270
  msgstr ""
4713
4271
 
4714
- #: ../lib/puppet/parser/resource.rb:368
4272
+ #: ../lib/puppet/parser/resource.rb:299
4715
4273
  msgid "Parameter '%{name}' is already set on %{resource} at %{error_location}; cannot redefine"
4716
4274
  msgstr ""
4717
4275
 
4718
- #: ../lib/puppet/parser/resource.rb:373
4276
+ #: ../lib/puppet/parser/resource.rb:304
4719
4277
  msgid "Parameter '%{name}' is already set on %{resource} by %{source}; cannot redefine"
4720
4278
  msgstr ""
4721
4279
 
4722
- #: ../lib/puppet/parser/resource.rb:376
4280
+ #: ../lib/puppet/parser/resource.rb:307
4723
4281
  msgid "Parameter '%{name}' is already set on %{resource} by %{source} at %{error_location}; cannot redefine"
4724
4282
  msgstr ""
4725
4283
 
4726
- #: ../lib/puppet/parser/resource.rb:415
4284
+ #: ../lib/puppet/parser/resource.rb:346
4727
4285
  msgid "Duplicate parameter '%{param}' for on %{resource}"
4728
4286
  msgstr ""
4729
4287
 
@@ -4961,23 +4519,23 @@ msgstr ""
4961
4519
  msgid "multi var assignment from class"
4962
4520
  msgstr ""
4963
4521
 
4964
- #: ../lib/puppet/pops/evaluator/evaluator_impl.rb:742
4522
+ #: ../lib/puppet/pops/evaluator/evaluator_impl.rb:761
4965
4523
  msgid "break() from context where this is illegal"
4966
4524
  msgstr ""
4967
4525
 
4968
- #: ../lib/puppet/pops/evaluator/evaluator_impl.rb:1222
4526
+ #: ../lib/puppet/pops/evaluator/evaluator_impl.rb:1236
4969
4527
  msgid "Can only append Array or Hash to a Hash"
4970
4528
  msgstr ""
4971
4529
 
4972
- #: ../lib/puppet/pops/evaluator/evaluator_impl.rb:1226
4530
+ #: ../lib/puppet/pops/evaluator/evaluator_impl.rb:1240
4973
4531
  msgid "An URI can only be merged with an URI or String"
4974
4532
  msgstr ""
4975
4533
 
4976
- #: ../lib/puppet/pops/evaluator/evaluator_impl.rb:1229
4534
+ #: ../lib/puppet/pops/evaluator/evaluator_impl.rb:1243
4977
4535
  msgid "Can only append Binary to a Binary"
4978
4536
  msgstr ""
4979
4537
 
4980
- #: ../lib/puppet/pops/evaluator/evaluator_impl.rb:1262
4538
+ #: ../lib/puppet/pops/evaluator/evaluator_impl.rb:1276
4981
4539
  msgid "Can only delete from an Array or Hash."
4982
4540
  msgstr ""
4983
4541
 
@@ -5749,10 +5307,6 @@ msgstr ""
5749
5307
  msgid "Failed to load: %{type_name}"
5750
5308
  msgstr ""
5751
5309
 
5752
- #: ../lib/puppet/pops/issues.rb:925
5753
- msgid "Use of the application-orchestration %{expr} is deprecated. See https://puppet.com/docs/puppet/5.5/deprecated_language.html"
5754
- msgstr ""
5755
-
5756
5310
  #: ../lib/puppet/pops/label_provider.rb:76
5757
5311
  msgid "<%{string}> does not appear to contain a word"
5758
5312
  msgstr ""
@@ -5875,21 +5429,21 @@ msgstr ""
5875
5429
  msgid "The code loaded from %{source_ref} did not produce a Function class when evaluated. Got '%{klass}'"
5876
5430
  msgstr ""
5877
5431
 
5878
- #: ../lib/puppet/pops/loader/ruby_legacy_function_instantiator.rb:24
5432
+ #: ../lib/puppet/pops/loader/ruby_legacy_function_instantiator.rb:23
5879
5433
  msgid "The code loaded from %{source_ref} does not seem to be a Puppet 3x API function - no 'newfunction' call."
5880
5434
  msgstr ""
5881
5435
 
5882
5436
  #. TRANSLATORS - the word 'newfunction' should not be translated as it is a method name.
5883
- #: ../lib/puppet/pops/loader/ruby_legacy_function_instantiator.rb:47
5437
+ #: ../lib/puppet/pops/loader/ruby_legacy_function_instantiator.rb:45
5884
5438
  msgid "Illegal legacy function definition! The code loaded from %{source_ref} did not return the result of calling 'newfunction'. Got '%{klass}'"
5885
5439
  msgstr ""
5886
5440
 
5887
- #: ../lib/puppet/pops/loader/ruby_legacy_function_instantiator.rb:50
5441
+ #: ../lib/puppet/pops/loader/ruby_legacy_function_instantiator.rb:48
5888
5442
  msgid "The code loaded from %{source_ref} produced mis-matched name, expected 'function_%{type_name}', got '%{created_name}'"
5889
5443
  msgstr ""
5890
5444
 
5891
- #: ../lib/puppet/pops/loader/ruby_legacy_function_instantiator.rb:94
5892
- msgid "Illegal method definition of method '%{method_name}' on line %{line}' in legacy function. See %{url} for more information"
5445
+ #: ../lib/puppet/pops/loader/ruby_legacy_function_instantiator.rb:92
5446
+ msgid "Illegal method definition of method '%{method_name}' on line %{line} in legacy function. See %{url} for more information"
5893
5447
  msgstr ""
5894
5448
 
5895
5449
  #: ../lib/puppet/pops/loader/task_instantiator.rb:22
@@ -6091,19 +5645,19 @@ msgid "Unacceptable transform - found an Object without a rule: %{klass}"
6091
5645
  msgstr ""
6092
5646
 
6093
5647
  #. TRANSLATORS 'NUMBER' refers to a method name and the 'name_or_numeric' was the passed in value and should not be translated
6094
- #: ../lib/puppet/pops/model/factory.rb:849
5648
+ #: ../lib/puppet/pops/model/factory.rb:812
6095
5649
  msgid "Internal Error, NUMBER token does not contain a valid number, %{name_or_numeric}"
6096
5650
  msgstr ""
6097
5651
 
6098
- #: ../lib/puppet/pops/model/factory.rb:1166
5652
+ #: ../lib/puppet/pops/model/factory.rb:1121
6099
5653
  msgid "can only concatenate strings, got %{class_name}"
6100
5654
  msgstr ""
6101
5655
 
6102
- #: ../lib/puppet/pops/parser/parser_support.rb:204
5656
+ #: ../lib/puppet/pops/parser/parser_support.rb:199
6103
5657
  msgid "attempt to pass argument list to the function '%{name}' which cannot be called without parentheses"
6104
5658
  msgstr ""
6105
5659
 
6106
- #: ../lib/puppet/pops/parser/parser_support.rb:206
5660
+ #: ../lib/puppet/pops/parser/parser_support.rb:201
6107
5661
  msgid "illegal comma separated argument list"
6108
5662
  msgstr ""
6109
5663
 
@@ -6143,7 +5697,7 @@ msgstr ""
6143
5697
  msgid "digit expected"
6144
5698
  msgstr ""
6145
5699
 
6146
- #: ../lib/puppet/pops/resource/resource_type_impl.rb:167 ../lib/puppet/type.rb:444
5700
+ #: ../lib/puppet/pops/resource/resource_type_impl.rb:165 ../lib/puppet/type.rb:421
6147
5701
  msgid "you must specify title patterns when there are two or more key attributes"
6148
5702
  msgstr ""
6149
5703
 
@@ -6268,10 +5822,6 @@ msgstr ""
6268
5822
  msgid "%{klass} cannot be subtracted from a Timestamp"
6269
5823
  msgstr ""
6270
5824
 
6271
- #: ../lib/puppet/pops/types/enumeration.rb:7 ../lib/puppet/pops/types/enumeration.rb:12
6272
- msgid "Enumeration.enumerator is deprecated. Use Iterable.on instead"
6273
- msgstr ""
6274
-
6275
5825
  #: ../lib/puppet/pops/types/p_binary_type.rb:77
6276
5826
  msgid "The given string in encoding '%{enc}' is invalid. Cannot create a Binary UTF-8 representation"
6277
5827
  msgstr ""
@@ -6385,10 +5935,6 @@ msgstr ""
6385
5935
  msgid "Options 'include_containers' and 'include_values' cannot both be false"
6386
5936
  msgstr ""
6387
5937
 
6388
- #: ../lib/puppet/pops/types/type_calculator.rb:187
6389
- msgid "TypeCalculator.enumerable is deprecated. Use iterable"
6390
- msgstr ""
6391
-
6392
5938
  #. TRANSLATORS 'TypeFactory#string' is a class and method name and should not be translated
6393
5939
  #: ../lib/puppet/pops/types/type_factory.rb:117
6394
5940
  msgid "Passing more than one argument to TypeFactory#string is deprecated"
@@ -6403,85 +5949,85 @@ msgstr ""
6403
5949
  msgid "Everything is now reported using present tense"
6404
5950
  msgstr ""
6405
5951
 
6406
- #: ../lib/puppet/pops/types/type_parser.rb:429
5952
+ #: ../lib/puppet/pops/types/type_parser.rb:425
6407
5953
  msgid "Enum parameters must be identifiers or strings"
6408
5954
  msgstr ""
6409
5955
 
6410
- #: ../lib/puppet/pops/types/type_parser.rb:665
5956
+ #: ../lib/puppet/pops/types/type_parser.rb:661
6411
5957
  msgid "The expression <%{expression}> is not a valid type specification."
6412
5958
  msgstr ""
6413
5959
 
6414
- #: ../lib/puppet/pops/types/type_parser.rb:670
5960
+ #: ../lib/puppet/pops/types/type_parser.rb:666
6415
5961
  msgid "Invalid number of type parameters specified: %{type} requires %{required}, %{given} provided"
6416
5962
  msgstr ""
6417
5963
 
6418
- #: ../lib/puppet/pops/types/type_parser.rb:675
5964
+ #: ../lib/puppet/pops/types/type_parser.rb:671
6419
5965
  msgid "Not a parameterized type <%{type}>"
6420
5966
  msgstr ""
6421
5967
 
6422
- #: ../lib/puppet/pops/types/type_parser.rb:679
5968
+ #: ../lib/puppet/pops/types/type_parser.rb:675
6423
5969
  msgid "Unknown type <%{type}>"
6424
5970
  msgstr ""
6425
5971
 
6426
- #: ../lib/puppet/pops/types/types.rb:930
5972
+ #: ../lib/puppet/pops/types/types.rb:929
6427
5973
  msgid "The string '%{str}' cannot be converted to Numeric"
6428
5974
  msgstr ""
6429
5975
 
6430
- #: ../lib/puppet/pops/types/types.rb:933
5976
+ #: ../lib/puppet/pops/types/types.rb:932
6431
5977
  msgid "Value of type %{type} cannot be converted to Numeric"
6432
5978
  msgstr ""
6433
5979
 
6434
- #: ../lib/puppet/pops/types/types.rb:1171
5980
+ #: ../lib/puppet/pops/types/types.rb:1170
6435
5981
  msgid "The string '%{str}' cannot be converted to Integer"
6436
5982
  msgstr ""
6437
5983
 
6438
- #: ../lib/puppet/pops/types/types.rb:1174
5984
+ #: ../lib/puppet/pops/types/types.rb:1173
6439
5985
  msgid "Value of type %{type} cannot be converted to Integer"
6440
5986
  msgstr ""
6441
5987
 
6442
- #: ../lib/puppet/pops/types/types.rb:1182
5988
+ #: ../lib/puppet/pops/types/types.rb:1181
6443
5989
  msgid "Illegal radix: %{radix}, expected 2, 8, 10, 16, or default"
6444
5990
  msgstr ""
6445
5991
 
6446
- #: ../lib/puppet/pops/types/types.rb:1295
5992
+ #: ../lib/puppet/pops/types/types.rb:1294
6447
5993
  msgid "The string '%{str}' cannot be converted to Float"
6448
5994
  msgstr ""
6449
5995
 
6450
- #: ../lib/puppet/pops/types/types.rb:1298
5996
+ #: ../lib/puppet/pops/types/types.rb:1297
6451
5997
  msgid "Value of type %{type} cannot be converted to Float"
6452
5998
  msgstr ""
6453
5999
 
6454
6000
  #. TRANSLATORS 'PStringType#initialize' is a class and method name and should not be translated
6455
- #: ../lib/puppet/pops/types/types.rb:1515
6001
+ #: ../lib/puppet/pops/types/types.rb:1514
6456
6002
  msgid "Passing more than one argument to PStringType#initialize is deprecated"
6457
6003
  msgstr ""
6458
6004
 
6459
6005
  #. TRANSLATORS 'PStringType#values' and '#value' are classes and method names and should not be translated
6460
- #: ../lib/puppet/pops/types/types.rb:1569
6006
+ #: ../lib/puppet/pops/types/types.rb:1568
6461
6007
  msgid "Method PStringType#values is deprecated. Use #value instead"
6462
6008
  msgstr ""
6463
6009
 
6464
- #: ../lib/puppet/pops/types/types.rb:1895
6010
+ #: ../lib/puppet/pops/types/types.rb:1894
6465
6011
  msgid "The string '%{str}' cannot be converted to Boolean"
6466
6012
  msgstr ""
6467
6013
 
6468
- #: ../lib/puppet/pops/types/types.rb:1898
6014
+ #: ../lib/puppet/pops/types/types.rb:1897
6469
6015
  msgid "Value of type %{type} cannot be converted to Boolean"
6470
6016
  msgstr ""
6471
6017
 
6472
- #: ../lib/puppet/pops/types/types.rb:2626
6018
+ #: ../lib/puppet/pops/types/types.rb:2625
6473
6019
  msgid "Value of type %{type} cannot be converted to Array"
6474
6020
  msgstr ""
6475
6021
 
6476
- #: ../lib/puppet/pops/types/types.rb:2696
6022
+ #: ../lib/puppet/pops/types/types.rb:2695
6477
6023
  msgid "Puppet::Pops::Types::PHashType#element_type is deprecated, use #value_type instead"
6478
6024
  msgstr ""
6479
6025
 
6480
- #: ../lib/puppet/pops/types/types.rb:2833
6026
+ #: ../lib/puppet/pops/types/types.rb:2832
6481
6027
  msgid "odd number of arguments for Hash"
6482
6028
  msgstr ""
6483
6029
 
6484
- #: ../lib/puppet/pops/types/types.rb:2844
6030
+ #: ../lib/puppet/pops/types/types.rb:2843
6485
6031
  msgid "Value of type %{type} cannot be converted to Hash"
6486
6032
  msgstr ""
6487
6033
 
@@ -6560,19 +6106,19 @@ msgstr ""
6560
6106
  msgid "Key/value pairs must be separated by '%{separator}'"
6561
6107
  msgstr ""
6562
6108
 
6563
- #: ../lib/puppet/provider.rb:145
6109
+ #: ../lib/puppet/provider.rb:132
6564
6110
  msgid "No command %{command} defined for provider %{provider}"
6565
6111
  msgstr ""
6566
6112
 
6567
- #: ../lib/puppet/provider.rb:397
6113
+ #: ../lib/puppet/provider.rb:384
6568
6114
  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"
6569
6115
  msgstr ""
6570
6116
 
6571
- #: ../lib/puppet/provider.rb:470
6117
+ #: ../lib/puppet/provider.rb:457
6572
6118
  msgid "'%{parameter_name}' is not a valid parameter for %{resource_type}"
6573
6119
  msgstr ""
6574
6120
 
6575
- #: ../lib/puppet/provider.rb:556
6121
+ #: ../lib/puppet/provider.rb:543
6576
6122
  msgid "No resource and no name in property hash in %{class_name} instance"
6577
6123
  msgstr ""
6578
6124
 
@@ -6600,11 +6146,11 @@ msgstr ""
6600
6146
  msgid "aix.object_info(): Could not find %{resource}[%{name}]"
6601
6147
  msgstr ""
6602
6148
 
6603
- #: ../lib/puppet/provider/aix_object.rb:471 ../lib/puppet/provider/nameservice.rb:182 ../lib/puppet/provider/nameservice/directoryservice.rb:425
6149
+ #: ../lib/puppet/provider/aix_object.rb:471 ../lib/puppet/provider/nameservice.rb:164 ../lib/puppet/provider/nameservice/directoryservice.rb:425
6604
6150
  msgid "Could not create %{resource} %{name}: %{detail}"
6605
6151
  msgstr ""
6606
6152
 
6607
- #: ../lib/puppet/provider/aix_object.rb:483 ../lib/puppet/provider/nameservice.rb:196
6153
+ #: ../lib/puppet/provider/aix_object.rb:483 ../lib/puppet/provider/nameservice.rb:178
6608
6154
  msgid "Could not delete %{resource} %{name}: %{detail}"
6609
6155
  msgstr ""
6610
6156
 
@@ -6693,32 +6239,28 @@ msgstr ""
6693
6239
  msgid "%{name} is not a valid attribute for %{resource_type}"
6694
6240
  msgstr ""
6695
6241
 
6696
- #: ../lib/puppet/provider/nameservice.rb:60
6697
- msgid "listbyname is deprecated and will be removed in a future release of Puppet. Please use `self.instances` to obtain a list of users."
6698
- msgstr ""
6699
-
6700
- #: ../lib/puppet/provider/nameservice.rb:103
6242
+ #: ../lib/puppet/provider/nameservice.rb:85
6701
6243
  msgid "Invalid value %{value}: %{error}"
6702
6244
  msgstr ""
6703
6245
 
6704
6246
  #. TRANSLATORS "autogen_id()" is a method name and should not be translated
6705
- #: ../lib/puppet/provider/nameservice.rb:148
6247
+ #: ../lib/puppet/provider/nameservice.rb:130
6706
6248
  msgid "autogen_id() does not support auto generation of id for resource type %{resource_type}"
6707
6249
  msgstr ""
6708
6250
 
6709
- #: ../lib/puppet/provider/nameservice.rb:170 ../lib/puppet/provider/nameservice/directoryservice.rb:379
6251
+ #: ../lib/puppet/provider/nameservice.rb:152 ../lib/puppet/provider/nameservice/directoryservice.rb:379
6710
6252
  msgid "already exists"
6711
6253
  msgstr ""
6712
6254
 
6713
- #: ../lib/puppet/provider/nameservice.rb:188
6255
+ #: ../lib/puppet/provider/nameservice.rb:170
6714
6256
  msgid "already absent"
6715
6257
  msgstr ""
6716
6258
 
6717
- #: ../lib/puppet/provider/nameservice.rb:282
6259
+ #: ../lib/puppet/provider/nameservice.rb:264
6718
6260
  msgid "Nameservice command must be an array"
6719
6261
  msgstr ""
6720
6262
 
6721
- #: ../lib/puppet/provider/nameservice.rb:287 ../lib/puppet/provider/nameservice/directoryservice.rb:340 ../lib/puppet/provider/nameservice/directoryservice.rb:369
6263
+ #: ../lib/puppet/provider/nameservice.rb:269 ../lib/puppet/provider/nameservice/directoryservice.rb:340 ../lib/puppet/provider/nameservice/directoryservice.rb:369
6722
6264
  msgid "Could not set %{param} on %{resource}[%{name}]: %{detail}"
6723
6265
  msgstr ""
6724
6266
 
@@ -6800,19 +6342,19 @@ msgstr ""
6800
6342
  msgid "Mac OS X packages must specify a package source"
6801
6343
  msgstr ""
6802
6344
 
6803
- #: ../lib/puppet/provider/package/apt.rb:81
6345
+ #: ../lib/puppet/provider/package/apt.rb:85
6804
6346
  msgid "/etc/apt/sources.list contains a cdrom source; not installing. Use 'allowcdrom' to override this failure."
6805
6347
  msgstr ""
6806
6348
 
6807
- #: ../lib/puppet/provider/package/apt.rb:163 ../lib/puppet/provider/package/fink.rb:55
6349
+ #: ../lib/puppet/provider/package/apt.rb:167 ../lib/puppet/provider/package/fink.rb:55
6808
6350
  msgid "Could not find latest version"
6809
6351
  msgstr ""
6810
6352
 
6811
- #: ../lib/puppet/provider/package/apt.rb:174 ../lib/puppet/provider/package/fink.rb:66
6353
+ #: ../lib/puppet/provider/package/apt.rb:178 ../lib/puppet/provider/package/fink.rb:66
6812
6354
  msgid "Preseeding %{response} to debconf-set-selections"
6813
6355
  msgstr ""
6814
6356
 
6815
- #: ../lib/puppet/provider/package/apt.rb:178 ../lib/puppet/provider/package/fink.rb:70
6357
+ #: ../lib/puppet/provider/package/apt.rb:182 ../lib/puppet/provider/package/fink.rb:70
6816
6358
  msgid "No responsefile specified or non existent, not preseeding anything"
6817
6359
  msgstr ""
6818
6360
 
@@ -6864,27 +6406,27 @@ msgstr ""
6864
6406
  msgid "source is defined but does not have trailing slash, ignoring %{source}"
6865
6407
  msgstr ""
6866
6408
 
6867
- #: ../lib/puppet/provider/package/gem.rb:102 ../lib/puppet/provider/package/puppetserver_gem.rb:61
6409
+ #: ../lib/puppet/provider/package/gem.rb:122 ../lib/puppet/provider/package/puppetserver_gem.rb:61
6868
6410
  msgid "Could not list gems: %{detail}"
6869
6411
  msgstr ""
6870
6412
 
6871
- #: ../lib/puppet/provider/package/gem.rb:128
6413
+ #: ../lib/puppet/provider/package/gem.rb:148
6872
6414
  msgid "Could not match %{desc}"
6873
6415
  msgstr ""
6874
6416
 
6875
- #: ../lib/puppet/provider/package/gem.rb:206 ../lib/puppet/provider/package/puppetserver_gem.rb:93
6417
+ #: ../lib/puppet/provider/package/gem.rb:226 ../lib/puppet/provider/package/puppetserver_gem.rb:93
6876
6418
  msgid "Invalid source '%{uri}': %{detail}"
6877
6419
  msgstr ""
6878
6420
 
6879
- #: ../lib/puppet/provider/package/gem.rb:217 ../lib/puppet/provider/package/puppetserver_gem.rb:104
6421
+ #: ../lib/puppet/provider/package/gem.rb:237 ../lib/puppet/provider/package/puppetserver_gem.rb:104
6880
6422
  msgid "puppet:// URLs are not supported as gem sources"
6881
6423
  msgstr ""
6882
6424
 
6883
- #: ../lib/puppet/provider/package/gem.rb:233 ../lib/puppet/provider/package/puppetserver_gem.rb:115
6425
+ #: ../lib/puppet/provider/package/gem.rb:253 ../lib/puppet/provider/package/puppetserver_gem.rb:115
6884
6426
  msgid "Could not install: %{output}"
6885
6427
  msgstr ""
6886
6428
 
6887
- #: ../lib/puppet/provider/package/gem.rb:259 ../lib/puppet/provider/package/puppetserver_gem.rb:125
6429
+ #: ../lib/puppet/provider/package/gem.rb:279 ../lib/puppet/provider/package/puppetserver_gem.rb:125
6888
6430
  msgid "Could not uninstall: %{output}"
6889
6431
  msgstr ""
6890
6432
 
@@ -6994,7 +6536,7 @@ msgstr ""
6994
6536
  msgid "Refusing to install package group %{resource_name}, because allow_virtual is false."
6995
6537
  msgstr ""
6996
6538
 
6997
- #: ../lib/puppet/provider/package/pip.rb:58
6539
+ #: ../lib/puppet/provider/package/pip.rb:57
6998
6540
  msgid "Cannot resolve pip version"
6999
6541
  msgstr ""
7000
6542
 
@@ -7010,27 +6552,27 @@ msgstr ""
7010
6552
  msgid "Unknown line format %{resource_name}: %{parse_line}"
7011
6553
  msgstr ""
7012
6554
 
7013
- #: ../lib/puppet/provider/package/pkg.rb:127
6555
+ #: ../lib/puppet/provider/package/pkg.rb:123
7014
6556
  msgid "Unable to unfreeze %{package}"
7015
6557
  msgstr ""
7016
6558
 
7017
- #: ../lib/puppet/provider/package/pkg.rb:162
6559
+ #: ../lib/puppet/provider/package/pkg.rb:158
7018
6560
  msgid "Implicit version %{should} has %{n} possible matches"
7019
6561
  msgstr ""
7020
6562
 
7021
- #: ../lib/puppet/provider/package/pkg.rb:174
6563
+ #: ../lib/puppet/provider/package/pkg.rb:170
7022
6564
  msgid "Selecting version '%{version}' for implicit '%{should}'"
7023
6565
  msgstr ""
7024
6566
 
7025
- #: ../lib/puppet/provider/package/pkg.rb:179
6567
+ #: ../lib/puppet/provider/package/pkg.rb:175
7026
6568
  msgid "No version of %{name} matching %{should} is installable, even though the package is currently installed"
7027
6569
  msgstr ""
7028
6570
 
7029
- #: ../lib/puppet/provider/package/pkg.rb:198
6571
+ #: ../lib/puppet/provider/package/pkg.rb:194
7030
6572
  msgid "pkg warning: %{warnings}"
7031
6573
  msgstr ""
7032
6574
 
7033
- #: ../lib/puppet/provider/package/pkg.rb:242 ../lib/puppet/provider/package/pkg.rb:268
6575
+ #: ../lib/puppet/provider/package/pkg.rb:238 ../lib/puppet/provider/package/pkg.rb:264
7034
6576
  msgid "Unable to update %{package}"
7035
6577
  msgstr ""
7036
6578
 
@@ -7217,15 +6759,15 @@ msgstr ""
7217
6759
  msgid "Waiting 5 seconds for runsvdir to discover service %{service}"
7218
6760
  msgstr ""
7219
6761
 
7220
- #: ../lib/puppet/provider/service/smf.rb:68
6762
+ #: ../lib/puppet/provider/service/smf.rb:120
7221
6763
  msgid "Failed to get the FMRI of the %{service} service: The pattern '%{service}' matches multiple FMRIs! These are the FMRIs it matches: %{all_fmris}"
7222
6764
  msgstr ""
7223
6765
 
7224
- #: ../lib/puppet/provider/service/smf.rb:83
6766
+ #: ../lib/puppet/provider/service/smf.rb:135
7225
6767
  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."
7226
6768
  msgstr ""
7227
6769
 
7228
- #: ../lib/puppet/provider/service/smf.rb:182
6770
+ #: ../lib/puppet/provider/service/smf.rb:221
7229
6771
  msgid "The %{service} service is incomplete so its status will be reported as :stopped. See `svcs -xv %{fmri}` for more details."
7230
6772
  msgstr ""
7231
6773
 
@@ -7350,142 +6892,90 @@ msgstr ""
7350
6892
  msgid "Invalid node name %{host}"
7351
6893
  msgstr ""
7352
6894
 
7353
- #: ../lib/puppet/resource.rb:48
6895
+ #: ../lib/puppet/resource.rb:47
7354
6896
  msgid "No resource type provided in serialized data"
7355
6897
  msgstr ""
7356
6898
 
7357
- #: ../lib/puppet/resource.rb:50
6899
+ #: ../lib/puppet/resource.rb:49
7358
6900
  msgid "No resource title provided in serialized data"
7359
6901
  msgstr ""
7360
6902
 
7361
6903
  #. TRANSLATORS 'Puppet::Resource.new' should not be translated
7362
- #: ../lib/puppet/resource.rb:277
6904
+ #: ../lib/puppet/resource.rb:276
7363
6905
  msgid "Puppet::Resource.new does not take a hash as the first argument."
7364
6906
  msgstr ""
7365
6907
 
7366
- #: ../lib/puppet/resource.rb:278
6908
+ #: ../lib/puppet/resource.rb:277
7367
6909
  msgid "Did you mean (%{type}, %{title}) ?"
7368
6910
  msgstr ""
7369
6911
 
7370
- #: ../lib/puppet/resource.rb:315
6912
+ #: ../lib/puppet/resource.rb:314
7371
6913
  msgid "Could not find declared class %{title}"
7372
6914
  msgstr ""
7373
6915
 
7374
- #: ../lib/puppet/resource.rb:317
6916
+ #: ../lib/puppet/resource.rb:316
7375
6917
  msgid "Invalid resource type %{type}"
7376
6918
  msgstr ""
7377
6919
 
7378
- #: ../lib/puppet/resource.rb:521
7379
- msgid "The method Puppet::Resource.set_default_parameters is deprecated and will be removed in the next major release of Puppet."
7380
- msgstr ""
7381
-
7382
- #: ../lib/puppet/resource.rb:526
7383
- msgid "Cannot evaluate default parameters for %{resource} - not a parser resource"
7384
- msgstr ""
7385
-
7386
- #: ../lib/puppet/resource.rb:566
7387
- msgid "The method Puppet::Resource.validate_complete is deprecated and will be removed in the next major release of Puppet."
7388
- msgstr ""
7389
-
7390
- #: ../lib/puppet/resource.rb:572
7391
- msgid "Must pass %{param} to %{resource}"
7392
- msgstr ""
7393
-
7394
- #: ../lib/puppet/resource.rb:584
7395
- msgid "Expected parameter '%{name}' of '%{value0}' to have type %{value1}, got %{value2}"
7396
- msgstr ""
7397
-
7398
- #: ../lib/puppet/resource.rb:590
6920
+ #: ../lib/puppet/resource.rb:502
7399
6921
  msgid "no parameter named '%{name}'"
7400
6922
  msgstr ""
7401
6923
 
7402
- #: ../lib/puppet/resource.rb:635
6924
+ #: ../lib/puppet/resource.rb:547
7403
6925
  msgid "No title provided and %{type} is not a valid resource reference"
7404
6926
  msgstr ""
7405
6927
 
7406
- #: ../lib/puppet/resource.rb:709
6928
+ #: ../lib/puppet/resource.rb:621
7407
6929
  msgid "No set of title patterns matched the title \"%{title}\"."
7408
6930
  msgstr ""
7409
6931
 
7410
- #: ../lib/puppet/resource/capability_finder.rb:27
7411
- msgid "PuppetDB is not available"
7412
- msgstr ""
7413
-
7414
- #: ../lib/puppet/resource/capability_finder.rb:47
7415
- msgid "Unexpected response from PuppetDB when looking up %{capability}:"
7416
- msgstr ""
7417
-
7418
- #: ../lib/puppet/resource/capability_finder.rb:48
7419
- msgid "expected exactly one resource but got %{count};"
7420
- msgstr ""
7421
-
7422
- #: ../lib/puppet/resource/capability_finder.rb:49
7423
- msgid ""
7424
- "returned data is:\n"
7425
- "%{resources}"
7426
- msgstr ""
7427
-
7428
- #: ../lib/puppet/resource/capability_finder.rb:81
7429
- msgid "Looking up capability %{capability} in PuppetDB: %{query_terms}"
7430
- msgstr ""
7431
-
7432
- #: ../lib/puppet/resource/capability_finder.rb:105
7433
- msgid "Unexpected response from PuppetDB when looking up %{capability}: expected an Array but got %{result}"
7434
- msgstr ""
7435
-
7436
- #: ../lib/puppet/resource/capability_finder.rb:112
7437
- msgid ""
7438
- "Invalid JSON from PuppetDB when looking up %{capability}\n"
7439
- "%{detail}"
7440
- msgstr ""
7441
-
7442
- #: ../lib/puppet/resource/catalog.rb:104
6932
+ #: ../lib/puppet/resource/catalog.rb:102
7443
6933
  msgid "Cannot add resource %{resource_1} before %{resource_2} because %{resource_2} is not yet in the catalog"
7444
6934
  msgstr ""
7445
6935
 
7446
- #: ../lib/puppet/resource/catalog.rb:119
6936
+ #: ../lib/puppet/resource/catalog.rb:117
7447
6937
  msgid "Cannot add resource %{resource_1} after %{resource_2} because %{resource_2} is not yet in the catalog"
7448
6938
  msgstr ""
7449
6939
 
7450
6940
  #. TRANSLATORS 'alias' should not be translated
7451
- #: ../lib/puppet/resource/catalog.rb:206
6941
+ #: ../lib/puppet/resource/catalog.rb:204
7452
6942
  msgid "Cannot alias %{resource} to %{key}; resource %{newref} already declared"
7453
6943
  msgstr ""
7454
6944
 
7455
6945
  #. TRANSLATORS 'alias' should not be translated
7456
- #: ../lib/puppet/resource/catalog.rb:210
6946
+ #: ../lib/puppet/resource/catalog.rb:208
7457
6947
  msgid "Cannot alias %{resource} to %{key} at %{resource_declaration}; resource %{newref} already declared"
7458
6948
  msgstr ""
7459
6949
 
7460
- #: ../lib/puppet/resource/catalog.rb:292
6950
+ #: ../lib/puppet/resource/catalog.rb:290
7461
6951
  msgid "Unknown resource type %{type}"
7462
6952
  msgstr ""
7463
6953
 
7464
- #: ../lib/puppet/resource/catalog.rb:446
6954
+ #: ../lib/puppet/resource/catalog.rb:433
7465
6955
  msgid "Could not intern from data: Could not find relationship source %{source} for %{target}"
7466
6956
  msgstr ""
7467
6957
 
7468
- #: ../lib/puppet/resource/catalog.rb:453
6958
+ #: ../lib/puppet/resource/catalog.rb:440
7469
6959
  msgid "Could not intern from data: Could not find relationship target %{target} for %{source}"
7470
6960
  msgstr ""
7471
6961
 
7472
- #: ../lib/puppet/resource/catalog.rb:543
6962
+ #: ../lib/puppet/resource/catalog.rb:530
7473
6963
  msgid "Could not create class file %{file}: %{detail}"
7474
6964
  msgstr ""
7475
6965
 
7476
- #: ../lib/puppet/resource/catalog.rb:559
6966
+ #: ../lib/puppet/resource/catalog.rb:546
7477
6967
  msgid "Could not create resource file %{file}: %{detail}"
7478
6968
  msgstr ""
7479
6969
 
7480
- #: ../lib/puppet/resource/catalog.rb:594
6970
+ #: ../lib/puppet/resource/catalog.rb:581
7481
6971
  msgid "Duplicate declaration: %{resource} is already declared; cannot redeclare"
7482
6972
  msgstr ""
7483
6973
 
7484
- #: ../lib/puppet/resource/catalog.rb:596
6974
+ #: ../lib/puppet/resource/catalog.rb:583
7485
6975
  msgid "Duplicate declaration: %{resource} is already declared at %{error_location}; cannot redeclare"
7486
6976
  msgstr ""
7487
6977
 
7488
- #: ../lib/puppet/resource/catalog.rb:645 ../lib/puppet/resource/catalog.rb:650
6978
+ #: ../lib/puppet/resource/catalog.rb:632 ../lib/puppet/resource/catalog.rb:637
7489
6979
  msgid "Could not find resource %{resource} when converting %{message} resources"
7490
6980
  msgstr ""
7491
6981
 
@@ -7493,201 +6983,145 @@ msgstr ""
7493
6983
  msgid "Could not evaluate: %{detail}"
7494
6984
  msgstr ""
7495
6985
 
7496
- #: ../lib/puppet/resource/type.rb:82
7497
- msgid "Invalid export in %{reference}: %{ex} is not a resource"
7498
- msgstr ""
7499
-
7500
- #: ../lib/puppet/resource/type.rb:83
7501
- msgid "Invalid export in %{reference}: %{ex} is not a capability resource"
7502
- msgstr ""
7503
-
7504
6986
  #: ../lib/puppet/resource/type.rb:87
7505
- msgid "Resource type %{res_type} does not produce %{ex_type}"
7506
- msgstr ""
7507
-
7508
- #: ../lib/puppet/resource/type.rb:148
7509
6987
  msgid "Invalid resource supertype '%{type}'"
7510
6988
  msgstr ""
7511
6989
 
7512
- #: ../lib/puppet/resource/type.rb:200
6990
+ #: ../lib/puppet/resource/type.rb:117
7513
6991
  msgid "%{name} is not a class; cannot add code to it"
7514
6992
  msgstr ""
7515
6993
 
7516
- #: ../lib/puppet/resource/type.rb:201
6994
+ #: ../lib/puppet/resource/type.rb:118
7517
6995
  msgid "%{name} is not a class; cannot add code from it"
7518
6996
  msgstr ""
7519
6997
 
7520
- #: ../lib/puppet/resource/type.rb:205
6998
+ #: ../lib/puppet/resource/type.rb:122
7521
6999
  msgid "Cannot have code outside of a class/node/define because 'freeze_main' is enabled"
7522
7000
  msgstr ""
7523
7001
 
7524
- #: ../lib/puppet/resource/type.rb:209
7002
+ #: ../lib/puppet/resource/type.rb:126
7525
7003
  msgid "Cannot merge classes with different parent classes (%{name} => %{parent} vs. %{other_name} => %{other_parent})"
7526
7004
  msgstr ""
7527
7005
 
7528
- #: ../lib/puppet/resource/type.rb:240
7006
+ #: ../lib/puppet/resource/type.rb:157
7529
7007
  msgid "Cannot create resources for defined resource types"
7530
7008
  msgstr ""
7531
7009
 
7532
- #: ../lib/puppet/resource/type.rb:295
7533
- msgid "The method Puppet::Resource::Type.assign_parameter_values is deprecated and will be removed in the next major release of Puppet."
7534
- msgstr ""
7535
-
7536
- #: ../lib/puppet/resource/type.rb:311
7010
+ #: ../lib/puppet/resource/type.rb:210
7537
7011
  msgid "Could not find parent resource type '%{parent}' of type %{parent_type} in %{env}"
7538
7012
  msgstr ""
7539
7013
 
7540
- #: ../lib/puppet/resource/type.rb:438
7014
+ #: ../lib/puppet/resource/type.rb:336
7541
7015
  msgid "Parameter '%{name}' is given a type, but is not a valid parameter."
7542
7016
  msgstr ""
7543
7017
 
7544
- #: ../lib/puppet/resource/type.rb:441
7018
+ #: ../lib/puppet/resource/type.rb:339
7545
7019
  msgid "Parameter '%{name}' is given a type that is not a Puppet Type, got %{class_name}"
7546
7020
  msgstr ""
7547
7021
 
7548
- #: ../lib/puppet/resource/type.rb:483
7022
+ #: ../lib/puppet/resource/type.rb:373
7549
7023
  msgid "Could not find scope for %{class_name}"
7550
7024
  msgstr ""
7551
7025
 
7552
- #: ../lib/puppet/resource/type.rb:504
7026
+ #: ../lib/puppet/resource/type.rb:394
7553
7027
  msgid "%{param} is a metaparam; this value will inherit to all contained resources in the %{name} definition"
7554
7028
  msgstr ""
7555
7029
 
7556
- #: ../lib/puppet/resource/type.rb:506
7030
+ #: ../lib/puppet/resource/type.rb:396
7557
7031
  msgid "%{param} is a metaparameter; please choose another parameter name in the %{name} definition"
7558
7032
  msgstr ""
7559
7033
 
7560
- #: ../lib/puppet/resource/type_collection.rb:72
7034
+ #: ../lib/puppet/resource/type_collection.rb:63
7561
7035
  msgid "Class '%{klass}' is already defined%{error}; cannot redefine"
7562
7036
  msgstr ""
7563
7037
 
7564
- #: ../lib/puppet/resource/type_collection.rb:73
7038
+ #: ../lib/puppet/resource/type_collection.rb:64
7565
7039
  msgid "Definition '%{klass}' is already defined%{error}; cannot be redefined as a class"
7566
7040
  msgstr ""
7567
7041
 
7568
- #: ../lib/puppet/resource/type_collection.rb:74
7569
- msgid "Application '%{klass}' is already defined%{error}; cannot be redefined as a class"
7570
- msgstr ""
7571
-
7572
- #: ../lib/puppet/resource/type_collection.rb:105
7042
+ #: ../lib/puppet/resource/type_collection.rb:95
7573
7043
  msgid "Node '%{name}' is already defined%{error}; cannot redefine"
7574
7044
  msgstr ""
7575
7045
 
7576
- #: ../lib/puppet/resource/type_collection.rb:113
7577
- msgid "Site is already defined%{error}; cannot redefine"
7578
- msgstr ""
7579
-
7580
- #: ../lib/puppet/resource/type_collection.rb:150
7046
+ #: ../lib/puppet/resource/type_collection.rb:130
7581
7047
  msgid "'%{name}' is already defined%{error} as a class; cannot redefine as a definition"
7582
7048
  msgstr ""
7583
7049
 
7584
- #: ../lib/puppet/resource/type_collection.rb:151
7050
+ #: ../lib/puppet/resource/type_collection.rb:131
7585
7051
  msgid "Definition '%{name}' is already defined%{error}; cannot be redefined"
7586
7052
  msgstr ""
7587
7053
 
7588
- #: ../lib/puppet/resource/type_collection.rb:152 ../lib/puppet/resource/type_collection.rb:168
7589
- msgid "'%{name}' is already defined%{error} as an application; cannot be redefined"
7590
- msgstr ""
7591
-
7592
- #: ../lib/puppet/resource/type_collection.rb:157
7593
- msgid "'%{name}' is already defined%{error} as a class; cannot redefine as a mapping"
7594
- msgstr ""
7595
-
7596
- #: ../lib/puppet/resource/type_collection.rb:166
7597
- msgid "'%{name}' is already defined%{error} as a class; cannot redefine as an application"
7598
- msgstr ""
7599
-
7600
- #: ../lib/puppet/resource/type_collection.rb:167
7601
- msgid "'%{name}' is already defined%{error} as a definition; cannot redefine as an application"
7602
- msgstr ""
7603
-
7604
- #: ../lib/puppet/resource/type_collection.rb:220
7054
+ #: ../lib/puppet/resource/type_collection.rb:175
7605
7055
  msgid "Execution of config_version command `%{cmd}` failed: %{message}"
7606
7056
  msgstr ""
7607
7057
 
7608
- #: ../lib/puppet/resource/type_collection.rb:241
7058
+ #: ../lib/puppet/resource/type_collection.rb:196
7609
7059
  msgid "Not attempting to load %{type} %{fqname} as this object was missing during a prior compilation"
7610
7060
  msgstr ""
7611
7061
 
7612
- #: ../lib/puppet/rest/route.rb:47
7613
- msgid "Connection to cached server and port %{server}:%{port} failed: %{message}"
7614
- msgstr ""
7615
-
7616
- #: ../lib/puppet/rest/routes.rb:46
7617
- msgid "Downloaded certificate for %{name} from %{server}"
7618
- msgstr ""
7619
-
7620
- #: ../lib/puppet/rest/routes.rb:76
7621
- msgid "Downloaded certificate revocation list for %{name} from %{server}"
7622
- msgstr ""
7623
-
7624
- #: ../lib/puppet/rest/routes.rb:129
7625
- msgid "Downloaded existing certificate request for %{name} from %{server}"
7626
- msgstr ""
7627
-
7628
- #: ../lib/puppet/settings.rb:98
7062
+ #: ../lib/puppet/settings.rb:102
7629
7063
  msgid "New environment loaders generated from the requested section."
7630
7064
  msgstr ""
7631
7065
 
7632
- #: ../lib/puppet/settings.rb:300
7066
+ #: ../lib/puppet/settings.rb:304
7633
7067
  msgid "Attempting to initialize global default settings more than once!"
7634
7068
  msgstr ""
7635
7069
 
7636
- #: ../lib/puppet/settings.rb:500
7070
+ #: ../lib/puppet/settings.rb:504
7637
7071
  msgid "Using --configprint is deprecated. Use 'puppet config <subcommand>' instead."
7638
7072
  msgstr ""
7639
7073
 
7640
- #: ../lib/puppet/settings.rb:642
7074
+ #: ../lib/puppet/settings.rb:646
7641
7075
  msgid "Could not load %{file}: %{detail}"
7642
7076
  msgstr ""
7643
7077
 
7644
- #: ../lib/puppet/settings.rb:748
7078
+ #: ../lib/puppet/settings.rb:755
7645
7079
  msgid "Invalid setting type '%{type}'"
7646
7080
  msgstr ""
7647
7081
 
7648
- #: ../lib/puppet/settings.rb:903
7082
+ #: ../lib/puppet/settings.rb:910
7649
7083
  msgid "Unknown searchpath case: %{source_type} for the %{source} settings path element."
7650
7084
  msgstr ""
7651
7085
 
7652
- #: ../lib/puppet/settings.rb:966
7086
+ #: ../lib/puppet/settings.rb:983
7653
7087
  msgid "setting definition for '%{name}' is not a hash!"
7654
7088
  msgstr ""
7655
7089
 
7656
- #: ../lib/puppet/settings.rb:971
7090
+ #: ../lib/puppet/settings.rb:988
7657
7091
  msgid "Setting %{name} is already defined"
7658
7092
  msgstr ""
7659
7093
 
7660
- #: ../lib/puppet/settings.rb:977
7094
+ #: ../lib/puppet/settings.rb:994
7661
7095
  msgid "Setting %{name} is already using short name '%{short}'"
7662
7096
  msgstr ""
7663
7097
 
7664
- #: ../lib/puppet/settings.rb:1241
7098
+ #: ../lib/puppet/settings.rb:1265
7665
7099
  msgid "Setting %{name} is deprecated."
7666
7100
  msgstr ""
7667
7101
 
7668
7102
  #. TRANSLATORS 'puppet.conf' is a file name and should not be translated
7669
- #: ../lib/puppet/settings.rb:1246
7103
+ #: ../lib/puppet/settings.rb:1270
7670
7104
  msgid "Setting %{name} is deprecated in puppet.conf."
7671
7105
  msgstr ""
7672
7106
 
7673
- #: ../lib/puppet/settings.rb:1417
7107
+ #: ../lib/puppet/settings.rb:1447
7674
7108
  msgid "Error converting value for param '%{name}': %{detail}"
7675
7109
  msgstr ""
7676
7110
 
7677
- #: ../lib/puppet/settings.rb:1441
7111
+ #: ../lib/puppet/settings.rb:1471
7678
7112
  msgid "Could not find value for %{expression}"
7679
7113
  msgstr ""
7680
7114
 
7681
7115
  #. TRANSLATORS '$environment' is a Puppet specific variable and should not be translated
7682
- #: ../lib/puppet/settings.rb:1451
7116
+ #: ../lib/puppet/settings.rb:1481
7683
7117
  msgid "You cannot interpolate $environment within '%{setting_name}' when using directory environments."
7684
7118
  msgstr ""
7685
7119
 
7686
- #: ../lib/puppet/settings.rb:1452
7120
+ #: ../lib/puppet/settings.rb:1482
7687
7121
  msgid "Its value will remain %{value}."
7688
7122
  msgstr ""
7689
7123
 
7690
- #: ../lib/puppet/settings.rb:1483
7124
+ #: ../lib/puppet/settings.rb:1513
7691
7125
  msgid "Attempt to assign a value to unknown setting %{name}"
7692
7126
  msgstr ""
7693
7127
 
@@ -7700,38 +7134,38 @@ msgid "Invalid autosign value %{value}: must be 'true'/'false' or an absolute pa
7700
7134
  msgstr ""
7701
7135
 
7702
7136
  #. TRANSLATORS ':%{name}', ':call_hook', and ':on_write_only' should not be translated
7703
- #: ../lib/puppet/settings/base_setting.rb:15
7137
+ #: ../lib/puppet/settings/base_setting.rb:37
7704
7138
  msgid "Setting :%{name} :call_hook is nil, defaulting to :on_write_only"
7705
7139
  msgstr ""
7706
7140
 
7707
7141
  #. TRANSLATORS 'call_hook' is a Puppet option name and should not be translated
7708
- #: ../lib/puppet/settings/base_setting.rb:20
7142
+ #: ../lib/puppet/settings/base_setting.rb:42
7709
7143
  msgid "Invalid option %{value} for call_hook"
7710
7144
  msgstr ""
7711
7145
 
7712
7146
  #. TRANSLATORS ':call_hook' and ':hook' are specific setting names and should not be translated
7713
- #: ../lib/puppet/settings/base_setting.rb:77
7147
+ #: ../lib/puppet/settings/base_setting.rb:101
7714
7148
  msgid "Cannot reference :call_hook for :%{name} if no :hook is defined"
7715
7149
  msgstr ""
7716
7150
 
7717
- #: ../lib/puppet/settings/base_setting.rb:83
7151
+ #: ../lib/puppet/settings/base_setting.rb:107
7718
7152
  msgid "%{class_name} (setting '%{setting}') does not accept %{parameter}"
7719
7153
  msgstr ""
7720
7154
 
7721
- #: ../lib/puppet/settings/base_setting.rb:90
7155
+ #: ../lib/puppet/settings/base_setting.rb:114
7722
7156
  msgid "You must provide a description for the %{class_name} config option"
7723
7157
  msgstr ""
7724
7158
 
7725
- #: ../lib/puppet/settings/base_setting.rb:104
7159
+ #: ../lib/puppet/settings/base_setting.rb:128
7726
7160
  msgid "Short names can only be one character."
7727
7161
  msgstr ""
7728
7162
 
7729
7163
  #. TRANSLATORS 'deprecated' is a Puppet setting and ':completely' and ':allowed_on_commandline' are possible values and should not be translated
7730
- #: ../lib/puppet/settings/base_setting.rb:173
7164
+ #: ../lib/puppet/settings/base_setting.rb:197
7731
7165
  msgid "Unsupported deprecated value '%{deprecation}'."
7732
7166
  msgstr ""
7733
7167
 
7734
- #: ../lib/puppet/settings/base_setting.rb:174
7168
+ #: ../lib/puppet/settings/base_setting.rb:198
7735
7169
  msgid "Supported values for deprecated are ':completely' or ':allowed_on_commandline'"
7736
7170
  msgstr ""
7737
7171
 
@@ -7809,7 +7243,15 @@ msgstr ""
7809
7243
  msgid "Expected an Array, String, or Hash, got a %{klass}"
7810
7244
  msgstr ""
7811
7245
 
7812
- #: ../lib/puppet/settings/priority_setting.rb:39
7246
+ #: ../lib/puppet/settings/integer_setting.rb:8
7247
+ msgid "Cannot convert '%{value}' to an integer for parameter: %{name}"
7248
+ msgstr ""
7249
+
7250
+ #: ../lib/puppet/settings/port_setting.rb:6
7251
+ msgid "Value '%{value}' is not a valid port number for parameter: %{name}"
7252
+ msgstr ""
7253
+
7254
+ #: ../lib/puppet/settings/priority_setting.rb:40
7813
7255
  msgid "Invalid priority format '%{value}' for parameter: %{name}"
7814
7256
  msgstr ""
7815
7257
 
@@ -7829,83 +7271,83 @@ msgstr ""
7829
7271
  msgid "Invalid 'time to live' format '%{value}' for parameter: %{param_name}"
7830
7272
  msgstr ""
7831
7273
 
7832
- #: ../lib/puppet/ssl/base.rb:27
7274
+ #: ../lib/puppet/ssl/base.rb:26
7833
7275
  msgid "%{name} has not declared what class it wraps"
7834
7276
  msgstr ""
7835
7277
 
7836
- #: ../lib/puppet/ssl/base.rb:32 ../lib/puppet/x509/cert_provider.rb:342
7278
+ #: ../lib/puppet/ssl/base.rb:31 ../lib/puppet/x509/cert_provider.rb:370
7837
7279
  msgid "Certname %{name} must not contain unprintable or non-ASCII characters"
7838
7280
  msgstr ""
7839
7281
 
7840
- #: ../lib/puppet/ssl/base.rb:38
7282
+ #: ../lib/puppet/ssl/base.rb:37
7841
7283
  msgid "%{class_name} did not override 'generate'"
7842
7284
  msgstr ""
7843
7285
 
7844
- #: ../lib/puppet/ssl/base.rb:63
7286
+ #: ../lib/puppet/ssl/base.rb:64
7845
7287
  msgid "Object must be an instance of %{class_name}, %{actual_class} given"
7846
7288
  msgstr ""
7847
7289
 
7848
- #: ../lib/puppet/ssl/base.rb:67
7290
+ #: ../lib/puppet/ssl/base.rb:68
7849
7291
  msgid "Name must be supplied if it cannot be determined from the instance"
7850
7292
  msgstr ""
7851
7293
 
7852
- #: ../lib/puppet/ssl/base.rb:142
7294
+ #: ../lib/puppet/ssl/base.rb:140
7853
7295
  msgid "Unknown signature algorithm '%{ln}'"
7854
7296
  msgstr ""
7855
7297
 
7856
- #: ../lib/puppet/ssl/certificate_request.rb:65
7298
+ #: ../lib/puppet/ssl/certificate_request.rb:57
7857
7299
  msgid "Creating a new SSL certificate request for %{name}"
7858
7300
  msgstr ""
7859
7301
 
7860
- #: ../lib/puppet/ssl/certificate_request.rb:101
7302
+ #: ../lib/puppet/ssl/certificate_request.rb:90
7861
7303
  msgid "CSR sign verification failed; you need to clean the certificate request for %{name} on the server"
7862
7304
  msgstr ""
7863
7305
 
7864
- #: ../lib/puppet/ssl/certificate_request.rb:107
7306
+ #: ../lib/puppet/ssl/certificate_request.rb:96
7865
7307
  msgid "Certificate Request fingerprint (%{digest}): %{hex_digest}"
7866
7308
  msgstr ""
7867
7309
 
7868
- #: ../lib/puppet/ssl/certificate_request.rb:151
7310
+ #: ../lib/puppet/ssl/certificate_request.rb:140
7869
7311
  msgid "CSR needs content to extract fields"
7870
7312
  msgstr ""
7871
7313
 
7872
- #: ../lib/puppet/ssl/certificate_request.rb:178
7314
+ #: ../lib/puppet/ssl/certificate_request.rb:167
7873
7315
  msgid "In %{attr}, expected extension record %{index} to have two or three items, but found %{count}"
7874
7316
  msgstr ""
7875
7317
 
7876
- #: ../lib/puppet/ssl/certificate_request.rb:229
7318
+ #: ../lib/puppet/ssl/certificate_request.rb:218
7877
7319
  msgid "Cannot specify CSR attribute %{oid}: conflicts with internally used CSR attribute"
7878
7320
  msgstr ""
7879
7321
 
7880
- #: ../lib/puppet/ssl/certificate_request.rb:238
7322
+ #: ../lib/puppet/ssl/certificate_request.rb:227
7881
7323
  msgid "Cannot create CSR with attribute %{oid}: %{message}"
7882
7324
  msgstr ""
7883
7325
 
7884
- #: ../lib/puppet/ssl/certificate_request.rb:255
7326
+ #: ../lib/puppet/ssl/certificate_request.rb:244
7885
7327
  msgid "Cannot specify CSR extension request %{oid}: conflicts with internally used extension request"
7886
7328
  msgstr ""
7887
7329
 
7888
- #: ../lib/puppet/ssl/certificate_request.rb:261
7330
+ #: ../lib/puppet/ssl/certificate_request.rb:250
7889
7331
  msgid "Cannot create CSR with extension request %{oid}: %{message}"
7890
7332
  msgstr ""
7891
7333
 
7892
- #: ../lib/puppet/ssl/certificate_request.rb:312
7334
+ #: ../lib/puppet/ssl/certificate_request.rb:301
7893
7335
  msgid "In %{attr}, expected Set but found %{klass}"
7894
7336
  msgstr ""
7895
7337
 
7896
- #: ../lib/puppet/ssl/certificate_request.rb:316
7338
+ #: ../lib/puppet/ssl/certificate_request.rb:305
7897
7339
  msgid "In %{attr}, expected Set[Array] but found %{klass}"
7898
7340
  msgstr ""
7899
7341
 
7900
- #: ../lib/puppet/ssl/certificate_request.rb:320
7342
+ #: ../lib/puppet/ssl/certificate_request.rb:309
7901
7343
  msgid "In %{attr}, expected Set[Array] with one value but found %{count} elements"
7902
7344
  msgstr ""
7903
7345
 
7904
- #: ../lib/puppet/ssl/certificate_request.rb:324
7346
+ #: ../lib/puppet/ssl/certificate_request.rb:313
7905
7347
  msgid "In %{attr}, expected Set[Array[Sequence[...]]], but found %{klass}"
7906
7348
  msgstr ""
7907
7349
 
7908
- #: ../lib/puppet/ssl/certificate_request.rb:328
7350
+ #: ../lib/puppet/ssl/certificate_request.rb:317
7909
7351
  msgid "In %{attr}, expected Set[Array[Sequence[Array[...]]]], but found %{klass}"
7910
7352
  msgstr ""
7911
7353
 
@@ -7933,195 +7375,107 @@ msgstr ""
7933
7375
  msgid "Server hostname '%{host}' did not match server certificate; %{expected_certnames}"
7934
7376
  msgstr ""
7935
7377
 
7936
- #: ../lib/puppet/ssl/host.rb:154
7937
- msgid "No certificate to validate."
7938
- msgstr ""
7939
-
7940
- #: ../lib/puppet/ssl/host.rb:155
7941
- msgid "No private key with which to validate certificate with fingerprint: %{fingerprint}"
7942
- msgstr ""
7943
-
7944
- #: ../lib/puppet/ssl/host.rb:157
7945
- msgid ""
7946
- "The certificate retrieved from the master does not match the agent's private key. Did you forget to run as root?\n"
7947
- "Certificate fingerprint: %{fingerprint}\n"
7948
- "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"
7949
- "On the master:\n"
7950
- " puppetserver ca clean --certname %{cert_name}\n"
7951
- "On the agent:\n"
7952
- " 1. puppet ssl clean %{clean_params}\n"
7953
- " 2. puppet %{puppet_params}\n"
7954
- msgstr ""
7955
-
7956
- #: ../lib/puppet/ssl/host.rb:212
7957
- msgid ""
7958
- "The CSR retrieved from the master does not match the agent's public key.\n"
7959
- "CSR fingerprint: %{fingerprint}\n"
7960
- "CSR public key: %{csr_public_key}\n"
7961
- "Agent public key: %{agent_public_key}\n"
7962
- "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"
7963
- "On the master:\n"
7964
- " puppetserver ca clean --certname %{cert_name}\n"
7965
- "On the agent:\n"
7966
- " 1. puppet ssl clean %{clean_params}\n"
7967
- " 2. puppet %{puppet_params}\n"
7968
- msgstr ""
7969
-
7970
- #: ../lib/puppet/ssl/host.rb:235
7971
- msgid "Puppet::SSL::Host is deprecated and will be removed in a future release of Puppet."
7972
- msgstr ""
7973
-
7974
- #: ../lib/puppet/ssl/host.rb:267 ../lib/puppet/ssl/host.rb:288
7975
- msgid "Could not request certificate: %{message}"
7976
- msgstr ""
7977
-
7978
- #: ../lib/puppet/ssl/host.rb:269
7979
- msgid "Exiting; failed to retrieve certificate and waitforcert is disabled"
7980
- msgstr ""
7981
-
7982
- #: ../lib/puppet/ssl/host.rb:278
7983
- msgid "Exiting; no certificate found and waitforcert is disabled"
7984
- msgstr ""
7985
-
7986
- #: ../lib/puppet/ssl/host.rb:286
7987
- msgid "Did not receive certificate"
7988
- msgstr ""
7989
-
7990
- #: ../lib/puppet/ssl/host.rb:326
7991
- msgid "Response from the CA did not contain a valid certificate request: %{message}"
7992
- msgstr ""
7993
-
7994
- #: ../lib/puppet/ssl/host.rb:332
7995
- msgid "Could not download certificate request: %{message}"
7996
- msgstr ""
7997
-
7998
- #: ../lib/puppet/ssl/host.rb:359
7999
- msgid ""
8000
- "Failed attempting to load CRL from %{crl_path}! The CRL below caused the error '%{error}':\n"
8001
- "%{crl}"
8002
- msgstr ""
8003
-
8004
- #: ../lib/puppet/ssl/host.rb:391 ../lib/puppet/ssl/state_machine.rb:120
8005
- msgid "Could not download CRLs: %{message}"
8006
- msgstr ""
8007
-
8008
- #: ../lib/puppet/ssl/host.rb:425
8009
- msgid "The certificate at %{file_path} is invalid. Could not load."
8010
- msgstr ""
8011
-
8012
- #: ../lib/puppet/ssl/host.rb:446
8013
- msgid "Response from the CA did not contain a valid certificate for %{cert_name}."
8014
- msgstr ""
8015
-
8016
- #: ../lib/puppet/ssl/host.rb:450
8017
- msgid "No certificate for %{cert_name} on CA"
8018
- msgstr ""
8019
-
8020
- #: ../lib/puppet/ssl/host.rb:453
8021
- msgid "Could not download host certificate: %{message}"
8022
- msgstr ""
8023
-
8024
- #: ../lib/puppet/ssl/oids.rb:110
7378
+ #: ../lib/puppet/ssl/oids.rb:112
8025
7379
  msgid "Error loading ssl custom OIDs mapping file from '%{custom_oid_file}': %{err}"
8026
7380
  msgstr ""
8027
7381
 
8028
- #: ../lib/puppet/ssl/oids.rb:114
7382
+ #: ../lib/puppet/ssl/oids.rb:116
8029
7383
  msgid "Error loading ssl custom OIDs mapping file from '%{custom_oid_file}': no such index '%{map_key}'"
8030
7384
  msgstr ""
8031
7385
 
8032
- #: ../lib/puppet/ssl/oids.rb:118
7386
+ #: ../lib/puppet/ssl/oids.rb:120
8033
7387
  msgid "Error loading ssl custom OIDs mapping file from '%{custom_oid_file}': data under index '%{map_key}' must be a Hash"
8034
7388
  msgstr ""
8035
7389
 
8036
- #: ../lib/puppet/ssl/oids.rb:125
7390
+ #: ../lib/puppet/ssl/oids.rb:127
8037
7391
  msgid "Error loading ssl custom OIDs mapping file from '%{custom_oid_file}': incomplete definition of oid '%{oid}'"
8038
7392
  msgstr ""
8039
7393
 
8040
- #: ../lib/puppet/ssl/oids.rb:157
7394
+ #: ../lib/puppet/ssl/oids.rb:159
8041
7395
  msgid "Error registering ssl custom OIDs mapping from file '%{custom_oid_file}': %{err}"
8042
7396
  msgstr ""
8043
7397
 
8044
- #: ../lib/puppet/ssl/ssl_provider.rb:66
7398
+ #: ../lib/puppet/ssl/ssl_provider.rb:83
8045
7399
  msgid "Failed to add '%{path}' as a trusted CA file: %{detail}"
8046
7400
  msgstr ""
8047
7401
 
8048
- #: ../lib/puppet/ssl/ssl_provider.rb:70
7402
+ #: ../lib/puppet/ssl/ssl_provider.rb:87
8049
7403
  msgid "The 'ssl_trust_store' setting does not refer to a file and will be ignored: '%{path}'"
8050
7404
  msgstr ""
8051
7405
 
8052
- #: ../lib/puppet/ssl/ssl_provider.rb:104
7406
+ #: ../lib/puppet/ssl/ssl_provider.rb:121
8053
7407
  msgid "CA certs are missing"
8054
7408
  msgstr ""
8055
7409
 
8056
- #: ../lib/puppet/ssl/ssl_provider.rb:105
7410
+ #: ../lib/puppet/ssl/ssl_provider.rb:122
8057
7411
  msgid "CRLs are missing"
8058
7412
  msgstr ""
8059
7413
 
8060
- #: ../lib/puppet/ssl/ssl_provider.rb:106
7414
+ #: ../lib/puppet/ssl/ssl_provider.rb:123
8061
7415
  msgid "Private key is missing"
8062
7416
  msgstr ""
8063
7417
 
8064
- #: ../lib/puppet/ssl/ssl_provider.rb:107
7418
+ #: ../lib/puppet/ssl/ssl_provider.rb:124
8065
7419
  msgid "Client cert is missing"
8066
7420
  msgstr ""
8067
7421
 
8068
- #: ../lib/puppet/ssl/ssl_provider.rb:113
7422
+ #: ../lib/puppet/ssl/ssl_provider.rb:130
8069
7423
  msgid "Unsupported key '%{type}'"
8070
7424
  msgstr ""
8071
7425
 
8072
- #: ../lib/puppet/ssl/ssl_provider.rb:117
7426
+ #: ../lib/puppet/ssl/ssl_provider.rb:134
8073
7427
  msgid "The certificate for '%{name}' does not match its private key"
8074
7428
  msgstr ""
8075
7429
 
8076
- #: ../lib/puppet/ssl/ssl_provider.rb:156
7430
+ #: ../lib/puppet/ssl/ssl_provider.rb:173
8077
7431
  msgid "Failed to load private key for host '%{name}': %{message}"
8078
7432
  msgstr ""
8079
7433
 
8080
- #: ../lib/puppet/ssl/ssl_provider.rb:170
7434
+ #: ../lib/puppet/ssl/ssl_provider.rb:187
8081
7435
  msgid "The CSR for host '%{name}' does not match the public key"
8082
7436
  msgstr ""
8083
7437
 
8084
- #: ../lib/puppet/ssl/ssl_provider.rb:234
7438
+ #: ../lib/puppet/ssl/ssl_provider.rb:251
8085
7439
  msgid "The issuer '%{issuer}' of certificate '%{subject}' cannot be found locally"
8086
7440
  msgstr ""
8087
7441
 
8088
- #: ../lib/puppet/ssl/ssl_provider.rb:250
7442
+ #: ../lib/puppet/ssl/ssl_provider.rb:267
8089
7443
  msgid "The certificate '%{subject}' is not yet valid, verify time is synchronized"
8090
7444
  msgstr ""
8091
7445
 
8092
- #: ../lib/puppet/ssl/ssl_provider.rb:252
7446
+ #: ../lib/puppet/ssl/ssl_provider.rb:269
8093
7447
  msgid "The certificate '%{subject}' has expired, verify time is synchronized"
8094
7448
  msgstr ""
8095
7449
 
8096
- #: ../lib/puppet/ssl/ssl_provider.rb:254
7450
+ #: ../lib/puppet/ssl/ssl_provider.rb:271
8097
7451
  msgid "The CRL issued by '%{issuer}' is not yet valid, verify time is synchronized"
8098
7452
  msgstr ""
8099
7453
 
8100
- #: ../lib/puppet/ssl/ssl_provider.rb:256
7454
+ #: ../lib/puppet/ssl/ssl_provider.rb:273
8101
7455
  msgid "The CRL issued by '%{issuer}' has expired, verify time is synchronized"
8102
7456
  msgstr ""
8103
7457
 
8104
- #: ../lib/puppet/ssl/ssl_provider.rb:258
7458
+ #: ../lib/puppet/ssl/ssl_provider.rb:275
8105
7459
  msgid "Invalid signature for certificate '%{subject}'"
8106
7460
  msgstr ""
8107
7461
 
8108
- #: ../lib/puppet/ssl/ssl_provider.rb:260
7462
+ #: ../lib/puppet/ssl/ssl_provider.rb:277
8109
7463
  msgid "Invalid signature for CRL issued by '%{issuer}'"
8110
7464
  msgstr ""
8111
7465
 
8112
- #: ../lib/puppet/ssl/ssl_provider.rb:262
7466
+ #: ../lib/puppet/ssl/ssl_provider.rb:279
8113
7467
  msgid "The issuer '%{issuer}' of certificate '%{subject}' is missing"
8114
7468
  msgstr ""
8115
7469
 
8116
- #: ../lib/puppet/ssl/ssl_provider.rb:265
7470
+ #: ../lib/puppet/ssl/ssl_provider.rb:282
8117
7471
  msgid "The CRL issued by '%{issuer}' is missing"
8118
7472
  msgstr ""
8119
7473
 
8120
- #: ../lib/puppet/ssl/ssl_provider.rb:267
7474
+ #: ../lib/puppet/ssl/ssl_provider.rb:284
8121
7475
  msgid "Certificate '%{subject}' is revoked"
8122
7476
  msgstr ""
8123
7477
 
8124
- #: ../lib/puppet/ssl/ssl_provider.rb:271
7478
+ #: ../lib/puppet/ssl/ssl_provider.rb:288
8125
7479
  msgid "Certificate '%{subject}' failed verification (%{err}): %{err_utf8}"
8126
7480
  msgstr ""
8127
7481
 
@@ -8145,6 +7499,10 @@ msgstr ""
8145
7499
  msgid "CRL is missing from the server"
8146
7500
  msgstr ""
8147
7501
 
7502
+ #: ../lib/puppet/ssl/state_machine.rb:120
7503
+ msgid "Could not download CRLs: %{message}"
7504
+ msgstr ""
7505
+
8148
7506
  #: ../lib/puppet/ssl/state_machine.rb:127
8149
7507
  msgid "Refreshing CRL"
8150
7508
  msgstr ""
@@ -8217,16 +7575,16 @@ msgstr ""
8217
7575
  msgid "Another puppet instance is already running; waiting for it to finish"
8218
7576
  msgstr ""
8219
7577
 
8220
- #: ../lib/puppet/ssl/state_machine.rb:427
7578
+ #: ../lib/puppet/ssl/state_machine.rb:429
8221
7579
  msgid "Verified client certificate '%{subject}' fingerprint %{digest}"
8222
7580
  msgstr ""
8223
7581
 
8224
- #: ../lib/puppet/ssl/state_machine.rb:429
7582
+ #: ../lib/puppet/ssl/state_machine.rb:431
8225
7583
  msgid "Verified CA certificate '%{subject}' fingerprint %{digest}"
8226
7584
  msgstr ""
8227
7585
 
8228
7586
  #. 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
8229
- #: ../lib/puppet/ssl/verifier.rb:128
7587
+ #: ../lib/puppet/ssl/verifier.rb:130
8230
7588
  msgid "certificate verify failed [%{error} for %{subject}]"
8231
7589
  msgstr ""
8232
7590
 
@@ -8351,19 +7709,19 @@ msgid "Prefetch failed for %{type_name} provider '%{name}'"
8351
7709
  msgstr ""
8352
7710
 
8353
7711
  #. TRANSLATORS `prefetch` is a function name and should not be translated
8354
- #: ../lib/puppet/transaction.rb:381 ../lib/puppet/transaction.rb:384
7712
+ #: ../lib/puppet/transaction.rb:381
8355
7713
  msgid "Could not prefetch %{type_name} provider '%{name}': %{detail}"
8356
7714
  msgstr ""
8357
7715
 
8358
- #: ../lib/puppet/transaction.rb:421
7716
+ #: ../lib/puppet/transaction.rb:415
8359
7717
  msgid "Skipping resources in class because of failed class dependencies"
8360
7718
  msgstr ""
8361
7719
 
8362
- #: ../lib/puppet/transaction.rb:425
7720
+ #: ../lib/puppet/transaction.rb:419
8363
7721
  msgid "Skipping because of failed dependencies"
8364
7722
  msgstr ""
8365
7723
 
8366
- #: ../lib/puppet/transaction.rb:430
7724
+ #: ../lib/puppet/transaction.rb:424
8367
7725
  msgid "Skipping because provider prefetch failed"
8368
7726
  msgstr ""
8369
7727
 
@@ -8484,77 +7842,77 @@ msgstr ""
8484
7842
  msgid "There is more than one '%{basename}' script in %{dir}"
8485
7843
  msgstr ""
8486
7844
 
8487
- #: ../lib/puppet/type.rb:519
7845
+ #: ../lib/puppet/type.rb:496
8488
7846
  msgid "Options must be a hash, not %{type}"
8489
7847
  msgstr ""
8490
7848
 
8491
- #: ../lib/puppet/type.rb:522
7849
+ #: ../lib/puppet/type.rb:499
8492
7850
  msgid "Class %{class_name} already has a property named %{property}"
8493
7851
  msgstr ""
8494
7852
 
8495
- #: ../lib/puppet/type.rb:609
7853
+ #: ../lib/puppet/type.rb:586
8496
7854
  msgid "Class %{class_name} has not defined parameters"
8497
7855
  msgstr ""
8498
7856
 
8499
- #: ../lib/puppet/type.rb:696
7857
+ #: ../lib/puppet/type.rb:673
8500
7858
  msgid "Parameter %{name} failed on %{ref}: %{detail}"
8501
7859
  msgstr ""
8502
7860
 
8503
- #: ../lib/puppet/type.rb:719
7861
+ #: ../lib/puppet/type.rb:696
8504
7862
  msgid "Undefined attribute '%{attribute}' in %{name}"
8505
7863
  msgstr ""
8506
7864
 
8507
7865
  #. TRANSLATORS 'is' is a variable name and should not be translated
8508
7866
  #. TRANSLATORS 'is' is a variable name and should not be translated
8509
- #: ../lib/puppet/type.rb:1062 ../lib/puppet/type.rb:1073
7867
+ #: ../lib/puppet/type.rb:1039 ../lib/puppet/type.rb:1050
8510
7868
  msgid "The 'is' value is not in the 'is' array for '%{name}'"
8511
7869
  msgstr ""
8512
7870
 
8513
- #: ../lib/puppet/type.rb:1204
7871
+ #: ../lib/puppet/type.rb:1181
8514
7872
  msgid "%{name} has no providers and has not overridden 'instances'"
8515
7873
  msgstr ""
8516
7874
 
8517
- #: ../lib/puppet/type.rb:1468
7875
+ #: ../lib/puppet/type.rb:1445
8518
7876
  msgid "Cannot add aliases without a catalog"
8519
7877
  msgstr ""
8520
7878
 
8521
- #: ../lib/puppet/type.rb:1548
7879
+ #: ../lib/puppet/type.rb:1525
8522
7880
  msgid "Could not find %{description} %{ref} for %{resource}"
8523
7881
  msgstr ""
8524
7882
 
8525
- #: ../lib/puppet/type.rb:1825
7883
+ #: ../lib/puppet/type.rb:1749
8526
7884
  msgid "Found multiple default providers for %{name}: %{provider_list}; using %{selected_provider}"
8527
7885
  msgstr ""
8528
7886
 
8529
- #: ../lib/puppet/type.rb:1912
7887
+ #: ../lib/puppet/type.rb:1836
8530
7888
  msgid "Could not find parent provider %{parent} of %{name}"
8531
7889
  msgstr ""
8532
7890
 
8533
- #: ../lib/puppet/type.rb:1986
7891
+ #: ../lib/puppet/type.rb:1910
8534
7892
  msgid "Invalid %{resource} provider '%{provider_class}'"
8535
7893
  msgstr ""
8536
7894
 
8537
- #: ../lib/puppet/type.rb:2071
7895
+ #: ../lib/puppet/type.rb:1995
8538
7896
  msgid "Could not find %{name} provider of %{provider}"
8539
7897
  msgstr ""
8540
7898
 
8541
- #: ../lib/puppet/type.rb:2189
7899
+ #: ../lib/puppet/type.rb:2113
8542
7900
  msgid "You cannot add relationships without a catalog"
8543
7901
  msgstr ""
8544
7902
 
8545
- #: ../lib/puppet/type.rb:2492
7903
+ #: ../lib/puppet/type.rb:2416
8546
7904
  msgid "Unable to mark '%{name}' as sensitive: %{name} is a parameter and not a property, and cannot be automatically redacted."
8547
7905
  msgstr ""
8548
7906
 
8549
- #: ../lib/puppet/type.rb:2495
7907
+ #: ../lib/puppet/type.rb:2419
8550
7908
  msgid "Unable to mark '%{name}' as sensitive: the property itself was not assigned a value."
8551
7909
  msgstr ""
8552
7910
 
8553
- #: ../lib/puppet/type.rb:2497
7911
+ #: ../lib/puppet/type.rb:2421
8554
7912
  msgid "Unable to mark '%{name}' as sensitive: the property itself is not defined on %{type}."
8555
7913
  msgstr ""
8556
7914
 
8557
- #: ../lib/puppet/type.rb:2555
7915
+ #: ../lib/puppet/type.rb:2479
8558
7916
  msgid "Could not set %{attribute} on %{class_name}: %{detail}"
8559
7917
  msgstr ""
8560
7918
 
@@ -8631,86 +7989,86 @@ msgstr ""
8631
7989
  msgid "File paths must be fully qualified, not '%{path}'"
8632
7990
  msgstr ""
8633
7991
 
8634
- #: ../lib/puppet/type/file.rb:142
7992
+ #: ../lib/puppet/type/file.rb:140
8635
7993
  msgid "Invalid backup type %{value}"
8636
7994
  msgstr ""
8637
7995
 
8638
- #: ../lib/puppet/type/file.rb:186 ../lib/puppet/type/tidy.rb:48
7996
+ #: ../lib/puppet/type/file.rb:184 ../lib/puppet/type/tidy.rb:48
8639
7997
  msgid "Invalid recurse value %{value}"
8640
7998
  msgstr ""
8641
7999
 
8642
- #: ../lib/puppet/type/file.rb:218
8000
+ #: ../lib/puppet/type/file.rb:216
8643
8001
  msgid "Invalid recurselimit value %{value}"
8644
8002
  msgstr ""
8645
8003
 
8646
- #: ../lib/puppet/type/file.rb:418
8004
+ #: ../lib/puppet/type/file.rb:416
8647
8005
  msgid "You cannot specify more than one of %{creators}"
8648
8006
  msgstr ""
8649
8007
 
8650
- #: ../lib/puppet/type/file.rb:420
8008
+ #: ../lib/puppet/type/file.rb:418
8651
8009
  msgid "You cannot specify a remote recursion without a source"
8652
8010
  msgstr ""
8653
8011
 
8654
- #: ../lib/puppet/type/file.rb:422
8012
+ #: ../lib/puppet/type/file.rb:420
8655
8013
  msgid "You cannot specify source when using checksum 'none'"
8656
8014
  msgstr ""
8657
8015
 
8658
- #: ../lib/puppet/type/file.rb:425
8016
+ #: ../lib/puppet/type/file.rb:423
8659
8017
  msgid "You cannot specify content when using checksum '%{checksum_type}'"
8660
8018
  msgstr ""
8661
8019
 
8662
- #: ../lib/puppet/type/file.rb:428
8020
+ #: ../lib/puppet/type/file.rb:426
8663
8021
  msgid "Possible error: recurselimit is set but not recurse, no recursion will happen"
8664
8022
  msgstr ""
8665
8023
 
8666
- #: ../lib/puppet/type/file.rb:436
8024
+ #: ../lib/puppet/type/file.rb:434
8667
8025
  msgid "Checksum value '%{value}' is not a valid checksum type %{checksum}"
8668
8026
  msgstr ""
8669
8027
 
8670
- #: ../lib/puppet/type/file.rb:439
8028
+ #: ../lib/puppet/type/file.rb:437
8671
8029
  msgid "Checksum value is ignored unless content or source are specified"
8672
8030
  msgstr ""
8673
8031
 
8674
- #: ../lib/puppet/type/file.rb:477
8032
+ #: ../lib/puppet/type/file.rb:475
8675
8033
  msgid "Can not find filebucket for backups without a catalog"
8676
8034
  msgstr ""
8677
8035
 
8678
- #: ../lib/puppet/type/file.rb:482
8036
+ #: ../lib/puppet/type/file.rb:480
8679
8037
  msgid "Could not find filebucket %{backup} specified in backup"
8680
8038
  msgstr ""
8681
8039
 
8682
- #: ../lib/puppet/type/file.rb:780
8040
+ #: ../lib/puppet/type/file.rb:778
8683
8041
  msgid "Could not back up file of type %{current_type}"
8684
8042
  msgstr ""
8685
8043
 
8686
- #: ../lib/puppet/type/file.rb:795
8044
+ #: ../lib/puppet/type/file.rb:793
8687
8045
  msgid "Could not remove files of type %{current_type}"
8688
8046
  msgstr ""
8689
8047
 
8690
8048
  #. TRANSLATORS "source_permissions => ignore" should not be translated
8691
- #: ../lib/puppet/type/file.rb:806
8049
+ #: ../lib/puppet/type/file.rb:804
8692
8050
  msgid "Copying owner/mode/group from the source file on Windows is not supported; use source_permissions => ignore."
8693
8051
  msgstr ""
8694
8052
 
8695
8053
  #. TRANSLATORS "stat" is a program name and should not be translated
8696
- #: ../lib/puppet/type/file.rb:887 ../lib/puppet/type/tidy.rb:352
8054
+ #: ../lib/puppet/type/file.rb:885 ../lib/puppet/type/tidy.rb:352
8697
8055
  msgid "Could not stat; permission denied"
8698
8056
  msgstr ""
8699
8057
 
8700
- #: ../lib/puppet/type/file.rb:890
8058
+ #: ../lib/puppet/type/file.rb:888
8701
8059
  msgid "Could not stat; invalid pathname"
8702
8060
  msgstr ""
8703
8061
 
8704
- #: ../lib/puppet/type/file.rb:1018
8062
+ #: ../lib/puppet/type/file.rb:1016
8705
8063
  msgid "Not removing directory; use 'force' to override"
8706
8064
  msgstr ""
8707
8065
 
8708
8066
  #. TRANSLATORS refers to a file which could not be backed up
8709
- #: ../lib/puppet/type/file.rb:1043
8067
+ #: ../lib/puppet/type/file.rb:1041
8710
8068
  msgid "Could not back up; will not remove"
8711
8069
  msgstr ""
8712
8070
 
8713
- #: ../lib/puppet/type/file.rb:1058
8071
+ #: ../lib/puppet/type/file.rb:1056
8714
8072
  msgid "File written to disk did not match desired checksum; discarding changes (%{content_checksum} vs %{desired_checksum})"
8715
8073
  msgstr ""
8716
8074
 
@@ -8776,36 +8134,36 @@ msgstr ""
8776
8134
  msgid "Invalid GID %{gid}"
8777
8135
  msgstr ""
8778
8136
 
8779
- #: ../lib/puppet/type/package.rb:128 ../lib/puppet/type/package.rb:142
8137
+ #: ../lib/puppet/type/package.rb:124 ../lib/puppet/type/package.rb:138
8780
8138
  msgid "Could not update: %{detail}"
8781
8139
  msgstr ""
8782
8140
 
8783
- #: ../lib/puppet/type/package.rb:177
8141
+ #: ../lib/puppet/type/package.rb:173
8784
8142
  msgid "Could not get latest version: %{detail}"
8785
8143
  msgstr ""
8786
8144
 
8787
- #: ../lib/puppet/type/package.rb:277
8145
+ #: ../lib/puppet/type/package.rb:273
8788
8146
  msgid "Name must be a String not %{klass}"
8789
8147
  msgstr ""
8790
8148
 
8791
- #: ../lib/puppet/type/package.rb:423
8149
+ #: ../lib/puppet/type/package.rb:419
8792
8150
  msgid "Cannot have both `ensure => disabled` and `flavor`"
8793
8151
  msgstr ""
8794
8152
 
8795
- #: ../lib/puppet/type/package.rb:522
8153
+ #: ../lib/puppet/type/package.rb:518
8796
8154
  msgid "Cannot have both `enable_only => true` and `flavor`"
8797
8155
  msgstr ""
8798
8156
 
8799
- #: ../lib/puppet/type/package.rb:525
8157
+ #: ../lib/puppet/type/package.rb:521
8800
8158
  msgid "Cannot have both `ensure => disabled` and `enable_only => true`"
8801
8159
  msgstr ""
8802
8160
 
8803
- #: ../lib/puppet/type/package.rb:687
8161
+ #: ../lib/puppet/type/package.rb:682
8804
8162
  msgid "Invalid hold value %{value}. %{doc}"
8805
8163
  msgstr ""
8806
8164
 
8807
- #: ../lib/puppet/type/package.rb:717
8808
- msgid "You cannot use \"mark\" property while \"ensure\" is one of [\"absent\", \"purged\", \"held\"]"
8165
+ #: ../lib/puppet/type/package.rb:709
8166
+ msgid "You cannot use \"mark\" property while \"ensure\" is one of [\"absent\", \"purged\"]"
8809
8167
  msgstr ""
8810
8168
 
8811
8169
  #: ../lib/puppet/type/resources.rb:15
@@ -9084,7 +8442,7 @@ msgstr ""
9084
8442
  msgid "Could not autoload %{name}: %{detail}"
9085
8443
  msgstr ""
9086
8444
 
9087
- #: ../lib/puppet/util/autoload.rb:184
8445
+ #: ../lib/puppet/util/autoload.rb:177
9088
8446
  msgid "Autoload paths cannot be fully qualified"
9089
8447
  msgstr ""
9090
8448
 
@@ -9297,37 +8655,6 @@ msgstr ""
9297
8655
  msgid "Trollop::die can only be called after Trollop::options"
9298
8656
  msgstr ""
9299
8657
 
9300
- #: ../lib/puppet/util/connection.rb:28
9301
- msgid "Selected server from the %{setting} setting: %{server}"
9302
- msgstr ""
9303
-
9304
- #. TRANSLATORS 'server_list' is the name of a setting and should not be translated
9305
- #: ../lib/puppet/util/connection.rb:35
9306
- msgid "Dynamically-bound server lookup failed; using first entry from the `server_list` setting: %{server}"
9307
- msgstr ""
9308
-
9309
- #: ../lib/puppet/util/connection.rb:39
9310
- msgid "Dynamically-bound server lookup failed, falling back to %{setting} setting: %{server}"
9311
- msgstr ""
9312
-
9313
- #: ../lib/puppet/util/connection.rb:60
9314
- msgid "Selected port from the %{setting} setting: %{port}"
9315
- msgstr ""
9316
-
9317
- #. TRANSLATORS 'server_list' is the name of a setting and should not be translated
9318
- #: ../lib/puppet/util/connection.rb:71
9319
- msgid "Dynamically-bound port lookup failed; using first entry from the `server_list` setting: %{port}"
9320
- msgstr ""
9321
-
9322
- #. TRANSLATORS 'serverport' is the name of a setting and should not be translated
9323
- #: ../lib/puppet/util/connection.rb:75
9324
- msgid "Dynamically-bound port lookup failed; falling back to `serverport` setting: %{port}"
9325
- msgstr ""
9326
-
9327
- #: ../lib/puppet/util/connection.rb:80
9328
- msgid "Dynamically-bound port lookup failed; falling back to %{setting} setting: %{port}"
9329
- msgstr ""
9330
-
9331
8658
  #: ../lib/puppet/util/diff.rb:30
9332
8659
  msgid "Cannot provide diff without the diff/lcs Ruby library"
9333
8660
  msgstr ""
@@ -9360,23 +8687,23 @@ msgstr ""
9360
8687
  msgid "%{klass} failed with error %{error_type}: %{detail}"
9361
8688
  msgstr ""
9362
8689
 
9363
- #: ../lib/puppet/util/execution.rb:196
8690
+ #: ../lib/puppet/util/execution.rb:185
9364
8691
  msgid "Working directory %{cwd} does not exist!"
9365
8692
  msgstr ""
9366
8693
 
9367
- #: ../lib/puppet/util/execution.rb:288
8694
+ #: ../lib/puppet/util/execution.rb:277
9368
8695
  msgid "Could not get output"
9369
8696
  msgstr ""
9370
8697
 
9371
- #: ../lib/puppet/util/execution.rb:297
8698
+ #: ../lib/puppet/util/execution.rb:286
9372
8699
  msgid "Execution of '%{str}' returned %{exit_status}: %{output}"
9373
8700
  msgstr ""
9374
8701
 
9375
- #: ../lib/puppet/util/execution.rb:374
8702
+ #: ../lib/puppet/util/execution.rb:363
9376
8703
  msgid "Could not execute posix command: %{detail}"
9377
8704
  msgstr ""
9378
8705
 
9379
- #: ../lib/puppet/util/execution.rb:422
8706
+ #: ../lib/puppet/util/execution.rb:411
9380
8707
  msgid "Waiting for output; will sleep %{time_to_sleep} seconds"
9381
8708
  msgstr ""
9382
8709
 
@@ -9488,10 +8815,6 @@ msgstr ""
9488
8815
  msgid "Could not write crontab for %{path}: %{detail}"
9489
8816
  msgstr ""
9490
8817
 
9491
- #: ../lib/puppet/util/http_proxy.rb:215
9492
- msgid "Too many HTTP redirections for %{uri}"
9493
- msgstr ""
9494
-
9495
8818
  #: ../lib/puppet/util/inifile.rb:139
9496
8819
  msgid "Cannot read nonexistent file %{file}"
9497
8820
  msgstr ""
@@ -9640,6 +8963,10 @@ msgstr ""
9640
8963
  msgid "Duplicate device found at %{file_error_location}, already found at %{device_error_location}"
9641
8964
  msgstr ""
9642
8965
 
8966
+ #: ../lib/puppet/util/network_device/config.rb:71
8967
+ msgid "Invalid entry at %{error_location}: %{file_text}"
8968
+ msgstr ""
8969
+
9643
8970
  #: ../lib/puppet/util/network_device/config.rb:77
9644
8971
  msgid "Configuration error: Cannot read %{file}; cannot serve"
9645
8972
  msgstr ""
@@ -9668,19 +8995,19 @@ msgstr ""
9668
8995
  msgid "Unable to write the file %{file_path}. %{error}"
9669
8996
  msgstr ""
9670
8997
 
9671
- #: ../lib/puppet/util/posix.rb:22
8998
+ #: ../lib/puppet/util/posix.rb:29
9672
8999
  msgid "Removing any duplicate group entries"
9673
9000
  msgstr ""
9674
9001
 
9675
- #: ../lib/puppet/util/posix.rb:35
9002
+ #: ../lib/puppet/util/posix.rb:75
9676
9003
  msgid "Did not get id from caller"
9677
9004
  msgstr ""
9678
9005
 
9679
- #: ../lib/puppet/util/posix.rb:39 ../lib/puppet/util/posix.rb:64
9006
+ #: ../lib/puppet/util/posix.rb:79 ../lib/puppet/util/posix.rb:104
9680
9007
  msgid "Tried to get %{field} field for silly id %{id}"
9681
9008
  msgstr ""
9682
9009
 
9683
- #: ../lib/puppet/util/posix.rb:92 ../lib/puppet/util/posix.rb:102 ../lib/puppet/util/posix.rb:112
9010
+ #: ../lib/puppet/util/posix.rb:132 ../lib/puppet/util/posix.rb:142 ../lib/puppet/util/posix.rb:152
9684
9011
  msgid "Can only handle users and groups"
9685
9012
  msgstr ""
9686
9013
 
@@ -9696,7 +9023,7 @@ msgstr ""
9696
9023
  msgid "Could not create feature %{name}: %{detail}"
9697
9024
  msgstr ""
9698
9025
 
9699
- #: ../lib/puppet/util/rdoc.rb:44 ../lib/puppet/util/rdoc.rb:50 ../lib/puppet/util/rdoc.rb:54 ../lib/puppet/util/rdoc.rb:58
9026
+ #: ../lib/puppet/util/rdoc.rb:37 ../lib/puppet/util/rdoc.rb:43 ../lib/puppet/util/rdoc.rb:47 ../lib/puppet/util/rdoc.rb:51
9700
9027
  msgid "RDOC SUPPORT FOR MANIFEST HAS BEEN REMOVED - See PUP-3638"
9701
9028
  msgstr ""
9702
9029
 
@@ -9900,14 +9227,6 @@ msgstr ""
9900
9227
  msgid "Cannot create group if user '%{name}' exists."
9901
9228
  msgstr ""
9902
9229
 
9903
- #: ../lib/puppet/util/windows/api_types.rb:85
9904
- msgid "Unable to read wide strings with %{null_terminator} terminal nulls"
9905
- msgstr ""
9906
-
9907
- #: ../lib/puppet/util/windows/api_types.rb:230
9908
- msgid "Bad GUID format."
9909
- msgstr ""
9910
-
9911
9230
  #: ../lib/puppet/util/windows/com.rb:17
9912
9231
  msgid "%{name} failed (hresult %{result})."
9913
9232
  msgstr ""
@@ -9920,11 +9239,11 @@ msgstr ""
9920
9239
  msgid "CoCreateInstance failed (%{klass})."
9921
9240
  msgstr ""
9922
9241
 
9923
- #: ../lib/puppet/util/windows/error.rb:42
9242
+ #: ../lib/puppet/util/windows/error.rb:43
9924
9243
  msgid "FormatMessageW could not format code %{code}"
9925
9244
  msgstr ""
9926
9245
 
9927
- #: ../lib/puppet/util/windows/error.rb:48
9246
+ #: ../lib/puppet/util/windows/error.rb:49
9928
9247
  msgid "FormatMessageW failed to allocate buffer for code %{code}"
9929
9248
  msgstr ""
9930
9249
 
@@ -9947,15 +9266,15 @@ msgstr ""
9947
9266
  msgid "(Win32 error: %{detail})"
9948
9267
  msgstr ""
9949
9268
 
9950
- #: ../lib/puppet/util/windows/file.rb:180
9269
+ #: ../lib/puppet/util/windows/file.rb:117
9951
9270
  msgid "Failed to set file attributes"
9952
9271
  msgstr ""
9953
9272
 
9954
- #: ../lib/puppet/util/windows/file.rb:255
9273
+ #: ../lib/puppet/util/windows/file.rb:180
9955
9274
  msgid "out_buffer is required"
9956
9275
  msgstr ""
9957
9276
 
9958
- #: ../lib/puppet/util/windows/file.rb:342
9277
+ #: ../lib/puppet/util/windows/file.rb:253
9959
9278
  msgid "Failed to call GetLongPathName"
9960
9279
  msgstr ""
9961
9280
 
@@ -10122,119 +9441,119 @@ msgstr ""
10122
9441
  msgid "Failed to set security information"
10123
9442
  msgstr ""
10124
9443
 
10125
- #: ../lib/puppet/util/windows/service.rb:338
9444
+ #: ../lib/puppet/util/windows/service.rb:44
10126
9445
  msgid "Starting the %{service_name} service. Timeout set to: %{timeout} seconds"
10127
9446
  msgstr ""
10128
9447
 
10129
- #: ../lib/puppet/util/windows/service.rb:348
9448
+ #: ../lib/puppet/util/windows/service.rb:54
10130
9449
  msgid "Failed to start the service"
10131
9450
  msgstr ""
10132
9451
 
10133
- #: ../lib/puppet/util/windows/service.rb:352
9452
+ #: ../lib/puppet/util/windows/service.rb:58
10134
9453
  msgid "Successfully started the %{service_name} service"
10135
9454
  msgstr ""
10136
9455
 
10137
- #: ../lib/puppet/util/windows/service.rb:361
9456
+ #: ../lib/puppet/util/windows/service.rb:67
10138
9457
  msgid "Stopping the %{service_name} service. Timeout set to: %{timeout} seconds"
10139
9458
  msgstr ""
10140
9459
 
10141
- #: ../lib/puppet/util/windows/service.rb:369
9460
+ #: ../lib/puppet/util/windows/service.rb:75
10142
9461
  msgid "Successfully stopped the %{service_name} service"
10143
9462
  msgstr ""
10144
9463
 
10145
- #: ../lib/puppet/util/windows/service.rb:378
9464
+ #: ../lib/puppet/util/windows/service.rb:84
10146
9465
  msgid "Resuming the %{service_name} service. Timeout set to: %{timeout} seconds"
10147
9466
  msgstr ""
10148
9467
 
10149
- #: ../lib/puppet/util/windows/service.rb:394
9468
+ #: ../lib/puppet/util/windows/service.rb:100
10150
9469
  msgid "Successfully resumed the %{service_name} service"
10151
9470
  msgstr ""
10152
9471
 
10153
- #: ../lib/puppet/util/windows/service.rb:410
9472
+ #: ../lib/puppet/util/windows/service.rb:116
10154
9473
  msgid "Unknown Service state '%{current_state}' for '%{service_name}'"
10155
9474
  msgstr ""
10156
9475
 
10157
- #: ../lib/puppet/util/windows/service.rb:437
9476
+ #: ../lib/puppet/util/windows/service.rb:143
10158
9477
  msgid "Unknown start type '%{start_type}' for '%{service_name}'"
10159
9478
  msgstr ""
10160
9479
 
10161
- #: ../lib/puppet/util/windows/service.rb:487
9480
+ #: ../lib/puppet/util/windows/service.rb:193
10162
9481
  msgid "Failed to update service configuration"
10163
9482
  msgstr ""
10164
9483
 
10165
- #: ../lib/puppet/util/windows/service.rb:552
9484
+ #: ../lib/puppet/util/windows/service.rb:258
10166
9485
  msgid "Failed to fetch services"
10167
9486
  msgstr ""
10168
9487
 
10169
- #: ../lib/puppet/util/windows/service.rb:601
9488
+ #: ../lib/puppet/util/windows/service.rb:307
10170
9489
  msgid "Failed to open a handle to the service"
10171
9490
  msgstr ""
10172
9491
 
10173
- #: ../lib/puppet/util/windows/service.rb:618
9492
+ #: ../lib/puppet/util/windows/service.rb:324
10174
9493
  msgid "Failed to open a handle to the service control manager"
10175
9494
  msgstr ""
10176
9495
 
10177
- #: ../lib/puppet/util/windows/service.rb:641
9496
+ #: ../lib/puppet/util/windows/service.rb:347
10178
9497
  msgid "The service is already in the %{final_state} state. No further work needs to be done."
10179
9498
  msgstr ""
10180
9499
 
10181
- #: ../lib/puppet/util/windows/service.rb:653
9500
+ #: ../lib/puppet/util/windows/service.rb:359
10182
9501
  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."
10183
9502
  msgstr ""
10184
9503
 
10185
- #: ../lib/puppet/util/windows/service.rb:664
9504
+ #: ../lib/puppet/util/windows/service.rb:370
10186
9505
  msgid "There is already a pending transition to the %{final_state} state for the %{service_name} service."
10187
9506
  msgstr ""
10188
9507
 
10189
- #: ../lib/puppet/util/windows/service.rb:680
9508
+ #: ../lib/puppet/util/windows/service.rb:386
10190
9509
  msgid "The service is in the %{pending_state} state, which is an unsafe pending state."
10191
9510
  msgstr ""
10192
9511
 
10193
- #: ../lib/puppet/util/windows/service.rb:685
9512
+ #: ../lib/puppet/util/windows/service.rb:391
10194
9513
  msgid "Transitioning the %{service_name} service from %{initial_state} to %{final_state}"
10195
9514
  msgstr ""
10196
9515
 
10197
- #: ../lib/puppet/util/windows/service.rb:689
9516
+ #: ../lib/puppet/util/windows/service.rb:395
10198
9517
  msgid "Waiting for the transition to finish"
10199
9518
  msgstr ""
10200
9519
 
10201
- #: ../lib/puppet/util/windows/service.rb:694
9520
+ #: ../lib/puppet/util/windows/service.rb:400
10202
9521
  msgid "Failed to transition the %{service_name} service to the %{final_state} state. Detail: %{detail}"
10203
9522
  msgstr ""
10204
9523
 
10205
- #: ../lib/puppet/util/windows/service.rb:733 ../lib/puppet/util/windows/service.rb:769
9524
+ #: ../lib/puppet/util/windows/service.rb:439 ../lib/puppet/util/windows/service.rb:475
10206
9525
  msgid "Service query failed"
10207
9526
  msgstr ""
10208
9527
 
10209
- #: ../lib/puppet/util/windows/service.rb:812
9528
+ #: ../lib/puppet/util/windows/service.rb:518
10210
9529
  msgid "Service query for %{parameter_name} failed"
10211
9530
  msgstr ""
10212
9531
 
10213
- #: ../lib/puppet/util/windows/service.rb:835
9532
+ #: ../lib/puppet/util/windows/service.rb:541
10214
9533
  msgid "Failed to update service %{change} configuration"
10215
9534
  msgstr ""
10216
9535
 
10217
- #: ../lib/puppet/util/windows/service.rb:862
9536
+ #: ../lib/puppet/util/windows/service.rb:568
10218
9537
  msgid "Failed to send the %{control_signal} signal to the service. Its current state is %{current_state}. Reason for failure:"
10219
9538
  msgstr ""
10220
9539
 
10221
- #: ../lib/puppet/util/windows/service.rb:897
9540
+ #: ../lib/puppet/util/windows/service.rb:603
10222
9541
  msgid "The service transitioned to the %{pending_state} state."
10223
9542
  msgstr ""
10224
9543
 
10225
- #: ../lib/puppet/util/windows/service.rb:911
9544
+ #: ../lib/puppet/util/windows/service.rb:617
10226
9545
  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}."
10227
9546
  msgstr ""
10228
9547
 
10229
- #: ../lib/puppet/util/windows/service.rb:926
9548
+ #: ../lib/puppet/util/windows/service.rb:632
10230
9549
  msgid "Waiting for the pending transition to the %{final_state} state to finish."
10231
9550
  msgstr ""
10232
9551
 
10233
- #: ../lib/puppet/util/windows/service.rb:940
9552
+ #: ../lib/puppet/util/windows/service.rb:646
10234
9553
  msgid "Unexpected transition to the %{current_state} state while waiting for the pending transition from %{pending_state} to %{final_state} to finish."
10235
9554
  msgstr ""
10236
9555
 
10237
- #: ../lib/puppet/util/windows/service.rb:954
9556
+ #: ../lib/puppet/util/windows/service.rb:660
10238
9557
  msgid "Timed out while waiting for the pending transition from %{pending_state} to %{final_state} to finish. The current state is %{current_state}."
10239
9558
  msgstr ""
10240
9559
 
@@ -10274,76 +9593,72 @@ msgstr ""
10274
9593
  msgid "Failed to unload user profile %{user}"
10275
9594
  msgstr ""
10276
9595
 
10277
- #: ../lib/puppet/util/yaml.rb:47
10278
- msgid "Puppet::Util::Yaml.load_file is deprecated. Use safe_load_file instead."
10279
- msgstr ""
10280
-
10281
- #: ../lib/puppet/x509/cert_provider.rb:39
9596
+ #: ../lib/puppet/x509/cert_provider.rb:45
10282
9597
  msgid "Failed to save CA certificates to '%{capath}'"
10283
9598
  msgstr ""
10284
9599
 
10285
- #: ../lib/puppet/x509/cert_provider.rb:52
9600
+ #: ../lib/puppet/x509/cert_provider.rb:59
10286
9601
  msgid "The CA certificates are missing from '%{path}'"
10287
9602
  msgstr ""
10288
9603
 
10289
- #: ../lib/puppet/x509/cert_provider.rb:56
9604
+ #: ../lib/puppet/x509/cert_provider.rb:63
10290
9605
  msgid "Failed to load CA certificates from '%{capath}'"
10291
9606
  msgstr ""
10292
9607
 
10293
9608
  #. TRANSLATORS 'PEM' is an acronym and shouldn't be translated
10294
- #: ../lib/puppet/x509/cert_provider.rb:67
9609
+ #: ../lib/puppet/x509/cert_provider.rb:75
10295
9610
  msgid "Failed to parse CA certificates as PEM"
10296
9611
  msgstr ""
10297
9612
 
10298
- #: ../lib/puppet/x509/cert_provider.rb:82
9613
+ #: ../lib/puppet/x509/cert_provider.rb:91
10299
9614
  msgid "Failed to save CRLs to '%{crlpath}'"
10300
9615
  msgstr ""
10301
9616
 
10302
- #: ../lib/puppet/x509/cert_provider.rb:95
9617
+ #: ../lib/puppet/x509/cert_provider.rb:105
10303
9618
  msgid "The CRL is missing from '%{path}'"
10304
9619
  msgstr ""
10305
9620
 
10306
- #: ../lib/puppet/x509/cert_provider.rb:99
9621
+ #: ../lib/puppet/x509/cert_provider.rb:109
10307
9622
  msgid "Failed to load CRLs from '%{crlpath}'"
10308
9623
  msgstr ""
10309
9624
 
10310
9625
  #. TRANSLATORS 'PEM' is an acronym and shouldn't be translated
10311
- #: ../lib/puppet/x509/cert_provider.rb:110
9626
+ #: ../lib/puppet/x509/cert_provider.rb:121
10312
9627
  msgid "Failed to parse CRLs as PEM"
10313
9628
  msgstr ""
10314
9629
 
10315
- #: ../lib/puppet/x509/cert_provider.rb:156
9630
+ #: ../lib/puppet/x509/cert_provider.rb:171
10316
9631
  msgid "Failed to save private key for '%{name}'"
10317
9632
  msgstr ""
10318
9633
 
10319
- #: ../lib/puppet/x509/cert_provider.rb:175
9634
+ #: ../lib/puppet/x509/cert_provider.rb:191
10320
9635
  msgid "The private key is missing from '%{path}'"
10321
9636
  msgstr ""
10322
9637
 
10323
- #: ../lib/puppet/x509/cert_provider.rb:179
9638
+ #: ../lib/puppet/x509/cert_provider.rb:195
10324
9639
  msgid "Failed to load private key for '%{name}'"
10325
9640
  msgstr ""
10326
9641
 
10327
- #: ../lib/puppet/x509/cert_provider.rb:235
9642
+ #: ../lib/puppet/x509/cert_provider.rb:255
10328
9643
  msgid "Failed to save client certificate for '%{name}'"
10329
9644
  msgstr ""
10330
9645
 
10331
- #: ../lib/puppet/x509/cert_provider.rb:250
9646
+ #: ../lib/puppet/x509/cert_provider.rb:271
10332
9647
  msgid "The client certificate is missing from '%{path}'"
10333
9648
  msgstr ""
10334
9649
 
10335
- #: ../lib/puppet/x509/cert_provider.rb:254
9650
+ #: ../lib/puppet/x509/cert_provider.rb:275
10336
9651
  msgid "Failed to load client certificate for '%{name}'"
10337
9652
  msgstr ""
10338
9653
 
10339
- #: ../lib/puppet/x509/cert_provider.rb:300
9654
+ #: ../lib/puppet/x509/cert_provider.rb:324
10340
9655
  msgid "Failed to save certificate request for '%{name}'"
10341
9656
  msgstr ""
10342
9657
 
10343
- #: ../lib/puppet/x509/cert_provider.rb:315
9658
+ #: ../lib/puppet/x509/cert_provider.rb:340
10344
9659
  msgid "Failed to load certificate request for '%{name}'"
10345
9660
  msgstr ""
10346
9661
 
10347
- #: ../lib/puppet/x509/cert_provider.rb:326
9662
+ #: ../lib/puppet/x509/cert_provider.rb:353
10348
9663
  msgid "Failed to delete certificate request for '%{name}'"
10349
9664
  msgstr ""