puppet 6.23.0 → 7.0.0

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 (581) hide show
  1. checksums.yaml +4 -4
  2. data/CODEOWNERS +16 -2
  3. data/Gemfile +1 -3
  4. data/Gemfile.lock +34 -46
  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/osx/puppet.plist +0 -2
  10. data/ext/project_data.yaml +1 -14
  11. data/ext/redhat/puppet.spec.erb +0 -1
  12. data/ext/windows/service/daemon.rb +6 -5
  13. data/install.rb +21 -17
  14. data/lib/puppet.rb +11 -20
  15. data/lib/puppet/application.rb +178 -108
  16. data/lib/puppet/application/agent.rb +4 -12
  17. data/lib/puppet/application/apply.rb +2 -4
  18. data/lib/puppet/application/device.rb +100 -106
  19. data/lib/puppet/application/filebucket.rb +13 -9
  20. data/lib/puppet/application/resource.rb +1 -2
  21. data/lib/puppet/application/script.rb +0 -2
  22. data/lib/puppet/application/ssl.rb +1 -12
  23. data/lib/puppet/application_support.rb +0 -7
  24. data/lib/puppet/configurer.rb +30 -45
  25. data/lib/puppet/configurer/downloader.rb +1 -2
  26. data/lib/puppet/configurer/plugin_handler.rb +21 -19
  27. data/lib/puppet/defaults.rb +100 -192
  28. data/lib/puppet/environments.rb +60 -74
  29. data/lib/puppet/face/facts.rb +5 -103
  30. data/lib/puppet/face/help.rb +1 -1
  31. data/lib/puppet/face/plugin.rb +5 -8
  32. data/lib/puppet/ffi/windows.rb +12 -0
  33. data/lib/puppet/ffi/windows/api_types.rb +311 -0
  34. data/lib/puppet/ffi/windows/constants.rb +404 -0
  35. data/lib/puppet/ffi/windows/functions.rb +628 -0
  36. data/lib/puppet/ffi/windows/structs.rb +338 -0
  37. data/lib/puppet/file_serving/configuration.rb +0 -5
  38. data/lib/puppet/file_serving/configuration/parser.rb +3 -32
  39. data/lib/puppet/file_serving/fileset.rb +2 -14
  40. data/lib/puppet/file_serving/http_metadata.rb +1 -1
  41. data/lib/puppet/file_serving/mount.rb +1 -2
  42. data/lib/puppet/file_system/memory_file.rb +1 -8
  43. data/lib/puppet/file_system/windows.rb +0 -2
  44. data/lib/puppet/forge/repository.rb +0 -1
  45. data/lib/puppet/functions/all.rb +1 -1
  46. data/lib/puppet/functions/camelcase.rb +1 -1
  47. data/lib/puppet/functions/capitalize.rb +2 -2
  48. data/lib/puppet/functions/downcase.rb +2 -2
  49. data/lib/puppet/functions/get.rb +5 -5
  50. data/lib/puppet/functions/group_by.rb +5 -13
  51. data/lib/puppet/functions/lest.rb +1 -1
  52. data/lib/puppet/functions/new.rb +100 -100
  53. data/lib/puppet/functions/partition.rb +4 -12
  54. data/lib/puppet/functions/require.rb +5 -5
  55. data/lib/puppet/functions/sort.rb +3 -3
  56. data/lib/puppet/functions/tree_each.rb +9 -7
  57. data/lib/puppet/functions/type.rb +4 -4
  58. data/lib/puppet/functions/upcase.rb +2 -2
  59. data/lib/puppet/generate/models/type/type.rb +4 -1
  60. data/lib/puppet/http.rb +22 -13
  61. data/lib/puppet/http/client.rb +164 -114
  62. data/lib/puppet/{network/resolver.rb → http/dns.rb} +2 -2
  63. data/lib/puppet/http/errors.rb +16 -0
  64. data/lib/puppet/http/external_client.rb +5 -7
  65. data/lib/puppet/{network/http → http}/factory.rb +8 -15
  66. data/lib/puppet/{network/http → http}/pool.rb +61 -26
  67. data/lib/puppet/{network/http/session.rb → http/pool_entry.rb} +2 -3
  68. data/lib/puppet/http/proxy.rb +137 -0
  69. data/lib/puppet/http/redirector.rb +4 -12
  70. data/lib/puppet/http/resolver.rb +5 -15
  71. data/lib/puppet/http/resolver/server_list.rb +10 -25
  72. data/lib/puppet/http/resolver/settings.rb +4 -7
  73. data/lib/puppet/http/resolver/srv.rb +7 -11
  74. data/lib/puppet/http/response.rb +36 -54
  75. data/lib/puppet/http/response_converter.rb +24 -0
  76. data/lib/puppet/http/response_net_http.rb +42 -0
  77. data/lib/puppet/http/retry_after_handler.rb +4 -13
  78. data/lib/puppet/http/service.rb +12 -26
  79. data/lib/puppet/http/service/ca.rb +11 -22
  80. data/lib/puppet/http/service/compiler.rb +22 -138
  81. data/lib/puppet/http/service/file_server.rb +19 -29
  82. data/lib/puppet/http/service/puppetserver.rb +26 -12
  83. data/lib/puppet/http/service/report.rb +8 -10
  84. data/lib/puppet/http/session.rb +11 -20
  85. data/lib/puppet/{network/http → http}/site.rb +1 -2
  86. data/lib/puppet/indirector/catalog/compiler.rb +0 -1
  87. data/lib/puppet/indirector/catalog/rest.rb +2 -4
  88. data/lib/puppet/indirector/facts/rest.rb +3 -22
  89. data/lib/puppet/indirector/file_bucket_file/rest.rb +3 -9
  90. data/lib/puppet/indirector/file_content/rest.rb +2 -6
  91. data/lib/puppet/indirector/file_metadata/rest.rb +3 -10
  92. data/lib/puppet/indirector/file_server.rb +1 -8
  93. data/lib/puppet/indirector/generic_http.rb +0 -11
  94. data/lib/puppet/indirector/node/rest.rb +2 -4
  95. data/lib/puppet/indirector/report/rest.rb +3 -8
  96. data/lib/puppet/indirector/request.rb +0 -101
  97. data/lib/puppet/indirector/rest.rb +12 -263
  98. data/lib/puppet/module_tool/applications.rb +0 -1
  99. data/lib/puppet/module_tool/applications/installer.rb +2 -48
  100. data/lib/puppet/module_tool/errors/shared.rb +2 -17
  101. data/lib/puppet/network/authconfig.rb +2 -96
  102. data/lib/puppet/network/authorization.rb +13 -35
  103. data/lib/puppet/network/formats.rb +0 -67
  104. data/lib/puppet/network/http.rb +3 -3
  105. data/lib/puppet/network/http/api/indirected_routes.rb +2 -20
  106. data/lib/puppet/network/http/api/master/v3.rb +11 -13
  107. data/lib/puppet/network/http/connection.rb +247 -316
  108. data/lib/puppet/network/http/handler.rb +0 -1
  109. data/lib/puppet/network/http_pool.rb +16 -34
  110. data/lib/puppet/node.rb +1 -30
  111. data/lib/puppet/pal/json_catalog_encoder.rb +4 -0
  112. data/lib/puppet/pal/pal_impl.rb +3 -1
  113. data/lib/puppet/parser/ast/leaf.rb +2 -3
  114. data/lib/puppet/parser/ast/pops_bridge.rb +0 -38
  115. data/lib/puppet/parser/compiler.rb +0 -198
  116. data/lib/puppet/parser/compiler/catalog_validator/relationship_validator.rb +14 -39
  117. data/lib/puppet/parser/functions/fqdn_rand.rb +6 -14
  118. data/lib/puppet/parser/resource.rb +0 -69
  119. data/lib/puppet/parser/templatewrapper.rb +1 -1
  120. data/lib/puppet/pops/evaluator/deferred_resolver.rb +3 -5
  121. data/lib/puppet/pops/evaluator/evaluator_impl.rb +0 -5
  122. data/lib/puppet/pops/evaluator/runtime3_resource_support.rb +3 -3
  123. data/lib/puppet/pops/evaluator/runtime3_support.rb +1 -1
  124. data/lib/puppet/pops/issues.rb +0 -5
  125. data/lib/puppet/pops/loader/ruby_legacy_function_instantiator.rb +6 -8
  126. data/lib/puppet/pops/model/ast.pp +0 -42
  127. data/lib/puppet/pops/model/ast.rb +0 -290
  128. data/lib/puppet/pops/model/ast_transformer.rb +1 -1
  129. data/lib/puppet/pops/model/factory.rb +0 -45
  130. data/lib/puppet/pops/model/model_label_provider.rb +0 -5
  131. data/lib/puppet/pops/model/model_tree_dumper.rb +0 -22
  132. data/lib/puppet/pops/model/pn_transformer.rb +0 -16
  133. data/lib/puppet/pops/parser/egrammar.ra +0 -56
  134. data/lib/puppet/pops/parser/eparser.rb +1520 -1712
  135. data/lib/puppet/pops/parser/lexer2.rb +4 -4
  136. data/lib/puppet/pops/parser/parser_support.rb +0 -5
  137. data/lib/puppet/pops/resource/resource_type_impl.rb +2 -24
  138. data/lib/puppet/pops/types/p_sem_ver_type.rb +2 -8
  139. data/lib/puppet/pops/types/p_sensitive_type.rb +0 -10
  140. data/lib/puppet/pops/types/type_calculator.rb +0 -7
  141. data/lib/puppet/pops/types/type_parser.rb +0 -4
  142. data/lib/puppet/pops/types/types.rb +0 -1
  143. data/lib/puppet/pops/validation/checker4_0.rb +9 -37
  144. data/lib/puppet/pops/validation/tasks_checker.rb +0 -12
  145. data/lib/puppet/pops/validation/validator_factory_4_0.rb +1 -2
  146. data/lib/puppet/property/list.rb +1 -1
  147. data/lib/puppet/provider.rb +0 -13
  148. data/lib/puppet/provider/group/groupadd.rb +8 -13
  149. data/lib/puppet/provider/nameservice.rb +0 -18
  150. data/lib/puppet/provider/package/apt.rb +2 -34
  151. data/lib/puppet/provider/package/aptitude.rb +0 -6
  152. data/lib/puppet/provider/package/dnfmodule.rb +1 -1
  153. data/lib/puppet/provider/package/dpkg.rb +0 -10
  154. data/lib/puppet/provider/package/gem.rb +23 -3
  155. data/lib/puppet/provider/package/nim.rb +6 -11
  156. data/lib/puppet/provider/package/pip.rb +0 -1
  157. data/lib/puppet/provider/package/pkg.rb +0 -4
  158. data/lib/puppet/provider/package/portage.rb +1 -1
  159. data/lib/puppet/provider/package/puppet_gem.rb +1 -4
  160. data/lib/puppet/provider/service/debian.rb +0 -2
  161. data/lib/puppet/provider/service/smf.rb +191 -73
  162. data/lib/puppet/provider/service/systemd.rb +4 -14
  163. data/lib/puppet/provider/service/windows.rb +0 -38
  164. data/lib/puppet/provider/user/aix.rb +2 -2
  165. data/lib/puppet/provider/user/directoryservice.rb +10 -33
  166. data/lib/puppet/provider/user/useradd.rb +8 -62
  167. data/lib/puppet/reference/configuration.rb +8 -7
  168. data/lib/puppet/reference/indirection.rb +1 -1
  169. data/lib/puppet/resource.rb +1 -89
  170. data/lib/puppet/resource/catalog.rb +1 -14
  171. data/lib/puppet/resource/type.rb +3 -119
  172. data/lib/puppet/resource/type_collection.rb +3 -48
  173. data/lib/puppet/runtime.rb +1 -2
  174. data/lib/puppet/settings.rb +73 -66
  175. data/lib/puppet/settings/environment_conf.rb +0 -1
  176. data/lib/puppet/settings/integer_setting.rb +17 -0
  177. data/lib/puppet/settings/port_setting.rb +15 -0
  178. data/lib/puppet/settings/priority_setting.rb +5 -4
  179. data/lib/puppet/ssl.rb +10 -6
  180. data/lib/puppet/ssl/base.rb +3 -5
  181. data/lib/puppet/ssl/certificate.rb +0 -6
  182. data/lib/puppet/ssl/certificate_request.rb +1 -12
  183. data/lib/puppet/ssl/certificate_signer.rb +6 -0
  184. data/lib/puppet/ssl/oids.rb +3 -1
  185. data/lib/puppet/ssl/ssl_provider.rb +17 -0
  186. data/lib/puppet/ssl/state_machine.rb +3 -1
  187. data/lib/puppet/ssl/verifier.rb +2 -0
  188. data/lib/puppet/test/test_helper.rb +1 -3
  189. data/lib/puppet/transaction.rb +1 -7
  190. data/lib/puppet/transaction/additional_resource_generator.rb +1 -1
  191. data/lib/puppet/transaction/report.rb +2 -4
  192. data/lib/puppet/type.rb +0 -76
  193. data/lib/puppet/type/file.rb +6 -26
  194. data/lib/puppet/type/file/checksum.rb +1 -1
  195. data/lib/puppet/type/file/selcontext.rb +1 -1
  196. data/lib/puppet/type/file/source.rb +1 -1
  197. data/lib/puppet/type/filebucket.rb +3 -3
  198. data/lib/puppet/type/package.rb +8 -16
  199. data/lib/puppet/type/service.rb +38 -18
  200. data/lib/puppet/type/tidy.rb +2 -21
  201. data/lib/puppet/type/user.rb +20 -38
  202. data/lib/puppet/util/autoload.rb +8 -1
  203. data/lib/puppet/util/execution.rb +0 -11
  204. data/lib/puppet/util/http_proxy.rb +2 -215
  205. data/lib/puppet/util/monkey_patches.rb +0 -53
  206. data/lib/puppet/util/posix.rb +5 -54
  207. data/lib/puppet/util/rdoc.rb +0 -7
  208. data/lib/puppet/util/retry_action.rb +1 -1
  209. data/lib/puppet/util/run_mode.rb +9 -1
  210. data/lib/puppet/util/selinux.rb +4 -30
  211. data/lib/puppet/util/windows.rb +3 -8
  212. data/lib/puppet/util/windows/adsi.rb +0 -46
  213. data/lib/puppet/util/windows/daemon.rb +360 -0
  214. data/lib/puppet/util/windows/error.rb +1 -0
  215. data/lib/puppet/util/windows/eventlog.rb +4 -9
  216. data/lib/puppet/util/windows/file.rb +8 -242
  217. data/lib/puppet/util/windows/monkey_patches/process.rb +414 -0
  218. data/lib/puppet/util/windows/principal.rb +2 -9
  219. data/lib/puppet/util/windows/process.rb +4 -226
  220. data/lib/puppet/util/windows/service.rb +9 -460
  221. data/lib/puppet/util/windows/sid.rb +2 -4
  222. data/lib/puppet/util/windows/string.rb +12 -13
  223. data/lib/puppet/util/yaml.rb +0 -22
  224. data/lib/puppet/vendor/require_vendored.rb +0 -1
  225. data/lib/puppet/version.rb +1 -1
  226. data/lib/puppet/x509.rb +5 -1
  227. data/lib/puppet/x509/cert_provider.rb +29 -1
  228. data/locales/puppet.pot +651 -1436
  229. data/man/man5/puppet.conf.5 +266 -354
  230. data/man/man8/puppet-agent.8 +2 -2
  231. data/man/man8/puppet-apply.8 +2 -2
  232. data/man/man8/puppet-catalog.8 +1 -1
  233. data/man/man8/puppet-config.8 +1 -1
  234. data/man/man8/puppet-describe.8 +1 -1
  235. data/man/man8/puppet-device.8 +2 -2
  236. data/man/man8/puppet-doc.8 +1 -1
  237. data/man/man8/puppet-epp.8 +1 -1
  238. data/man/man8/puppet-facts.8 +4 -47
  239. data/man/man8/puppet-filebucket.8 +4 -4
  240. data/man/man8/puppet-generate.8 +1 -1
  241. data/man/man8/puppet-help.8 +1 -1
  242. data/man/man8/puppet-lookup.8 +1 -1
  243. data/man/man8/puppet-module.8 +1 -58
  244. data/man/man8/puppet-node.8 +1 -1
  245. data/man/man8/puppet-parser.8 +1 -1
  246. data/man/man8/puppet-plugin.8 +1 -1
  247. data/man/man8/puppet-report.8 +1 -1
  248. data/man/man8/puppet-resource.8 +1 -1
  249. data/man/man8/puppet-script.8 +2 -2
  250. data/man/man8/puppet-ssl.8 +1 -5
  251. data/man/man8/puppet.8 +2 -2
  252. data/spec/fixtures/ssl/127.0.0.1-key.pem +57 -107
  253. data/spec/fixtures/ssl/127.0.0.1.pem +31 -52
  254. data/spec/fixtures/ssl/bad-basic-constraints.pem +35 -57
  255. data/spec/fixtures/ssl/bad-int-basic-constraints.pem +35 -57
  256. data/spec/fixtures/ssl/ca.pem +35 -57
  257. data/spec/fixtures/ssl/crl.pem +18 -28
  258. data/spec/fixtures/ssl/ec-key.pem +11 -11
  259. data/spec/fixtures/ssl/ec.pem +24 -33
  260. data/spec/fixtures/ssl/encrypted-ec-key.pem +12 -12
  261. data/spec/fixtures/ssl/encrypted-key.pem +58 -108
  262. data/spec/fixtures/ssl/intermediate-agent-crl.pem +19 -28
  263. data/spec/fixtures/ssl/intermediate-agent.pem +36 -57
  264. data/spec/fixtures/ssl/intermediate-crl.pem +21 -31
  265. data/spec/fixtures/ssl/intermediate.pem +36 -57
  266. data/spec/fixtures/ssl/pluto-key.pem +57 -107
  267. data/spec/fixtures/ssl/pluto.pem +30 -52
  268. data/spec/fixtures/ssl/request-key.pem +57 -107
  269. data/spec/fixtures/ssl/request.pem +26 -47
  270. data/spec/fixtures/ssl/revoked-key.pem +57 -107
  271. data/spec/fixtures/ssl/revoked.pem +30 -52
  272. data/spec/fixtures/ssl/signed-key.pem +57 -107
  273. data/spec/fixtures/ssl/signed.pem +30 -52
  274. data/spec/fixtures/ssl/tampered-cert.pem +30 -52
  275. data/spec/fixtures/ssl/tampered-csr.pem +26 -47
  276. data/spec/fixtures/ssl/unknown-127.0.0.1-key.pem +57 -107
  277. data/spec/fixtures/ssl/unknown-127.0.0.1.pem +29 -50
  278. data/spec/fixtures/ssl/unknown-ca-key.pem +57 -107
  279. data/spec/fixtures/ssl/unknown-ca.pem +33 -55
  280. data/spec/fixtures/unit/provider/service/smf/{svcs.out → svcs_instances.out} +0 -0
  281. data/spec/fixtures/unit/provider/user/aix/aix_passwd_file.out +0 -4
  282. data/spec/integration/application/agent_spec.rb +27 -171
  283. data/spec/integration/application/apply_spec.rb +1 -20
  284. data/spec/integration/application/filebucket_spec.rb +16 -16
  285. data/spec/integration/application/help_spec.rb +2 -0
  286. data/spec/integration/application/plugin_spec.rb +24 -2
  287. data/spec/integration/defaults_spec.rb +14 -3
  288. data/spec/integration/http/client_spec.rb +0 -12
  289. data/spec/integration/indirector/direct_file_server_spec.rb +3 -1
  290. data/spec/integration/network/http_pool_spec.rb +3 -21
  291. data/spec/integration/parser/catalog_spec.rb +0 -38
  292. data/spec/integration/parser/node_spec.rb +0 -9
  293. data/spec/integration/parser/pcore_resource_spec.rb +0 -37
  294. data/spec/integration/resource/type_collection_spec.rb +6 -2
  295. data/spec/integration/transaction_spec.rb +9 -4
  296. data/spec/integration/type/file_spec.rb +5 -4
  297. data/spec/integration/util/windows/adsi_spec.rb +1 -21
  298. data/spec/integration/util/windows/monkey_patches/process_spec.rb +231 -0
  299. data/spec/integration/util/windows/principal_spec.rb +0 -21
  300. data/spec/integration/util/windows/registry_spec.rb +10 -6
  301. data/spec/integration/util/windows/security_spec.rb +1 -1
  302. data/spec/lib/matchers/include.rb +27 -0
  303. data/spec/lib/matchers/include_spec.rb +32 -0
  304. data/spec/lib/puppet/test_ca.rb +2 -2
  305. data/spec/lib/puppet_spec/puppetserver.rb +1 -1
  306. data/spec/lib/puppet_spec/settings.rb +1 -0
  307. data/spec/spec_helper.rb +7 -12
  308. data/spec/unit/agent_spec.rb +6 -10
  309. data/spec/unit/application/agent_spec.rb +3 -7
  310. data/spec/unit/application/facts_spec.rb +12 -456
  311. data/spec/unit/application/filebucket_spec.rb +43 -39
  312. data/spec/unit/application/ssl_spec.rb +2 -25
  313. data/spec/unit/application_spec.rb +9 -51
  314. data/spec/unit/certificate_factory_spec.rb +1 -1
  315. data/spec/unit/configurer/downloader_spec.rb +6 -8
  316. data/spec/unit/configurer/plugin_handler_spec.rb +56 -18
  317. data/spec/unit/configurer_spec.rb +12 -32
  318. data/spec/unit/confine/feature_spec.rb +1 -1
  319. data/spec/unit/confine_spec.rb +2 -8
  320. data/spec/unit/context/trusted_information_spec.rb +2 -6
  321. data/spec/unit/defaults_spec.rb +68 -54
  322. data/spec/unit/environments_spec.rb +68 -224
  323. data/spec/unit/face/node_spec.rb +11 -0
  324. data/spec/unit/face/plugin_spec.rb +73 -33
  325. data/spec/unit/file_bucket/file_spec.rb +1 -1
  326. data/spec/unit/file_serving/configuration/parser_spec.rb +15 -18
  327. data/spec/unit/file_serving/configuration_spec.rb +6 -12
  328. data/spec/unit/file_serving/fileset_spec.rb +0 -60
  329. data/spec/unit/file_serving/metadata_spec.rb +3 -3
  330. data/spec/unit/file_serving/terminus_helper_spec.rb +4 -11
  331. data/spec/unit/file_system_spec.rb +0 -9
  332. data/spec/unit/forge/module_release_spec.rb +7 -2
  333. data/spec/unit/functions/camelcase_spec.rb +1 -1
  334. data/spec/unit/functions/capitalize_spec.rb +1 -1
  335. data/spec/unit/functions/downcase_spec.rb +1 -1
  336. data/spec/unit/functions/upcase_spec.rb +1 -1
  337. data/spec/unit/gettext/config_spec.rb +0 -12
  338. data/spec/unit/http/client_spec.rb +7 -8
  339. data/spec/unit/{network/resolver_spec.rb → http/dns_spec.rb} +3 -3
  340. data/spec/unit/http/external_client_spec.rb +4 -4
  341. data/spec/unit/{network/http → http}/factory_spec.rb +5 -30
  342. data/spec/unit/{network/http/session_spec.rb → http/pool_entry_spec.rb} +3 -3
  343. data/spec/unit/{network/http → http}/pool_spec.rb +12 -17
  344. data/spec/unit/{util/http_proxy_spec.rb → http/proxy_spec.rb} +2 -69
  345. data/spec/unit/http/resolver_spec.rb +13 -13
  346. data/spec/unit/http/service/compiler_spec.rb +0 -185
  347. data/spec/unit/http/service/file_server_spec.rb +3 -3
  348. data/spec/unit/http/service/puppetserver_spec.rb +34 -4
  349. data/spec/unit/http/service_spec.rb +0 -1
  350. data/spec/unit/http/session_spec.rb +16 -14
  351. data/spec/unit/{network/http → http}/site_spec.rb +3 -3
  352. data/spec/unit/indirector/catalog/compiler_spec.rb +10 -14
  353. data/spec/unit/indirector/face_spec.rb +1 -0
  354. data/spec/unit/indirector/facts/facter_spec.rb +3 -0
  355. data/spec/unit/indirector/file_bucket_file/file_spec.rb +5 -3
  356. data/spec/unit/indirector/file_bucket_file/selector_spec.rb +8 -26
  357. data/spec/unit/indirector/file_content/rest_spec.rb +0 -4
  358. data/spec/unit/indirector/file_metadata/rest_spec.rb +0 -4
  359. data/spec/unit/indirector/file_server_spec.rb +1 -15
  360. data/spec/unit/indirector/indirection_spec.rb +12 -8
  361. data/spec/unit/indirector/report/rest_spec.rb +2 -17
  362. data/spec/unit/indirector/request_spec.rb +0 -264
  363. data/spec/unit/indirector/rest_spec.rb +98 -752
  364. data/spec/unit/indirector_spec.rb +2 -2
  365. data/spec/unit/module_tool/applications/installer_spec.rb +0 -66
  366. data/spec/unit/network/authconfig_spec.rb +2 -129
  367. data/spec/unit/network/authorization_spec.rb +2 -55
  368. data/spec/unit/network/formats_spec.rb +4 -45
  369. data/spec/unit/network/http/api/indirected_routes_spec.rb +5 -92
  370. data/spec/unit/network/http/api/master/v3_spec.rb +28 -7
  371. data/spec/unit/network/http/api_spec.rb +10 -0
  372. data/spec/unit/network/http/connection_spec.rb +19 -41
  373. data/spec/unit/network/http/handler_spec.rb +0 -1
  374. data/spec/unit/network/http_pool_spec.rb +0 -4
  375. data/spec/unit/node/environment_spec.rb +33 -21
  376. data/spec/unit/node_spec.rb +2 -54
  377. data/spec/unit/parser/compiler_spec.rb +19 -3
  378. data/spec/unit/parser/functions/create_resources_spec.rb +2 -20
  379. data/spec/unit/parser/functions/fqdn_rand_spec.rb +1 -15
  380. data/spec/unit/parser/resource_spec.rb +8 -14
  381. data/spec/unit/parser/templatewrapper_spec.rb +3 -4
  382. data/spec/unit/pops/evaluator/evaluating_parser_spec.rb +4 -7
  383. data/spec/unit/pops/loaders/loaders_spec.rb +6 -21
  384. data/spec/unit/pops/parser/parse_application_spec.rb +4 -22
  385. data/spec/unit/pops/parser/parse_basic_expressions_spec.rb +0 -1
  386. data/spec/unit/pops/parser/parse_capabilities_spec.rb +8 -21
  387. data/spec/unit/pops/parser/parse_site_spec.rb +20 -24
  388. data/spec/unit/pops/resource/resource_type_impl_spec.rb +0 -71
  389. data/spec/unit/pops/serialization/to_from_hr_spec.rb +1 -1
  390. data/spec/unit/pops/types/p_sem_ver_type_spec.rb +0 -18
  391. data/spec/unit/pops/types/p_sensitive_type_spec.rb +0 -18
  392. data/spec/unit/pops/types/type_calculator_spec.rb +6 -6
  393. data/spec/unit/pops/types/type_factory_spec.rb +1 -1
  394. data/spec/unit/pops/validator/validator_spec.rb +61 -46
  395. data/spec/unit/pops/visitor_spec.rb +1 -1
  396. data/spec/unit/property_spec.rb +0 -1
  397. data/spec/unit/provider/group/groupadd_spec.rb +2 -5
  398. data/spec/unit/provider/nameservice_spec.rb +64 -122
  399. data/spec/unit/provider/package/apt_spec.rb +23 -28
  400. data/spec/unit/provider/package/aptitude_spec.rb +1 -1
  401. data/spec/unit/provider/package/base_spec.rb +5 -6
  402. data/spec/unit/provider/package/dnfmodule_spec.rb +1 -10
  403. data/spec/unit/provider/package/dpkg_spec.rb +0 -48
  404. data/spec/unit/provider/package/gem_spec.rb +32 -0
  405. data/spec/unit/provider/package/nim_spec.rb +0 -42
  406. data/spec/unit/provider/package/pacman_spec.rb +12 -18
  407. data/spec/unit/provider/package/pip_spec.rb +11 -6
  408. data/spec/unit/provider/package/pkgdmg_spec.rb +4 -0
  409. data/spec/unit/provider/package/puppet_gem_spec.rb +3 -2
  410. data/spec/unit/provider/service/init_spec.rb +0 -1
  411. data/spec/unit/provider/service/openwrt_spec.rb +1 -3
  412. data/spec/unit/provider/service/smf_spec.rb +401 -165
  413. data/spec/unit/provider/service/systemd_spec.rb +8 -53
  414. data/spec/unit/provider/service/windows_spec.rb +0 -203
  415. data/spec/unit/provider/user/aix_spec.rb +0 -5
  416. data/spec/unit/provider/user/directoryservice_spec.rb +35 -67
  417. data/spec/unit/provider/user/hpux_spec.rb +1 -1
  418. data/spec/unit/provider/user/pw_spec.rb +0 -2
  419. data/spec/unit/provider/user/useradd_spec.rb +3 -71
  420. data/spec/unit/provider_spec.rb +8 -18
  421. data/spec/unit/resource/catalog_spec.rb +1 -1
  422. data/spec/unit/resource/type_collection_spec.rb +2 -22
  423. data/spec/unit/resource/type_spec.rb +1 -1
  424. data/spec/unit/resource_spec.rb +10 -67
  425. data/spec/unit/settings/http_extra_headers_spec.rb +2 -4
  426. data/spec/unit/settings/integer_setting_spec.rb +42 -0
  427. data/spec/unit/settings/port_setting_spec.rb +31 -0
  428. data/spec/unit/settings/priority_setting_spec.rb +4 -4
  429. data/spec/unit/settings_spec.rb +23 -13
  430. data/spec/unit/ssl/base_spec.rb +37 -3
  431. data/spec/unit/ssl/certificate_request_spec.rb +15 -45
  432. data/spec/unit/ssl/certificate_spec.rb +2 -11
  433. data/spec/unit/ssl/ssl_provider_spec.rb +2 -5
  434. data/spec/unit/ssl/state_machine_spec.rb +5 -20
  435. data/spec/unit/ssl/verifier_spec.rb +0 -21
  436. data/spec/unit/transaction/additional_resource_generator_spec.rb +9 -3
  437. data/spec/unit/transaction/event_manager_spec.rb +11 -14
  438. data/spec/unit/transaction/report_spec.rb +0 -2
  439. data/spec/unit/transaction/resource_harness_spec.rb +2 -2
  440. data/spec/unit/transaction_spec.rb +55 -96
  441. data/spec/unit/type/file/checksum_spec.rb +6 -6
  442. data/spec/unit/type/file/content_spec.rb +2 -1
  443. data/spec/unit/type/file/ensure_spec.rb +1 -1
  444. data/spec/unit/type/file/mode_spec.rb +1 -1
  445. data/spec/unit/type/file/selinux_spec.rb +5 -3
  446. data/spec/unit/type/file/source_spec.rb +0 -1
  447. data/spec/unit/type/file_spec.rb +18 -6
  448. data/spec/unit/type/group_spec.rb +6 -13
  449. data/spec/unit/type/package_spec.rb +1 -1
  450. data/spec/unit/type/resources_spec.rb +7 -7
  451. data/spec/unit/type/service_spec.rb +189 -60
  452. data/spec/unit/type/tidy_spec.rb +8 -17
  453. data/spec/unit/type/user_spec.rb +0 -45
  454. data/spec/unit/type_spec.rb +22 -2
  455. data/spec/unit/util/at_fork_spec.rb +2 -2
  456. data/spec/unit/util/autoload_spec.rb +1 -5
  457. data/spec/unit/util/backups_spec.rb +2 -3
  458. data/spec/unit/util/execution_spec.rb +11 -44
  459. data/spec/unit/util/inifile_spec.rb +14 -6
  460. data/spec/unit/util/log_spec.rb +7 -8
  461. data/spec/unit/util/logging_spec.rb +3 -3
  462. data/spec/unit/util/monkey_patches_spec.rb +0 -6
  463. data/spec/unit/util/posix_spec.rb +15 -363
  464. data/spec/unit/util/run_mode_spec.rb +21 -121
  465. data/spec/unit/util/selinux_spec.rb +68 -163
  466. data/spec/unit/util/storage_spec.rb +1 -3
  467. data/spec/unit/util/suidmanager_spec.rb +41 -44
  468. data/spec/unit/util/windows/sid_spec.rb +0 -6
  469. data/spec/unit/util/windows/string_spec.rb +1 -3
  470. data/spec/unit/util/yaml_spec.rb +0 -54
  471. data/spec/unit/util_spec.rb +6 -31
  472. data/tasks/generate_cert_fixtures.rake +2 -2
  473. metadata +44 -181
  474. data/conf/auth.conf +0 -150
  475. data/lib/puppet/application/cert.rb +0 -76
  476. data/lib/puppet/application/key.rb +0 -4
  477. data/lib/puppet/application/man.rb +0 -4
  478. data/lib/puppet/application/status.rb +0 -4
  479. data/lib/puppet/face/key.rb +0 -16
  480. data/lib/puppet/face/man.rb +0 -145
  481. data/lib/puppet/face/module/build.rb +0 -14
  482. data/lib/puppet/face/module/generate.rb +0 -14
  483. data/lib/puppet/face/module/search.rb +0 -103
  484. data/lib/puppet/face/status.rb +0 -51
  485. data/lib/puppet/ffi/posix.rb +0 -10
  486. data/lib/puppet/ffi/posix/constants.rb +0 -14
  487. data/lib/puppet/ffi/posix/functions.rb +0 -24
  488. data/lib/puppet/indirector/certificate/file.rb +0 -9
  489. data/lib/puppet/indirector/certificate/rest.rb +0 -18
  490. data/lib/puppet/indirector/certificate_request/file.rb +0 -9
  491. data/lib/puppet/indirector/certificate_request/memory.rb +0 -7
  492. data/lib/puppet/indirector/certificate_request/rest.rb +0 -11
  493. data/lib/puppet/indirector/file_content/http.rb +0 -22
  494. data/lib/puppet/indirector/key/file.rb +0 -46
  495. data/lib/puppet/indirector/key/memory.rb +0 -7
  496. data/lib/puppet/indirector/ssl_file.rb +0 -162
  497. data/lib/puppet/indirector/status.rb +0 -3
  498. data/lib/puppet/indirector/status/local.rb +0 -12
  499. data/lib/puppet/indirector/status/rest.rb +0 -27
  500. data/lib/puppet/module_tool/applications/searcher.rb +0 -29
  501. data/lib/puppet/network/auth_config_parser.rb +0 -90
  502. data/lib/puppet/network/authstore.rb +0 -283
  503. data/lib/puppet/network/http/api/master/v3/authorization.rb +0 -18
  504. data/lib/puppet/network/http/api/master/v3/environment.rb +0 -88
  505. data/lib/puppet/network/http/base_pool.rb +0 -36
  506. data/lib/puppet/network/http/compression.rb +0 -127
  507. data/lib/puppet/network/http/connection_adapter.rb +0 -184
  508. data/lib/puppet/network/http/nocache_pool.rb +0 -28
  509. data/lib/puppet/network/rest_controller.rb +0 -2
  510. data/lib/puppet/network/rights.rb +0 -210
  511. data/lib/puppet/parser/compiler/catalog_validator/env_relationship_validator.rb +0 -66
  512. data/lib/puppet/parser/compiler/catalog_validator/site_validator.rb +0 -22
  513. data/lib/puppet/parser/environment_compiler.rb +0 -202
  514. data/lib/puppet/pops/types/enumeration.rb +0 -16
  515. data/lib/puppet/resource/capability_finder.rb +0 -154
  516. data/lib/puppet/rest/errors.rb +0 -15
  517. data/lib/puppet/rest/response.rb +0 -35
  518. data/lib/puppet/rest/route.rb +0 -85
  519. data/lib/puppet/rest/routes.rb +0 -135
  520. data/lib/puppet/settings/alias_setting.rb +0 -37
  521. data/lib/puppet/ssl/host.rb +0 -505
  522. data/lib/puppet/ssl/key.rb +0 -61
  523. data/lib/puppet/ssl/validator.rb +0 -61
  524. data/lib/puppet/ssl/validator/default_validator.rb +0 -209
  525. data/lib/puppet/ssl/validator/no_validator.rb +0 -22
  526. data/lib/puppet/ssl/verifier_adapter.rb +0 -58
  527. data/lib/puppet/status.rb +0 -40
  528. data/lib/puppet/util/connection.rb +0 -88
  529. data/lib/puppet/util/fact_dif.rb +0 -81
  530. data/lib/puppet/util/ssl.rb +0 -83
  531. data/lib/puppet/util/windows/api_types.rb +0 -309
  532. data/lib/puppet/util/windows/monkey_patches/dir.rb +0 -40
  533. data/lib/puppet/vendor/load_pathspec.rb +0 -1
  534. data/lib/puppet/vendor/pathspec/CHANGELOG.md +0 -2
  535. data/lib/puppet/vendor/pathspec/LICENSE +0 -201
  536. data/lib/puppet/vendor/pathspec/PUPPET_README.md +0 -6
  537. data/lib/puppet/vendor/pathspec/README.md +0 -53
  538. data/lib/puppet/vendor/pathspec/lib/pathspec.rb +0 -122
  539. data/lib/puppet/vendor/pathspec/lib/pathspec/gitignorespec.rb +0 -275
  540. data/lib/puppet/vendor/pathspec/lib/pathspec/regexspec.rb +0 -17
  541. data/lib/puppet/vendor/pathspec/lib/pathspec/spec.rb +0 -14
  542. data/man/man8/puppet-key.8 +0 -126
  543. data/man/man8/puppet-man.8 +0 -76
  544. data/man/man8/puppet-status.8 +0 -108
  545. data/spec/fixtures/integration/application/agent/cached_deferred_catalog.json +0 -91
  546. data/spec/fixtures/unit/provider/service/systemd/list_unit_files_services_vendor_preset +0 -9
  547. data/spec/integration/application/resource_spec.rb +0 -30
  548. data/spec/integration/network/authconfig_spec.rb +0 -256
  549. data/spec/integration/util/windows/monkey_patches/dir_spec.rb +0 -11
  550. data/spec/unit/application/man_spec.rb +0 -52
  551. data/spec/unit/capability_spec.rb +0 -414
  552. data/spec/unit/face/key_spec.rb +0 -9
  553. data/spec/unit/face/module/search_spec.rb +0 -231
  554. data/spec/unit/face/status_spec.rb +0 -9
  555. data/spec/unit/indirector/certificate/file_spec.rb +0 -14
  556. data/spec/unit/indirector/certificate/rest_spec.rb +0 -61
  557. data/spec/unit/indirector/certificate_request/file_spec.rb +0 -14
  558. data/spec/unit/indirector/certificate_request/rest_spec.rb +0 -25
  559. data/spec/unit/indirector/key/file_spec.rb +0 -78
  560. data/spec/unit/indirector/ssl_file_spec.rb +0 -305
  561. data/spec/unit/indirector/status/local_spec.rb +0 -10
  562. data/spec/unit/indirector/status/rest_spec.rb +0 -50
  563. data/spec/unit/module_tool/applications/searcher_spec.rb +0 -38
  564. data/spec/unit/network/auth_config_parser_spec.rb +0 -115
  565. data/spec/unit/network/authstore_spec.rb +0 -422
  566. data/spec/unit/network/http/api/master/v3/authorization_spec.rb +0 -57
  567. data/spec/unit/network/http/api/master/v3/environment_spec.rb +0 -185
  568. data/spec/unit/network/http/compression_spec.rb +0 -240
  569. data/spec/unit/network/http/nocache_pool_spec.rb +0 -64
  570. data/spec/unit/network/http_spec.rb +0 -9
  571. data/spec/unit/network/rights_spec.rb +0 -439
  572. data/spec/unit/parser/environment_compiler_spec.rb +0 -730
  573. data/spec/unit/pops/evaluator/deferred_resolver_spec.rb +0 -20
  574. data/spec/unit/pops/types/enumeration_spec.rb +0 -51
  575. data/spec/unit/resource/capability_finder_spec.rb +0 -148
  576. data/spec/unit/rest/route_spec.rb +0 -132
  577. data/spec/unit/ssl/host_spec.rb +0 -645
  578. data/spec/unit/ssl/key_spec.rb +0 -173
  579. data/spec/unit/ssl/validator_spec.rb +0 -278
  580. data/spec/unit/status_spec.rb +0 -45
  581. data/spec/unit/util/ssl_spec.rb +0 -91
@@ -74,13 +74,11 @@ module Puppet::Util::Windows
74
74
  string_to_sid_ptr(name) do |sid_ptr|
75
75
  raw_sid_bytes = sid_ptr.read_array_of_uchar(get_length_sid(sid_ptr))
76
76
  end
77
- rescue => e
78
- Puppet.debug("Could not retrieve raw SID bytes from '#{name}': #{e.message}")
77
+ rescue
79
78
  end
80
79
 
81
80
  raw_sid_bytes ? Principal.lookup_account_sid(raw_sid_bytes) : Principal.lookup_account_name(name)
82
- rescue => e
83
- Puppet.debug("#{e.message}")
81
+ rescue
84
82
  (allow_unresolved && raw_sid_bytes) ? unresolved_principal(name, raw_sid_bytes) : nil
85
83
  end
86
84
  module_function :name_to_principal
@@ -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.23.0'
9
+ PUPPETVERSION = '7.0.0'
10
10
 
11
11
  ##
12
12
  # version is a public API method intended to always provide a fast and
data/lib/puppet/x509.rb CHANGED
@@ -1,7 +1,11 @@
1
1
  require 'puppet'
2
2
  require 'puppet/ssl/openssl_loader'
3
3
 
4
- module Puppet::X509 # :nodoc:
4
+ # Responsible for loading and saving certificates and private keys.
5
+ #
6
+ # @see Puppet::X509::CertProvider
7
+ # @api private
8
+ module Puppet::X509
5
9
  require 'puppet/x509/pem_store'
6
10
  require 'puppet/x509/cert_provider'
7
11
  end
@@ -1,6 +1,11 @@
1
1
  require 'puppet/x509'
2
2
 
3
- # Class for loading and saving cert related objects.
3
+ # Class for loading and saving cert related objects. By default the provider
4
+ # loads and saves based on puppet's default settings, such as `Puppet[:localcacert]`.
5
+ # The providers sets the permissions on files it saves, such as the private key.
6
+ # All of the `load_*` methods take an optional `required` parameter. If an object
7
+ # doesn't exist, then by default the provider returns `nil`. However, if the
8
+ # `required` parameter is true, then an exception will be raised instead.
4
9
  #
5
10
  # @api private
6
11
  class Puppet::X509::CertProvider
@@ -32,6 +37,7 @@ class Puppet::X509::CertProvider
32
37
  #
33
38
  # @param certs [Array<OpenSSL::X509::Certificate>] Array of CA certs to save
34
39
  # @raise [Puppet::Error] if the certs cannot be saved
40
+ #
35
41
  # @api private
36
42
  def save_cacerts(certs)
37
43
  save_pem(certs.map(&:to_pem).join, @capath, **permissions_for_setting(:localcacert))
@@ -45,6 +51,7 @@ class Puppet::X509::CertProvider
45
51
  # @return (see #load_cacerts_from_pem)
46
52
  # @raise (see #load_cacerts_from_pem)
47
53
  # @raise [Puppet::Error] if the certs cannot be loaded
54
+ #
48
55
  # @api private
49
56
  def load_cacerts(required: false)
50
57
  pem = load_pem(@capath)
@@ -61,6 +68,7 @@ class Puppet::X509::CertProvider
61
68
  # @param pem [String] PEM encoded certificate(s)
62
69
  # @return [Array<OpenSSL::X509::Certificate>] Array of CA certs
63
70
  # @raise [OpenSSL::X509::CertificateError] The `pem` text does not contain a valid cert
71
+ #
64
72
  # @api private
65
73
  def load_cacerts_from_pem(pem)
66
74
  # TRANSLATORS 'PEM' is an acronym and shouldn't be translated
@@ -75,6 +83,7 @@ class Puppet::X509::CertProvider
75
83
  #
76
84
  # @param crls [Array<OpenSSL::X509::CRL>] Array of CRLs to save
77
85
  # @raise [Puppet::Error] if the CRLs cannot be saved
86
+ #
78
87
  # @api private
79
88
  def save_crls(crls)
80
89
  save_pem(crls.map(&:to_pem).join, @crlpath, **permissions_for_setting(:hostcrl))
@@ -88,6 +97,7 @@ class Puppet::X509::CertProvider
88
97
  # @return (see #load_crls_from_pem)
89
98
  # @raise (see #load_crls_from_pem)
90
99
  # @raise [Puppet::Error] if the CRLs cannot be loaded
100
+ #
91
101
  # @api private
92
102
  def load_crls(required: false)
93
103
  pem = load_pem(@crlpath)
@@ -104,6 +114,7 @@ class Puppet::X509::CertProvider
104
114
  # @param pem [String] PEM encoded CRL(s)
105
115
  # @return [Array<OpenSSL::X509::CRL>] Array of CRLs
106
116
  # @raise [OpenSSL::X509::CRLError] The `pem` text does not contain a valid CRL
117
+ #
107
118
  # @api private
108
119
  def load_crls_from_pem(pem)
109
120
  # TRANSLATORS 'PEM' is an acronym and shouldn't be translated
@@ -118,6 +129,8 @@ class Puppet::X509::CertProvider
118
129
  #
119
130
  # @return [Time, nil] Time when the CRL was last updated, or nil if we don't
120
131
  # have a CRL
132
+ #
133
+ # @api private
121
134
  def crl_last_update
122
135
  stat = Puppet::FileSystem.stat(@crlpath)
123
136
  Time.at(stat.mtime)
@@ -129,6 +142,7 @@ class Puppet::X509::CertProvider
129
142
  #
130
143
  # @param time [Time] The last updated time
131
144
  #
145
+ # @api private
132
146
  def crl_last_update=(time)
133
147
  Puppet::FileSystem.touch(@crlpath, mtime: time)
134
148
  end
@@ -142,6 +156,7 @@ class Puppet::X509::CertProvider
142
156
  # from the password, and use that to encrypt the private key. If nil,
143
157
  # save the private key unencrypted.
144
158
  # @raise [Puppet::Error] if the private key cannot be saved
159
+ #
145
160
  # @api private
146
161
  def save_private_key(name, key, password: nil)
147
162
  pem = if password
@@ -167,6 +182,7 @@ class Puppet::X509::CertProvider
167
182
  # @return (see #load_private_key_from_pem)
168
183
  # @raise (see #load_private_key_from_pem)
169
184
  # @raise [Puppet::Error] if the private key cannot be loaded
185
+ #
170
186
  # @api private
171
187
  def load_private_key(name, required: false, password: nil)
172
188
  path = @hostprivkey || to_path(@privatekeydir, name)
@@ -187,6 +203,7 @@ class Puppet::X509::CertProvider
187
203
  # not specified, then the key cannot be loaded.
188
204
  # @return [OpenSSL::PKey::RSA, OpenSSL::PKey::EC] The private key
189
205
  # @raise [OpenSSL::PKey::PKeyError] The `pem` text does not contain a valid key
206
+ #
190
207
  # @api private
191
208
  def load_private_key_from_pem(pem, password: nil)
192
209
  # set a non-nil password to ensure openssl doesn't prompt
@@ -216,6 +233,8 @@ class Puppet::X509::CertProvider
216
233
  #
217
234
  # @return [String, nil] The private key password as a binary string or nil
218
235
  # if there is none.
236
+ #
237
+ # @api private
219
238
  def load_private_key_password
220
239
  Puppet::FileSystem.read(Puppet[:passfile], :encoding => Encoding::BINARY)
221
240
  rescue Errno::ENOENT
@@ -227,6 +246,7 @@ class Puppet::X509::CertProvider
227
246
  # @param name [String] The client cert identity
228
247
  # @param cert [OpenSSL::X509::Certificate] The cert to save
229
248
  # @raise [Puppet::Error] if the client cert cannot be saved
249
+ #
230
250
  # @api private
231
251
  def save_client_cert(name, cert)
232
252
  path = @hostcert || to_path(@certdir, name)
@@ -242,6 +262,7 @@ class Puppet::X509::CertProvider
242
262
  # @return (see #load_request_from_pem)
243
263
  # @raise (see #load_client_cert_from_pem)
244
264
  # @raise [Puppet::Error] if the client cert cannot be loaded
265
+ #
245
266
  # @api private
246
267
  def load_client_cert(name, required: false)
247
268
  path = @hostcert || to_path(@certdir, name)
@@ -259,6 +280,7 @@ class Puppet::X509::CertProvider
259
280
  # @param pem [String] PEM encoded cert
260
281
  # @return [OpenSSL::X509::Certificate] the certificate
261
282
  # @raise [OpenSSL::X509::CertificateError] The `pem` text does not contain a valid cert
283
+ #
262
284
  # @api private
263
285
  def load_client_cert_from_pem(pem)
264
286
  OpenSSL::X509::Certificate.new(pem)
@@ -270,6 +292,7 @@ class Puppet::X509::CertProvider
270
292
  # @param private_key [OpenSSL::PKey::RSA] private key
271
293
  # @return [Puppet::X509::Request] The request
272
294
  #
295
+ # @api private
273
296
  def create_request(name, private_key)
274
297
  options = {}
275
298
 
@@ -292,6 +315,7 @@ class Puppet::X509::CertProvider
292
315
  # @param name [String] the request identity
293
316
  # @param csr [OpenSSL::X509::Request] the request
294
317
  # @raise [Puppet::Error] if the cert request cannot be saved
318
+ #
295
319
  # @api private
296
320
  def save_request(name, csr)
297
321
  path = to_path(@requestdir, name)
@@ -306,6 +330,7 @@ class Puppet::X509::CertProvider
306
330
  # @return (see #load_request_from_pem)
307
331
  # @raise (see #load_request_from_pem)
308
332
  # @raise [Puppet::Error] if the cert request cannot be saved
333
+ #
309
334
  # @api private
310
335
  def load_request(name)
311
336
  path = to_path(@requestdir, name)
@@ -319,6 +344,8 @@ class Puppet::X509::CertProvider
319
344
  #
320
345
  # @param name [String] The request identity
321
346
  # @return [Boolean] true if the CSR was deleted
347
+ #
348
+ # @api private
322
349
  def delete_request(name)
323
350
  path = to_path(@requestdir, name)
324
351
  delete_pem(path)
@@ -331,6 +358,7 @@ class Puppet::X509::CertProvider
331
358
  # @param pem [String] PEM encoded request
332
359
  # @return [OpenSSL::X509::Request] the request
333
360
  # @raise [OpenSSL::X509::RequestError] The `pem` text does not contain a valid request
361
+ #
334
362
  # @api private
335
363
  def load_request_from_pem(pem)
336
364
  OpenSSL::X509::Request.new(pem)
data/locales/puppet.pot CHANGED
@@ -1,16 +1,16 @@
1
1
  # SOME DESCRIPTIVE TITLE.
2
- # Copyright (C) 2021 Puppet, Inc.
2
+ # Copyright (C) 2020 Puppet, Inc.
3
3
  # This file is distributed under the same license as the Puppet automation framework package.
4
- # FIRST AUTHOR <EMAIL@ADDRESS>, 2021.
4
+ # FIRST AUTHOR <EMAIL@ADDRESS>, 2020.
5
5
  #
6
6
  #, fuzzy
7
7
  msgid ""
8
8
  msgstr ""
9
- "Project-Id-Version: Puppet automation framework 6.22.1-63-ga15932f0d4\n"
9
+ "Project-Id-Version: Puppet automation framework 6.19.1-404-g6fd33ed69c\n"
10
10
  "\n"
11
11
  "Report-Msgid-Bugs-To: https://tickets.puppetlabs.com\n"
12
- "POT-Creation-Date: 2021-05-25 15:33+0000\n"
13
- "PO-Revision-Date: 2021-05-25 15:33+0000\n"
12
+ "POT-Creation-Date: 2020-10-29 10:41+0000\n"
13
+ "PO-Revision-Date: 2020-10-29 10:41+0000\n"
14
14
  "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
15
15
  "Language-Team: LANGUAGE <LL@li.org>\n"
16
16
  "Language: \n"
@@ -48,21 +48,21 @@ msgstr ""
48
48
  msgid "Config file %{hiera_config} not found, using Hiera defaults"
49
49
  msgstr ""
50
50
 
51
- #: ../lib/puppet.rb:144
51
+ #: ../lib/puppet.rb:138
52
52
  msgid "Support for ruby version %{version} is deprecated and will be removed in a future release. See https://puppet.com/docs/puppet/latest/system_requirements.html for a list of supported ruby versions."
53
53
  msgstr ""
54
54
 
55
- #: ../lib/puppet.rb:230
55
+ #: ../lib/puppet.rb:224
56
56
  msgid "The environmentpath setting cannot be empty or nil."
57
57
  msgstr ""
58
58
 
59
59
  #. TRANSLATORS: `message` is an already translated string of why SSL failed to initialize
60
- #: ../lib/puppet.rb:257
60
+ #: ../lib/puppet.rb:250
61
61
  msgid "Failed to initialize SSL: %{message}"
62
62
  msgstr ""
63
63
 
64
64
  #. TRANSLATORS: `puppet agent -t` is a command and should not be translated
65
- #: ../lib/puppet.rb:259
65
+ #: ../lib/puppet.rb:252
66
66
  msgid "Run `puppet agent -t`"
67
67
  msgstr ""
68
68
 
@@ -120,59 +120,59 @@ msgstr ""
120
120
  msgid "Failed to acquire lock"
121
121
  msgstr ""
122
122
 
123
- #: ../lib/puppet/application.rb:238
123
+ #: ../lib/puppet/application.rb:231
124
124
  msgid "Unable to find application '%{application_name}'. %{error}"
125
125
  msgstr ""
126
126
 
127
- #: ../lib/puppet/application.rb:259
127
+ #: ../lib/puppet/application.rb:252
128
128
  msgid "Unable to load application class '%{class_name}' from file 'puppet/application/%{application_name}.rb'"
129
129
  msgstr ""
130
130
 
131
- #: ../lib/puppet/application.rb:298
131
+ #: ../lib/puppet/application.rb:305
132
132
  msgid "Invalid environment mode '%{mode_name}'"
133
133
  msgstr ""
134
134
 
135
- #: ../lib/puppet/application.rb:366
135
+ #: ../lib/puppet/application.rb:405
136
136
  msgid "Could not get application-specific default settings"
137
137
  msgstr ""
138
138
 
139
- #: ../lib/puppet/application.rb:372
139
+ #: ../lib/puppet/application.rb:411
140
140
  msgid "Could not initialize"
141
141
  msgstr ""
142
142
 
143
- #: ../lib/puppet/application.rb:373
143
+ #: ../lib/puppet/application.rb:412
144
144
  msgid "Could not parse application options"
145
145
  msgstr ""
146
146
 
147
- #: ../lib/puppet/application.rb:374
147
+ #: ../lib/puppet/application.rb:413
148
148
  msgid "Could not prepare for execution"
149
149
  msgstr ""
150
150
 
151
- #: ../lib/puppet/application.rb:377
151
+ #: ../lib/puppet/application.rb:416
152
152
  msgid "`puppet %{name}` is deprecated and will be removed in a future release."
153
153
  msgstr ""
154
154
 
155
- #: ../lib/puppet/application.rb:380
155
+ #: ../lib/puppet/application.rb:419
156
156
  msgid "Could not configure routes from %{route_file}"
157
157
  msgstr ""
158
158
 
159
- #: ../lib/puppet/application.rb:381
159
+ #: ../lib/puppet/application.rb:420
160
160
  msgid "Could not log runtime debug info"
161
161
  msgstr ""
162
162
 
163
- #: ../lib/puppet/application.rb:382
163
+ #: ../lib/puppet/application.rb:421
164
164
  msgid "Could not run"
165
165
  msgstr ""
166
166
 
167
- #: ../lib/puppet/application.rb:386
167
+ #: ../lib/puppet/application.rb:430
168
168
  msgid "No valid command or main"
169
169
  msgstr ""
170
170
 
171
- #: ../lib/puppet/application.rb:431
171
+ #: ../lib/puppet/application.rb:483
172
172
  msgid "Could not set logdest to %{dest}."
173
173
  msgstr ""
174
174
 
175
- #: ../lib/puppet/application.rb:508
175
+ #: ../lib/puppet/application.rb:576
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:422
187
+ #: ../lib/puppet/application/agent.rb:414
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:427
191
+ #: ../lib/puppet/application/agent.rb:419
192
192
  msgid "Failed to generate fingerprint: %{message}"
193
193
  msgstr ""
194
194
 
195
- #: ../lib/puppet/application/agent.rb:450
195
+ #: ../lib/puppet/application/agent.rb:442
196
196
  msgid "Starting Puppet client version %{version}"
197
197
  msgstr ""
198
198
 
199
- #: ../lib/puppet/application/agent.rb:466
199
+ #: ../lib/puppet/application/agent.rb:458
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:209 ../lib/puppet/application/apply.rb:322
209
+ #: ../lib/puppet/application/apply.rb:207 ../lib/puppet/application/apply.rb:320
210
210
  msgid "For puppet apply"
211
211
  msgstr ""
212
212
 
213
- #: ../lib/puppet/application/apply.rb:217
213
+ #: ../lib/puppet/application/apply.rb:215
214
214
  msgid "%{file} is not readable"
215
215
  msgstr ""
216
216
 
217
- #: ../lib/puppet/application/apply.rb:288 ../lib/puppet/application/script.rb:241
217
+ #: ../lib/puppet/application/apply.rb:286 ../lib/puppet/application/script.rb:239
218
218
  msgid "Exiting"
219
219
  msgstr ""
220
220
 
221
- #: ../lib/puppet/application/apply.rb:332
221
+ #: ../lib/puppet/application/apply.rb:330
222
222
  msgid "Could not deserialize catalog from %{format}: %{detail}"
223
223
  msgstr ""
224
224
 
225
- #: ../lib/puppet/application/apply.rb:353 ../lib/puppet/application/script.rb:146
225
+ #: ../lib/puppet/application/apply.rb:351 ../lib/puppet/application/script.rb:144
226
226
  msgid "Could not find facts for %{node}"
227
227
  msgstr ""
228
228
 
229
- #: ../lib/puppet/application/apply.rb:365 ../lib/puppet/application/script.rb:154
229
+ #: ../lib/puppet/application/apply.rb:363 ../lib/puppet/application/script.rb:152
230
230
  msgid "Could not find node %{node}"
231
231
  msgstr ""
232
232
 
233
- #: ../lib/puppet/application/apply.rb:378 ../lib/puppet/application/script.rb:139
233
+ #: ../lib/puppet/application/apply.rb:376 ../lib/puppet/application/script.rb:137
234
234
  msgid "Could not find file %{manifest}"
235
235
  msgstr ""
236
236
 
237
- #: ../lib/puppet/application/apply.rb:379
237
+ #: ../lib/puppet/application/apply.rb:377
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:232
249
+ #: ../lib/puppet/application/device.rb:230
254
250
  msgid "resource command requires target"
255
251
  msgstr ""
256
252
 
257
- #: ../lib/puppet/application/device.rb:235
253
+ #: ../lib/puppet/application/device.rb:233
258
254
  msgid "facts command requires target"
259
255
  msgstr ""
260
256
 
261
- #: ../lib/puppet/application/device.rb:238
257
+ #: ../lib/puppet/application/device.rb:236
262
258
  msgid "missing argument: --target is required when using --apply"
263
259
  msgstr ""
264
260
 
265
- #: ../lib/puppet/application/device.rb:239
261
+ #: ../lib/puppet/application/device.rb:237
266
262
  msgid "%{file} does not exist, cannot apply"
267
263
  msgstr ""
268
264
 
269
- #: ../lib/puppet/application/device.rb:257
265
+ #: ../lib/puppet/application/device.rb:255
270
266
  msgid "Target device / certificate '%{target}' not found in %{config}"
271
267
  msgstr ""
272
268
 
273
- #: ../lib/puppet/application/device.rb:259
269
+ #: ../lib/puppet/application/device.rb:257
274
270
  msgid "No device found in %{config}"
275
271
  msgstr ""
276
272
 
277
- #: ../lib/puppet/application/device.rb:318
273
+ #: ../lib/puppet/application/device.rb:314
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:333
277
+ #: ../lib/puppet/application/device.rb:329
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:356
281
+ #: ../lib/puppet/application/device.rb:352
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:394 ../lib/puppet/application/resource.rb:197
285
+ #: ../lib/puppet/application/device.rb:388 ../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:395 ../lib/puppet/application/resource.rb:198
289
+ #: ../lib/puppet/application/device.rb:389 ../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
 
@@ -422,15 +418,15 @@ msgstr ""
422
418
  msgid "The resource abstraction layer shell"
423
419
  msgstr ""
424
420
 
425
- #: ../lib/puppet/application/resource.rb:141
421
+ #: ../lib/puppet/application/resource.rb:140
426
422
  msgid "Editing with Yaml output is not supported"
427
423
  msgstr ""
428
424
 
429
- #: ../lib/puppet/application/resource.rb:205
425
+ #: ../lib/puppet/application/resource.rb:204
430
426
  msgid "Invalid parameter setting %{setting}"
431
427
  msgstr ""
432
428
 
433
- #: ../lib/puppet/application/resource.rb:227
429
+ #: ../lib/puppet/application/resource.rb:226
434
430
  msgid "Listing all file instances is not supported. Please specify a file or directory, e.g. puppet resource file /etc"
435
431
  msgstr ""
436
432
 
@@ -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:126
437
+ #: ../lib/puppet/application/script.rb:124
442
438
  msgid "Bolt must be installed to use the script application"
443
439
  msgstr ""
444
440
 
445
- #: ../lib/puppet/application/script.rb:140
441
+ #: ../lib/puppet/application/script.rb:138
446
442
  msgid "Only one file can be used per run. Skipping %{files}"
447
443
  msgstr ""
448
444
 
@@ -450,59 +446,59 @@ msgstr ""
450
446
  msgid "Manage SSL keys and certificates for puppet SSL clients"
451
447
  msgstr ""
452
448
 
453
- #: ../lib/puppet/application/ssl.rb:106
449
+ #: ../lib/puppet/application/ssl.rb:103
454
450
  msgid "An action must be specified."
455
451
  msgstr ""
456
452
 
457
- #: ../lib/puppet/application/ssl.rb:129 ../lib/puppet/application/ssl.rb:136
453
+ #: ../lib/puppet/application/ssl.rb:126 ../lib/puppet/application/ssl.rb:133
458
454
  msgid "The certificate for '%{name}' has not yet been signed"
459
455
  msgstr ""
460
456
 
461
- #: ../lib/puppet/application/ssl.rb:147
457
+ #: ../lib/puppet/application/ssl.rb:144
462
458
  msgid "Completed SSL initialization"
463
459
  msgstr ""
464
460
 
465
- #: ../lib/puppet/application/ssl.rb:151
461
+ #: ../lib/puppet/application/ssl.rb:146
466
462
  msgid "Unknown action '%{action}'"
467
463
  msgstr ""
468
464
 
469
- #: ../lib/puppet/application/ssl.rb:165 ../lib/puppet/ssl/state_machine.rb:180
465
+ #: ../lib/puppet/application/ssl.rb:154 ../lib/puppet/ssl/state_machine.rb:180
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:168 ../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
 
477
- #: ../lib/puppet/application/ssl.rb:178
473
+ #: ../lib/puppet/application/ssl.rb:167
478
474
  msgid "Submitted certificate request for '%{name}' to %{url}"
479
475
  msgstr ""
480
476
 
481
- #: ../lib/puppet/application/ssl.rb:181
477
+ #: ../lib/puppet/application/ssl.rb:170
482
478
  msgid "Could not submit certificate request for '%{name}' to %{url} due to a conflict on the server"
483
479
  msgstr ""
484
480
 
485
- #: ../lib/puppet/application/ssl.rb:183 ../lib/puppet/application/ssl.rb:186
481
+ #: ../lib/puppet/application/ssl.rb:172 ../lib/puppet/application/ssl.rb:175
486
482
  msgid "Failed to submit certificate request: %{message}"
487
483
  msgstr ""
488
484
 
489
- #: ../lib/puppet/application/ssl.rb:194
485
+ #: ../lib/puppet/application/ssl.rb:183
490
486
  msgid "Downloading certificate '%{name}' from %{url}"
491
487
  msgstr ""
492
488
 
493
- #: ../lib/puppet/application/ssl.rb:198
489
+ #: ../lib/puppet/application/ssl.rb:187
494
490
  msgid "Downloaded certificate '%{name}' with fingerprint %{fingerprint}"
495
491
  msgstr ""
496
492
 
497
- #: ../lib/puppet/application/ssl.rb:211 ../lib/puppet/application/ssl.rb:214
493
+ #: ../lib/puppet/application/ssl.rb:200 ../lib/puppet/application/ssl.rb:203
498
494
  msgid "Failed to download certificate: %{message}"
499
495
  msgstr ""
500
496
 
501
- #: ../lib/puppet/application/ssl.rb:243 ../lib/puppet/application/ssl.rb:246
497
+ #: ../lib/puppet/application/ssl.rb:232 ../lib/puppet/application/ssl.rb:235
502
498
  msgid "Failed to connect to the CA to determine if certificate %{certname} has been cleaned"
503
499
  msgstr ""
504
500
 
505
- #: ../lib/puppet/application/ssl.rb:250
501
+ #: ../lib/puppet/application/ssl.rb:239
506
502
  msgid ""
507
503
  "The certificate %{certname} must be cleaned from the CA first. To fix this,\n"
508
504
  "run the following commands on the CA:\n"
@@ -510,7 +506,7 @@ msgid ""
510
506
  " puppet ssl clean\n"
511
507
  msgstr ""
512
508
 
513
- #: ../lib/puppet/application/ssl.rb:273
509
+ #: ../lib/puppet/application/ssl.rb:262
514
510
  msgid "Removed %{label} %{path}"
515
511
  msgstr ""
516
512
 
@@ -550,81 +546,81 @@ msgstr ""
550
546
  msgid "Applied catalog in %{seconds} seconds"
551
547
  msgstr ""
552
548
 
553
- #: ../lib/puppet/configurer.rb:227
549
+ #: ../lib/puppet/configurer.rb:225
554
550
  msgid "Could not select a functional puppet server from server_list: '%{server_list}'"
555
551
  msgstr ""
556
552
 
557
553
  #. TRANSLATORS 'server_list' is the name of a setting and should not be translated
558
- #: ../lib/puppet/configurer.rb:241
554
+ #: ../lib/puppet/configurer.rb:239
559
555
  msgid "Selected puppet server from the `server_list` setting: %{server}:%{port}"
560
556
  msgstr ""
561
557
 
562
- #: ../lib/puppet/configurer.rb:277
558
+ #: ../lib/puppet/configurer.rb:275
563
559
  msgid "Local environment: '%{local_env}' doesn't match the environment of the cached catalog '%{catalog_env}', switching agent to '%{catalog_env}'."
564
560
  msgstr ""
565
561
 
566
- #: ../lib/puppet/configurer.rb:322
562
+ #: ../lib/puppet/configurer.rb:320
567
563
  msgid "Local environment: '%{local_env}' doesn't match server specified node environment '%{node_env}', switching agent to '%{node_env}'."
568
564
  msgstr ""
569
565
 
570
- #: ../lib/puppet/configurer.rb:337
566
+ #: ../lib/puppet/configurer.rb:335
571
567
  msgid "Using configured environment '%{env}'"
572
568
  msgstr ""
573
569
 
574
- #: ../lib/puppet/configurer.rb:341
570
+ #: ../lib/puppet/configurer.rb:339
575
571
  msgid "Unable to fetch my node definition, but the agent run will continue:"
576
572
  msgstr ""
577
573
 
578
- #: ../lib/puppet/configurer.rb:369
574
+ #: ../lib/puppet/configurer.rb:367
579
575
  msgid "Not using catalog because its environment '%{catalog_env}' does not match agent specified environment '%{local_env}' and strict_environment_mode is set"
580
576
  msgstr ""
581
577
 
582
- #: ../lib/puppet/configurer.rb:380
578
+ #: ../lib/puppet/configurer.rb:378
583
579
  msgid "Catalog environment didn't stabilize after %{tries} fetches, aborting run"
584
580
  msgstr ""
585
581
 
586
- #: ../lib/puppet/configurer.rb:382
582
+ #: ../lib/puppet/configurer.rb:380
587
583
  msgid "Local environment: '%{local_env}' doesn't match server specified environment '%{catalog_env}', restarting agent run with environment '%{catalog_env}'"
588
584
  msgstr ""
589
585
 
590
- #: ../lib/puppet/configurer.rb:436
586
+ #: ../lib/puppet/configurer.rb:421
591
587
  msgid "Failed to apply catalog: %{detail}"
592
588
  msgstr ""
593
589
 
594
- #: ../lib/puppet/configurer.rb:465 ../lib/puppet/http/resolver/server_list.rb:68 ../lib/puppet/http/resolver/server_list.rb:72
590
+ #: ../lib/puppet/configurer.rb:450 ../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:469 ../lib/puppet/http/resolver/server_list.rb:77 ../lib/puppet/http/resolver/server_list.rb:80
595
+ #: ../lib/puppet/configurer.rb:454 ../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:480 ../lib/puppet/face/report.rb:47
599
+ #: ../lib/puppet/configurer.rb:465 ../lib/puppet/face/report.rb:47
604
600
  msgid "Could not send report: %{detail}"
605
601
  msgstr ""
606
602
 
607
- #: ../lib/puppet/configurer.rb:489
603
+ #: ../lib/puppet/configurer.rb:474
608
604
  msgid "Could not save last run local report: %{detail}"
609
605
  msgstr ""
610
606
 
611
- #: ../lib/puppet/configurer.rb:508
607
+ #: ../lib/puppet/configurer.rb:493
612
608
  msgid "Uploading facts for %{node} to %{server}"
613
609
  msgstr ""
614
610
 
615
- #: ../lib/puppet/configurer.rb:516
611
+ #: ../lib/puppet/configurer.rb:501
616
612
  msgid "Failed to submit facts: %{detail}"
617
613
  msgstr ""
618
614
 
619
- #: ../lib/puppet/configurer.rb:531
615
+ #: ../lib/puppet/configurer.rb:516
620
616
  msgid "Could not run command from %{setting}: %{detail}"
621
617
  msgstr ""
622
618
 
623
- #: ../lib/puppet/configurer.rb:549
619
+ #: ../lib/puppet/configurer.rb:534
624
620
  msgid "Could not retrieve catalog from cache: %{detail}"
625
621
  msgstr ""
626
622
 
627
- #: ../lib/puppet/configurer.rb:570
623
+ #: ../lib/puppet/configurer.rb:555
628
624
  msgid "Could not retrieve catalog from remote server: %{detail}"
629
625
  msgstr ""
630
626
 
@@ -692,50 +688,42 @@ msgstr ""
692
688
  msgid "a data type can only have one implementation"
693
689
  msgstr ""
694
690
 
695
- #: ../lib/puppet/defaults.rb:191
691
+ #: ../lib/puppet/defaults.rb:156
696
692
  msgid "Cannot disable unrecognized warning types '%{invalid}'."
697
693
  msgstr ""
698
694
 
699
- #: ../lib/puppet/defaults.rb:192
695
+ #: ../lib/puppet/defaults.rb:157
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:559
700
+ #: ../lib/puppet/defaults.rb:522
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:561
705
+ #: ../lib/puppet/defaults.rb:524
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:774
710
+ #: ../lib/puppet/defaults.rb:717
715
711
  msgid "Setting 'environment_data_provider' is deprecated."
716
712
  msgstr ""
717
713
 
718
- #: ../lib/puppet/defaults.rb:859
714
+ #: ../lib/puppet/defaults.rb:802
719
715
  msgid "Certificate names must be lower case"
720
716
  msgstr ""
721
717
 
722
- #: ../lib/puppet/defaults.rb:1054
723
- msgid "Setting 'ssl_client_ca_auth' is deprecated."
724
- msgstr ""
725
-
726
- #: ../lib/puppet/defaults.rb:1141 ../lib/puppet/settings/enum_setting.rb:13 ../lib/puppet/settings/symbolic_enum_setting.rb:14
718
+ #: ../lib/puppet/defaults.rb:1053 ../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:2017
723
+ #: ../lib/puppet/defaults.rb:1895
732
724
  msgid "Setting 'pluginsync' is deprecated."
733
725
  msgstr ""
734
726
 
735
- #: ../lib/puppet/defaults.rb:2252
736
- msgid "The 'func3x_check' setting is deprecated and will be removed in a future release."
737
- msgstr ""
738
-
739
727
  #: ../lib/puppet/error.rb:77
740
728
  msgid "Could not parse for environment %{environment}: %{message}"
741
729
  msgstr ""
@@ -778,7 +766,7 @@ msgstr ""
778
766
  msgid "no matching resources found"
779
767
  msgstr ""
780
768
 
781
- #: ../lib/puppet/face/config.rb:7 ../lib/puppet/face/epp.rb:8 ../lib/puppet/face/facts.rb:22 ../lib/puppet/face/generate.rb:7 ../lib/puppet/face/help.rb:9 ../lib/puppet/face/key.rb:5 ../lib/puppet/face/man.rb:8 ../lib/puppet/face/module.rb:9 ../lib/puppet/face/node.rb:4 ../lib/puppet/face/parser.rb:6 ../lib/puppet/face/plugin.rb:6 ../lib/puppet/face/report.rb:5 ../lib/puppet/face/resource.rb:5 ../lib/puppet/face/status.rb:5
769
+ #: ../lib/puppet/face/config.rb:7 ../lib/puppet/face/epp.rb:8 ../lib/puppet/face/facts.rb:6 ../lib/puppet/face/generate.rb:7 ../lib/puppet/face/help.rb:9 ../lib/puppet/face/module.rb:9 ../lib/puppet/face/node.rb:4 ../lib/puppet/face/parser.rb:6 ../lib/puppet/face/plugin.rb:6 ../lib/puppet/face/report.rb:5 ../lib/puppet/face/resource.rb:5
782
770
  msgid "Apache 2 license; see COPYING"
783
771
  msgstr ""
784
772
 
@@ -844,28 +832,28 @@ msgid ""
844
832
  "https://puppet.com/docs/puppet/latest/configuration.html#environment\n"
845
833
  msgstr ""
846
834
 
847
- #: ../lib/puppet/face/config.rb:186
835
+ #: ../lib/puppet/face/config.rb:176
848
836
  msgid "Deleted setting from '%{section_name}': '%{setting_string}', and adding it to 'server' section"
849
837
  msgstr ""
850
838
 
851
- #: ../lib/puppet/face/config.rb:201
839
+ #: ../lib/puppet/face/config.rb:191
852
840
  msgid "Delete a Puppet setting."
853
841
  msgstr ""
854
842
 
855
- #: ../lib/puppet/face/config.rb:202
843
+ #: ../lib/puppet/face/config.rb:192
856
844
  msgid "<setting>"
857
845
  msgstr ""
858
846
 
859
- #: ../lib/puppet/face/config.rb:236 ../lib/puppet/face/config.rb:240 ../lib/puppet/face/config.rb:251
847
+ #: ../lib/puppet/face/config.rb:226 ../lib/puppet/face/config.rb:230 ../lib/puppet/face/config.rb:241
860
848
  msgid "Deleted setting from '%{section_name}': '%{setting_string}'"
861
849
  msgstr ""
862
850
 
863
- #: ../lib/puppet/face/config.rb:254
851
+ #: ../lib/puppet/face/config.rb:244
864
852
  msgid "No setting found in configuration file for section '%{section_name}' setting name '%{name}'"
865
853
  msgstr ""
866
854
 
867
855
  #. TRANSLATORS the 'puppet.conf' is a specific file and should not be translated
868
- #: ../lib/puppet/face/config.rb:262
856
+ #: ../lib/puppet/face/config.rb:252
869
857
  msgid "The puppet.conf file does not exist %{puppet_conf}"
870
858
  msgstr ""
871
859
 
@@ -1015,86 +1003,62 @@ msgstr ""
1015
1003
  msgid "--values option must evaluate to a Hash or undef, got: '%{values_class}'"
1016
1004
  msgstr ""
1017
1005
 
1018
- #: ../lib/puppet/face/facts.rb:24
1006
+ #: ../lib/puppet/face/facts.rb:8
1019
1007
  msgid "Retrieve and store facts."
1020
1008
  msgstr ""
1021
1009
 
1022
- #: ../lib/puppet/face/facts.rb:32
1010
+ #: ../lib/puppet/face/facts.rb:16
1023
1011
  msgid "Retrieve a node's facts."
1024
1012
  msgstr ""
1025
1013
 
1026
- #: ../lib/puppet/face/facts.rb:33
1014
+ #: ../lib/puppet/face/facts.rb:17
1027
1015
  msgid "[<node_certname>]"
1028
1016
  msgstr ""
1029
1017
 
1030
- #: ../lib/puppet/face/facts.rb:56
1018
+ #: ../lib/puppet/face/facts.rb:39
1031
1019
  msgid "Upload local facts to the puppet master."
1032
1020
  msgstr ""
1033
1021
 
1034
- #: ../lib/puppet/face/facts.rb:98
1022
+ #: ../lib/puppet/face/facts.rb:77
1035
1023
  msgid "Uploading facts for '%{node}' to '%{server}'"
1036
1024
  msgstr ""
1037
1025
 
1038
- #: ../lib/puppet/face/facts.rb:108
1039
- msgid "Compare Facter 3 output with Facter 4 output"
1040
- msgstr ""
1041
-
1042
- #: ../lib/puppet/face/facts.rb:122
1043
- msgid "Render the different facts as structured."
1044
- msgstr ""
1045
-
1046
- #: ../lib/puppet/face/facts.rb:125
1047
- msgid "<regex>"
1048
- msgstr ""
1049
-
1050
- #: ../lib/puppet/face/facts.rb:126
1051
- msgid "Regex used to exclude specific facts from diff."
1052
- msgstr ""
1053
-
1054
- #: ../lib/puppet/face/facts.rb:151
1055
- msgid "Already using Facter 4. To use `puppet facts diff` remove facterng from the .conf file or run `puppet config set facterng false`."
1056
- msgstr ""
1057
-
1058
- #: ../lib/puppet/face/facts.rb:167
1026
+ #: ../lib/puppet/face/facts.rb:87
1059
1027
  msgid "Retrieve current node's facts."
1060
1028
  msgstr ""
1061
1029
 
1062
- #: ../lib/puppet/face/facts.rb:168
1030
+ #: ../lib/puppet/face/facts.rb:88
1063
1031
  msgid "[<facts>]"
1064
1032
  msgstr ""
1065
1033
 
1066
- #: ../lib/puppet/face/facts.rb:183 ../lib/puppet/face/facts.rb:188 ../lib/puppet/face/facts.rb:193 ../lib/puppet/face/module/changes.rb:21
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
1067
1035
  msgid "<path>"
1068
1036
  msgstr ""
1069
1037
 
1070
- #: ../lib/puppet/face/facts.rb:185
1038
+ #: ../lib/puppet/face/facts.rb:106
1071
1039
  msgid "The location of the config file for Facter."
1072
1040
  msgstr ""
1073
1041
 
1074
- #: ../lib/puppet/face/facts.rb:190
1042
+ #: ../lib/puppet/face/facts.rb:111
1075
1043
  msgid "The path to a directory that contains custom facts."
1076
1044
  msgstr ""
1077
1045
 
1078
- #: ../lib/puppet/face/facts.rb:195
1046
+ #: ../lib/puppet/face/facts.rb:116
1079
1047
  msgid "The path to a directory that contains external facts."
1080
1048
  msgstr ""
1081
1049
 
1082
- #: ../lib/puppet/face/facts.rb:199
1050
+ #: ../lib/puppet/face/facts.rb:120
1083
1051
  msgid "Disable fact blocking mechanism."
1084
1052
  msgstr ""
1085
1053
 
1086
- #: ../lib/puppet/face/facts.rb:203
1054
+ #: ../lib/puppet/face/facts.rb:124
1087
1055
  msgid "Disable fact caching mechanism."
1088
1056
  msgstr ""
1089
1057
 
1090
- #: ../lib/puppet/face/facts.rb:207
1058
+ #: ../lib/puppet/face/facts.rb:128
1091
1059
  msgid "Show legacy facts when querying all facts."
1092
1060
  msgstr ""
1093
1061
 
1094
- #: ../lib/puppet/face/facts.rb:211
1095
- msgid "Show only the value when the action is called with a single query"
1096
- msgstr ""
1097
-
1098
1062
  #: ../lib/puppet/face/generate.rb:9
1099
1063
  msgid "Generates Puppet code from Ruby definitions."
1100
1064
  msgstr ""
@@ -1204,52 +1168,10 @@ msgstr ""
1204
1168
  msgid "Check error logs."
1205
1169
  msgstr ""
1206
1170
 
1207
- #: ../lib/puppet/face/key.rb:7
1208
- msgid "Create, save, and remove certificate keys."
1209
- msgstr ""
1210
-
1211
- #: ../lib/puppet/face/man.rb:10
1212
- msgid "Display Puppet manual pages."
1213
- msgstr ""
1214
-
1215
- #: ../lib/puppet/face/man.rb:28
1216
- msgid "Display the manual page for a Puppet subcommand."
1217
- msgstr ""
1218
-
1219
- #: ../lib/puppet/face/man.rb:29
1220
- msgid "<subcommand>"
1221
- msgstr ""
1222
-
1223
- #. TRANSLATORS '--render-as s' is a command line option and should not be translated
1224
- #: ../lib/puppet/face/man.rb:31
1225
- msgid ""
1226
- " The man data, in Markdown format, suitable for consumption by Ronn.\n"
1227
- "\n"
1228
- " RENDERING ISSUES: To skip fancy formatting and output the raw Markdown\n"
1229
- " text (e.g. for use in a pipeline), call this action with '--render-as s'.\n"
1230
- msgstr ""
1231
-
1232
- #. TRANSLATORS 'puppet man' is a specific command line and should not be translated
1233
- #: ../lib/puppet/face/man.rb:56
1234
- msgid "The 'puppet man' command takes a single subcommand to review the subcommand's manpage"
1235
- msgstr ""
1236
-
1237
1171
  #: ../lib/puppet/face/module.rb:11
1238
1172
  msgid "Creates, installs and searches for modules on the Puppet Forge."
1239
1173
  msgstr ""
1240
1174
 
1241
- #: ../lib/puppet/face/module/build.rb:3
1242
- msgid "Build a module release package."
1243
- msgstr ""
1244
-
1245
- #. TRANSLATORS 'Puppet Development Kit' is the name of the software package replacing this action and should not be translated.
1246
- #. TRANSLATORS 'Puppet Development Kit' is the name of the software package replacing this action and should not be translated.
1247
- #. TRANSLATORS 'Puppet Development Kit' is the name of the software package replacing this action and should not be translated.
1248
- #. TRANSLATORS 'Puppet Development Kit' is the name of the software package replacing this action and should not be translated.
1249
- #: ../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
1250
- msgid "This action has been replaced by Puppet Development Kit. For more information visit https://puppet.com/docs/pdk/latest/pdk.html."
1251
- msgstr ""
1252
-
1253
1175
  #: ../lib/puppet/face/module/changes.rb:3
1254
1176
  msgid "Show modified files of an installed module."
1255
1177
  msgstr ""
@@ -1270,10 +1192,6 @@ msgstr ""
1270
1192
  msgid "%{count} files modified"
1271
1193
  msgstr ""
1272
1194
 
1273
- #: ../lib/puppet/face/module/generate.rb:3
1274
- msgid "Generate boilerplate for a new module."
1275
- msgstr ""
1276
-
1277
1195
  #: ../lib/puppet/face/module/install.rb:8
1278
1196
  msgid "Install a module from the Puppet Forge or a release archive."
1279
1197
  msgstr ""
@@ -1349,26 +1267,6 @@ msgstr ""
1349
1267
  msgid "invalid"
1350
1268
  msgstr ""
1351
1269
 
1352
- #: ../lib/puppet/face/module/search.rb:6
1353
- msgid "Search the Puppet Forge for a module."
1354
- msgstr ""
1355
-
1356
- #: ../lib/puppet/face/module/search.rb:14
1357
- msgid "Array of module metadata hashes"
1358
- msgstr ""
1359
-
1360
- #: ../lib/puppet/face/module/search.rb:24
1361
- msgid "<search_term>"
1362
- msgstr ""
1363
-
1364
- #: ../lib/puppet/face/module/search.rb:27
1365
- msgid "This action has been deprecated. Please use the Puppet Forge to search for modules."
1366
- msgstr ""
1367
-
1368
- #: ../lib/puppet/face/module/search.rb:37
1369
- msgid "No results found for '%{term}'."
1370
- msgstr ""
1371
-
1372
1270
  #: ../lib/puppet/face/module/uninstall.rb:3
1373
1271
  msgid "Uninstall a puppet module."
1374
1272
  msgstr ""
@@ -1538,11 +1436,11 @@ msgid ""
1538
1436
  " the files downloaded, which will be empty if none were retrieved.\n"
1539
1437
  msgstr ""
1540
1438
 
1541
- #: ../lib/puppet/face/plugin.rb:57
1439
+ #: ../lib/puppet/face/plugin.rb:54
1542
1440
  msgid "No plugins downloaded."
1543
1441
  msgstr ""
1544
1442
 
1545
- #: ../lib/puppet/face/plugin.rb:59
1443
+ #: ../lib/puppet/face/plugin.rb:56
1546
1444
  msgid "Downloaded these plugins: %{plugins}"
1547
1445
  msgstr ""
1548
1446
 
@@ -1610,23 +1508,16 @@ msgstr ""
1610
1508
  msgid "The same resource object passed as an argument."
1611
1509
  msgstr ""
1612
1510
 
1613
- #: ../lib/puppet/face/status.rb:7
1614
- msgid "View puppet server status."
1615
- msgstr ""
1616
-
1617
- #: ../lib/puppet/face/status.rb:15
1618
- msgid "Check status of puppet master server."
1511
+ #: ../lib/puppet/feature/base.rb:19
1512
+ msgid "Cannot determine basic system flavour"
1619
1513
  msgstr ""
1620
1514
 
1621
- #. TRANSLATORS the string 'Puppet::Status' is a Puppet language object and should not be translated
1622
- #: ../lib/puppet/face/status.rb:17
1623
- msgid ""
1624
- " A \"true\" response or a low-level connection error. When used from the Ruby\n"
1625
- " API: returns a Puppet::Status object.\n"
1515
+ #: ../lib/puppet/ffi/windows/api_types.rb:86
1516
+ msgid "Unable to read wide strings with %{null_terminator} terminal nulls"
1626
1517
  msgstr ""
1627
1518
 
1628
- #: ../lib/puppet/feature/base.rb:19
1629
- msgid "Cannot determine basic system flavour"
1519
+ #: ../lib/puppet/ffi/windows/api_types.rb:231
1520
+ msgid "Bad GUID format."
1630
1521
  msgstr ""
1631
1522
 
1632
1523
  #: ../lib/puppet/file_bucket/dipper.rb:39
@@ -1698,7 +1589,7 @@ msgstr ""
1698
1589
  msgid "Cannot find file: Invalid relative path '%{path}'"
1699
1590
  msgstr ""
1700
1591
 
1701
- #: ../lib/puppet/file_serving/configuration.rb:109
1592
+ #: ../lib/puppet/file_serving/configuration.rb:104
1702
1593
  msgid "Error parsing fileserver configuration: %{detail}; using old configuration"
1703
1594
  msgstr ""
1704
1595
 
@@ -1714,31 +1605,23 @@ msgstr ""
1714
1605
  msgid "Fileserver configuration file does not use '=' as a separator"
1715
1606
  msgstr ""
1716
1607
 
1717
- #: ../lib/puppet/file_serving/configuration/parser.rb:41 ../lib/puppet/network/auth_config_parser.rb:72 ../lib/puppet/util/network_device/config.rb:101
1608
+ #: ../lib/puppet/file_serving/configuration/parser.rb:40 ../lib/puppet/util/network_device/config.rb:101
1718
1609
  msgid "Invalid argument '%{var}' at %{error_location}"
1719
1610
  msgstr ""
1720
1611
 
1721
- #: ../lib/puppet/file_serving/configuration/parser.rb:46
1612
+ #: ../lib/puppet/file_serving/configuration/parser.rb:45
1722
1613
  msgid "Invalid entry at %{error_location}: '%{file_text}'"
1723
1614
  msgstr ""
1724
1615
 
1725
- #: ../lib/puppet/file_serving/configuration/parser.rb:71
1726
- msgid "allowing %{val} access"
1727
- msgstr ""
1728
-
1729
- #: ../lib/puppet/file_serving/configuration/parser.rb:85
1730
- msgid "denying %{val} access"
1731
- msgstr ""
1732
-
1733
- #: ../lib/puppet/file_serving/configuration/parser.rb:99
1616
+ #: ../lib/puppet/file_serving/configuration/parser.rb:70
1734
1617
  msgid "%{mount} is already mounted at %{name} at %{error_location}"
1735
1618
  msgstr ""
1736
1619
 
1737
- #: ../lib/puppet/file_serving/configuration/parser.rb:124
1620
+ #: ../lib/puppet/file_serving/configuration/parser.rb:95
1738
1621
  msgid "Removing mount \"%{mount}\": %{detail}"
1739
1622
  msgstr ""
1740
1623
 
1741
- #: ../lib/puppet/file_serving/configuration/parser.rb:128
1624
+ #: ../lib/puppet/file_serving/configuration/parser.rb:99
1742
1625
  msgid "The '%{mount}' module can not have a path. Ignoring attempt to set it"
1743
1626
  msgstr ""
1744
1627
 
@@ -1750,29 +1633,21 @@ msgstr ""
1750
1633
  msgid "Fileset paths must be fully qualified: %{path}"
1751
1634
  msgstr ""
1752
1635
 
1753
- #: ../lib/puppet/file_serving/fileset.rb:51
1636
+ #: ../lib/puppet/file_serving/fileset.rb:50
1754
1637
  msgid "Fileset paths must exist"
1755
1638
  msgstr ""
1756
1639
 
1757
1640
  #. TRANSLATORS "recurse" and "recurselimit" are parameter names and should not be translated
1758
- #: ../lib/puppet/file_serving/fileset.rb:53
1641
+ #: ../lib/puppet/file_serving/fileset.rb:52
1759
1642
  msgid "Fileset recurse parameter must not be a number anymore, please use recurselimit"
1760
1643
  msgstr ""
1761
1644
 
1762
- #: ../lib/puppet/file_serving/fileset.rb:69
1763
- msgid "The directory '%{path}' contains %{entries} entries, which exceeds the limit of %{munged_max_files} specified by the max_files parameter for this resource. The limit may be increased, but be aware that large number of file resources can result in excessive resource consumption and degraded performance. Consider using an alternate method to manage large directory trees"
1764
- msgstr ""
1765
-
1766
- #: ../lib/puppet/file_serving/fileset.rb:71
1767
- msgid "The directory '%{path}' contains %{entries} entries, which exceeds the default soft limit %{soft_max_files} and may cause excessive resource consumption and degraded performance. To remove this warning set a value for `max_files` parameter or consider using an alternate method to manage large directory trees"
1768
- msgstr ""
1769
-
1770
1645
  #. TRANSLATORS ":links" is a parameter name and should not be translated
1771
- #: ../lib/puppet/file_serving/fileset.rb:92
1646
+ #: ../lib/puppet/file_serving/fileset.rb:80
1772
1647
  msgid "Invalid :links value '%{links}'"
1773
1648
  msgstr ""
1774
1649
 
1775
- #: ../lib/puppet/file_serving/fileset.rb:105
1650
+ #: ../lib/puppet/file_serving/fileset.rb:93
1776
1651
  msgid "Invalid option '%{option}'"
1777
1652
  msgstr ""
1778
1653
 
@@ -1804,7 +1679,7 @@ msgstr ""
1804
1679
  msgid "Cannot manage files of type %{file_type}"
1805
1680
  msgstr ""
1806
1681
 
1807
- #: ../lib/puppet/file_serving/mount.rb:21
1682
+ #: ../lib/puppet/file_serving/mount.rb:20
1808
1683
  msgid "Invalid mount name format '%{name}'"
1809
1684
  msgstr ""
1810
1685
 
@@ -1900,11 +1775,11 @@ msgstr ""
1900
1775
  msgid "%{dest} already exists and the :force option was not specified"
1901
1776
  msgstr ""
1902
1777
 
1903
- #: ../lib/puppet/file_system/windows.rb:204
1778
+ #: ../lib/puppet/file_system/windows.rb:202
1904
1779
  msgid "This version of Windows does not support symlinks. Windows Vista / 2008 or higher is required."
1905
1780
  msgstr ""
1906
1781
 
1907
- #: ../lib/puppet/file_system/windows.rb:209
1782
+ #: ../lib/puppet/file_system/windows.rb:207
1908
1783
  msgid "The current user does not have the necessary permission to manage symlinks."
1909
1784
  msgstr ""
1910
1785
 
@@ -2304,68 +2179,68 @@ msgstr ""
2304
2179
  msgid "Try the '--graph' option and opening the resulting '.dot' file in OmniGraffle or GraphViz"
2305
2180
  msgstr ""
2306
2181
 
2307
- #: ../lib/puppet/http/client.rb:90
2182
+ #: ../lib/puppet/http/client.rb:156
2308
2183
  msgid "Request to %{uri} timed out connect operation after %{elapsed} seconds"
2309
2184
  msgstr ""
2310
2185
 
2311
- #: ../lib/puppet/http/client.rb:92
2186
+ #: ../lib/puppet/http/client.rb:158
2312
2187
  msgid "Request to %{uri} timed out read operation after %{elapsed} seconds"
2313
2188
  msgstr ""
2314
2189
 
2315
- #: ../lib/puppet/http/client.rb:94
2190
+ #: ../lib/puppet/http/client.rb:160
2316
2191
  msgid "Request to %{uri} interrupted after %{elapsed} seconds"
2317
2192
  msgstr ""
2318
2193
 
2319
- #: ../lib/puppet/http/client.rb:100
2194
+ #: ../lib/puppet/http/client.rb:166
2320
2195
  msgid "Request to %{uri} failed after %{elapsed} seconds: %{message}"
2321
2196
  msgstr ""
2322
2197
 
2323
- #: ../lib/puppet/http/client.rb:326
2198
+ #: ../lib/puppet/http/client.rb:369
2324
2199
  msgid "Sleeping for %{interval} seconds before retrying the request"
2325
2200
  msgstr ""
2326
2201
 
2327
- #: ../lib/puppet/http/client.rb:369 ../lib/puppet/indirector/request.rb:142
2202
+ #: ../lib/puppet/http/client.rb:419
2328
2203
  msgid "HTTP REST queries cannot handle values of type '%{klass}'"
2329
2204
  msgstr ""
2330
2205
 
2331
- #: ../lib/puppet/http/errors.rb:23
2206
+ #: ../lib/puppet/http/errors.rb:37
2332
2207
  msgid "Too many HTTP redirections for %{addr}"
2333
2208
  msgstr ""
2334
2209
 
2335
- #: ../lib/puppet/http/errors.rb:29
2210
+ #: ../lib/puppet/http/errors.rb:45
2336
2211
  msgid "Too many HTTP retries for %{addr}"
2337
2212
  msgstr ""
2338
2213
 
2339
- #: ../lib/puppet/http/redirector.rb:78
2340
- msgid "Location response header is missing"
2214
+ #: ../lib/puppet/http/pool.rb:84
2215
+ msgid "Failed to close connection for %{site}: %{detail}"
2341
2216
  msgstr ""
2342
2217
 
2343
- #: ../lib/puppet/http/redirector.rb:82
2344
- msgid "Location URI is invalid: %{detail}"
2218
+ #: ../lib/puppet/http/redirector.rb:70
2219
+ msgid "Location response header is missing"
2345
2220
  msgstr ""
2346
2221
 
2347
- #: ../lib/puppet/http/resolver/server_list.rb:70 ../lib/puppet/http/resolver/server_list.rb:78
2348
- msgid "Trying with next server from server_list."
2222
+ #: ../lib/puppet/http/redirector.rb:74
2223
+ msgid "Location URI is invalid: %{detail}"
2349
2224
  msgstr ""
2350
2225
 
2351
- #: ../lib/puppet/http/retry_after_handler.rb:83
2226
+ #: ../lib/puppet/http/retry_after_handler.rb:74
2352
2227
  msgid "Failed to parse Retry-After header '%{retry_after}' as an integer or RFC 2822 date"
2353
2228
  msgstr ""
2354
2229
 
2355
- #: ../lib/puppet/http/service.rb:121
2230
+ #: ../lib/puppet/http/service.rb:107
2356
2231
  msgid "Ignoring extra header \"%{name}\" as it was previously set."
2357
2232
  msgstr ""
2358
2233
 
2359
- #: ../lib/puppet/http/service.rb:124
2234
+ #: ../lib/puppet/http/service.rb:110
2360
2235
  msgid "Ignoring extra header \"%{name}\" as it has no value."
2361
2236
  msgstr ""
2362
2237
 
2363
- #: ../lib/puppet/http/service.rb:147 ../lib/puppet/indirector/rest.rb:288
2238
+ #: ../lib/puppet/http/service.rb:133 ../lib/puppet/indirector/rest.rb:53
2364
2239
  msgid "No content type in http response; cannot parse"
2365
2240
  msgstr ""
2366
2241
 
2367
2242
  #. TRANSLATORS "pson", "preferred_serialization_format", and "puppetserver" should not be translated
2368
- #: ../lib/puppet/http/service/report.rb:61
2243
+ #: ../lib/puppet/http/service/report.rb:59
2369
2244
  msgid "To submit reports to a server running puppetserver %{server_version}, set preferred_serialization_format to pson"
2370
2245
  msgstr ""
2371
2246
 
@@ -2422,87 +2297,87 @@ msgstr ""
2422
2297
  msgid "Inlining file metadata"
2423
2298
  msgstr ""
2424
2299
 
2425
- #: ../lib/puppet/indirector/catalog/compiler.rb:260
2300
+ #: ../lib/puppet/indirector/catalog/compiler.rb:259
2426
2301
  msgid "Could not get metadata for %{resource}"
2427
2302
  msgstr ""
2428
2303
 
2429
- #: ../lib/puppet/indirector/catalog/compiler.rb:281
2304
+ #: ../lib/puppet/indirector/catalog/compiler.rb:280
2430
2305
  msgid "Unable to find a common checksum type between agent '%{agent_type}' and master '%{master_type}'."
2431
2306
  msgstr ""
2432
2307
 
2433
- #: ../lib/puppet/indirector/catalog/compiler.rb:288
2308
+ #: ../lib/puppet/indirector/catalog/compiler.rb:287
2434
2309
  msgid "Compiled static catalog for %{node} in environment %{environment} in %%{seconds} seconds"
2435
2310
  msgstr ""
2436
2311
 
2437
- #: ../lib/puppet/indirector/catalog/compiler.rb:289
2312
+ #: ../lib/puppet/indirector/catalog/compiler.rb:288
2438
2313
  msgid "Compiled static catalog for %{node} in environment %{environment}"
2439
2314
  msgstr ""
2440
2315
 
2441
- #: ../lib/puppet/indirector/catalog/compiler.rb:291
2316
+ #: ../lib/puppet/indirector/catalog/compiler.rb:290
2442
2317
  msgid "Compiled static catalog for %{node} in %%{seconds} seconds"
2443
2318
  msgstr ""
2444
2319
 
2445
- #: ../lib/puppet/indirector/catalog/compiler.rb:292
2320
+ #: ../lib/puppet/indirector/catalog/compiler.rb:291
2446
2321
  msgid "Compiled static catalog for %{node}"
2447
2322
  msgstr ""
2448
2323
 
2449
- #: ../lib/puppet/indirector/catalog/compiler.rb:297
2324
+ #: ../lib/puppet/indirector/catalog/compiler.rb:296
2450
2325
  msgid "Compiled catalog for %{node} in environment %{environment} in %%{seconds} seconds"
2451
2326
  msgstr ""
2452
2327
 
2453
- #: ../lib/puppet/indirector/catalog/compiler.rb:298
2328
+ #: ../lib/puppet/indirector/catalog/compiler.rb:297
2454
2329
  msgid "Compiled catalog for %{node} in environment %{environment}"
2455
2330
  msgstr ""
2456
2331
 
2457
- #: ../lib/puppet/indirector/catalog/compiler.rb:300
2332
+ #: ../lib/puppet/indirector/catalog/compiler.rb:299
2458
2333
  msgid "Compiled catalog for %{node} in %%{seconds} seconds"
2459
2334
  msgstr ""
2460
2335
 
2461
- #: ../lib/puppet/indirector/catalog/compiler.rb:301
2336
+ #: ../lib/puppet/indirector/catalog/compiler.rb:300
2462
2337
  msgid "Compiled catalog for %{node}"
2463
2338
  msgstr ""
2464
2339
 
2465
2340
  #. TRANSLATORS Inlined refers to adding additional metadata
2466
- #: ../lib/puppet/indirector/catalog/compiler.rb:323
2341
+ #: ../lib/puppet/indirector/catalog/compiler.rb:322
2467
2342
  msgid "Inlined resource metadata into static catalog for %{node} in environment %{environment} in %%{seconds} seconds"
2468
2343
  msgstr ""
2469
2344
 
2470
2345
  #. TRANSLATORS Inlined refers to adding additional metadata
2471
- #: ../lib/puppet/indirector/catalog/compiler.rb:325
2346
+ #: ../lib/puppet/indirector/catalog/compiler.rb:324
2472
2347
  msgid "Inlined resource metadata into static catalog for %{node} in environment %{environment}"
2473
2348
  msgstr ""
2474
2349
 
2475
2350
  #. TRANSLATORS Inlined refers to adding additional metadata
2476
- #: ../lib/puppet/indirector/catalog/compiler.rb:328
2351
+ #: ../lib/puppet/indirector/catalog/compiler.rb:327
2477
2352
  msgid "Inlined resource metadata into static catalog for %{node} in %%{seconds} seconds"
2478
2353
  msgstr ""
2479
2354
 
2480
2355
  #. TRANSLATORS Inlined refers to adding additional metadata
2481
- #: ../lib/puppet/indirector/catalog/compiler.rb:330
2356
+ #: ../lib/puppet/indirector/catalog/compiler.rb:329
2482
2357
  msgid "Inlined resource metadata into static catalog for %{node}"
2483
2358
  msgstr ""
2484
2359
 
2485
- #: ../lib/puppet/indirector/catalog/compiler.rb:347
2360
+ #: ../lib/puppet/indirector/catalog/compiler.rb:346
2486
2361
  msgid "Found node information"
2487
2362
  msgstr ""
2488
2363
 
2489
- #: ../lib/puppet/indirector/catalog/compiler.rb:355
2364
+ #: ../lib/puppet/indirector/catalog/compiler.rb:354
2490
2365
  msgid "Failed when searching for node %{name}: %{detail}"
2491
2366
  msgstr ""
2492
2367
 
2493
- #: ../lib/puppet/indirector/catalog/compiler.rb:375
2368
+ #: ../lib/puppet/indirector/catalog/compiler.rb:374
2494
2369
  msgid "Invalid option use_node for a remote request"
2495
2370
  msgstr ""
2496
2371
 
2497
- #: ../lib/puppet/indirector/catalog/compiler.rb:394
2372
+ #: ../lib/puppet/indirector/catalog/compiler.rb:393
2498
2373
  msgid "Could not find node '%{name}'; cannot compile"
2499
2374
  msgstr ""
2500
2375
 
2501
- #: ../lib/puppet/indirector/catalog/compiler.rb:427
2376
+ #: ../lib/puppet/indirector/catalog/compiler.rb:426
2502
2377
  msgid "Could not retrieve fact servername"
2503
2378
  msgstr ""
2504
2379
 
2505
- #: ../lib/puppet/indirector/catalog/compiler.rb:436
2380
+ #: ../lib/puppet/indirector/catalog/compiler.rb:435
2506
2381
  msgid "Could not retrieve either serverip or serverip6 fact"
2507
2382
  msgstr ""
2508
2383
 
@@ -2514,7 +2389,7 @@ msgstr ""
2514
2389
  msgid "Unable to serialize catalog to json, retrying with pson"
2515
2390
  msgstr ""
2516
2391
 
2517
- #: ../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
2392
+ #: ../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
2518
2393
  msgid "Find %{uri} resulted in 404 with the message: %{body}"
2519
2394
  msgstr ""
2520
2395
 
@@ -2622,7 +2497,7 @@ msgstr ""
2622
2497
  msgid "You cannot save facts to the code store; it is only used for getting facts from a remote device"
2623
2498
  msgstr ""
2624
2499
 
2625
- #: ../lib/puppet/indirector/facts/rest.rb:30 ../lib/puppet/indirector/rest.rb:198
2500
+ #: ../lib/puppet/indirector/facts/rest.rb:28
2626
2501
  msgid "PUT does not accept options"
2627
2502
  msgstr ""
2628
2503
 
@@ -2673,19 +2548,11 @@ msgstr ""
2673
2548
  msgid "Invalid checksum %{checksum}"
2674
2549
  msgstr ""
2675
2550
 
2676
- #: ../lib/puppet/indirector/file_content/http.rb:14
2677
- msgid "Puppet::Indirector::FileContent::Http is deprecated. Use Puppet::HTTP::Client instead."
2678
- msgstr ""
2679
-
2680
2551
  #: ../lib/puppet/indirector/file_metadata/http.rb:32
2681
2552
  msgid "cannot lookup multiple files"
2682
2553
  msgstr ""
2683
2554
 
2684
- #: ../lib/puppet/indirector/file_server.rb:25
2685
- 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."
2686
- msgstr ""
2687
-
2688
- #: ../lib/puppet/indirector/file_server.rb:49
2555
+ #: ../lib/puppet/indirector/file_server.rb:42
2689
2556
  msgid "Could not find filesystem info for file '%{request}' in environment %{env}"
2690
2557
  msgstr ""
2691
2558
 
@@ -2780,7 +2647,7 @@ msgstr ""
2780
2647
  msgid "directory traversal detected in %{json}: %{name}"
2781
2648
  msgstr ""
2782
2649
 
2783
- #: ../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
2650
+ #: ../lib/puppet/indirector/json.rb:41 ../lib/puppet/indirector/msgpack.rb:48 ../lib/puppet/indirector/yaml.rb:40
2784
2651
  msgid "invalid key"
2785
2652
  msgstr ""
2786
2653
 
@@ -2792,14 +2659,6 @@ msgstr ""
2792
2659
  msgid "Could not parse JSON data for %{name} %{key}: %{detail}"
2793
2660
  msgstr ""
2794
2661
 
2795
- #: ../lib/puppet/indirector/key/file.rb:29
2796
- msgid "Could not remove %{request} public key: %{detail}"
2797
- msgstr ""
2798
-
2799
- #: ../lib/puppet/indirector/key/file.rb:43
2800
- msgid "Could not write %{request}: %{detail}"
2801
- msgstr ""
2802
-
2803
2662
  #: ../lib/puppet/indirector/memory.rb:14
2804
2663
  msgid "Could not find %{request} to destroy"
2805
2664
  msgstr ""
@@ -2816,7 +2675,7 @@ msgstr ""
2816
2675
  msgid "Could not destroy %{name} %{request}: %{detail}"
2817
2676
  msgstr ""
2818
2677
 
2819
- #: ../lib/puppet/indirector/msgpack.rb:47 ../lib/puppet/indirector/ssl_file.rb:39 ../lib/puppet/indirector/yaml.rb:39
2678
+ #: ../lib/puppet/indirector/msgpack.rb:47 ../lib/puppet/indirector/yaml.rb:39
2820
2679
  msgid "directory traversal detected in %{indirection}: %{name}"
2821
2680
  msgstr ""
2822
2681
 
@@ -2861,39 +2720,15 @@ msgstr ""
2861
2720
  msgid "No report named '%{name}'"
2862
2721
  msgstr ""
2863
2722
 
2864
- #: ../lib/puppet/indirector/report/rest.rb:36
2723
+ #: ../lib/puppet/indirector/report/rest.rb:31
2865
2724
  msgid "Server version %{version} does not accept reports in '%{format}', use `preferred_serialization_format=pson`"
2866
2725
  msgstr ""
2867
2726
 
2868
- #: ../lib/puppet/indirector/request.rb:103
2727
+ #: ../lib/puppet/indirector/request.rb:102
2869
2728
  msgid "Could not find indirection '%{indirection}'"
2870
2729
  msgstr ""
2871
2730
 
2872
- #: ../lib/puppet/indirector/request.rb:202
2873
- msgid "Error connecting to %{srv_server}:%{srv_port}: %{message}"
2874
- msgstr ""
2875
-
2876
- #. TRANSLATORS 'server_list' is the name of a setting and should not be translated
2877
- #: ../lib/puppet/indirector/request.rb:214
2878
- msgid "Selected server from first entry of the `server_list` setting: %{server}"
2879
- msgstr ""
2880
-
2881
- #. TRANSLATORS 'server' is the name of a setting and should not be translated
2882
- #: ../lib/puppet/indirector/request.rb:218
2883
- msgid "Selected server from the `server` setting: %{server}"
2884
- msgstr ""
2885
-
2886
- #. TRANSLATORS 'server_list' is the name of a setting and should not be translated
2887
- #: ../lib/puppet/indirector/request.rb:231
2888
- msgid "Selected port from the first entry of the `server_list` setting: %{port}"
2889
- msgstr ""
2890
-
2891
- #. TRANSLATORS 'serverport' is the name of a setting and should not be translated
2892
- #: ../lib/puppet/indirector/request.rb:235
2893
- msgid "Selected port from the `serverport` setting: %{port}"
2894
- msgstr ""
2895
-
2896
- #: ../lib/puppet/indirector/request.rb:266
2731
+ #: ../lib/puppet/indirector/request.rb:165
2897
2732
  msgid "Could not understand URL %{key}: %{detail}"
2898
2733
  msgstr ""
2899
2734
 
@@ -2905,75 +2740,10 @@ msgstr ""
2905
2740
  msgid "Resource instance does not match request key"
2906
2741
  msgstr ""
2907
2742
 
2908
- #: ../lib/puppet/indirector/rest.rb:115
2909
- msgid "Puppet::Indirector::Rest#find is deprecated. Use Puppet::HTTP::Client instead."
2910
- msgstr ""
2911
-
2912
- #: ../lib/puppet/indirector/rest.rb:154
2913
- msgid "Puppet::Indirector::Rest#head is deprecated. Use Puppet::HTTP::Client instead."
2914
- msgstr ""
2915
-
2916
- #: ../lib/puppet/indirector/rest.rb:167
2917
- msgid "Puppet::Indirector::Rest#search is deprecated. Use Puppet::HTTP::Client instead."
2918
- msgstr ""
2919
-
2920
- #: ../lib/puppet/indirector/rest.rb:181
2921
- msgid "Puppet::Indirector::Rest#destroy is deprecated. Use Puppet::HTTP::Client instead."
2922
- msgstr ""
2923
-
2924
- #: ../lib/puppet/indirector/rest.rb:182
2925
- msgid "DELETE does not accept options"
2926
- msgstr ""
2927
-
2928
- #: ../lib/puppet/indirector/rest.rb:197
2929
- msgid "Puppet::Indirector::Rest#save is deprecated. Use Puppet::HTTP::Client instead."
2930
- msgstr ""
2931
-
2932
- #. TRANSLATORS "PSON" should not be translated
2933
- #: ../lib/puppet/indirector/rest.rb:235
2934
- msgid "Downgrading to PSON for future requests"
2935
- msgstr ""
2936
-
2937
- #: ../lib/puppet/indirector/rest.rb:277 ../lib/puppet/rest/response.rb:31
2743
+ #: ../lib/puppet/indirector/rest.rb:43
2938
2744
  msgid "Error %{code} on SERVER: %{returned_message}"
2939
2745
  msgstr ""
2940
2746
 
2941
- #: ../lib/puppet/indirector/ssl_file.rb:34
2942
- msgid "No file or directory setting provided; terminus %{class_name} cannot function"
2943
- msgstr ""
2944
-
2945
- #: ../lib/puppet/indirector/ssl_file.rb:55
2946
- msgid "Removing file %{model} %{request} at '%{path}'"
2947
- msgstr ""
2948
-
2949
- #: ../lib/puppet/indirector/ssl_file.rb:59
2950
- msgid "Could not remove %{request}: %{detail}"
2951
- msgstr ""
2952
-
2953
- #: ../lib/puppet/indirector/ssl_file.rb:75
2954
- msgid "Cannot save %{request}; parent directory %{dir} does not exist"
2955
- msgstr ""
2956
-
2957
- #: ../lib/puppet/indirector/ssl_file.rb:76
2958
- msgid "Cannot save %{request}; parent directory %{dir} is not writable"
2959
- msgstr ""
2960
-
2961
- #: ../lib/puppet/indirector/ssl_file.rb:121
2962
- msgid "Tried to fix SSL files to a file containing uppercase"
2963
- msgstr ""
2964
-
2965
- #: ../lib/puppet/indirector/ssl_file.rb:130
2966
- msgid "Automatic downcasing and renaming of ssl files is deprecated; please request the file using its correct case: %{full_file}"
2967
- msgstr ""
2968
-
2969
- #: ../lib/puppet/indirector/ssl_file.rb:150
2970
- msgid "Could not write %{path} to %{setting}: %{detail}"
2971
- msgstr ""
2972
-
2973
- #: ../lib/puppet/indirector/ssl_file.rb:153
2974
- msgid "You must provide a setting to determine where the files are stored"
2975
- msgstr ""
2976
-
2977
2747
  #: ../lib/puppet/indirector/terminus.rb:37
2978
2748
  msgid "Could not find indirection instance %{name} for %{terminus}"
2979
2749
  msgstr ""
@@ -3063,8 +2833,8 @@ msgstr ""
3063
2833
  msgid "Option %{option} conflicts with existing option %{conflict} on %{face}"
3064
2834
  msgstr ""
3065
2835
 
3066
- #. TRANSLATORS 'Puppet.settings' references to the Puppet settings options and should not be translated
3067
2836
  #. TRANSLATORS 'Puppet.settings' should not be translated
2837
+ #. TRANSLATORS 'Puppet.settings' references to the Puppet settings options and should not be translated
3068
2838
  #: ../lib/puppet/interface/action.rb:315 ../lib/puppet/interface/option_manager.rb:14
3069
2839
  msgid "Global option %{option} does not exist in Puppet.settings"
3070
2840
  msgstr ""
@@ -3420,18 +3190,14 @@ msgstr ""
3420
3190
  msgid "Resolving dependencies ..."
3421
3191
  msgstr ""
3422
3192
 
3423
- #: ../lib/puppet/module_tool/applications/installer.rb:208
3193
+ #: ../lib/puppet/module_tool/applications/installer.rb:162
3424
3194
  msgid "Preparing to install ..."
3425
3195
  msgstr ""
3426
3196
 
3427
- #: ../lib/puppet/module_tool/applications/installer.rb:211
3197
+ #: ../lib/puppet/module_tool/applications/installer.rb:165
3428
3198
  msgid "Installing -- do not interrupt ..."
3429
3199
  msgstr ""
3430
3200
 
3431
- #: ../lib/puppet/module_tool/applications/searcher.rb:15
3432
- msgid "Searching %{host} ..."
3433
- msgstr ""
3434
-
3435
3201
  #: ../lib/puppet/module_tool/applications/uninstaller.rb:92
3436
3202
  msgid "Either the `--ignore_changes` or `--force` argument must be specified to uninstall modules when running in FIPS mode."
3437
3203
  msgstr ""
@@ -3468,7 +3234,7 @@ msgstr ""
3468
3234
  msgid "'%{module_name}' (%{version}) requested; '%{module_name}' (%{installed_version}) already installed"
3469
3235
  msgstr ""
3470
3236
 
3471
- #: ../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
3237
+ #: ../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
3472
3238
  msgid "Could not install module '%{module_name}' (%{version})"
3473
3239
  msgstr ""
3474
3240
 
@@ -3498,7 +3264,7 @@ msgstr ""
3498
3264
  msgid "Could not install '%{requested_package}'"
3499
3265
  msgstr ""
3500
3266
 
3501
- #: ../lib/puppet/module_tool/errors/installer.rb:38 ../lib/puppet/module_tool/errors/shared.rb:58
3267
+ #: ../lib/puppet/module_tool/errors/installer.rb:38 ../lib/puppet/module_tool/errors/shared.rb:43
3502
3268
  msgid " No releases are available from %{source}"
3503
3269
  msgstr ""
3504
3270
 
@@ -3543,162 +3309,150 @@ msgstr ""
3543
3309
  msgid " Package attempted to install file into %{path} under %{directory}."
3544
3310
  msgstr ""
3545
3311
 
3546
- #: ../lib/puppet/module_tool/errors/shared.rb:12
3312
+ #: ../lib/puppet/module_tool/errors/shared.rb:11
3547
3313
  msgid "Could not %{action} '%{module_name}' (%{version}); no version satisfies all dependencies"
3548
3314
  msgstr ""
3549
3315
 
3550
- #: ../lib/puppet/module_tool/errors/shared.rb:17 ../lib/puppet/module_tool/errors/shared.rb:186 ../lib/puppet/module_tool/errors/upgrader.rb:58
3316
+ #: ../lib/puppet/module_tool/errors/shared.rb:16 ../lib/puppet/module_tool/errors/shared.rb:171 ../lib/puppet/module_tool/errors/upgrader.rb:58
3551
3317
  msgid "Could not %{action} module '%{module_name}' (%{version})"
3552
3318
  msgstr ""
3553
3319
 
3554
- #: ../lib/puppet/module_tool/errors/shared.rb:20
3555
- msgid " The requested version cannot satisfy one or more of the following installed modules:"
3556
- msgstr ""
3557
-
3558
- #: ../lib/puppet/module_tool/errors/shared.rb:22
3559
- msgid " %{name}, installed: %{current_version}, expected: %{constraints}"
3560
- msgstr ""
3561
-
3562
- #: ../lib/puppet/module_tool/errors/shared.rb:25
3563
- msgid " %{mod}, expects '%{name}': %{range}"
3564
- msgstr ""
3565
-
3566
- #: ../lib/puppet/module_tool/errors/shared.rb:30
3567
- msgid " The requested version cannot satisfy all dependencies"
3320
+ #: ../lib/puppet/module_tool/errors/shared.rb:17
3321
+ msgid " No version of '%{module_name}' can satisfy all dependencies"
3568
3322
  msgstr ""
3569
3323
 
3570
3324
  #. TRANSLATORS `puppet module %{action} --ignore-dependencies` is a command line and should not be translated
3571
- #: ../lib/puppet/module_tool/errors/shared.rb:34
3572
- msgid " Use `puppet module %{action} '%{module_name}' --ignore-dependencies` to %{action} only this module"
3325
+ #: ../lib/puppet/module_tool/errors/shared.rb:19
3326
+ msgid " Use `puppet module %{action} --ignore-dependencies` to %{action} only this module"
3573
3327
  msgstr ""
3574
3328
 
3575
- #: ../lib/puppet/module_tool/errors/shared.rb:48
3329
+ #: ../lib/puppet/module_tool/errors/shared.rb:33
3576
3330
  msgid "Could not %{action} '%{module_name}'; no releases are available from %{source}"
3577
3331
  msgstr ""
3578
3332
 
3579
- #: ../lib/puppet/module_tool/errors/shared.rb:50
3333
+ #: ../lib/puppet/module_tool/errors/shared.rb:35
3580
3334
  msgid "Could not %{action} '%{module_name}'; no releases matching '%{version}' are available from %{source}"
3581
3335
  msgstr ""
3582
3336
 
3583
- #: ../lib/puppet/module_tool/errors/shared.rb:56
3337
+ #: ../lib/puppet/module_tool/errors/shared.rb:41
3584
3338
  msgid "Could not %{action} '%{module_name}' (%{version})"
3585
3339
  msgstr ""
3586
3340
 
3587
- #: ../lib/puppet/module_tool/errors/shared.rb:59
3341
+ #: ../lib/puppet/module_tool/errors/shared.rb:44
3588
3342
  msgid " Does '%{module_name}' have at least one published release?"
3589
3343
  msgstr ""
3590
3344
 
3591
- #: ../lib/puppet/module_tool/errors/shared.rb:61
3345
+ #: ../lib/puppet/module_tool/errors/shared.rb:46
3592
3346
  msgid " No releases matching '%{requested_version}' are available from %{source}"
3593
3347
  msgstr ""
3594
3348
 
3595
- #: ../lib/puppet/module_tool/errors/shared.rb:74
3349
+ #: ../lib/puppet/module_tool/errors/shared.rb:59
3596
3350
  msgid "'%{module_name}' (%{version}) requested; installation conflict"
3597
3351
  msgstr ""
3598
3352
 
3599
- #: ../lib/puppet/module_tool/errors/shared.rb:82
3353
+ #: ../lib/puppet/module_tool/errors/shared.rb:67
3600
3354
  msgid " Dependency '%{name}' (%{version}) would overwrite %{directory}"
3601
3355
  msgstr ""
3602
3356
 
3603
- #: ../lib/puppet/module_tool/errors/shared.rb:84
3357
+ #: ../lib/puppet/module_tool/errors/shared.rb:69
3604
3358
  msgid " Installation would overwrite %{directory}"
3605
3359
  msgstr ""
3606
3360
 
3607
- #: ../lib/puppet/module_tool/errors/shared.rb:88
3361
+ #: ../lib/puppet/module_tool/errors/shared.rb:73
3608
3362
  msgid " Currently, '%{current_name}' (%{current_version}) is installed to that directory"
3609
3363
  msgstr ""
3610
3364
 
3611
3365
  #. TRANSLATORS `puppet module install --ignore-dependencies` is a command line and should not be translated
3612
- #: ../lib/puppet/module_tool/errors/shared.rb:93
3366
+ #: ../lib/puppet/module_tool/errors/shared.rb:78
3613
3367
  msgid " Use `puppet module install --ignore-dependencies` to install only this module"
3614
3368
  msgstr ""
3615
3369
 
3616
3370
  #. TRANSLATORS `puppet module install --force` is a command line and should not be translated
3617
3371
  #. TRANSLATORS `puppet module install --force` is a command line and should not be translated
3618
- #: ../lib/puppet/module_tool/errors/shared.rb:96 ../lib/puppet/module_tool/errors/shared.rb:125
3372
+ #: ../lib/puppet/module_tool/errors/shared.rb:81 ../lib/puppet/module_tool/errors/shared.rb:110
3619
3373
  msgid " Use `puppet module install --force` to install this module anyway"
3620
3374
  msgstr ""
3621
3375
 
3622
- #: ../lib/puppet/module_tool/errors/shared.rb:110
3376
+ #: ../lib/puppet/module_tool/errors/shared.rb:95
3623
3377
  msgid "'%{module_name}' (%{version}) requested; Invalid dependency cycle"
3624
3378
  msgstr ""
3625
3379
 
3626
- #: ../lib/puppet/module_tool/errors/shared.rb:115
3380
+ #: ../lib/puppet/module_tool/errors/shared.rb:100
3627
3381
  msgid "You specified '%{name}' (%{version})"
3628
3382
  msgstr ""
3629
3383
 
3630
3384
  #. TRANSLATORS This message repeats as separate lines as a list under the heading "You specified '%{name}' (%{version})\n"
3631
- #: ../lib/puppet/module_tool/errors/shared.rb:118
3385
+ #: ../lib/puppet/module_tool/errors/shared.rb:103
3632
3386
  msgid "This depends on '%{name}' (%{version})"
3633
3387
  msgstr ""
3634
3388
 
3635
- #: ../lib/puppet/module_tool/errors/shared.rb:122
3389
+ #: ../lib/puppet/module_tool/errors/shared.rb:107
3636
3390
  msgid " No version of '%{module_name}' will satisfy dependencies"
3637
3391
  msgstr ""
3638
3392
 
3639
- #: ../lib/puppet/module_tool/errors/shared.rb:135
3393
+ #: ../lib/puppet/module_tool/errors/shared.rb:120
3640
3394
  msgid "Could not %{action} '%{module_name}'; module is not installed"
3641
3395
  msgstr ""
3642
3396
 
3643
- #: ../lib/puppet/module_tool/errors/shared.rb:140 ../lib/puppet/module_tool/errors/shared.rb:163 ../lib/puppet/module_tool/errors/shared.rb:204
3397
+ #: ../lib/puppet/module_tool/errors/shared.rb:125 ../lib/puppet/module_tool/errors/shared.rb:148 ../lib/puppet/module_tool/errors/shared.rb:189
3644
3398
  msgid "Could not %{action} module '%{module_name}'"
3645
3399
  msgstr ""
3646
3400
 
3647
- #: ../lib/puppet/module_tool/errors/shared.rb:141
3401
+ #: ../lib/puppet/module_tool/errors/shared.rb:126
3648
3402
  msgid " Module '%{module_name}' is not installed"
3649
3403
  msgstr ""
3650
3404
 
3651
3405
  #. TRANSLATORS `puppet module %{action} %{suggestion}` is a command line and should not be translated
3652
- #: ../lib/puppet/module_tool/errors/shared.rb:144
3406
+ #: ../lib/puppet/module_tool/errors/shared.rb:129
3653
3407
  msgid " You may have meant `puppet module %{action} %{suggestion}`"
3654
3408
  msgstr ""
3655
3409
 
3656
3410
  #. TRANSLATORS `puppet module install` is a command line and should not be translated
3657
- #: ../lib/puppet/module_tool/errors/shared.rb:147
3411
+ #: ../lib/puppet/module_tool/errors/shared.rb:132
3658
3412
  msgid " Use `puppet module install` to install this module"
3659
3413
  msgstr ""
3660
3414
 
3661
3415
  #. TRANSLATORS "module path" refers to a set of directories where modules may be installed
3662
- #: ../lib/puppet/module_tool/errors/shared.rb:158
3416
+ #: ../lib/puppet/module_tool/errors/shared.rb:143
3663
3417
  msgid "Could not %{action} '%{module_name}'; module appears in multiple places in the module path"
3664
3418
  msgstr ""
3665
3419
 
3666
- #: ../lib/puppet/module_tool/errors/shared.rb:164
3420
+ #: ../lib/puppet/module_tool/errors/shared.rb:149
3667
3421
  msgid " Module '%{module_name}' appears multiple places in the module path"
3668
3422
  msgstr ""
3669
3423
 
3670
3424
  #. TRANSLATORS This is repeats as separate lines as a list under "Module '%{module_name}' appears multiple places in the module path"
3671
- #: ../lib/puppet/module_tool/errors/shared.rb:167
3425
+ #: ../lib/puppet/module_tool/errors/shared.rb:152
3672
3426
  msgid " '%{module_name}' (%{version}) was found in %{path}"
3673
3427
  msgstr ""
3674
3428
 
3675
3429
  #. TRANSLATORS `--modulepath` is command line option and should not be translated
3676
- #: ../lib/puppet/module_tool/errors/shared.rb:170
3430
+ #: ../lib/puppet/module_tool/errors/shared.rb:155
3677
3431
  msgid " Use the `--modulepath` option to limit the search to specific directories"
3678
3432
  msgstr ""
3679
3433
 
3680
- #: ../lib/puppet/module_tool/errors/shared.rb:181
3434
+ #: ../lib/puppet/module_tool/errors/shared.rb:166
3681
3435
  msgid "Could not %{action} '%{module_name}'; module has had changes made locally"
3682
3436
  msgstr ""
3683
3437
 
3684
- #: ../lib/puppet/module_tool/errors/shared.rb:187
3438
+ #: ../lib/puppet/module_tool/errors/shared.rb:172
3685
3439
  msgid " Installed module has had changes made locally"
3686
3440
  msgstr ""
3687
3441
 
3688
3442
  #. TRANSLATORS `puppet module %{action} --ignore-changes` is a command line and should not be translated
3689
- #: ../lib/puppet/module_tool/errors/shared.rb:189
3443
+ #: ../lib/puppet/module_tool/errors/shared.rb:174
3690
3444
  msgid " Use `puppet module %{action} --ignore-changes` to %{action} this module anyway"
3691
3445
  msgstr ""
3692
3446
 
3693
- #: ../lib/puppet/module_tool/errors/shared.rb:199
3447
+ #: ../lib/puppet/module_tool/errors/shared.rb:184
3694
3448
  msgid "Could not %{action} '%{module_name}'; %{error}"
3695
3449
  msgstr ""
3696
3450
 
3697
- #: ../lib/puppet/module_tool/errors/shared.rb:205
3451
+ #: ../lib/puppet/module_tool/errors/shared.rb:190
3698
3452
  msgid " Failure trying to parse metadata"
3699
3453
  msgstr ""
3700
3454
 
3701
- #: ../lib/puppet/module_tool/errors/shared.rb:206
3455
+ #: ../lib/puppet/module_tool/errors/shared.rb:191
3702
3456
  msgid " Original message was: %{message}"
3703
3457
  msgstr ""
3704
3458
 
@@ -3853,67 +3607,6 @@ msgstr ""
3853
3607
  msgid "No suitable tar implementation found"
3854
3608
  msgstr ""
3855
3609
 
3856
- #. TRANSLATORS "path" is a configuration file entry and should not be translated
3857
- #: ../lib/puppet/network/auth_config_parser.rb:32
3858
- msgid "Missing or invalid 'path' before right directive at %{error_location}"
3859
- msgstr ""
3860
-
3861
- #: ../lib/puppet/network/auth_config_parser.rb:38 ../lib/puppet/util/network_device/config.rb:71
3862
- msgid "Invalid entry at %{error_location}: %{file_text}"
3863
- msgstr ""
3864
-
3865
- #: ../lib/puppet/network/auth_config_parser.rb:57
3866
- msgid "allowing %{value} access"
3867
- msgstr ""
3868
-
3869
- #: ../lib/puppet/network/auth_config_parser.rb:59
3870
- msgid "denying %{value} access"
3871
- msgstr ""
3872
-
3873
- #: ../lib/puppet/network/auth_config_parser.rb:61
3874
- msgid "allowing IP %{value} access"
3875
- msgstr ""
3876
-
3877
- #: ../lib/puppet/network/auth_config_parser.rb:63
3878
- msgid "denying IP %{value} access"
3879
- msgstr ""
3880
-
3881
- #: ../lib/puppet/network/auth_config_parser.rb:65
3882
- msgid "allowing 'method' %{value}"
3883
- msgstr ""
3884
-
3885
- #: ../lib/puppet/network/auth_config_parser.rb:67
3886
- msgid "adding environment %{value}"
3887
- msgstr ""
3888
-
3889
- #: ../lib/puppet/network/auth_config_parser.rb:69
3890
- msgid "adding authentication %{value}"
3891
- msgstr ""
3892
-
3893
- #: ../lib/puppet/network/authconfig.rb:41
3894
- msgid "Inserting default '%{acl}' (auth %{auth}) ACL"
3895
- msgstr ""
3896
-
3897
- #: ../lib/puppet/network/authconfig.rb:71
3898
- msgid "Denying access: %{authorization_failure_exception}"
3899
- msgstr ""
3900
-
3901
- #: ../lib/puppet/network/authstore.rb:22
3902
- msgid "Name and IP must be passed to 'allowed?'"
3903
- msgstr ""
3904
-
3905
- #: ../lib/puppet/network/authstore.rb:37
3906
- msgid "defaulting to no access for %{name}"
3907
- msgstr ""
3908
-
3909
- #: ../lib/puppet/network/authstore.rb:190
3910
- msgid "Invalid declaration type %{type}"
3911
- msgstr ""
3912
-
3913
- #: ../lib/puppet/network/authstore.rb:258
3914
- msgid "Invalid IP pattern %{value}"
3915
- msgstr ""
3916
-
3917
3610
  #: ../lib/puppet/network/client_request.rb:15
3918
3611
  msgid "Request is not set up; cannot build call"
3919
3612
  msgstr ""
@@ -3967,77 +3660,77 @@ msgstr ""
3967
3660
  msgid "Serialized YAML did not contain a valid instance of %{klass}"
3968
3661
  msgstr ""
3969
3662
 
3970
- #: ../lib/puppet/network/http/api/indirected_routes.rb:43
3663
+ #: ../lib/puppet/network/http/api/indirected_routes.rb:42
3971
3664
  msgid "No handler for %{indirection}"
3972
3665
  msgstr ""
3973
3666
 
3974
- #: ../lib/puppet/network/http/api/indirected_routes.rb:66
3667
+ #: ../lib/puppet/network/http/api/indirected_routes.rb:65
3975
3668
  msgid "The indirection name must be purely alphanumeric, not '%{indirection_name}'"
3976
3669
  msgstr ""
3977
3670
 
3978
- #: ../lib/puppet/network/http/api/indirected_routes.rb:76
3671
+ #: ../lib/puppet/network/http/api/indirected_routes.rb:75
3979
3672
  msgid "Indirection '%{indirection_name}' does not match url prefix '%{url_prefix}'"
3980
3673
  msgstr ""
3981
3674
 
3982
- #: ../lib/puppet/network/http/api/indirected_routes.rb:82
3675
+ #: ../lib/puppet/network/http/api/indirected_routes.rb:81
3983
3676
  msgid "Could not find indirection '%{indirection_name}'"
3984
3677
  msgstr ""
3985
3678
 
3986
- #: ../lib/puppet/network/http/api/indirected_routes.rb:88
3679
+ #: ../lib/puppet/network/http/api/indirected_routes.rb:87
3987
3680
  msgid "An environment parameter must be specified"
3988
3681
  msgstr ""
3989
3682
 
3990
- #: ../lib/puppet/network/http/api/indirected_routes.rb:93
3683
+ #: ../lib/puppet/network/http/api/indirected_routes.rb:92
3991
3684
  msgid "The environment must be purely alphanumeric, not '%{environment}'"
3992
3685
  msgstr ""
3993
3686
 
3994
- #: ../lib/puppet/network/http/api/indirected_routes.rb:110
3687
+ #: ../lib/puppet/network/http/api/indirected_routes.rb:103
3995
3688
  msgid "Could not find environment '%{environment}'"
3996
3689
  msgstr ""
3997
3690
 
3998
- #: ../lib/puppet/network/http/api/indirected_routes.rb:117
3691
+ #: ../lib/puppet/network/http/api/indirected_routes.rb:110
3999
3692
  msgid "No request key specified in %{uri}"
4000
3693
  msgstr ""
4001
3694
 
4002
- #: ../lib/puppet/network/http/api/indirected_routes.rb:140
3695
+ #: ../lib/puppet/network/http/api/indirected_routes.rb:122
4003
3696
  msgid "Could not find %{value0} %{key}"
4004
3697
  msgstr ""
4005
3698
 
4006
- #: ../lib/puppet/network/http/api/indirected_routes.rb:147
3699
+ #: ../lib/puppet/network/http/api/indirected_routes.rb:129
4007
3700
  msgid "Rendered result in %{format}"
4008
3701
  msgstr ""
4009
3702
 
4010
- #: ../lib/puppet/network/http/api/indirected_routes.rb:153
3703
+ #: ../lib/puppet/network/http/api/indirected_routes.rb:135
4011
3704
  msgid "Sent response"
4012
3705
  msgstr ""
4013
3706
 
4014
- #: ../lib/puppet/network/http/api/indirected_routes.rb:161
3707
+ #: ../lib/puppet/network/http/api/indirected_routes.rb:143
4015
3708
  msgid "Could not find %{indirection} %{key}"
4016
3709
  msgstr ""
4017
3710
 
4018
- #: ../lib/puppet/network/http/api/indirected_routes.rb:173
3711
+ #: ../lib/puppet/network/http/api/indirected_routes.rb:155
4019
3712
  msgid "Could not find instances in %{indirection} with '%{key}'"
4020
3713
  msgstr ""
4021
3714
 
4022
- #: ../lib/puppet/network/http/api/indirected_routes.rb:221 ../lib/puppet/network/http/request.rb:61
3715
+ #: ../lib/puppet/network/http/api/indirected_routes.rb:203 ../lib/puppet/network/http/request.rb:61
4023
3716
  msgid "No supported formats are acceptable (Accept: %{accepted_formats})"
4024
3717
  msgstr ""
4025
3718
 
4026
- #: ../lib/puppet/network/http/api/indirected_routes.rb:246
3719
+ #: ../lib/puppet/network/http/api/indirected_routes.rb:228
4027
3720
  msgid "The request body is invalid: %{message}"
4028
3721
  msgstr ""
4029
3722
 
4030
3723
  #. TRANSLATORS "mime-type" is a keyword and should not be translated
4031
3724
  #. TRANSLATORS "mime-type" is a keyword and should not be translated
4032
- #: ../lib/puppet/network/http/api/indirected_routes.rb:252 ../lib/puppet/network/http/request.rb:32
3725
+ #: ../lib/puppet/network/http/api/indirected_routes.rb:234 ../lib/puppet/network/http/request.rb:32
4033
3726
  msgid "Client sent a mime-type (%{header}) that doesn't correspond to a format we support"
4034
3727
  msgstr ""
4035
3728
 
4036
- #: ../lib/puppet/network/http/api/indirected_routes.rb:258
3729
+ #: ../lib/puppet/network/http/api/indirected_routes.rb:240
4037
3730
  msgid "No support for http method %{http_method}"
4038
3731
  msgstr ""
4039
3732
 
4040
- #: ../lib/puppet/network/http/api/indirected_routes.rb:263
3733
+ #: ../lib/puppet/network/http/api/indirected_routes.rb:245
4041
3734
  msgid "No support for plurality %{indirection} for %{http_method} operations"
4042
3735
  msgstr ""
4043
3736
 
@@ -4045,92 +3738,18 @@ msgstr ""
4045
3738
  msgid "Not a valid indirection type"
4046
3739
  msgstr ""
4047
3740
 
4048
- #: ../lib/puppet/network/http/api/master/v3/environment.rb:14
4049
- msgid "%{env_name} is not a known environment"
4050
- msgstr ""
4051
-
4052
- #: ../lib/puppet/network/http/api/master/v3/environment.rb:43
4053
- msgid "Application %{application} assigns nodes to non-existent components: %{component_list}"
4054
- msgstr ""
4055
-
4056
- #: ../lib/puppet/network/http/api/master/v3/environment.rb:49
4057
- msgid "Application %{application} has components without assigned nodes: %{component_list}"
4058
- msgstr ""
4059
-
4060
- #: ../lib/puppet/network/http/api/master/v3/environment.rb:58
4061
- msgid "Application %{app} assigns multiple nodes to component %{comp}"
4062
- msgstr ""
4063
-
4064
- #: ../lib/puppet/network/http/compression.rb:23 ../lib/puppet/network/http/compression.rb:27
4065
- msgid "Puppet::Network::HTTP::Compression::Active#uncompress_body is deprecated."
4066
- msgstr ""
4067
-
4068
- #: ../lib/puppet/network/http/compression.rb:32 ../lib/puppet/network/http/compression.rb:46
4069
- msgid "Unknown content encoding - %{encoding}"
4070
- msgstr ""
4071
-
4072
- #: ../lib/puppet/network/http/compression.rb:37
4073
- msgid "Puppet::Network::HTTP::Compression::Active#uncompress is deprecated."
4074
- msgstr ""
4075
-
4076
- #: ../lib/puppet/network/http/compression.rb:77
4077
- msgid "Puppet::Network::HTTP::Compression::ZlibAdapter#uncompress is deprecated."
4078
- msgstr ""
4079
-
4080
- #: ../lib/puppet/network/http/compression.rb:104
4081
- msgid "Puppet::Network::HTTP::Compression::None#uncompress_body is deprecated."
4082
- msgstr ""
4083
-
4084
- #: ../lib/puppet/network/http/compression.rb:113
4085
- msgid "Puppet::Network::HTTP::Compression::None#uncompress is deprecated."
4086
- msgstr ""
4087
-
4088
- #: ../lib/puppet/network/http/compression.rb:120
4089
- msgid "Puppet::Network::HTTP::Compression::IdentityAdapter#uncompress is deprecated."
4090
- msgstr ""
4091
-
4092
- #: ../lib/puppet/network/http/connection.rb:56
3741
+ #: ../lib/puppet/network/http/connection.rb:43
4093
3742
  msgid "Unrecognized option(s): %{opts}"
4094
3743
  msgstr ""
4095
3744
 
4096
- #: ../lib/puppet/network/http/connection.rb:63
3745
+ #: ../lib/puppet/network/http/connection.rb:49
4097
3746
  msgid "Expected an instance of Puppet::SSL::Verifier but was passed a %{klass}"
4098
3747
  msgstr ""
4099
3748
 
4100
- #: ../lib/puppet/network/http/connection.rb:229 ../lib/puppet/network/http/connection_adapter.rb:174
3749
+ #: ../lib/puppet/network/http/connection.rb:272
4101
3750
  msgid "Too many HTTP redirections for %{host}:%{port}"
4102
3751
  msgstr ""
4103
3752
 
4104
- #. TRANSLATORS: Used in the phrase:
4105
- #. "Received a response from the remote server."
4106
- #: ../lib/puppet/network/http/connection.rb:259
4107
- msgid "the remote server"
4108
- msgstr ""
4109
-
4110
- #: ../lib/puppet/network/http/connection.rb:263
4111
- 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."
4112
- msgstr ""
4113
-
4114
- #: ../lib/puppet/network/http/connection.rb:274
4115
- msgid "Received a %{status_code} response from %{server_hostname}. Sleeping for %{retry_sleep} seconds before retrying the request."
4116
- msgstr ""
4117
-
4118
- #: ../lib/puppet/network/http/connection.rb:335
4119
- msgid "request %{uri} interrupted after %{elapsed} seconds"
4120
- msgstr ""
4121
-
4122
- #: ../lib/puppet/network/http/connection.rb:337
4123
- msgid "request %{uri} timed out after %{elapsed} seconds"
4124
- msgstr ""
4125
-
4126
- #: ../lib/puppet/network/http/connection.rb:339
4127
- msgid "request %{uri} failed: %{msg}"
4128
- msgstr ""
4129
-
4130
- #: ../lib/puppet/network/http/connection.rb:346
4131
- msgid "Puppet::Network::HTTP::Connection is deprecated. Please use Puppet::Network::HTTP::ConnectionAdapter instead."
4132
- msgstr ""
4133
-
4134
3753
  #: ../lib/puppet/network/http/error.rb:23
4135
3754
  msgid "Not Acceptable: %{message}"
4136
3755
  msgstr ""
@@ -4159,30 +3778,22 @@ msgstr ""
4159
3778
  msgid "Server Error: %{message}"
4160
3779
  msgstr ""
4161
3780
 
4162
- #: ../lib/puppet/network/http/handler.rb:23
3781
+ #: ../lib/puppet/network/http/handler.rb:22
4163
3782
  msgid "Given multiple routes with identical path regexes: %{regexes}"
4164
3783
  msgstr ""
4165
3784
 
4166
- #: ../lib/puppet/network/http/handler.rb:67
3785
+ #: ../lib/puppet/network/http/handler.rb:66
4167
3786
  msgid "Processed request %{request_method} %{request_path}"
4168
3787
  msgstr ""
4169
3788
 
4170
- #: ../lib/puppet/network/http/handler.rb:113
3789
+ #: ../lib/puppet/network/http/handler.rb:112
4171
3790
  msgid "No route for %{request} %{path}"
4172
3791
  msgstr ""
4173
3792
 
4174
- #: ../lib/puppet/network/http/handler.rb:138
3793
+ #: ../lib/puppet/network/http/handler.rb:137
4175
3794
  msgid "Could not resolve %{ip}: %{detail}"
4176
3795
  msgstr ""
4177
3796
 
4178
- #: ../lib/puppet/network/http/nocache_pool.rb:6
4179
- msgid "Puppet::Network::HTTP::NoCachePool is deprecated."
4180
- msgstr ""
4181
-
4182
- #: ../lib/puppet/network/http/pool.rb:66
4183
- msgid "Failed to close connection for %{site}: %{detail}"
4184
- msgstr ""
4185
-
4186
3797
  #: ../lib/puppet/network/http/request.rb:14
4187
3798
  msgid "Unknown arguments: %{args}"
4188
3799
  msgstr ""
@@ -4196,39 +3807,15 @@ msgid "Missing required Accept header"
4196
3807
  msgstr ""
4197
3808
 
4198
3809
  #. TRANSLATORS 'ssl_context' is an argument and should not be translated
4199
- #: ../lib/puppet/network/http_pool.rb:81
3810
+ #: ../lib/puppet/network/http_pool.rb:63
4200
3811
  msgid "An ssl_context is required when connecting to 'https://%{host}:%{port}'"
4201
3812
  msgstr ""
4202
3813
 
4203
3814
  #. TRANSLATORS 'ssl_context' is an argument and should not be translated
4204
- #: ../lib/puppet/network/http_pool.rb:89
3815
+ #: ../lib/puppet/network/http_pool.rb:71
4205
3816
  msgid "An ssl_context is unnecessary when connecting to 'http://%{host}:%{port}' and will be ignored"
4206
3817
  msgstr ""
4207
3818
 
4208
- #: ../lib/puppet/network/rights.rb:59
4209
- msgid "Forbidden request: %{msg}"
4210
- msgstr ""
4211
-
4212
- #: ../lib/puppet/network/rights.rb:127
4213
- msgid "Unknown right type '%{name}'"
4214
- msgstr ""
4215
-
4216
- #: ../lib/puppet/network/rights.rb:169
4217
- msgid "'%{m}' is not an allowed value for method directive"
4218
- msgstr ""
4219
-
4220
- #: ../lib/puppet/network/rights.rb:176
4221
- msgid "'%{m}' is already in the '%{name}' ACL"
4222
- msgstr ""
4223
-
4224
- #: ../lib/puppet/network/rights.rb:183
4225
- msgid "'%{env}' is already in the '%{name}' ACL"
4226
- msgstr ""
4227
-
4228
- #: ../lib/puppet/network/rights.rb:195
4229
- msgid "'%{name}' incorrect authenticated value: %{authentication}"
4230
- msgstr ""
4231
-
4232
3819
  #: ../lib/puppet/node.rb:27
4233
3820
  msgid "No name provided in serialized data"
4234
3821
  msgstr ""
@@ -4245,11 +3832,7 @@ msgstr ""
4245
3832
  msgid "The node parameter '%{param_name}' for node '%{node_name}' was already set to '%{value}'. It could not be set to '%{desired_value}'"
4246
3833
  msgstr ""
4247
3834
 
4248
- #: ../lib/puppet/node.rb:198
4249
- msgid "Host is missing hostname and/or domain: %{name}"
4250
- msgstr ""
4251
-
4252
- #: ../lib/puppet/node.rb:230
3835
+ #: ../lib/puppet/node.rb:201
4253
3836
  msgid "Trusted node data modified for node %{name}"
4254
3837
  msgstr ""
4255
3838
 
@@ -4283,60 +3866,60 @@ msgid "Given data_type value is not a data type, got '%{type}'"
4283
3866
  msgstr ""
4284
3867
 
4285
3868
  #. TRANSLATORS 'type' and 'title' are internal parameter names - do not translate
4286
- #: ../lib/puppet/pal/json_catalog_encoder.rb:52
3869
+ #: ../lib/puppet/pal/json_catalog_encoder.rb:54
4287
3870
  msgid "Both type and title must be given"
4288
3871
  msgstr ""
4289
3872
 
4290
3873
  #. TRANSLATORS: do not translate the variable names in this error message
4291
3874
  #. TRANSLATORS: do not translate the variable names in this error message
4292
- #: ../lib/puppet/pal/pal_impl.rb:75 ../lib/puppet/pal/pal_impl.rb:181
3875
+ #: ../lib/puppet/pal/pal_impl.rb:76 ../lib/puppet/pal/pal_impl.rb:174
4293
3876
  msgid "manifest_file or code_string cannot be given when configured_by_env is true"
4294
3877
  msgstr ""
4295
3878
 
4296
- #: ../lib/puppet/pal/pal_impl.rb:237
3879
+ #: ../lib/puppet/pal/pal_impl.rb:222
4297
3880
  msgid "temporary environment name"
4298
3881
  msgstr ""
4299
3882
 
4300
3883
  #. TRANSLATORS: do not translate variable name string in these assertions
4301
- #: ../lib/puppet/pal/pal_impl.rb:242
3884
+ #: ../lib/puppet/pal/pal_impl.rb:227
4302
3885
  msgid "A block must be given to 'in_tmp_environment'"
4303
3886
  msgstr ""
4304
3887
 
4305
3888
  #. TRANSLATORS terms in the assertions below are names of terms in code
4306
- #: ../lib/puppet/pal/pal_impl.rb:296
3889
+ #: ../lib/puppet/pal/pal_impl.rb:282
4307
3890
  msgid "A block must be given to 'in_environment'"
4308
3891
  msgstr ""
4309
3892
 
4310
3893
  #. TRANSLATORS 'in_environment' is a name, do not translate
4311
- #: ../lib/puppet/pal/pal_impl.rb:301
3894
+ #: ../lib/puppet/pal/pal_impl.rb:287
4312
3895
  msgid "The environment directory '%{env_dir}' does not exist"
4313
3896
  msgstr ""
4314
3897
 
4315
- #: ../lib/puppet/pal/pal_impl.rb:324
3898
+ #: ../lib/puppet/pal/pal_impl.rb:310
4316
3899
  msgid "No directory found for the environment '%{env_name}' on the path '%{envpath}'"
4317
3900
  msgstr ""
4318
3901
 
4319
- #: ../lib/puppet/pal/pal_impl.rb:378
3902
+ #: ../lib/puppet/pal/pal_impl.rb:364
4320
3903
  msgid "Given variables must be a hash, got %{type}"
4321
3904
  msgstr ""
4322
3905
 
4323
- #: ../lib/puppet/pal/pal_impl.rb:384
3906
+ #: ../lib/puppet/pal/pal_impl.rb:370
4324
3907
  msgid "Given variable '%{varname}' has illegal name"
4325
3908
  msgstr ""
4326
3909
 
4327
- #: ../lib/puppet/pal/pal_impl.rb:388
3910
+ #: ../lib/puppet/pal/pal_impl.rb:374
4328
3911
  msgid "Given value for '%{varname}' has illegal type - got: %{type}"
4329
3912
  msgstr ""
4330
3913
 
4331
- #: ../lib/puppet/pal/pal_impl.rb:562
3914
+ #: ../lib/puppet/pal/pal_impl.rb:511
4332
3915
  msgid "Puppet Pal: %{what}"
4333
3916
  msgstr ""
4334
3917
 
4335
- #: ../lib/puppet/pal/pal_impl.rb:576
3918
+ #: ../lib/puppet/pal/pal_impl.rb:525
4336
3919
  msgid "Cannot use '%{a_term}' and '%{b_term}' at the same time"
4337
3920
  msgstr ""
4338
3921
 
4339
- #: ../lib/puppet/pal/pal_impl.rb:583
3922
+ #: ../lib/puppet/pal/pal_impl.rb:532
4340
3923
  msgid "A block must be given"
4341
3924
  msgstr ""
4342
3925
 
@@ -4401,7 +3984,7 @@ msgstr ""
4401
3984
  msgid "Node inheritance is removed in Puppet 4.0.0. See http://links.puppet.com/puppet-node-inheritance-deprecation"
4402
3985
  msgstr ""
4403
3986
 
4404
- #: ../lib/puppet/parser/ast/pops_bridge.rb:186
3987
+ #: ../lib/puppet/parser/ast/pops_bridge.rb:180
4405
3988
  msgid "Instantiating Resource with type checked parameters - scope is missing, skipping type checking."
4406
3989
  msgstr ""
4407
3990
 
@@ -4426,209 +4009,100 @@ msgid "For more information, see https://puppet.com/docs/puppet/latest/environme
4426
4009
  msgstr ""
4427
4010
 
4428
4011
  #. TRANSLATORS "stage" is a keyword in Puppet and should not be translated
4429
- #: ../lib/puppet/parser/compiler.rb:98 ../lib/puppet/parser/environment_compiler.rb:137
4012
+ #: ../lib/puppet/parser/compiler.rb:82
4430
4013
  msgid "Only classes can set 'stage'; normal resources like %{resource} cannot change run stage"
4431
4014
  msgstr ""
4432
4015
 
4433
- #. TRANSLATORS "Site" is a puppet keyword and should not be translated
4434
- #: ../lib/puppet/parser/compiler.rb:125
4435
- msgid "Application instances like '%{resource}' can only be contained within a Site"
4436
- msgstr ""
4437
-
4438
- #: ../lib/puppet/parser/compiler.rb:155
4016
+ #: ../lib/puppet/parser/compiler.rb:123
4439
4017
  msgid "For compiling %{node}"
4440
4018
  msgstr ""
4441
4019
 
4442
- #: ../lib/puppet/parser/compiler.rb:159
4020
+ #: ../lib/puppet/parser/compiler.rb:127
4443
4021
  msgid "Compile: Set node parameters"
4444
4022
  msgstr ""
4445
4023
 
4446
- #: ../lib/puppet/parser/compiler.rb:161
4024
+ #: ../lib/puppet/parser/compiler.rb:129
4447
4025
  msgid "Compile: Created settings scope"
4448
4026
  msgstr ""
4449
4027
 
4450
- #: ../lib/puppet/parser/compiler.rb:163
4451
- msgid "Compile: Evaluated capability mappings"
4452
- msgstr ""
4453
-
4454
4028
  #. TRANSLATORS "main" is a function name and should not be translated
4455
- #: ../lib/puppet/parser/compiler.rb:166
4029
+ #: ../lib/puppet/parser/compiler.rb:132
4456
4030
  msgid "Compile: Evaluated main"
4457
4031
  msgstr ""
4458
4032
 
4459
- #: ../lib/puppet/parser/compiler.rb:168
4460
- msgid "Compile: Evaluated site"
4461
- msgstr ""
4462
-
4463
- #: ../lib/puppet/parser/compiler.rb:170
4033
+ #: ../lib/puppet/parser/compiler.rb:134
4464
4034
  msgid "Compile: Evaluated AST node"
4465
4035
  msgstr ""
4466
4036
 
4467
- #: ../lib/puppet/parser/compiler.rb:172
4037
+ #: ../lib/puppet/parser/compiler.rb:136
4468
4038
  msgid "Compile: Evaluated node classes"
4469
4039
  msgstr ""
4470
4040
 
4471
- #: ../lib/puppet/parser/compiler.rb:174
4472
- msgid "Compile: Evaluated application instances"
4473
- msgstr ""
4474
-
4475
- #: ../lib/puppet/parser/compiler.rb:177
4476
- msgid "Compile: Evaluated site capability mappings"
4477
- msgstr ""
4478
-
4479
- #: ../lib/puppet/parser/compiler.rb:179
4041
+ #: ../lib/puppet/parser/compiler.rb:138
4480
4042
  msgid "Compile: Evaluated generators"
4481
4043
  msgstr ""
4482
4044
 
4483
- #: ../lib/puppet/parser/compiler.rb:181
4045
+ #: ../lib/puppet/parser/compiler.rb:140
4484
4046
  msgid "Compile: Validate Catalog pre-finish"
4485
4047
  msgstr ""
4486
4048
 
4487
- #: ../lib/puppet/parser/compiler.rb:185
4049
+ #: ../lib/puppet/parser/compiler.rb:144
4488
4050
  msgid "Compile: Finished catalog"
4489
4051
  msgstr ""
4490
4052
 
4491
- #: ../lib/puppet/parser/compiler.rb:187
4492
- msgid "Compile: Prune"
4493
- msgstr ""
4494
-
4495
- #: ../lib/puppet/parser/compiler.rb:191
4053
+ #: ../lib/puppet/parser/compiler.rb:148
4496
4054
  msgid "Compile: Validate Catalog final"
4497
4055
  msgstr ""
4498
4056
 
4499
- #: ../lib/puppet/parser/compiler.rb:321
4500
- msgid "Invalid node mapping in %{app}: Mapping must be a hash"
4501
- msgstr ""
4502
-
4503
- #: ../lib/puppet/parser/compiler.rb:324
4504
- msgid "Invalid node mapping in %{app}: Key %{k} is not a Node"
4505
- msgstr ""
4506
-
4507
- #: ../lib/puppet/parser/compiler.rb:327
4508
- msgid "Invalid node mapping in %{app}: Value %{res} is not a resource"
4509
- msgstr ""
4510
-
4511
- #: ../lib/puppet/parser/compiler.rb:328
4512
- msgid "Application %{app} maps component %{res} to multiple nodes"
4513
- msgstr ""
4514
-
4515
- #: ../lib/puppet/parser/compiler.rb:367
4057
+ #: ../lib/puppet/parser/compiler.rb:218
4516
4058
  msgid "Could not find node statement with name 'default' or '%{names}'"
4517
4059
  msgstr ""
4518
4060
 
4519
- #: ../lib/puppet/parser/compiler.rb:385
4061
+ #: ../lib/puppet/parser/compiler.rb:236
4520
4062
  msgid "No source for scope passed to evaluate_classes"
4521
4063
  msgstr ""
4522
4064
 
4523
- #: ../lib/puppet/parser/compiler.rb:401
4065
+ #: ../lib/puppet/parser/compiler.rb:246
4524
4066
  msgid "Could not find class %{name} for %{node}"
4525
4067
  msgstr ""
4526
4068
 
4527
- #: ../lib/puppet/parser/compiler.rb:503
4528
- msgid "Capability mapping error: %{kind} clause references nonexistent %{component_type} %{component_name}"
4529
- msgstr ""
4530
-
4531
- #: ../lib/puppet/parser/compiler.rb:526
4069
+ #: ../lib/puppet/parser/compiler.rb:328
4532
4070
  msgid "Evaluated collections"
4533
4071
  msgstr ""
4534
4072
 
4535
- #: ../lib/puppet/parser/compiler.rb:541
4073
+ #: ../lib/puppet/parser/compiler.rb:343
4536
4074
  msgid "Evaluated definitions"
4537
4075
  msgstr ""
4538
4076
 
4539
- #: ../lib/puppet/parser/compiler.rb:570
4077
+ #: ../lib/puppet/parser/compiler.rb:372
4540
4078
  msgid "Iterated (%{count}) on generators"
4541
4079
  msgstr ""
4542
4080
 
4543
- #: ../lib/puppet/parser/compiler.rb:581
4081
+ #: ../lib/puppet/parser/compiler.rb:383
4544
4082
  msgid "Somehow looped more than 1000 times while evaluating host catalog"
4545
4083
  msgstr ""
4546
4084
 
4547
- #: ../lib/puppet/parser/compiler.rb:613
4085
+ #: ../lib/puppet/parser/compiler.rb:415
4548
4086
  msgid "Could not find resource(s) %{resources} for overriding"
4549
4087
  msgstr ""
4550
4088
 
4551
- #: ../lib/puppet/parser/compiler.rb:624
4089
+ #: ../lib/puppet/parser/compiler.rb:426
4552
4090
  msgid "Failed to realize virtual resources %{resources}"
4553
4091
  msgstr ""
4554
4092
 
4555
4093
  #. TRANSLATORS "main" is a function name and should not be translated
4556
- #: ../lib/puppet/parser/compiler.rb:657
4094
+ #: ../lib/puppet/parser/compiler.rb:459
4557
4095
  msgid "Couldn't find main"
4558
4096
  msgstr ""
4559
4097
 
4560
- #: ../lib/puppet/parser/compiler.rb:730
4098
+ #: ../lib/puppet/parser/compiler.rb:532
4561
4099
  msgid "For initializing compiler"
4562
4100
  msgstr ""
4563
4101
 
4564
- #: ../lib/puppet/parser/compiler/catalog_validator/env_relationship_validator.rb:19
4565
- msgid "Capability '%{cap}' referenced by '%{param}' is never exported"
4566
- msgstr ""
4567
-
4568
- #: ../lib/puppet/parser/compiler/catalog_validator/env_relationship_validator.rb:58
4569
- msgid "'%{value}' is exported by both '%{hash}' and '%{resource}'"
4570
- msgstr ""
4571
-
4572
- #: ../lib/puppet/parser/compiler/catalog_validator/relationship_validator.rb:27
4573
- msgid "'%{param}' is not a valid relationship to a capability"
4574
- msgstr ""
4575
-
4576
- #: ../lib/puppet/parser/compiler/catalog_validator/relationship_validator.rb:43
4102
+ #: ../lib/puppet/parser/compiler/catalog_validator/relationship_validator.rb:31
4577
4103
  msgid "Could not find resource '%{res}' in parameter '%{param}'"
4578
4104
  msgstr ""
4579
4105
 
4580
- #: ../lib/puppet/parser/compiler/catalog_validator/site_validator.rb:16
4581
- msgid "Only application components can appear inside a site - %{res} is not allowed"
4582
- msgstr ""
4583
-
4584
- #: ../lib/puppet/parser/environment_compiler.rb:13
4585
- msgid "%{detail} in environment %{env}"
4586
- msgstr ""
4587
-
4588
- #: ../lib/puppet/parser/environment_compiler.rb:62
4589
- msgid "For compiling environment catalog %{env}"
4590
- msgstr ""
4591
-
4592
- #: ../lib/puppet/parser/environment_compiler.rb:65
4593
- msgid "Env Compile: Created settings scope"
4594
- msgstr ""
4595
-
4596
- #: ../lib/puppet/parser/environment_compiler.rb:67
4597
- msgid "Env Compile: Evaluated main"
4598
- msgstr ""
4599
-
4600
- #: ../lib/puppet/parser/environment_compiler.rb:69
4601
- msgid "Env Compile: Evaluated site"
4602
- msgstr ""
4603
-
4604
- #: ../lib/puppet/parser/environment_compiler.rb:71
4605
- msgid "Env Compile: Evaluated application instances"
4606
- msgstr ""
4607
-
4608
- #: ../lib/puppet/parser/environment_compiler.rb:73
4609
- msgid "Env Compile: Prune"
4610
- msgstr ""
4611
-
4612
- #: ../lib/puppet/parser/environment_compiler.rb:75
4613
- msgid "Env Compile: Validate Catalog pre-finish"
4614
- msgstr ""
4615
-
4616
- #: ../lib/puppet/parser/environment_compiler.rb:79
4617
- msgid "Env Compile: Finished catalog"
4618
- msgstr ""
4619
-
4620
- #: ../lib/puppet/parser/environment_compiler.rb:83
4621
- msgid "Env Compile: Validate Catalog final"
4622
- msgstr ""
4623
-
4624
- #: ../lib/puppet/parser/environment_compiler.rb:159
4625
- msgid "Environment Compiler: Could not find a site definition to evaluate"
4626
- msgstr ""
4627
-
4628
- #: ../lib/puppet/parser/environment_compiler.rb:165
4629
- msgid "Evaluated application %{resource}"
4630
- msgstr ""
4631
-
4632
4106
  #: ../lib/puppet/parser/functions.rb:43
4633
4107
  msgid "The method 'Puppet::Parser::Functions.autoloader#loadall' is deprecated in favor of using 'Scope#call_function'."
4634
4108
  msgstr ""
@@ -4763,55 +4237,35 @@ msgstr ""
4763
4237
  msgid "Resources require a scope"
4764
4238
  msgstr ""
4765
4239
 
4766
- #: ../lib/puppet/parser/resource.rb:168
4240
+ #: ../lib/puppet/parser/resource.rb:159
4767
4241
  msgid "Only subclasses can override parameters"
4768
4242
  msgstr ""
4769
4243
 
4770
- #: ../lib/puppet/parser/resource.rb:174
4244
+ #: ../lib/puppet/parser/resource.rb:165
4771
4245
  msgid "Attempt to override an already evaluated resource with new values"
4772
4246
  msgstr ""
4773
4247
 
4774
- #: ../lib/puppet/parser/resource.rb:176
4248
+ #: ../lib/puppet/parser/resource.rb:167
4775
4249
  msgid "Attempt to override an already evaluated resource, defined at %{error_location}, with new values"
4776
4250
  msgstr ""
4777
4251
 
4778
- #: ../lib/puppet/parser/resource.rb:273
4779
- msgid "Invalid consume in %{value0}: %{ref} is not a resource"
4780
- msgstr ""
4781
-
4782
- #: ../lib/puppet/parser/resource.rb:280
4783
- msgid "Resource %{ref} could not be found; it might not have been produced yet"
4784
- msgstr ""
4785
-
4786
- #: ../lib/puppet/parser/resource.rb:284
4787
- msgid "Invalid consume in %{ref}: %{cap} is not a capability resource"
4788
- msgstr ""
4789
-
4790
- #: ../lib/puppet/parser/resource.rb:293
4791
- msgid "Resource %{res} tries to consume %{cns} but no 'consumes' mapping exists for %{resource_type} and %{cns_type}"
4792
- msgstr ""
4793
-
4794
- #: ../lib/puppet/parser/resource.rb:313
4795
- msgid "Attempt to reassign attribute '%{name}' in '%{resource}' caused by multiple consumed mappings to the same attribute"
4796
- msgstr ""
4797
-
4798
- #: ../lib/puppet/parser/resource.rb:365
4252
+ #: ../lib/puppet/parser/resource.rb:296
4799
4253
  msgid "Parameter '%{name}' is already set on %{resource}; cannot redefine"
4800
4254
  msgstr ""
4801
4255
 
4802
- #: ../lib/puppet/parser/resource.rb:368
4256
+ #: ../lib/puppet/parser/resource.rb:299
4803
4257
  msgid "Parameter '%{name}' is already set on %{resource} at %{error_location}; cannot redefine"
4804
4258
  msgstr ""
4805
4259
 
4806
- #: ../lib/puppet/parser/resource.rb:373
4260
+ #: ../lib/puppet/parser/resource.rb:304
4807
4261
  msgid "Parameter '%{name}' is already set on %{resource} by %{source}; cannot redefine"
4808
4262
  msgstr ""
4809
4263
 
4810
- #: ../lib/puppet/parser/resource.rb:376
4264
+ #: ../lib/puppet/parser/resource.rb:307
4811
4265
  msgid "Parameter '%{name}' is already set on %{resource} by %{source} at %{error_location}; cannot redefine"
4812
4266
  msgstr ""
4813
4267
 
4814
- #: ../lib/puppet/parser/resource.rb:415
4268
+ #: ../lib/puppet/parser/resource.rb:346
4815
4269
  msgid "Duplicate parameter '%{param}' for on %{resource}"
4816
4270
  msgstr ""
4817
4271
 
@@ -5053,19 +4507,19 @@ msgstr ""
5053
4507
  msgid "break() from context where this is illegal"
5054
4508
  msgstr ""
5055
4509
 
5056
- #: ../lib/puppet/pops/evaluator/evaluator_impl.rb:1241
4510
+ #: ../lib/puppet/pops/evaluator/evaluator_impl.rb:1236
5057
4511
  msgid "Can only append Array or Hash to a Hash"
5058
4512
  msgstr ""
5059
4513
 
5060
- #: ../lib/puppet/pops/evaluator/evaluator_impl.rb:1245
4514
+ #: ../lib/puppet/pops/evaluator/evaluator_impl.rb:1240
5061
4515
  msgid "An URI can only be merged with an URI or String"
5062
4516
  msgstr ""
5063
4517
 
5064
- #: ../lib/puppet/pops/evaluator/evaluator_impl.rb:1248
4518
+ #: ../lib/puppet/pops/evaluator/evaluator_impl.rb:1243
5065
4519
  msgid "Can only append Binary to a Binary"
5066
4520
  msgstr ""
5067
4521
 
5068
- #: ../lib/puppet/pops/evaluator/evaluator_impl.rb:1281
4522
+ #: ../lib/puppet/pops/evaluator/evaluator_impl.rb:1276
5069
4523
  msgid "Can only delete from an Array or Hash."
5070
4524
  msgstr ""
5071
4525
 
@@ -5837,10 +5291,6 @@ msgstr ""
5837
5291
  msgid "Failed to load: %{type_name}"
5838
5292
  msgstr ""
5839
5293
 
5840
- #: ../lib/puppet/pops/issues.rb:925
5841
- msgid "Use of the application-orchestration %{expr} is deprecated. See https://puppet.com/docs/puppet/5.5/deprecated_language.html"
5842
- msgstr ""
5843
-
5844
5294
  #: ../lib/puppet/pops/label_provider.rb:76
5845
5295
  msgid "<%{string}> does not appear to contain a word"
5846
5296
  msgstr ""
@@ -5963,21 +5413,21 @@ msgstr ""
5963
5413
  msgid "The code loaded from %{source_ref} did not produce a Function class when evaluated. Got '%{klass}'"
5964
5414
  msgstr ""
5965
5415
 
5966
- #: ../lib/puppet/pops/loader/ruby_legacy_function_instantiator.rb:24
5416
+ #: ../lib/puppet/pops/loader/ruby_legacy_function_instantiator.rb:23
5967
5417
  msgid "The code loaded from %{source_ref} does not seem to be a Puppet 3x API function - no 'newfunction' call."
5968
5418
  msgstr ""
5969
5419
 
5970
5420
  #. TRANSLATORS - the word 'newfunction' should not be translated as it is a method name.
5971
- #: ../lib/puppet/pops/loader/ruby_legacy_function_instantiator.rb:47
5421
+ #: ../lib/puppet/pops/loader/ruby_legacy_function_instantiator.rb:45
5972
5422
  msgid "Illegal legacy function definition! The code loaded from %{source_ref} did not return the result of calling 'newfunction'. Got '%{klass}'"
5973
5423
  msgstr ""
5974
5424
 
5975
- #: ../lib/puppet/pops/loader/ruby_legacy_function_instantiator.rb:50
5425
+ #: ../lib/puppet/pops/loader/ruby_legacy_function_instantiator.rb:48
5976
5426
  msgid "The code loaded from %{source_ref} produced mis-matched name, expected 'function_%{type_name}', got '%{created_name}'"
5977
5427
  msgstr ""
5978
5428
 
5979
- #: ../lib/puppet/pops/loader/ruby_legacy_function_instantiator.rb:94
5980
- msgid "Illegal method definition of method '%{method_name}' on line %{line}' in legacy function. See %{url} for more information"
5429
+ #: ../lib/puppet/pops/loader/ruby_legacy_function_instantiator.rb:92
5430
+ msgid "Illegal method definition of method '%{method_name}' on line %{line} in legacy function. See %{url} for more information"
5981
5431
  msgstr ""
5982
5432
 
5983
5433
  #: ../lib/puppet/pops/loader/task_instantiator.rb:22
@@ -6179,19 +5629,19 @@ msgid "Unacceptable transform - found an Object without a rule: %{klass}"
6179
5629
  msgstr ""
6180
5630
 
6181
5631
  #. TRANSLATORS 'NUMBER' refers to a method name and the 'name_or_numeric' was the passed in value and should not be translated
6182
- #: ../lib/puppet/pops/model/factory.rb:849
5632
+ #: ../lib/puppet/pops/model/factory.rb:812
6183
5633
  msgid "Internal Error, NUMBER token does not contain a valid number, %{name_or_numeric}"
6184
5634
  msgstr ""
6185
5635
 
6186
- #: ../lib/puppet/pops/model/factory.rb:1166
5636
+ #: ../lib/puppet/pops/model/factory.rb:1121
6187
5637
  msgid "can only concatenate strings, got %{class_name}"
6188
5638
  msgstr ""
6189
5639
 
6190
- #: ../lib/puppet/pops/parser/parser_support.rb:204
5640
+ #: ../lib/puppet/pops/parser/parser_support.rb:199
6191
5641
  msgid "attempt to pass argument list to the function '%{name}' which cannot be called without parentheses"
6192
5642
  msgstr ""
6193
5643
 
6194
- #: ../lib/puppet/pops/parser/parser_support.rb:206
5644
+ #: ../lib/puppet/pops/parser/parser_support.rb:201
6195
5645
  msgid "illegal comma separated argument list"
6196
5646
  msgstr ""
6197
5647
 
@@ -6231,7 +5681,7 @@ msgstr ""
6231
5681
  msgid "digit expected"
6232
5682
  msgstr ""
6233
5683
 
6234
- #: ../lib/puppet/pops/resource/resource_type_impl.rb:167 ../lib/puppet/type.rb:444
5684
+ #: ../lib/puppet/pops/resource/resource_type_impl.rb:165 ../lib/puppet/type.rb:421
6235
5685
  msgid "you must specify title patterns when there are two or more key attributes"
6236
5686
  msgstr ""
6237
5687
 
@@ -6356,10 +5806,6 @@ msgstr ""
6356
5806
  msgid "%{klass} cannot be subtracted from a Timestamp"
6357
5807
  msgstr ""
6358
5808
 
6359
- #: ../lib/puppet/pops/types/enumeration.rb:7 ../lib/puppet/pops/types/enumeration.rb:12
6360
- msgid "Enumeration.enumerator is deprecated. Use Iterable.on instead"
6361
- msgstr ""
6362
-
6363
5809
  #: ../lib/puppet/pops/types/p_binary_type.rb:77
6364
5810
  msgid "The given string in encoding '%{enc}' is invalid. Cannot create a Binary UTF-8 representation"
6365
5811
  msgstr ""
@@ -6473,10 +5919,6 @@ msgstr ""
6473
5919
  msgid "Options 'include_containers' and 'include_values' cannot both be false"
6474
5920
  msgstr ""
6475
5921
 
6476
- #: ../lib/puppet/pops/types/type_calculator.rb:187
6477
- msgid "TypeCalculator.enumerable is deprecated. Use iterable"
6478
- msgstr ""
6479
-
6480
5922
  #. TRANSLATORS 'TypeFactory#string' is a class and method name and should not be translated
6481
5923
  #: ../lib/puppet/pops/types/type_factory.rb:117
6482
5924
  msgid "Passing more than one argument to TypeFactory#string is deprecated"
@@ -6491,85 +5933,85 @@ msgstr ""
6491
5933
  msgid "Everything is now reported using present tense"
6492
5934
  msgstr ""
6493
5935
 
6494
- #: ../lib/puppet/pops/types/type_parser.rb:429
5936
+ #: ../lib/puppet/pops/types/type_parser.rb:425
6495
5937
  msgid "Enum parameters must be identifiers or strings"
6496
5938
  msgstr ""
6497
5939
 
6498
- #: ../lib/puppet/pops/types/type_parser.rb:665
5940
+ #: ../lib/puppet/pops/types/type_parser.rb:661
6499
5941
  msgid "The expression <%{expression}> is not a valid type specification."
6500
5942
  msgstr ""
6501
5943
 
6502
- #: ../lib/puppet/pops/types/type_parser.rb:670
5944
+ #: ../lib/puppet/pops/types/type_parser.rb:666
6503
5945
  msgid "Invalid number of type parameters specified: %{type} requires %{required}, %{given} provided"
6504
5946
  msgstr ""
6505
5947
 
6506
- #: ../lib/puppet/pops/types/type_parser.rb:675
5948
+ #: ../lib/puppet/pops/types/type_parser.rb:671
6507
5949
  msgid "Not a parameterized type <%{type}>"
6508
5950
  msgstr ""
6509
5951
 
6510
- #: ../lib/puppet/pops/types/type_parser.rb:679
5952
+ #: ../lib/puppet/pops/types/type_parser.rb:675
6511
5953
  msgid "Unknown type <%{type}>"
6512
5954
  msgstr ""
6513
5955
 
6514
- #: ../lib/puppet/pops/types/types.rb:930
5956
+ #: ../lib/puppet/pops/types/types.rb:929
6515
5957
  msgid "The string '%{str}' cannot be converted to Numeric"
6516
5958
  msgstr ""
6517
5959
 
6518
- #: ../lib/puppet/pops/types/types.rb:933
5960
+ #: ../lib/puppet/pops/types/types.rb:932
6519
5961
  msgid "Value of type %{type} cannot be converted to Numeric"
6520
5962
  msgstr ""
6521
5963
 
6522
- #: ../lib/puppet/pops/types/types.rb:1171
5964
+ #: ../lib/puppet/pops/types/types.rb:1170
6523
5965
  msgid "The string '%{str}' cannot be converted to Integer"
6524
5966
  msgstr ""
6525
5967
 
6526
- #: ../lib/puppet/pops/types/types.rb:1174
5968
+ #: ../lib/puppet/pops/types/types.rb:1173
6527
5969
  msgid "Value of type %{type} cannot be converted to Integer"
6528
5970
  msgstr ""
6529
5971
 
6530
- #: ../lib/puppet/pops/types/types.rb:1182
5972
+ #: ../lib/puppet/pops/types/types.rb:1181
6531
5973
  msgid "Illegal radix: %{radix}, expected 2, 8, 10, 16, or default"
6532
5974
  msgstr ""
6533
5975
 
6534
- #: ../lib/puppet/pops/types/types.rb:1295
5976
+ #: ../lib/puppet/pops/types/types.rb:1294
6535
5977
  msgid "The string '%{str}' cannot be converted to Float"
6536
5978
  msgstr ""
6537
5979
 
6538
- #: ../lib/puppet/pops/types/types.rb:1298
5980
+ #: ../lib/puppet/pops/types/types.rb:1297
6539
5981
  msgid "Value of type %{type} cannot be converted to Float"
6540
5982
  msgstr ""
6541
5983
 
6542
5984
  #. TRANSLATORS 'PStringType#initialize' is a class and method name and should not be translated
6543
- #: ../lib/puppet/pops/types/types.rb:1515
5985
+ #: ../lib/puppet/pops/types/types.rb:1514
6544
5986
  msgid "Passing more than one argument to PStringType#initialize is deprecated"
6545
5987
  msgstr ""
6546
5988
 
6547
5989
  #. TRANSLATORS 'PStringType#values' and '#value' are classes and method names and should not be translated
6548
- #: ../lib/puppet/pops/types/types.rb:1569
5990
+ #: ../lib/puppet/pops/types/types.rb:1568
6549
5991
  msgid "Method PStringType#values is deprecated. Use #value instead"
6550
5992
  msgstr ""
6551
5993
 
6552
- #: ../lib/puppet/pops/types/types.rb:1895
5994
+ #: ../lib/puppet/pops/types/types.rb:1894
6553
5995
  msgid "The string '%{str}' cannot be converted to Boolean"
6554
5996
  msgstr ""
6555
5997
 
6556
- #: ../lib/puppet/pops/types/types.rb:1898
5998
+ #: ../lib/puppet/pops/types/types.rb:1897
6557
5999
  msgid "Value of type %{type} cannot be converted to Boolean"
6558
6000
  msgstr ""
6559
6001
 
6560
- #: ../lib/puppet/pops/types/types.rb:2626
6002
+ #: ../lib/puppet/pops/types/types.rb:2625
6561
6003
  msgid "Value of type %{type} cannot be converted to Array"
6562
6004
  msgstr ""
6563
6005
 
6564
- #: ../lib/puppet/pops/types/types.rb:2696
6006
+ #: ../lib/puppet/pops/types/types.rb:2695
6565
6007
  msgid "Puppet::Pops::Types::PHashType#element_type is deprecated, use #value_type instead"
6566
6008
  msgstr ""
6567
6009
 
6568
- #: ../lib/puppet/pops/types/types.rb:2833
6010
+ #: ../lib/puppet/pops/types/types.rb:2832
6569
6011
  msgid "odd number of arguments for Hash"
6570
6012
  msgstr ""
6571
6013
 
6572
- #: ../lib/puppet/pops/types/types.rb:2844
6014
+ #: ../lib/puppet/pops/types/types.rb:2843
6573
6015
  msgid "Value of type %{type} cannot be converted to Hash"
6574
6016
  msgstr ""
6575
6017
 
@@ -6648,19 +6090,19 @@ msgstr ""
6648
6090
  msgid "Key/value pairs must be separated by '%{separator}'"
6649
6091
  msgstr ""
6650
6092
 
6651
- #: ../lib/puppet/provider.rb:145
6093
+ #: ../lib/puppet/provider.rb:132
6652
6094
  msgid "No command %{command} defined for provider %{provider}"
6653
6095
  msgstr ""
6654
6096
 
6655
- #: ../lib/puppet/provider.rb:397
6097
+ #: ../lib/puppet/provider.rb:384
6656
6098
  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"
6657
6099
  msgstr ""
6658
6100
 
6659
- #: ../lib/puppet/provider.rb:470
6101
+ #: ../lib/puppet/provider.rb:457
6660
6102
  msgid "'%{parameter_name}' is not a valid parameter for %{resource_type}"
6661
6103
  msgstr ""
6662
6104
 
6663
- #: ../lib/puppet/provider.rb:556
6105
+ #: ../lib/puppet/provider.rb:543
6664
6106
  msgid "No resource and no name in property hash in %{class_name} instance"
6665
6107
  msgstr ""
6666
6108
 
@@ -6688,11 +6130,11 @@ msgstr ""
6688
6130
  msgid "aix.object_info(): Could not find %{resource}[%{name}]"
6689
6131
  msgstr ""
6690
6132
 
6691
- #: ../lib/puppet/provider/aix_object.rb:471 ../lib/puppet/provider/nameservice.rb:182 ../lib/puppet/provider/nameservice/directoryservice.rb:425
6133
+ #: ../lib/puppet/provider/aix_object.rb:471 ../lib/puppet/provider/nameservice.rb:164 ../lib/puppet/provider/nameservice/directoryservice.rb:425
6692
6134
  msgid "Could not create %{resource} %{name}: %{detail}"
6693
6135
  msgstr ""
6694
6136
 
6695
- #: ../lib/puppet/provider/aix_object.rb:483 ../lib/puppet/provider/nameservice.rb:196
6137
+ #: ../lib/puppet/provider/aix_object.rb:483 ../lib/puppet/provider/nameservice.rb:178
6696
6138
  msgid "Could not delete %{resource} %{name}: %{detail}"
6697
6139
  msgstr ""
6698
6140
 
@@ -6781,32 +6223,28 @@ msgstr ""
6781
6223
  msgid "%{name} is not a valid attribute for %{resource_type}"
6782
6224
  msgstr ""
6783
6225
 
6784
- #: ../lib/puppet/provider/nameservice.rb:60
6785
- msgid "listbyname is deprecated and will be removed in a future release of Puppet. Please use `self.instances` to obtain a list of users."
6786
- msgstr ""
6787
-
6788
- #: ../lib/puppet/provider/nameservice.rb:103
6226
+ #: ../lib/puppet/provider/nameservice.rb:85
6789
6227
  msgid "Invalid value %{value}: %{error}"
6790
6228
  msgstr ""
6791
6229
 
6792
6230
  #. TRANSLATORS "autogen_id()" is a method name and should not be translated
6793
- #: ../lib/puppet/provider/nameservice.rb:148
6231
+ #: ../lib/puppet/provider/nameservice.rb:130
6794
6232
  msgid "autogen_id() does not support auto generation of id for resource type %{resource_type}"
6795
6233
  msgstr ""
6796
6234
 
6797
- #: ../lib/puppet/provider/nameservice.rb:170 ../lib/puppet/provider/nameservice/directoryservice.rb:379
6235
+ #: ../lib/puppet/provider/nameservice.rb:152 ../lib/puppet/provider/nameservice/directoryservice.rb:379
6798
6236
  msgid "already exists"
6799
6237
  msgstr ""
6800
6238
 
6801
- #: ../lib/puppet/provider/nameservice.rb:188
6239
+ #: ../lib/puppet/provider/nameservice.rb:170
6802
6240
  msgid "already absent"
6803
6241
  msgstr ""
6804
6242
 
6805
- #: ../lib/puppet/provider/nameservice.rb:282
6243
+ #: ../lib/puppet/provider/nameservice.rb:264
6806
6244
  msgid "Nameservice command must be an array"
6807
6245
  msgstr ""
6808
6246
 
6809
- #: ../lib/puppet/provider/nameservice.rb:287 ../lib/puppet/provider/nameservice/directoryservice.rb:340 ../lib/puppet/provider/nameservice/directoryservice.rb:369
6247
+ #: ../lib/puppet/provider/nameservice.rb:269 ../lib/puppet/provider/nameservice/directoryservice.rb:340 ../lib/puppet/provider/nameservice/directoryservice.rb:369
6810
6248
  msgid "Could not set %{param} on %{resource}[%{name}]: %{detail}"
6811
6249
  msgstr ""
6812
6250
 
@@ -6888,30 +6326,26 @@ msgstr ""
6888
6326
  msgid "Mac OS X packages must specify a package source"
6889
6327
  msgstr ""
6890
6328
 
6891
- #: ../lib/puppet/provider/package/apt.rb:89
6329
+ #: ../lib/puppet/provider/package/apt.rb:81
6892
6330
  msgid "/etc/apt/sources.list contains a cdrom source; not installing. Use 'allowcdrom' to override this failure."
6893
6331
  msgstr ""
6894
6332
 
6895
- #: ../lib/puppet/provider/package/apt.rb:172 ../lib/puppet/provider/package/aptitude.rb:21 ../lib/puppet/provider/package/ports.rb:20 ../lib/puppet/provider/package/portupgrade.rb:94 ../lib/puppet/provider/package/portupgrade.rb:152 ../lib/puppet/provider/package/rug.rb:28 ../lib/puppet/provider/package/up2date.rb:17 ../lib/puppet/provider/package/yum.rb:312 ../lib/puppet/provider/package/zypper.rb:146
6896
- msgid "Could not find package %{name}"
6897
- msgstr ""
6898
-
6899
- #: ../lib/puppet/provider/package/apt.rb:176 ../lib/puppet/provider/package/yum.rb:317
6900
- msgid "Failed to update to version %{should}, got version %{version} instead"
6901
- msgstr ""
6902
-
6903
- #: ../lib/puppet/provider/package/apt.rb:189 ../lib/puppet/provider/package/fink.rb:55
6333
+ #: ../lib/puppet/provider/package/apt.rb:163 ../lib/puppet/provider/package/fink.rb:55
6904
6334
  msgid "Could not find latest version"
6905
6335
  msgstr ""
6906
6336
 
6907
- #: ../lib/puppet/provider/package/apt.rb:200 ../lib/puppet/provider/package/fink.rb:66
6337
+ #: ../lib/puppet/provider/package/apt.rb:174 ../lib/puppet/provider/package/fink.rb:66
6908
6338
  msgid "Preseeding %{response} to debconf-set-selections"
6909
6339
  msgstr ""
6910
6340
 
6911
- #: ../lib/puppet/provider/package/apt.rb:204 ../lib/puppet/provider/package/fink.rb:70
6341
+ #: ../lib/puppet/provider/package/apt.rb:178 ../lib/puppet/provider/package/fink.rb:70
6912
6342
  msgid "No responsefile specified or non existent, not preseeding anything"
6913
6343
  msgstr ""
6914
6344
 
6345
+ #: ../lib/puppet/provider/package/aptitude.rb:21 ../lib/puppet/provider/package/ports.rb:20 ../lib/puppet/provider/package/portupgrade.rb:94 ../lib/puppet/provider/package/portupgrade.rb:152 ../lib/puppet/provider/package/rug.rb:28 ../lib/puppet/provider/package/up2date.rb:17 ../lib/puppet/provider/package/yum.rb:312 ../lib/puppet/provider/package/zypper.rb:146
6346
+ msgid "Could not find package %{name}"
6347
+ msgstr ""
6348
+
6915
6349
  #: ../lib/puppet/provider/package/aptrpm.rb:53
6916
6350
  msgid "Could not match version '%{version}'"
6917
6351
  msgstr ""
@@ -6956,27 +6390,27 @@ msgstr ""
6956
6390
  msgid "source is defined but does not have trailing slash, ignoring %{source}"
6957
6391
  msgstr ""
6958
6392
 
6959
- #: ../lib/puppet/provider/package/gem.rb:102 ../lib/puppet/provider/package/puppetserver_gem.rb:61
6393
+ #: ../lib/puppet/provider/package/gem.rb:122 ../lib/puppet/provider/package/puppetserver_gem.rb:61
6960
6394
  msgid "Could not list gems: %{detail}"
6961
6395
  msgstr ""
6962
6396
 
6963
- #: ../lib/puppet/provider/package/gem.rb:128
6397
+ #: ../lib/puppet/provider/package/gem.rb:148
6964
6398
  msgid "Could not match %{desc}"
6965
6399
  msgstr ""
6966
6400
 
6967
- #: ../lib/puppet/provider/package/gem.rb:206 ../lib/puppet/provider/package/puppetserver_gem.rb:93
6401
+ #: ../lib/puppet/provider/package/gem.rb:226 ../lib/puppet/provider/package/puppetserver_gem.rb:93
6968
6402
  msgid "Invalid source '%{uri}': %{detail}"
6969
6403
  msgstr ""
6970
6404
 
6971
- #: ../lib/puppet/provider/package/gem.rb:217 ../lib/puppet/provider/package/puppetserver_gem.rb:104
6405
+ #: ../lib/puppet/provider/package/gem.rb:237 ../lib/puppet/provider/package/puppetserver_gem.rb:104
6972
6406
  msgid "puppet:// URLs are not supported as gem sources"
6973
6407
  msgstr ""
6974
6408
 
6975
- #: ../lib/puppet/provider/package/gem.rb:233 ../lib/puppet/provider/package/puppetserver_gem.rb:115
6409
+ #: ../lib/puppet/provider/package/gem.rb:253 ../lib/puppet/provider/package/puppetserver_gem.rb:115
6976
6410
  msgid "Could not install: %{output}"
6977
6411
  msgstr ""
6978
6412
 
6979
- #: ../lib/puppet/provider/package/gem.rb:259 ../lib/puppet/provider/package/puppetserver_gem.rb:125
6413
+ #: ../lib/puppet/provider/package/gem.rb:279 ../lib/puppet/provider/package/puppetserver_gem.rb:125
6980
6414
  msgid "Could not uninstall: %{output}"
6981
6415
  msgstr ""
6982
6416
 
@@ -7086,7 +6520,7 @@ msgstr ""
7086
6520
  msgid "Refusing to install package group %{resource_name}, because allow_virtual is false."
7087
6521
  msgstr ""
7088
6522
 
7089
- #: ../lib/puppet/provider/package/pip.rb:58
6523
+ #: ../lib/puppet/provider/package/pip.rb:57
7090
6524
  msgid "Cannot resolve pip version"
7091
6525
  msgstr ""
7092
6526
 
@@ -7102,27 +6536,27 @@ msgstr ""
7102
6536
  msgid "Unknown line format %{resource_name}: %{parse_line}"
7103
6537
  msgstr ""
7104
6538
 
7105
- #: ../lib/puppet/provider/package/pkg.rb:127
6539
+ #: ../lib/puppet/provider/package/pkg.rb:123
7106
6540
  msgid "Unable to unfreeze %{package}"
7107
6541
  msgstr ""
7108
6542
 
7109
- #: ../lib/puppet/provider/package/pkg.rb:162
6543
+ #: ../lib/puppet/provider/package/pkg.rb:158
7110
6544
  msgid "Implicit version %{should} has %{n} possible matches"
7111
6545
  msgstr ""
7112
6546
 
7113
- #: ../lib/puppet/provider/package/pkg.rb:174
6547
+ #: ../lib/puppet/provider/package/pkg.rb:170
7114
6548
  msgid "Selecting version '%{version}' for implicit '%{should}'"
7115
6549
  msgstr ""
7116
6550
 
7117
- #: ../lib/puppet/provider/package/pkg.rb:179
6551
+ #: ../lib/puppet/provider/package/pkg.rb:175
7118
6552
  msgid "No version of %{name} matching %{should} is installable, even though the package is currently installed"
7119
6553
  msgstr ""
7120
6554
 
7121
- #: ../lib/puppet/provider/package/pkg.rb:198
6555
+ #: ../lib/puppet/provider/package/pkg.rb:194
7122
6556
  msgid "pkg warning: %{warnings}"
7123
6557
  msgstr ""
7124
6558
 
7125
- #: ../lib/puppet/provider/package/pkg.rb:242 ../lib/puppet/provider/package/pkg.rb:268
6559
+ #: ../lib/puppet/provider/package/pkg.rb:238 ../lib/puppet/provider/package/pkg.rb:264
7126
6560
  msgid "Unable to update %{package}"
7127
6561
  msgstr ""
7128
6562
 
@@ -7247,6 +6681,10 @@ msgstr ""
7247
6681
  msgid "Could not find package %{wanted}"
7248
6682
  msgstr ""
7249
6683
 
6684
+ #: ../lib/puppet/provider/package/yum.rb:317
6685
+ msgid "Failed to update to version %{should}, got version %{version} instead"
6686
+ msgstr ""
6687
+
7250
6688
  #: ../lib/puppet/provider/package_targetable.rb:56
7251
6689
  msgid "Provider %{name} package command is not functional on this host"
7252
6690
  msgstr ""
@@ -7305,15 +6743,15 @@ msgstr ""
7305
6743
  msgid "Waiting 5 seconds for runsvdir to discover service %{service}"
7306
6744
  msgstr ""
7307
6745
 
7308
- #: ../lib/puppet/provider/service/smf.rb:68
6746
+ #: ../lib/puppet/provider/service/smf.rb:120
7309
6747
  msgid "Failed to get the FMRI of the %{service} service: The pattern '%{service}' matches multiple FMRIs! These are the FMRIs it matches: %{all_fmris}"
7310
6748
  msgstr ""
7311
6749
 
7312
- #: ../lib/puppet/provider/service/smf.rb:83
6750
+ #: ../lib/puppet/provider/service/smf.rb:135
7313
6751
  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."
7314
6752
  msgstr ""
7315
6753
 
7316
- #: ../lib/puppet/provider/service/smf.rb:182
6754
+ #: ../lib/puppet/provider/service/smf.rb:221
7317
6755
  msgid "The %{service} service is incomplete so its status will be reported as :stopped. See `svcs -xv %{fmri}` for more details."
7318
6756
  msgstr ""
7319
6757
 
@@ -7438,142 +6876,90 @@ msgstr ""
7438
6876
  msgid "Invalid node name %{host}"
7439
6877
  msgstr ""
7440
6878
 
7441
- #: ../lib/puppet/resource.rb:48
6879
+ #: ../lib/puppet/resource.rb:47
7442
6880
  msgid "No resource type provided in serialized data"
7443
6881
  msgstr ""
7444
6882
 
7445
- #: ../lib/puppet/resource.rb:50
6883
+ #: ../lib/puppet/resource.rb:49
7446
6884
  msgid "No resource title provided in serialized data"
7447
6885
  msgstr ""
7448
6886
 
7449
6887
  #. TRANSLATORS 'Puppet::Resource.new' should not be translated
7450
- #: ../lib/puppet/resource.rb:277
6888
+ #: ../lib/puppet/resource.rb:276
7451
6889
  msgid "Puppet::Resource.new does not take a hash as the first argument."
7452
6890
  msgstr ""
7453
6891
 
7454
- #: ../lib/puppet/resource.rb:278
6892
+ #: ../lib/puppet/resource.rb:277
7455
6893
  msgid "Did you mean (%{type}, %{title}) ?"
7456
6894
  msgstr ""
7457
6895
 
7458
- #: ../lib/puppet/resource.rb:315
6896
+ #: ../lib/puppet/resource.rb:314
7459
6897
  msgid "Could not find declared class %{title}"
7460
6898
  msgstr ""
7461
6899
 
7462
- #: ../lib/puppet/resource.rb:317
6900
+ #: ../lib/puppet/resource.rb:316
7463
6901
  msgid "Invalid resource type %{type}"
7464
6902
  msgstr ""
7465
6903
 
7466
- #: ../lib/puppet/resource.rb:521
7467
- msgid "The method Puppet::Resource.set_default_parameters is deprecated and will be removed in the next major release of Puppet."
7468
- msgstr ""
7469
-
7470
- #: ../lib/puppet/resource.rb:526
7471
- msgid "Cannot evaluate default parameters for %{resource} - not a parser resource"
7472
- msgstr ""
7473
-
7474
- #: ../lib/puppet/resource.rb:566
7475
- msgid "The method Puppet::Resource.validate_complete is deprecated and will be removed in the next major release of Puppet."
7476
- msgstr ""
7477
-
7478
- #: ../lib/puppet/resource.rb:572
7479
- msgid "Must pass %{param} to %{resource}"
7480
- msgstr ""
7481
-
7482
- #: ../lib/puppet/resource.rb:584
7483
- msgid "Expected parameter '%{name}' of '%{value0}' to have type %{value1}, got %{value2}"
7484
- msgstr ""
7485
-
7486
- #: ../lib/puppet/resource.rb:590
6904
+ #: ../lib/puppet/resource.rb:502
7487
6905
  msgid "no parameter named '%{name}'"
7488
6906
  msgstr ""
7489
6907
 
7490
- #: ../lib/puppet/resource.rb:635
6908
+ #: ../lib/puppet/resource.rb:547
7491
6909
  msgid "No title provided and %{type} is not a valid resource reference"
7492
6910
  msgstr ""
7493
6911
 
7494
- #: ../lib/puppet/resource.rb:709
6912
+ #: ../lib/puppet/resource.rb:621
7495
6913
  msgid "No set of title patterns matched the title \"%{title}\"."
7496
6914
  msgstr ""
7497
6915
 
7498
- #: ../lib/puppet/resource/capability_finder.rb:27
7499
- msgid "PuppetDB is not available"
7500
- msgstr ""
7501
-
7502
- #: ../lib/puppet/resource/capability_finder.rb:47
7503
- msgid "Unexpected response from PuppetDB when looking up %{capability}:"
7504
- msgstr ""
7505
-
7506
- #: ../lib/puppet/resource/capability_finder.rb:48
7507
- msgid "expected exactly one resource but got %{count};"
7508
- msgstr ""
7509
-
7510
- #: ../lib/puppet/resource/capability_finder.rb:49
7511
- msgid ""
7512
- "returned data is:\n"
7513
- "%{resources}"
7514
- msgstr ""
7515
-
7516
- #: ../lib/puppet/resource/capability_finder.rb:81
7517
- msgid "Looking up capability %{capability} in PuppetDB: %{query_terms}"
7518
- msgstr ""
7519
-
7520
- #: ../lib/puppet/resource/capability_finder.rb:105
7521
- msgid "Unexpected response from PuppetDB when looking up %{capability}: expected an Array but got %{result}"
7522
- msgstr ""
7523
-
7524
- #: ../lib/puppet/resource/capability_finder.rb:112
7525
- msgid ""
7526
- "Invalid JSON from PuppetDB when looking up %{capability}\n"
7527
- "%{detail}"
7528
- msgstr ""
7529
-
7530
- #: ../lib/puppet/resource/catalog.rb:104
6916
+ #: ../lib/puppet/resource/catalog.rb:102
7531
6917
  msgid "Cannot add resource %{resource_1} before %{resource_2} because %{resource_2} is not yet in the catalog"
7532
6918
  msgstr ""
7533
6919
 
7534
- #: ../lib/puppet/resource/catalog.rb:119
6920
+ #: ../lib/puppet/resource/catalog.rb:117
7535
6921
  msgid "Cannot add resource %{resource_1} after %{resource_2} because %{resource_2} is not yet in the catalog"
7536
6922
  msgstr ""
7537
6923
 
7538
6924
  #. TRANSLATORS 'alias' should not be translated
7539
- #: ../lib/puppet/resource/catalog.rb:206
6925
+ #: ../lib/puppet/resource/catalog.rb:204
7540
6926
  msgid "Cannot alias %{resource} to %{key}; resource %{newref} already declared"
7541
6927
  msgstr ""
7542
6928
 
7543
6929
  #. TRANSLATORS 'alias' should not be translated
7544
- #: ../lib/puppet/resource/catalog.rb:210
6930
+ #: ../lib/puppet/resource/catalog.rb:208
7545
6931
  msgid "Cannot alias %{resource} to %{key} at %{resource_declaration}; resource %{newref} already declared"
7546
6932
  msgstr ""
7547
6933
 
7548
- #: ../lib/puppet/resource/catalog.rb:292
6934
+ #: ../lib/puppet/resource/catalog.rb:290
7549
6935
  msgid "Unknown resource type %{type}"
7550
6936
  msgstr ""
7551
6937
 
7552
- #: ../lib/puppet/resource/catalog.rb:446
6938
+ #: ../lib/puppet/resource/catalog.rb:433
7553
6939
  msgid "Could not intern from data: Could not find relationship source %{source} for %{target}"
7554
6940
  msgstr ""
7555
6941
 
7556
- #: ../lib/puppet/resource/catalog.rb:453
6942
+ #: ../lib/puppet/resource/catalog.rb:440
7557
6943
  msgid "Could not intern from data: Could not find relationship target %{target} for %{source}"
7558
6944
  msgstr ""
7559
6945
 
7560
- #: ../lib/puppet/resource/catalog.rb:543
6946
+ #: ../lib/puppet/resource/catalog.rb:530
7561
6947
  msgid "Could not create class file %{file}: %{detail}"
7562
6948
  msgstr ""
7563
6949
 
7564
- #: ../lib/puppet/resource/catalog.rb:559
6950
+ #: ../lib/puppet/resource/catalog.rb:546
7565
6951
  msgid "Could not create resource file %{file}: %{detail}"
7566
6952
  msgstr ""
7567
6953
 
7568
- #: ../lib/puppet/resource/catalog.rb:594
6954
+ #: ../lib/puppet/resource/catalog.rb:581
7569
6955
  msgid "Duplicate declaration: %{resource} is already declared; cannot redeclare"
7570
6956
  msgstr ""
7571
6957
 
7572
- #: ../lib/puppet/resource/catalog.rb:596
6958
+ #: ../lib/puppet/resource/catalog.rb:583
7573
6959
  msgid "Duplicate declaration: %{resource} is already declared at %{error_location}; cannot redeclare"
7574
6960
  msgstr ""
7575
6961
 
7576
- #: ../lib/puppet/resource/catalog.rb:645 ../lib/puppet/resource/catalog.rb:650
6962
+ #: ../lib/puppet/resource/catalog.rb:632 ../lib/puppet/resource/catalog.rb:637
7577
6963
  msgid "Could not find resource %{resource} when converting %{message} resources"
7578
6964
  msgstr ""
7579
6965
 
@@ -7581,201 +6967,145 @@ msgstr ""
7581
6967
  msgid "Could not evaluate: %{detail}"
7582
6968
  msgstr ""
7583
6969
 
7584
- #: ../lib/puppet/resource/type.rb:82
7585
- msgid "Invalid export in %{reference}: %{ex} is not a resource"
7586
- msgstr ""
7587
-
7588
- #: ../lib/puppet/resource/type.rb:83
7589
- msgid "Invalid export in %{reference}: %{ex} is not a capability resource"
7590
- msgstr ""
7591
-
7592
6970
  #: ../lib/puppet/resource/type.rb:87
7593
- msgid "Resource type %{res_type} does not produce %{ex_type}"
7594
- msgstr ""
7595
-
7596
- #: ../lib/puppet/resource/type.rb:148
7597
6971
  msgid "Invalid resource supertype '%{type}'"
7598
6972
  msgstr ""
7599
6973
 
7600
- #: ../lib/puppet/resource/type.rb:200
6974
+ #: ../lib/puppet/resource/type.rb:117
7601
6975
  msgid "%{name} is not a class; cannot add code to it"
7602
6976
  msgstr ""
7603
6977
 
7604
- #: ../lib/puppet/resource/type.rb:201
6978
+ #: ../lib/puppet/resource/type.rb:118
7605
6979
  msgid "%{name} is not a class; cannot add code from it"
7606
6980
  msgstr ""
7607
6981
 
7608
- #: ../lib/puppet/resource/type.rb:205
6982
+ #: ../lib/puppet/resource/type.rb:122
7609
6983
  msgid "Cannot have code outside of a class/node/define because 'freeze_main' is enabled"
7610
6984
  msgstr ""
7611
6985
 
7612
- #: ../lib/puppet/resource/type.rb:209
6986
+ #: ../lib/puppet/resource/type.rb:126
7613
6987
  msgid "Cannot merge classes with different parent classes (%{name} => %{parent} vs. %{other_name} => %{other_parent})"
7614
6988
  msgstr ""
7615
6989
 
7616
- #: ../lib/puppet/resource/type.rb:240
6990
+ #: ../lib/puppet/resource/type.rb:157
7617
6991
  msgid "Cannot create resources for defined resource types"
7618
6992
  msgstr ""
7619
6993
 
7620
- #: ../lib/puppet/resource/type.rb:295
7621
- msgid "The method Puppet::Resource::Type.assign_parameter_values is deprecated and will be removed in the next major release of Puppet."
7622
- msgstr ""
7623
-
7624
- #: ../lib/puppet/resource/type.rb:311
6994
+ #: ../lib/puppet/resource/type.rb:210
7625
6995
  msgid "Could not find parent resource type '%{parent}' of type %{parent_type} in %{env}"
7626
6996
  msgstr ""
7627
6997
 
7628
- #: ../lib/puppet/resource/type.rb:438
6998
+ #: ../lib/puppet/resource/type.rb:336
7629
6999
  msgid "Parameter '%{name}' is given a type, but is not a valid parameter."
7630
7000
  msgstr ""
7631
7001
 
7632
- #: ../lib/puppet/resource/type.rb:441
7002
+ #: ../lib/puppet/resource/type.rb:339
7633
7003
  msgid "Parameter '%{name}' is given a type that is not a Puppet Type, got %{class_name}"
7634
7004
  msgstr ""
7635
7005
 
7636
- #: ../lib/puppet/resource/type.rb:483
7006
+ #: ../lib/puppet/resource/type.rb:373
7637
7007
  msgid "Could not find scope for %{class_name}"
7638
7008
  msgstr ""
7639
7009
 
7640
- #: ../lib/puppet/resource/type.rb:504
7010
+ #: ../lib/puppet/resource/type.rb:394
7641
7011
  msgid "%{param} is a metaparam; this value will inherit to all contained resources in the %{name} definition"
7642
7012
  msgstr ""
7643
7013
 
7644
- #: ../lib/puppet/resource/type.rb:506
7014
+ #: ../lib/puppet/resource/type.rb:396
7645
7015
  msgid "%{param} is a metaparameter; please choose another parameter name in the %{name} definition"
7646
7016
  msgstr ""
7647
7017
 
7648
- #: ../lib/puppet/resource/type_collection.rb:72
7018
+ #: ../lib/puppet/resource/type_collection.rb:63
7649
7019
  msgid "Class '%{klass}' is already defined%{error}; cannot redefine"
7650
7020
  msgstr ""
7651
7021
 
7652
- #: ../lib/puppet/resource/type_collection.rb:73
7022
+ #: ../lib/puppet/resource/type_collection.rb:64
7653
7023
  msgid "Definition '%{klass}' is already defined%{error}; cannot be redefined as a class"
7654
7024
  msgstr ""
7655
7025
 
7656
- #: ../lib/puppet/resource/type_collection.rb:74
7657
- msgid "Application '%{klass}' is already defined%{error}; cannot be redefined as a class"
7658
- msgstr ""
7659
-
7660
- #: ../lib/puppet/resource/type_collection.rb:105
7026
+ #: ../lib/puppet/resource/type_collection.rb:95
7661
7027
  msgid "Node '%{name}' is already defined%{error}; cannot redefine"
7662
7028
  msgstr ""
7663
7029
 
7664
- #: ../lib/puppet/resource/type_collection.rb:113
7665
- msgid "Site is already defined%{error}; cannot redefine"
7666
- msgstr ""
7667
-
7668
- #: ../lib/puppet/resource/type_collection.rb:150
7030
+ #: ../lib/puppet/resource/type_collection.rb:130
7669
7031
  msgid "'%{name}' is already defined%{error} as a class; cannot redefine as a definition"
7670
7032
  msgstr ""
7671
7033
 
7672
- #: ../lib/puppet/resource/type_collection.rb:151
7034
+ #: ../lib/puppet/resource/type_collection.rb:131
7673
7035
  msgid "Definition '%{name}' is already defined%{error}; cannot be redefined"
7674
7036
  msgstr ""
7675
7037
 
7676
- #: ../lib/puppet/resource/type_collection.rb:152 ../lib/puppet/resource/type_collection.rb:168
7677
- msgid "'%{name}' is already defined%{error} as an application; cannot be redefined"
7678
- msgstr ""
7679
-
7680
- #: ../lib/puppet/resource/type_collection.rb:157
7681
- msgid "'%{name}' is already defined%{error} as a class; cannot redefine as a mapping"
7682
- msgstr ""
7683
-
7684
- #: ../lib/puppet/resource/type_collection.rb:166
7685
- msgid "'%{name}' is already defined%{error} as a class; cannot redefine as an application"
7686
- msgstr ""
7687
-
7688
- #: ../lib/puppet/resource/type_collection.rb:167
7689
- msgid "'%{name}' is already defined%{error} as a definition; cannot redefine as an application"
7690
- msgstr ""
7691
-
7692
- #: ../lib/puppet/resource/type_collection.rb:220
7038
+ #: ../lib/puppet/resource/type_collection.rb:175
7693
7039
  msgid "Execution of config_version command `%{cmd}` failed: %{message}"
7694
7040
  msgstr ""
7695
7041
 
7696
- #: ../lib/puppet/resource/type_collection.rb:241
7042
+ #: ../lib/puppet/resource/type_collection.rb:196
7697
7043
  msgid "Not attempting to load %{type} %{fqname} as this object was missing during a prior compilation"
7698
7044
  msgstr ""
7699
7045
 
7700
- #: ../lib/puppet/rest/route.rb:47
7701
- msgid "Connection to cached server and port %{server}:%{port} failed: %{message}"
7702
- msgstr ""
7703
-
7704
- #: ../lib/puppet/rest/routes.rb:46
7705
- msgid "Downloaded certificate for %{name} from %{server}"
7706
- msgstr ""
7707
-
7708
- #: ../lib/puppet/rest/routes.rb:76
7709
- msgid "Downloaded certificate revocation list for %{name} from %{server}"
7710
- msgstr ""
7711
-
7712
- #: ../lib/puppet/rest/routes.rb:129
7713
- msgid "Downloaded existing certificate request for %{name} from %{server}"
7714
- msgstr ""
7715
-
7716
- #: ../lib/puppet/settings.rb:99
7046
+ #: ../lib/puppet/settings.rb:101
7717
7047
  msgid "New environment loaders generated from the requested section."
7718
7048
  msgstr ""
7719
7049
 
7720
- #: ../lib/puppet/settings.rb:301
7050
+ #: ../lib/puppet/settings.rb:303
7721
7051
  msgid "Attempting to initialize global default settings more than once!"
7722
7052
  msgstr ""
7723
7053
 
7724
- #: ../lib/puppet/settings.rb:501
7054
+ #: ../lib/puppet/settings.rb:516
7725
7055
  msgid "Using --configprint is deprecated. Use 'puppet config <subcommand>' instead."
7726
7056
  msgstr ""
7727
7057
 
7728
- #: ../lib/puppet/settings.rb:643
7058
+ #: ../lib/puppet/settings.rb:658
7729
7059
  msgid "Could not load %{file}: %{detail}"
7730
7060
  msgstr ""
7731
7061
 
7732
- #: ../lib/puppet/settings.rb:750
7062
+ #: ../lib/puppet/settings.rb:766
7733
7063
  msgid "Invalid setting type '%{type}'"
7734
7064
  msgstr ""
7735
7065
 
7736
- #: ../lib/puppet/settings.rb:905
7066
+ #: ../lib/puppet/settings.rb:921
7737
7067
  msgid "Unknown searchpath case: %{source_type} for the %{source} settings path element."
7738
7068
  msgstr ""
7739
7069
 
7740
- #: ../lib/puppet/settings.rb:978
7070
+ #: ../lib/puppet/settings.rb:994
7741
7071
  msgid "setting definition for '%{name}' is not a hash!"
7742
7072
  msgstr ""
7743
7073
 
7744
- #: ../lib/puppet/settings.rb:983
7074
+ #: ../lib/puppet/settings.rb:999
7745
7075
  msgid "Setting %{name} is already defined"
7746
7076
  msgstr ""
7747
7077
 
7748
- #: ../lib/puppet/settings.rb:989
7078
+ #: ../lib/puppet/settings.rb:1005
7749
7079
  msgid "Setting %{name} is already using short name '%{short}'"
7750
7080
  msgstr ""
7751
7081
 
7752
- #: ../lib/puppet/settings.rb:1253
7082
+ #: ../lib/puppet/settings.rb:1276
7753
7083
  msgid "Setting %{name} is deprecated."
7754
7084
  msgstr ""
7755
7085
 
7756
7086
  #. TRANSLATORS 'puppet.conf' is a file name and should not be translated
7757
- #: ../lib/puppet/settings.rb:1258
7087
+ #: ../lib/puppet/settings.rb:1281
7758
7088
  msgid "Setting %{name} is deprecated in puppet.conf."
7759
7089
  msgstr ""
7760
7090
 
7761
- #: ../lib/puppet/settings.rb:1445
7091
+ #: ../lib/puppet/settings.rb:1452
7762
7092
  msgid "Error converting value for param '%{name}': %{detail}"
7763
7093
  msgstr ""
7764
7094
 
7765
- #: ../lib/puppet/settings.rb:1469
7095
+ #: ../lib/puppet/settings.rb:1476
7766
7096
  msgid "Could not find value for %{expression}"
7767
7097
  msgstr ""
7768
7098
 
7769
7099
  #. TRANSLATORS '$environment' is a Puppet specific variable and should not be translated
7770
- #: ../lib/puppet/settings.rb:1479
7100
+ #: ../lib/puppet/settings.rb:1486
7771
7101
  msgid "You cannot interpolate $environment within '%{setting_name}' when using directory environments."
7772
7102
  msgstr ""
7773
7103
 
7774
- #: ../lib/puppet/settings.rb:1480
7104
+ #: ../lib/puppet/settings.rb:1487
7775
7105
  msgid "Its value will remain %{value}."
7776
7106
  msgstr ""
7777
7107
 
7778
- #: ../lib/puppet/settings.rb:1511
7108
+ #: ../lib/puppet/settings.rb:1518
7779
7109
  msgid "Attempt to assign a value to unknown setting %{name}"
7780
7110
  msgstr ""
7781
7111
 
@@ -7869,19 +7199,19 @@ msgid "Invalid duration format '%{value}' for parameter: %{name}"
7869
7199
  msgstr ""
7870
7200
 
7871
7201
  #. TRANSLATORS 'disable_per_environment_manifest' is a setting and 'environment.conf' is a file name and should not be translated
7872
- #: ../lib/puppet/settings/environment_conf.rb:70
7202
+ #: ../lib/puppet/settings/environment_conf.rb:69
7873
7203
  msgid "The 'disable_per_environment_manifest' setting is true, but the environment located at %{path_to_env} has a manifest setting in its environment.conf of '%{environment_conf}' which does not match the default_manifest setting '%{puppet_conf}'."
7874
7204
  msgstr ""
7875
7205
 
7876
- #: ../lib/puppet/settings/environment_conf.rb:72
7206
+ #: ../lib/puppet/settings/environment_conf.rb:71
7877
7207
  msgid "If this environment is expecting to find modules in '%{environment_conf}', they will not be available!"
7878
7208
  msgstr ""
7879
7209
 
7880
- #: ../lib/puppet/settings/environment_conf.rb:142
7210
+ #: ../lib/puppet/settings/environment_conf.rb:141
7881
7211
  msgid "Invalid sections in environment.conf at '%{path_to_conf_file}'. Environment conf may not have sections. The following sections are being ignored: '%{sections}'"
7882
7212
  msgstr ""
7883
7213
 
7884
- #: ../lib/puppet/settings/environment_conf.rb:154
7214
+ #: ../lib/puppet/settings/environment_conf.rb:153
7885
7215
  msgid "Invalid settings in environment.conf at '%{path_to_conf_file}'. The following unknown setting(s) are being ignored: %{ignored_settings}"
7886
7216
  msgstr ""
7887
7217
 
@@ -7897,7 +7227,15 @@ msgstr ""
7897
7227
  msgid "Expected an Array, String, or Hash, got a %{klass}"
7898
7228
  msgstr ""
7899
7229
 
7900
- #: ../lib/puppet/settings/priority_setting.rb:39
7230
+ #: ../lib/puppet/settings/integer_setting.rb:8
7231
+ msgid "Cannot convert '%{value}' to an integer for parameter: %{name}"
7232
+ msgstr ""
7233
+
7234
+ #: ../lib/puppet/settings/port_setting.rb:6
7235
+ msgid "Value '%{value}' is not a valid port number for parameter: %{name}"
7236
+ msgstr ""
7237
+
7238
+ #: ../lib/puppet/settings/priority_setting.rb:40
7901
7239
  msgid "Invalid priority format '%{value}' for parameter: %{name}"
7902
7240
  msgstr ""
7903
7241
 
@@ -7917,83 +7255,83 @@ msgstr ""
7917
7255
  msgid "Invalid 'time to live' format '%{value}' for parameter: %{param_name}"
7918
7256
  msgstr ""
7919
7257
 
7920
- #: ../lib/puppet/ssl/base.rb:27
7258
+ #: ../lib/puppet/ssl/base.rb:26
7921
7259
  msgid "%{name} has not declared what class it wraps"
7922
7260
  msgstr ""
7923
7261
 
7924
- #: ../lib/puppet/ssl/base.rb:32 ../lib/puppet/x509/cert_provider.rb:342
7262
+ #: ../lib/puppet/ssl/base.rb:31 ../lib/puppet/x509/cert_provider.rb:370
7925
7263
  msgid "Certname %{name} must not contain unprintable or non-ASCII characters"
7926
7264
  msgstr ""
7927
7265
 
7928
- #: ../lib/puppet/ssl/base.rb:38
7266
+ #: ../lib/puppet/ssl/base.rb:37
7929
7267
  msgid "%{class_name} did not override 'generate'"
7930
7268
  msgstr ""
7931
7269
 
7932
- #: ../lib/puppet/ssl/base.rb:63
7270
+ #: ../lib/puppet/ssl/base.rb:64
7933
7271
  msgid "Object must be an instance of %{class_name}, %{actual_class} given"
7934
7272
  msgstr ""
7935
7273
 
7936
- #: ../lib/puppet/ssl/base.rb:67
7274
+ #: ../lib/puppet/ssl/base.rb:68
7937
7275
  msgid "Name must be supplied if it cannot be determined from the instance"
7938
7276
  msgstr ""
7939
7277
 
7940
- #: ../lib/puppet/ssl/base.rb:142
7278
+ #: ../lib/puppet/ssl/base.rb:140
7941
7279
  msgid "Unknown signature algorithm '%{ln}'"
7942
7280
  msgstr ""
7943
7281
 
7944
- #: ../lib/puppet/ssl/certificate_request.rb:65
7282
+ #: ../lib/puppet/ssl/certificate_request.rb:57
7945
7283
  msgid "Creating a new SSL certificate request for %{name}"
7946
7284
  msgstr ""
7947
7285
 
7948
- #: ../lib/puppet/ssl/certificate_request.rb:101
7286
+ #: ../lib/puppet/ssl/certificate_request.rb:90
7949
7287
  msgid "CSR sign verification failed; you need to clean the certificate request for %{name} on the server"
7950
7288
  msgstr ""
7951
7289
 
7952
- #: ../lib/puppet/ssl/certificate_request.rb:107
7290
+ #: ../lib/puppet/ssl/certificate_request.rb:96
7953
7291
  msgid "Certificate Request fingerprint (%{digest}): %{hex_digest}"
7954
7292
  msgstr ""
7955
7293
 
7956
- #: ../lib/puppet/ssl/certificate_request.rb:151
7294
+ #: ../lib/puppet/ssl/certificate_request.rb:140
7957
7295
  msgid "CSR needs content to extract fields"
7958
7296
  msgstr ""
7959
7297
 
7960
- #: ../lib/puppet/ssl/certificate_request.rb:178
7298
+ #: ../lib/puppet/ssl/certificate_request.rb:167
7961
7299
  msgid "In %{attr}, expected extension record %{index} to have two or three items, but found %{count}"
7962
7300
  msgstr ""
7963
7301
 
7964
- #: ../lib/puppet/ssl/certificate_request.rb:229
7302
+ #: ../lib/puppet/ssl/certificate_request.rb:218
7965
7303
  msgid "Cannot specify CSR attribute %{oid}: conflicts with internally used CSR attribute"
7966
7304
  msgstr ""
7967
7305
 
7968
- #: ../lib/puppet/ssl/certificate_request.rb:238
7306
+ #: ../lib/puppet/ssl/certificate_request.rb:227
7969
7307
  msgid "Cannot create CSR with attribute %{oid}: %{message}"
7970
7308
  msgstr ""
7971
7309
 
7972
- #: ../lib/puppet/ssl/certificate_request.rb:255
7310
+ #: ../lib/puppet/ssl/certificate_request.rb:244
7973
7311
  msgid "Cannot specify CSR extension request %{oid}: conflicts with internally used extension request"
7974
7312
  msgstr ""
7975
7313
 
7976
- #: ../lib/puppet/ssl/certificate_request.rb:261
7314
+ #: ../lib/puppet/ssl/certificate_request.rb:250
7977
7315
  msgid "Cannot create CSR with extension request %{oid}: %{message}"
7978
7316
  msgstr ""
7979
7317
 
7980
- #: ../lib/puppet/ssl/certificate_request.rb:312
7318
+ #: ../lib/puppet/ssl/certificate_request.rb:301
7981
7319
  msgid "In %{attr}, expected Set but found %{klass}"
7982
7320
  msgstr ""
7983
7321
 
7984
- #: ../lib/puppet/ssl/certificate_request.rb:316
7322
+ #: ../lib/puppet/ssl/certificate_request.rb:305
7985
7323
  msgid "In %{attr}, expected Set[Array] but found %{klass}"
7986
7324
  msgstr ""
7987
7325
 
7988
- #: ../lib/puppet/ssl/certificate_request.rb:320
7326
+ #: ../lib/puppet/ssl/certificate_request.rb:309
7989
7327
  msgid "In %{attr}, expected Set[Array] with one value but found %{count} elements"
7990
7328
  msgstr ""
7991
7329
 
7992
- #: ../lib/puppet/ssl/certificate_request.rb:324
7330
+ #: ../lib/puppet/ssl/certificate_request.rb:313
7993
7331
  msgid "In %{attr}, expected Set[Array[Sequence[...]]], but found %{klass}"
7994
7332
  msgstr ""
7995
7333
 
7996
- #: ../lib/puppet/ssl/certificate_request.rb:328
7334
+ #: ../lib/puppet/ssl/certificate_request.rb:317
7997
7335
  msgid "In %{attr}, expected Set[Array[Sequence[Array[...]]]], but found %{klass}"
7998
7336
  msgstr ""
7999
7337
 
@@ -8021,195 +7359,107 @@ msgstr ""
8021
7359
  msgid "Server hostname '%{host}' did not match server certificate; %{expected_certnames}"
8022
7360
  msgstr ""
8023
7361
 
8024
- #: ../lib/puppet/ssl/host.rb:154
8025
- msgid "No certificate to validate."
8026
- msgstr ""
8027
-
8028
- #: ../lib/puppet/ssl/host.rb:155
8029
- msgid "No private key with which to validate certificate with fingerprint: %{fingerprint}"
8030
- msgstr ""
8031
-
8032
- #: ../lib/puppet/ssl/host.rb:157
8033
- msgid ""
8034
- "The certificate retrieved from the master does not match the agent's private key. Did you forget to run as root?\n"
8035
- "Certificate fingerprint: %{fingerprint}\n"
8036
- "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"
8037
- "On the master:\n"
8038
- " puppetserver ca clean --certname %{cert_name}\n"
8039
- "On the agent:\n"
8040
- " 1. puppet ssl clean %{clean_params}\n"
8041
- " 2. puppet %{puppet_params}\n"
8042
- msgstr ""
8043
-
8044
- #: ../lib/puppet/ssl/host.rb:212
8045
- msgid ""
8046
- "The CSR retrieved from the master does not match the agent's public key.\n"
8047
- "CSR fingerprint: %{fingerprint}\n"
8048
- "CSR public key: %{csr_public_key}\n"
8049
- "Agent public key: %{agent_public_key}\n"
8050
- "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"
8051
- "On the master:\n"
8052
- " puppetserver ca clean --certname %{cert_name}\n"
8053
- "On the agent:\n"
8054
- " 1. puppet ssl clean %{clean_params}\n"
8055
- " 2. puppet %{puppet_params}\n"
8056
- msgstr ""
8057
-
8058
- #: ../lib/puppet/ssl/host.rb:235
8059
- msgid "Puppet::SSL::Host is deprecated and will be removed in a future release of Puppet."
8060
- msgstr ""
8061
-
8062
- #: ../lib/puppet/ssl/host.rb:267 ../lib/puppet/ssl/host.rb:288
8063
- msgid "Could not request certificate: %{message}"
8064
- msgstr ""
8065
-
8066
- #: ../lib/puppet/ssl/host.rb:269
8067
- msgid "Exiting; failed to retrieve certificate and waitforcert is disabled"
8068
- msgstr ""
8069
-
8070
- #: ../lib/puppet/ssl/host.rb:278
8071
- msgid "Exiting; no certificate found and waitforcert is disabled"
8072
- msgstr ""
8073
-
8074
- #: ../lib/puppet/ssl/host.rb:286
8075
- msgid "Did not receive certificate"
8076
- msgstr ""
8077
-
8078
- #: ../lib/puppet/ssl/host.rb:326
8079
- msgid "Response from the CA did not contain a valid certificate request: %{message}"
8080
- msgstr ""
8081
-
8082
- #: ../lib/puppet/ssl/host.rb:332
8083
- msgid "Could not download certificate request: %{message}"
8084
- msgstr ""
8085
-
8086
- #: ../lib/puppet/ssl/host.rb:359
8087
- msgid ""
8088
- "Failed attempting to load CRL from %{crl_path}! The CRL below caused the error '%{error}':\n"
8089
- "%{crl}"
8090
- msgstr ""
8091
-
8092
- #: ../lib/puppet/ssl/host.rb:391 ../lib/puppet/ssl/state_machine.rb:120
8093
- msgid "Could not download CRLs: %{message}"
8094
- msgstr ""
8095
-
8096
- #: ../lib/puppet/ssl/host.rb:425
8097
- msgid "The certificate at %{file_path} is invalid. Could not load."
8098
- msgstr ""
8099
-
8100
- #: ../lib/puppet/ssl/host.rb:446
8101
- msgid "Response from the CA did not contain a valid certificate for %{cert_name}."
8102
- msgstr ""
8103
-
8104
- #: ../lib/puppet/ssl/host.rb:450
8105
- msgid "No certificate for %{cert_name} on CA"
8106
- msgstr ""
8107
-
8108
- #: ../lib/puppet/ssl/host.rb:453
8109
- msgid "Could not download host certificate: %{message}"
8110
- msgstr ""
8111
-
8112
- #: ../lib/puppet/ssl/oids.rb:110
7362
+ #: ../lib/puppet/ssl/oids.rb:112
8113
7363
  msgid "Error loading ssl custom OIDs mapping file from '%{custom_oid_file}': %{err}"
8114
7364
  msgstr ""
8115
7365
 
8116
- #: ../lib/puppet/ssl/oids.rb:114
7366
+ #: ../lib/puppet/ssl/oids.rb:116
8117
7367
  msgid "Error loading ssl custom OIDs mapping file from '%{custom_oid_file}': no such index '%{map_key}'"
8118
7368
  msgstr ""
8119
7369
 
8120
- #: ../lib/puppet/ssl/oids.rb:118
7370
+ #: ../lib/puppet/ssl/oids.rb:120
8121
7371
  msgid "Error loading ssl custom OIDs mapping file from '%{custom_oid_file}': data under index '%{map_key}' must be a Hash"
8122
7372
  msgstr ""
8123
7373
 
8124
- #: ../lib/puppet/ssl/oids.rb:125
7374
+ #: ../lib/puppet/ssl/oids.rb:127
8125
7375
  msgid "Error loading ssl custom OIDs mapping file from '%{custom_oid_file}': incomplete definition of oid '%{oid}'"
8126
7376
  msgstr ""
8127
7377
 
8128
- #: ../lib/puppet/ssl/oids.rb:157
7378
+ #: ../lib/puppet/ssl/oids.rb:159
8129
7379
  msgid "Error registering ssl custom OIDs mapping from file '%{custom_oid_file}': %{err}"
8130
7380
  msgstr ""
8131
7381
 
8132
- #: ../lib/puppet/ssl/ssl_provider.rb:66
7382
+ #: ../lib/puppet/ssl/ssl_provider.rb:83
8133
7383
  msgid "Failed to add '%{path}' as a trusted CA file: %{detail}"
8134
7384
  msgstr ""
8135
7385
 
8136
- #: ../lib/puppet/ssl/ssl_provider.rb:70
7386
+ #: ../lib/puppet/ssl/ssl_provider.rb:87
8137
7387
  msgid "The 'ssl_trust_store' setting does not refer to a file and will be ignored: '%{path}'"
8138
7388
  msgstr ""
8139
7389
 
8140
- #: ../lib/puppet/ssl/ssl_provider.rb:104
7390
+ #: ../lib/puppet/ssl/ssl_provider.rb:121
8141
7391
  msgid "CA certs are missing"
8142
7392
  msgstr ""
8143
7393
 
8144
- #: ../lib/puppet/ssl/ssl_provider.rb:105
7394
+ #: ../lib/puppet/ssl/ssl_provider.rb:122
8145
7395
  msgid "CRLs are missing"
8146
7396
  msgstr ""
8147
7397
 
8148
- #: ../lib/puppet/ssl/ssl_provider.rb:106
7398
+ #: ../lib/puppet/ssl/ssl_provider.rb:123
8149
7399
  msgid "Private key is missing"
8150
7400
  msgstr ""
8151
7401
 
8152
- #: ../lib/puppet/ssl/ssl_provider.rb:107
7402
+ #: ../lib/puppet/ssl/ssl_provider.rb:124
8153
7403
  msgid "Client cert is missing"
8154
7404
  msgstr ""
8155
7405
 
8156
- #: ../lib/puppet/ssl/ssl_provider.rb:113
7406
+ #: ../lib/puppet/ssl/ssl_provider.rb:130
8157
7407
  msgid "Unsupported key '%{type}'"
8158
7408
  msgstr ""
8159
7409
 
8160
- #: ../lib/puppet/ssl/ssl_provider.rb:117
7410
+ #: ../lib/puppet/ssl/ssl_provider.rb:134
8161
7411
  msgid "The certificate for '%{name}' does not match its private key"
8162
7412
  msgstr ""
8163
7413
 
8164
- #: ../lib/puppet/ssl/ssl_provider.rb:156
7414
+ #: ../lib/puppet/ssl/ssl_provider.rb:173
8165
7415
  msgid "Failed to load private key for host '%{name}': %{message}"
8166
7416
  msgstr ""
8167
7417
 
8168
- #: ../lib/puppet/ssl/ssl_provider.rb:170
7418
+ #: ../lib/puppet/ssl/ssl_provider.rb:187
8169
7419
  msgid "The CSR for host '%{name}' does not match the public key"
8170
7420
  msgstr ""
8171
7421
 
8172
- #: ../lib/puppet/ssl/ssl_provider.rb:234
7422
+ #: ../lib/puppet/ssl/ssl_provider.rb:251
8173
7423
  msgid "The issuer '%{issuer}' of certificate '%{subject}' cannot be found locally"
8174
7424
  msgstr ""
8175
7425
 
8176
- #: ../lib/puppet/ssl/ssl_provider.rb:250
7426
+ #: ../lib/puppet/ssl/ssl_provider.rb:267
8177
7427
  msgid "The certificate '%{subject}' is not yet valid, verify time is synchronized"
8178
7428
  msgstr ""
8179
7429
 
8180
- #: ../lib/puppet/ssl/ssl_provider.rb:252
7430
+ #: ../lib/puppet/ssl/ssl_provider.rb:269
8181
7431
  msgid "The certificate '%{subject}' has expired, verify time is synchronized"
8182
7432
  msgstr ""
8183
7433
 
8184
- #: ../lib/puppet/ssl/ssl_provider.rb:254
7434
+ #: ../lib/puppet/ssl/ssl_provider.rb:271
8185
7435
  msgid "The CRL issued by '%{issuer}' is not yet valid, verify time is synchronized"
8186
7436
  msgstr ""
8187
7437
 
8188
- #: ../lib/puppet/ssl/ssl_provider.rb:256
7438
+ #: ../lib/puppet/ssl/ssl_provider.rb:273
8189
7439
  msgid "The CRL issued by '%{issuer}' has expired, verify time is synchronized"
8190
7440
  msgstr ""
8191
7441
 
8192
- #: ../lib/puppet/ssl/ssl_provider.rb:258
7442
+ #: ../lib/puppet/ssl/ssl_provider.rb:275
8193
7443
  msgid "Invalid signature for certificate '%{subject}'"
8194
7444
  msgstr ""
8195
7445
 
8196
- #: ../lib/puppet/ssl/ssl_provider.rb:260
7446
+ #: ../lib/puppet/ssl/ssl_provider.rb:277
8197
7447
  msgid "Invalid signature for CRL issued by '%{issuer}'"
8198
7448
  msgstr ""
8199
7449
 
8200
- #: ../lib/puppet/ssl/ssl_provider.rb:262
7450
+ #: ../lib/puppet/ssl/ssl_provider.rb:279
8201
7451
  msgid "The issuer '%{issuer}' of certificate '%{subject}' is missing"
8202
7452
  msgstr ""
8203
7453
 
8204
- #: ../lib/puppet/ssl/ssl_provider.rb:265
7454
+ #: ../lib/puppet/ssl/ssl_provider.rb:282
8205
7455
  msgid "The CRL issued by '%{issuer}' is missing"
8206
7456
  msgstr ""
8207
7457
 
8208
- #: ../lib/puppet/ssl/ssl_provider.rb:267
7458
+ #: ../lib/puppet/ssl/ssl_provider.rb:284
8209
7459
  msgid "Certificate '%{subject}' is revoked"
8210
7460
  msgstr ""
8211
7461
 
8212
- #: ../lib/puppet/ssl/ssl_provider.rb:271
7462
+ #: ../lib/puppet/ssl/ssl_provider.rb:288
8213
7463
  msgid "Certificate '%{subject}' failed verification (%{err}): %{err_utf8}"
8214
7464
  msgstr ""
8215
7465
 
@@ -8233,6 +7483,10 @@ msgstr ""
8233
7483
  msgid "CRL is missing from the server"
8234
7484
  msgstr ""
8235
7485
 
7486
+ #: ../lib/puppet/ssl/state_machine.rb:120
7487
+ msgid "Could not download CRLs: %{message}"
7488
+ msgstr ""
7489
+
8236
7490
  #: ../lib/puppet/ssl/state_machine.rb:127
8237
7491
  msgid "Refreshing CRL"
8238
7492
  msgstr ""
@@ -8305,16 +7559,16 @@ msgstr ""
8305
7559
  msgid "Another puppet instance is already running; waiting for it to finish"
8306
7560
  msgstr ""
8307
7561
 
8308
- #: ../lib/puppet/ssl/state_machine.rb:427
7562
+ #: ../lib/puppet/ssl/state_machine.rb:429
8309
7563
  msgid "Verified client certificate '%{subject}' fingerprint %{digest}"
8310
7564
  msgstr ""
8311
7565
 
8312
- #: ../lib/puppet/ssl/state_machine.rb:429
7566
+ #: ../lib/puppet/ssl/state_machine.rb:431
8313
7567
  msgid "Verified CA certificate '%{subject}' fingerprint %{digest}"
8314
7568
  msgstr ""
8315
7569
 
8316
7570
  #. 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
8317
- #: ../lib/puppet/ssl/verifier.rb:128
7571
+ #: ../lib/puppet/ssl/verifier.rb:130
8318
7572
  msgid "certificate verify failed [%{error} for %{subject}]"
8319
7573
  msgstr ""
8320
7574
 
@@ -8439,19 +7693,19 @@ msgid "Prefetch failed for %{type_name} provider '%{name}'"
8439
7693
  msgstr ""
8440
7694
 
8441
7695
  #. TRANSLATORS `prefetch` is a function name and should not be translated
8442
- #: ../lib/puppet/transaction.rb:381 ../lib/puppet/transaction.rb:384
7696
+ #: ../lib/puppet/transaction.rb:381
8443
7697
  msgid "Could not prefetch %{type_name} provider '%{name}': %{detail}"
8444
7698
  msgstr ""
8445
7699
 
8446
- #: ../lib/puppet/transaction.rb:421
7700
+ #: ../lib/puppet/transaction.rb:415
8447
7701
  msgid "Skipping resources in class because of failed class dependencies"
8448
7702
  msgstr ""
8449
7703
 
8450
- #: ../lib/puppet/transaction.rb:425
7704
+ #: ../lib/puppet/transaction.rb:419
8451
7705
  msgid "Skipping because of failed dependencies"
8452
7706
  msgstr ""
8453
7707
 
8454
- #: ../lib/puppet/transaction.rb:430
7708
+ #: ../lib/puppet/transaction.rb:424
8455
7709
  msgid "Skipping because provider prefetch failed"
8456
7710
  msgstr ""
8457
7711
 
@@ -8572,77 +7826,77 @@ msgstr ""
8572
7826
  msgid "There is more than one '%{basename}' script in %{dir}"
8573
7827
  msgstr ""
8574
7828
 
8575
- #: ../lib/puppet/type.rb:519
7829
+ #: ../lib/puppet/type.rb:496
8576
7830
  msgid "Options must be a hash, not %{type}"
8577
7831
  msgstr ""
8578
7832
 
8579
- #: ../lib/puppet/type.rb:522
7833
+ #: ../lib/puppet/type.rb:499
8580
7834
  msgid "Class %{class_name} already has a property named %{property}"
8581
7835
  msgstr ""
8582
7836
 
8583
- #: ../lib/puppet/type.rb:609
7837
+ #: ../lib/puppet/type.rb:586
8584
7838
  msgid "Class %{class_name} has not defined parameters"
8585
7839
  msgstr ""
8586
7840
 
8587
- #: ../lib/puppet/type.rb:696
7841
+ #: ../lib/puppet/type.rb:673
8588
7842
  msgid "Parameter %{name} failed on %{ref}: %{detail}"
8589
7843
  msgstr ""
8590
7844
 
8591
- #: ../lib/puppet/type.rb:719
7845
+ #: ../lib/puppet/type.rb:696
8592
7846
  msgid "Undefined attribute '%{attribute}' in %{name}"
8593
7847
  msgstr ""
8594
7848
 
8595
7849
  #. TRANSLATORS 'is' is a variable name and should not be translated
8596
7850
  #. TRANSLATORS 'is' is a variable name and should not be translated
8597
- #: ../lib/puppet/type.rb:1062 ../lib/puppet/type.rb:1073
7851
+ #: ../lib/puppet/type.rb:1039 ../lib/puppet/type.rb:1050
8598
7852
  msgid "The 'is' value is not in the 'is' array for '%{name}'"
8599
7853
  msgstr ""
8600
7854
 
8601
- #: ../lib/puppet/type.rb:1204
7855
+ #: ../lib/puppet/type.rb:1181
8602
7856
  msgid "%{name} has no providers and has not overridden 'instances'"
8603
7857
  msgstr ""
8604
7858
 
8605
- #: ../lib/puppet/type.rb:1468
7859
+ #: ../lib/puppet/type.rb:1445
8606
7860
  msgid "Cannot add aliases without a catalog"
8607
7861
  msgstr ""
8608
7862
 
8609
- #: ../lib/puppet/type.rb:1548
7863
+ #: ../lib/puppet/type.rb:1525
8610
7864
  msgid "Could not find %{description} %{ref} for %{resource}"
8611
7865
  msgstr ""
8612
7866
 
8613
- #: ../lib/puppet/type.rb:1825
7867
+ #: ../lib/puppet/type.rb:1749
8614
7868
  msgid "Found multiple default providers for %{name}: %{provider_list}; using %{selected_provider}"
8615
7869
  msgstr ""
8616
7870
 
8617
- #: ../lib/puppet/type.rb:1912
7871
+ #: ../lib/puppet/type.rb:1836
8618
7872
  msgid "Could not find parent provider %{parent} of %{name}"
8619
7873
  msgstr ""
8620
7874
 
8621
- #: ../lib/puppet/type.rb:1986
7875
+ #: ../lib/puppet/type.rb:1910
8622
7876
  msgid "Invalid %{resource} provider '%{provider_class}'"
8623
7877
  msgstr ""
8624
7878
 
8625
- #: ../lib/puppet/type.rb:2071
7879
+ #: ../lib/puppet/type.rb:1995
8626
7880
  msgid "Could not find %{name} provider of %{provider}"
8627
7881
  msgstr ""
8628
7882
 
8629
- #: ../lib/puppet/type.rb:2189
7883
+ #: ../lib/puppet/type.rb:2113
8630
7884
  msgid "You cannot add relationships without a catalog"
8631
7885
  msgstr ""
8632
7886
 
8633
- #: ../lib/puppet/type.rb:2492
7887
+ #: ../lib/puppet/type.rb:2416
8634
7888
  msgid "Unable to mark '%{name}' as sensitive: %{name} is a parameter and not a property, and cannot be automatically redacted."
8635
7889
  msgstr ""
8636
7890
 
8637
- #: ../lib/puppet/type.rb:2495
7891
+ #: ../lib/puppet/type.rb:2419
8638
7892
  msgid "Unable to mark '%{name}' as sensitive: the property itself was not assigned a value."
8639
7893
  msgstr ""
8640
7894
 
8641
- #: ../lib/puppet/type.rb:2497
7895
+ #: ../lib/puppet/type.rb:2421
8642
7896
  msgid "Unable to mark '%{name}' as sensitive: the property itself is not defined on %{type}."
8643
7897
  msgstr ""
8644
7898
 
8645
- #: ../lib/puppet/type.rb:2555
7899
+ #: ../lib/puppet/type.rb:2479
8646
7900
  msgid "Could not set %{attribute} on %{class_name}: %{detail}"
8647
7901
  msgstr ""
8648
7902
 
@@ -8719,86 +7973,86 @@ msgstr ""
8719
7973
  msgid "File paths must be fully qualified, not '%{path}'"
8720
7974
  msgstr ""
8721
7975
 
8722
- #: ../lib/puppet/type/file.rb:142
7976
+ #: ../lib/puppet/type/file.rb:140
8723
7977
  msgid "Invalid backup type %{value}"
8724
7978
  msgstr ""
8725
7979
 
8726
- #: ../lib/puppet/type/file.rb:186 ../lib/puppet/type/tidy.rb:48
7980
+ #: ../lib/puppet/type/file.rb:184 ../lib/puppet/type/tidy.rb:48
8727
7981
  msgid "Invalid recurse value %{value}"
8728
7982
  msgstr ""
8729
7983
 
8730
- #: ../lib/puppet/type/file.rb:218
7984
+ #: ../lib/puppet/type/file.rb:216
8731
7985
  msgid "Invalid recurselimit value %{value}"
8732
7986
  msgstr ""
8733
7987
 
8734
- #: ../lib/puppet/type/file.rb:435
7988
+ #: ../lib/puppet/type/file.rb:416
8735
7989
  msgid "You cannot specify more than one of %{creators}"
8736
7990
  msgstr ""
8737
7991
 
8738
- #: ../lib/puppet/type/file.rb:437
7992
+ #: ../lib/puppet/type/file.rb:418
8739
7993
  msgid "You cannot specify a remote recursion without a source"
8740
7994
  msgstr ""
8741
7995
 
8742
- #: ../lib/puppet/type/file.rb:439
7996
+ #: ../lib/puppet/type/file.rb:420
8743
7997
  msgid "You cannot specify source when using checksum 'none'"
8744
7998
  msgstr ""
8745
7999
 
8746
- #: ../lib/puppet/type/file.rb:442
8000
+ #: ../lib/puppet/type/file.rb:423
8747
8001
  msgid "You cannot specify content when using checksum '%{checksum_type}'"
8748
8002
  msgstr ""
8749
8003
 
8750
- #: ../lib/puppet/type/file.rb:445
8004
+ #: ../lib/puppet/type/file.rb:426
8751
8005
  msgid "Possible error: recurselimit is set but not recurse, no recursion will happen"
8752
8006
  msgstr ""
8753
8007
 
8754
- #: ../lib/puppet/type/file.rb:453
8008
+ #: ../lib/puppet/type/file.rb:434
8755
8009
  msgid "Checksum value '%{value}' is not a valid checksum type %{checksum}"
8756
8010
  msgstr ""
8757
8011
 
8758
- #: ../lib/puppet/type/file.rb:456
8012
+ #: ../lib/puppet/type/file.rb:437
8759
8013
  msgid "Checksum value is ignored unless content or source are specified"
8760
8014
  msgstr ""
8761
8015
 
8762
- #: ../lib/puppet/type/file.rb:494
8016
+ #: ../lib/puppet/type/file.rb:475
8763
8017
  msgid "Can not find filebucket for backups without a catalog"
8764
8018
  msgstr ""
8765
8019
 
8766
- #: ../lib/puppet/type/file.rb:499
8020
+ #: ../lib/puppet/type/file.rb:480
8767
8021
  msgid "Could not find filebucket %{backup} specified in backup"
8768
8022
  msgstr ""
8769
8023
 
8770
- #: ../lib/puppet/type/file.rb:798
8024
+ #: ../lib/puppet/type/file.rb:778
8771
8025
  msgid "Could not back up file of type %{current_type}"
8772
8026
  msgstr ""
8773
8027
 
8774
- #: ../lib/puppet/type/file.rb:813
8028
+ #: ../lib/puppet/type/file.rb:793
8775
8029
  msgid "Could not remove files of type %{current_type}"
8776
8030
  msgstr ""
8777
8031
 
8778
8032
  #. TRANSLATORS "source_permissions => ignore" should not be translated
8779
- #: ../lib/puppet/type/file.rb:824
8033
+ #: ../lib/puppet/type/file.rb:804
8780
8034
  msgid "Copying owner/mode/group from the source file on Windows is not supported; use source_permissions => ignore."
8781
8035
  msgstr ""
8782
8036
 
8783
8037
  #. TRANSLATORS "stat" is a program name and should not be translated
8784
- #: ../lib/puppet/type/file.rb:905 ../lib/puppet/type/tidy.rb:371
8038
+ #: ../lib/puppet/type/file.rb:885 ../lib/puppet/type/tidy.rb:352
8785
8039
  msgid "Could not stat; permission denied"
8786
8040
  msgstr ""
8787
8041
 
8788
- #: ../lib/puppet/type/file.rb:908
8042
+ #: ../lib/puppet/type/file.rb:888
8789
8043
  msgid "Could not stat; invalid pathname"
8790
8044
  msgstr ""
8791
8045
 
8792
- #: ../lib/puppet/type/file.rb:1036
8046
+ #: ../lib/puppet/type/file.rb:1016
8793
8047
  msgid "Not removing directory; use 'force' to override"
8794
8048
  msgstr ""
8795
8049
 
8796
8050
  #. TRANSLATORS refers to a file which could not be backed up
8797
- #: ../lib/puppet/type/file.rb:1061
8051
+ #: ../lib/puppet/type/file.rb:1041
8798
8052
  msgid "Could not back up; will not remove"
8799
8053
  msgstr ""
8800
8054
 
8801
- #: ../lib/puppet/type/file.rb:1076
8055
+ #: ../lib/puppet/type/file.rb:1056
8802
8056
  msgid "File written to disk did not match desired checksum; discarding changes (%{content_checksum} vs %{desired_checksum})"
8803
8057
  msgstr ""
8804
8058
 
@@ -8864,36 +8118,36 @@ msgstr ""
8864
8118
  msgid "Invalid GID %{gid}"
8865
8119
  msgstr ""
8866
8120
 
8867
- #: ../lib/puppet/type/package.rb:128 ../lib/puppet/type/package.rb:142
8121
+ #: ../lib/puppet/type/package.rb:124 ../lib/puppet/type/package.rb:138
8868
8122
  msgid "Could not update: %{detail}"
8869
8123
  msgstr ""
8870
8124
 
8871
- #: ../lib/puppet/type/package.rb:177
8125
+ #: ../lib/puppet/type/package.rb:173
8872
8126
  msgid "Could not get latest version: %{detail}"
8873
8127
  msgstr ""
8874
8128
 
8875
- #: ../lib/puppet/type/package.rb:277
8129
+ #: ../lib/puppet/type/package.rb:273
8876
8130
  msgid "Name must be a String not %{klass}"
8877
8131
  msgstr ""
8878
8132
 
8879
- #: ../lib/puppet/type/package.rb:423
8133
+ #: ../lib/puppet/type/package.rb:419
8880
8134
  msgid "Cannot have both `ensure => disabled` and `flavor`"
8881
8135
  msgstr ""
8882
8136
 
8883
- #: ../lib/puppet/type/package.rb:522
8137
+ #: ../lib/puppet/type/package.rb:518
8884
8138
  msgid "Cannot have both `enable_only => true` and `flavor`"
8885
8139
  msgstr ""
8886
8140
 
8887
- #: ../lib/puppet/type/package.rb:525
8141
+ #: ../lib/puppet/type/package.rb:521
8888
8142
  msgid "Cannot have both `ensure => disabled` and `enable_only => true`"
8889
8143
  msgstr ""
8890
8144
 
8891
- #: ../lib/puppet/type/package.rb:687
8145
+ #: ../lib/puppet/type/package.rb:682
8892
8146
  msgid "Invalid hold value %{value}. %{doc}"
8893
8147
  msgstr ""
8894
8148
 
8895
- #: ../lib/puppet/type/package.rb:717
8896
- msgid "You cannot use \"mark\" property while \"ensure\" is one of [\"absent\", \"purged\", \"held\"]"
8149
+ #: ../lib/puppet/type/package.rb:709
8150
+ msgid "You cannot use \"mark\" property while \"ensure\" is one of [\"absent\", \"purged\"]"
8897
8151
  msgstr ""
8898
8152
 
8899
8153
  #: ../lib/puppet/type/resources.rb:15
@@ -8948,46 +8202,50 @@ msgstr ""
8948
8202
  msgid "%{value} is not a valid day of the week"
8949
8203
  msgstr ""
8950
8204
 
8951
- #: ../lib/puppet/type/service.rb:151 ../lib/puppet/type/user.rb:271
8952
- msgid "Passwords cannot include ':'"
8205
+ #: ../lib/puppet/type/service.rb:96
8206
+ msgid "Setting enable to %{value} is only supported on Microsoft Windows."
8953
8207
  msgstr ""
8954
8208
 
8955
- #: ../lib/puppet/type/service.rb:278
8956
- msgid "\"%{value}\" is not a positive integer: the timeout parameter must be specified as a positive integer"
8209
+ #: ../lib/puppet/type/service.rb:166
8210
+ msgid "The 'logonaccount' parameter is mandatory when setting 'logonpassword'."
8957
8211
  msgstr ""
8958
8212
 
8959
- #: ../lib/puppet/type/service.rb:300
8960
- msgid "The 'logonaccount' parameter is mandatory when setting 'logonpassword'."
8213
+ #: ../lib/puppet/type/service.rb:167 ../lib/puppet/type/user.rb:271
8214
+ msgid "Passwords cannot include ':'"
8961
8215
  msgstr ""
8962
8216
 
8963
- #: ../lib/puppet/type/tidy.rb:101
8217
+ #: ../lib/puppet/type/service.rb:304
8218
+ msgid "\"%{value}\" is not a positive integer: the timeout parameter must be specified as a positive integer"
8219
+ msgstr ""
8220
+
8221
+ #: ../lib/puppet/type/tidy.rb:85
8964
8222
  msgid "Tidy can't use matches with recurse 0, false, or undef"
8965
8223
  msgstr ""
8966
8224
 
8967
- #: ../lib/puppet/type/tidy.rb:141
8225
+ #: ../lib/puppet/type/tidy.rb:125
8968
8226
  msgid "Invalid age unit '%{unit}'"
8969
8227
  msgstr ""
8970
8228
 
8971
8229
  #. TRANSLATORS tidy is the name of a program and should not be translated
8972
- #: ../lib/puppet/type/tidy.rb:161
8230
+ #: ../lib/puppet/type/tidy.rb:145
8973
8231
  msgid "Invalid tidy age %{age}"
8974
8232
  msgstr ""
8975
8233
 
8976
- #: ../lib/puppet/type/tidy.rb:183
8234
+ #: ../lib/puppet/type/tidy.rb:167
8977
8235
  msgid "Invalid size unit '%{unit}'"
8978
8236
  msgstr ""
8979
8237
 
8980
8238
  #. TRANSLATORS tidy is the name of a program and should not be translated
8981
- #: ../lib/puppet/type/tidy.rb:201
8239
+ #: ../lib/puppet/type/tidy.rb:185
8982
8240
  msgid "Invalid tidy size %{age}"
8983
8241
  msgstr ""
8984
8242
 
8985
8243
  #. TRANSLATORS "Tidy" is a program name and should not be translated
8986
- #: ../lib/puppet/type/tidy.rb:294
8244
+ #: ../lib/puppet/type/tidy.rb:275
8987
8245
  msgid "Tidying %{count} files"
8988
8246
  msgstr ""
8989
8247
 
8990
- #: ../lib/puppet/type/tidy.rb:367
8248
+ #: ../lib/puppet/type/tidy.rb:348
8991
8249
  msgid "File does not exist"
8992
8250
  msgstr ""
8993
8251
 
@@ -9168,7 +8426,7 @@ msgstr ""
9168
8426
  msgid "Could not autoload %{name}: %{detail}"
9169
8427
  msgstr ""
9170
8428
 
9171
- #: ../lib/puppet/util/autoload.rb:177
8429
+ #: ../lib/puppet/util/autoload.rb:184
9172
8430
  msgid "Autoload paths cannot be fully qualified"
9173
8431
  msgstr ""
9174
8432
 
@@ -9381,37 +8639,6 @@ msgstr ""
9381
8639
  msgid "Trollop::die can only be called after Trollop::options"
9382
8640
  msgstr ""
9383
8641
 
9384
- #: ../lib/puppet/util/connection.rb:28
9385
- msgid "Selected server from the %{setting} setting: %{server}"
9386
- msgstr ""
9387
-
9388
- #. TRANSLATORS 'server_list' is the name of a setting and should not be translated
9389
- #: ../lib/puppet/util/connection.rb:35
9390
- msgid "Dynamically-bound server lookup failed; using first entry from the `server_list` setting: %{server}"
9391
- msgstr ""
9392
-
9393
- #: ../lib/puppet/util/connection.rb:39
9394
- msgid "Dynamically-bound server lookup failed, falling back to %{setting} setting: %{server}"
9395
- msgstr ""
9396
-
9397
- #: ../lib/puppet/util/connection.rb:60
9398
- msgid "Selected port from the %{setting} setting: %{port}"
9399
- msgstr ""
9400
-
9401
- #. TRANSLATORS 'server_list' is the name of a setting and should not be translated
9402
- #: ../lib/puppet/util/connection.rb:71
9403
- msgid "Dynamically-bound port lookup failed; using first entry from the `server_list` setting: %{port}"
9404
- msgstr ""
9405
-
9406
- #. TRANSLATORS 'serverport' is the name of a setting and should not be translated
9407
- #: ../lib/puppet/util/connection.rb:75
9408
- msgid "Dynamically-bound port lookup failed; falling back to `serverport` setting: %{port}"
9409
- msgstr ""
9410
-
9411
- #: ../lib/puppet/util/connection.rb:80
9412
- msgid "Dynamically-bound port lookup failed; falling back to %{setting} setting: %{port}"
9413
- msgstr ""
9414
-
9415
8642
  #: ../lib/puppet/util/diff.rb:30
9416
8643
  msgid "Cannot provide diff without the diff/lcs Ruby library"
9417
8644
  msgstr ""
@@ -9444,23 +8671,23 @@ msgstr ""
9444
8671
  msgid "%{klass} failed with error %{error_type}: %{detail}"
9445
8672
  msgstr ""
9446
8673
 
9447
- #: ../lib/puppet/util/execution.rb:196
8674
+ #: ../lib/puppet/util/execution.rb:185
9448
8675
  msgid "Working directory %{cwd} does not exist!"
9449
8676
  msgstr ""
9450
8677
 
9451
- #: ../lib/puppet/util/execution.rb:288
8678
+ #: ../lib/puppet/util/execution.rb:277
9452
8679
  msgid "Could not get output"
9453
8680
  msgstr ""
9454
8681
 
9455
- #: ../lib/puppet/util/execution.rb:297
8682
+ #: ../lib/puppet/util/execution.rb:286
9456
8683
  msgid "Execution of '%{str}' returned %{exit_status}: %{output}"
9457
8684
  msgstr ""
9458
8685
 
9459
- #: ../lib/puppet/util/execution.rb:374
8686
+ #: ../lib/puppet/util/execution.rb:363
9460
8687
  msgid "Could not execute posix command: %{detail}"
9461
8688
  msgstr ""
9462
8689
 
9463
- #: ../lib/puppet/util/execution.rb:422
8690
+ #: ../lib/puppet/util/execution.rb:411
9464
8691
  msgid "Waiting for output; will sleep %{time_to_sleep} seconds"
9465
8692
  msgstr ""
9466
8693
 
@@ -9572,10 +8799,6 @@ msgstr ""
9572
8799
  msgid "Could not write crontab for %{path}: %{detail}"
9573
8800
  msgstr ""
9574
8801
 
9575
- #: ../lib/puppet/util/http_proxy.rb:215
9576
- msgid "Too many HTTP redirections for %{uri}"
9577
- msgstr ""
9578
-
9579
8802
  #: ../lib/puppet/util/inifile.rb:139
9580
8803
  msgid "Cannot read nonexistent file %{file}"
9581
8804
  msgstr ""
@@ -9724,6 +8947,10 @@ msgstr ""
9724
8947
  msgid "Duplicate device found at %{file_error_location}, already found at %{device_error_location}"
9725
8948
  msgstr ""
9726
8949
 
8950
+ #: ../lib/puppet/util/network_device/config.rb:71
8951
+ msgid "Invalid entry at %{error_location}: %{file_text}"
8952
+ msgstr ""
8953
+
9727
8954
  #: ../lib/puppet/util/network_device/config.rb:77
9728
8955
  msgid "Configuration error: Cannot read %{file}; cannot serve"
9729
8956
  msgstr ""
@@ -9752,19 +8979,19 @@ msgstr ""
9752
8979
  msgid "Unable to write the file %{file_path}. %{error}"
9753
8980
  msgstr ""
9754
8981
 
9755
- #: ../lib/puppet/util/posix.rb:29
8982
+ #: ../lib/puppet/util/posix.rb:22
9756
8983
  msgid "Removing any duplicate group entries"
9757
8984
  msgstr ""
9758
8985
 
9759
- #: ../lib/puppet/util/posix.rb:75
8986
+ #: ../lib/puppet/util/posix.rb:35
9760
8987
  msgid "Did not get id from caller"
9761
8988
  msgstr ""
9762
8989
 
9763
- #: ../lib/puppet/util/posix.rb:79 ../lib/puppet/util/posix.rb:104
8990
+ #: ../lib/puppet/util/posix.rb:39 ../lib/puppet/util/posix.rb:64
9764
8991
  msgid "Tried to get %{field} field for silly id %{id}"
9765
8992
  msgstr ""
9766
8993
 
9767
- #: ../lib/puppet/util/posix.rb:132 ../lib/puppet/util/posix.rb:142 ../lib/puppet/util/posix.rb:152
8994
+ #: ../lib/puppet/util/posix.rb:92 ../lib/puppet/util/posix.rb:102 ../lib/puppet/util/posix.rb:112
9768
8995
  msgid "Can only handle users and groups"
9769
8996
  msgstr ""
9770
8997
 
@@ -9780,7 +9007,7 @@ msgstr ""
9780
9007
  msgid "Could not create feature %{name}: %{detail}"
9781
9008
  msgstr ""
9782
9009
 
9783
- #: ../lib/puppet/util/rdoc.rb:44 ../lib/puppet/util/rdoc.rb:50 ../lib/puppet/util/rdoc.rb:54 ../lib/puppet/util/rdoc.rb:58
9010
+ #: ../lib/puppet/util/rdoc.rb:37 ../lib/puppet/util/rdoc.rb:43 ../lib/puppet/util/rdoc.rb:47 ../lib/puppet/util/rdoc.rb:51
9784
9011
  msgid "RDOC SUPPORT FOR MANIFEST HAS BEEN REMOVED - See PUP-3638"
9785
9012
  msgstr ""
9786
9013
 
@@ -9824,31 +9051,31 @@ msgstr ""
9824
9051
  msgid "Caught exception %{klass}:%{error} retrying"
9825
9052
  msgstr ""
9826
9053
 
9827
- #: ../lib/puppet/util/selinux.rb:81
9054
+ #: ../lib/puppet/util/selinux.rb:71
9828
9055
  msgid "Invalid context to parse: %{context}"
9829
9056
  msgstr ""
9830
9057
 
9831
- #: ../lib/puppet/util/selinux.rb:93
9058
+ #: ../lib/puppet/util/selinux.rb:83
9832
9059
  msgid "Invalid SELinux parameter type"
9833
9060
  msgstr ""
9834
9061
 
9835
- #: ../lib/puppet/util/selinux.rb:114
9062
+ #: ../lib/puppet/util/selinux.rb:104
9836
9063
  msgid "Can't set SELinux context on file unless the file already has some kind of context"
9837
9064
  msgstr ""
9838
9065
 
9839
- #: ../lib/puppet/util/selinux.rb:128
9066
+ #: ../lib/puppet/util/selinux.rb:118
9840
9067
  msgid "set_selinux_context component must be one of :seluser, :selrole, :seltype, or :selrange"
9841
9068
  msgstr ""
9842
9069
 
9843
- #: ../lib/puppet/util/selinux.rb:139
9070
+ #: ../lib/puppet/util/selinux.rb:129
9844
9071
  msgid "Failed to set SELinux context %{context} on %{file}"
9845
9072
  msgstr ""
9846
9073
 
9847
- #: ../lib/puppet/util/selinux.rb:190
9074
+ #: ../lib/puppet/util/selinux.rb:180
9848
9075
  msgid "Could not open SELinux category translation file %{path}."
9849
9076
  msgstr ""
9850
9077
 
9851
- #: ../lib/puppet/util/selinux.rb:276
9078
+ #: ../lib/puppet/util/selinux.rb:250
9852
9079
  msgid "got a relative path in SELinux find_fs: %{path}"
9853
9080
  msgstr ""
9854
9081
 
@@ -9972,26 +9199,18 @@ msgstr ""
9972
9199
  msgid "Unrecognized ADS UserFlags: %{unrecognized_flags}"
9973
9200
  msgstr ""
9974
9201
 
9975
- #: ../lib/puppet/util/windows/adsi.rb:497 ../lib/puppet/util/windows/adsi.rb:530
9202
+ #: ../lib/puppet/util/windows/adsi.rb:497
9976
9203
  msgid "Failed to get user name"
9977
9204
  msgstr ""
9978
9205
 
9979
- #: ../lib/puppet/util/windows/adsi.rb:580
9206
+ #: ../lib/puppet/util/windows/adsi.rb:534
9980
9207
  msgid "Cannot delete user profile for '%{sid}' prior to Vista SP1"
9981
9208
  msgstr ""
9982
9209
 
9983
- #: ../lib/puppet/util/windows/adsi.rb:598
9210
+ #: ../lib/puppet/util/windows/adsi.rb:552
9984
9211
  msgid "Cannot create group if user '%{name}' exists."
9985
9212
  msgstr ""
9986
9213
 
9987
- #: ../lib/puppet/util/windows/api_types.rb:85
9988
- msgid "Unable to read wide strings with %{null_terminator} terminal nulls"
9989
- msgstr ""
9990
-
9991
- #: ../lib/puppet/util/windows/api_types.rb:230
9992
- msgid "Bad GUID format."
9993
- msgstr ""
9994
-
9995
9214
  #: ../lib/puppet/util/windows/com.rb:17
9996
9215
  msgid "%{name} failed (hresult %{result})."
9997
9216
  msgstr ""
@@ -10004,11 +9223,11 @@ msgstr ""
10004
9223
  msgid "CoCreateInstance failed (%{klass})."
10005
9224
  msgstr ""
10006
9225
 
10007
- #: ../lib/puppet/util/windows/error.rb:42
9226
+ #: ../lib/puppet/util/windows/error.rb:43
10008
9227
  msgid "FormatMessageW could not format code %{code}"
10009
9228
  msgstr ""
10010
9229
 
10011
- #: ../lib/puppet/util/windows/error.rb:48
9230
+ #: ../lib/puppet/util/windows/error.rb:49
10012
9231
  msgid "FormatMessageW failed to allocate buffer for code %{code}"
10013
9232
  msgstr ""
10014
9233
 
@@ -10031,32 +9250,32 @@ msgstr ""
10031
9250
  msgid "(Win32 error: %{detail})"
10032
9251
  msgstr ""
10033
9252
 
10034
- #: ../lib/puppet/util/windows/file.rb:180
9253
+ #: ../lib/puppet/util/windows/file.rb:117
10035
9254
  msgid "Failed to set file attributes"
10036
9255
  msgstr ""
10037
9256
 
10038
- #: ../lib/puppet/util/windows/file.rb:255
9257
+ #: ../lib/puppet/util/windows/file.rb:180
10039
9258
  msgid "out_buffer is required"
10040
9259
  msgstr ""
10041
9260
 
10042
- #: ../lib/puppet/util/windows/file.rb:342
9261
+ #: ../lib/puppet/util/windows/file.rb:253
10043
9262
  msgid "Failed to call GetLongPathName"
10044
9263
  msgstr ""
10045
9264
 
10046
- #: ../lib/puppet/util/windows/principal.rb:68 ../lib/puppet/util/windows/principal.rb:75
9265
+ #: ../lib/puppet/util/windows/principal.rb:67 ../lib/puppet/util/windows/principal.rb:74
10047
9266
  msgid "Failed to call LookupAccountNameW with account: %{account_name}"
10048
9267
  msgstr ""
10049
9268
 
10050
9269
  #. TRANSLATORS `lookup_account_sid` is a variable name and should not be translated
10051
- #: ../lib/puppet/util/windows/principal.rb:98
9270
+ #: ../lib/puppet/util/windows/principal.rb:97
10052
9271
  msgid "Byte array for lookup_account_sid must not be nil and must be at least 1 byte long"
10053
9272
  msgstr ""
10054
9273
 
10055
- #: ../lib/puppet/util/windows/principal.rb:115
9274
+ #: ../lib/puppet/util/windows/principal.rb:114
10056
9275
  msgid "Byte array for lookup_account_sid is invalid: %{sid_bytes}"
10057
9276
  msgstr ""
10058
9277
 
10059
- #: ../lib/puppet/util/windows/principal.rb:123 ../lib/puppet/util/windows/principal.rb:130
9278
+ #: ../lib/puppet/util/windows/principal.rb:122 ../lib/puppet/util/windows/principal.rb:129
10060
9279
  msgid "Failed to call LookupAccountSidW with bytes: %{sid_bytes}"
10061
9280
  msgstr ""
10062
9281
 
@@ -10166,7 +9385,7 @@ msgstr ""
10166
9385
  msgid "An attempt to set mode %{mode} on item %{path} would result in the group, SYSTEM, to have less than Full Control rights. This attempt has been corrected to Full Control"
10167
9386
  msgstr ""
10168
9387
 
10169
- #: ../lib/puppet/util/windows/security.rb:433 ../lib/puppet/util/windows/security.rb:450 ../lib/puppet/util/windows/sid.rb:157 ../lib/puppet/util/windows/sid.rb:219 ../lib/puppet/util/windows/user.rb:59
9388
+ #: ../lib/puppet/util/windows/security.rb:433 ../lib/puppet/util/windows/security.rb:450 ../lib/puppet/util/windows/sid.rb:155 ../lib/puppet/util/windows/sid.rb:217 ../lib/puppet/util/windows/user.rb:59
10170
9389
  msgid "Invalid SID"
10171
9390
  msgstr ""
10172
9391
 
@@ -10206,135 +9425,135 @@ msgstr ""
10206
9425
  msgid "Failed to set security information"
10207
9426
  msgstr ""
10208
9427
 
10209
- #: ../lib/puppet/util/windows/service.rb:338
9428
+ #: ../lib/puppet/util/windows/service.rb:44
10210
9429
  msgid "Starting the %{service_name} service. Timeout set to: %{timeout} seconds"
10211
9430
  msgstr ""
10212
9431
 
10213
- #: ../lib/puppet/util/windows/service.rb:348
9432
+ #: ../lib/puppet/util/windows/service.rb:54
10214
9433
  msgid "Failed to start the service"
10215
9434
  msgstr ""
10216
9435
 
10217
- #: ../lib/puppet/util/windows/service.rb:352
9436
+ #: ../lib/puppet/util/windows/service.rb:58
10218
9437
  msgid "Successfully started the %{service_name} service"
10219
9438
  msgstr ""
10220
9439
 
10221
- #: ../lib/puppet/util/windows/service.rb:361
9440
+ #: ../lib/puppet/util/windows/service.rb:67
10222
9441
  msgid "Stopping the %{service_name} service. Timeout set to: %{timeout} seconds"
10223
9442
  msgstr ""
10224
9443
 
10225
- #: ../lib/puppet/util/windows/service.rb:369
9444
+ #: ../lib/puppet/util/windows/service.rb:75
10226
9445
  msgid "Successfully stopped the %{service_name} service"
10227
9446
  msgstr ""
10228
9447
 
10229
- #: ../lib/puppet/util/windows/service.rb:378
9448
+ #: ../lib/puppet/util/windows/service.rb:84
10230
9449
  msgid "Resuming the %{service_name} service. Timeout set to: %{timeout} seconds"
10231
9450
  msgstr ""
10232
9451
 
10233
- #: ../lib/puppet/util/windows/service.rb:394
9452
+ #: ../lib/puppet/util/windows/service.rb:100
10234
9453
  msgid "Successfully resumed the %{service_name} service"
10235
9454
  msgstr ""
10236
9455
 
10237
- #: ../lib/puppet/util/windows/service.rb:410
9456
+ #: ../lib/puppet/util/windows/service.rb:116
10238
9457
  msgid "Unknown Service state '%{current_state}' for '%{service_name}'"
10239
9458
  msgstr ""
10240
9459
 
10241
- #: ../lib/puppet/util/windows/service.rb:437
9460
+ #: ../lib/puppet/util/windows/service.rb:143
10242
9461
  msgid "Unknown start type '%{start_type}' for '%{service_name}'"
10243
9462
  msgstr ""
10244
9463
 
10245
- #: ../lib/puppet/util/windows/service.rb:487
9464
+ #: ../lib/puppet/util/windows/service.rb:193
10246
9465
  msgid "Failed to update service configuration"
10247
9466
  msgstr ""
10248
9467
 
10249
- #: ../lib/puppet/util/windows/service.rb:552
9468
+ #: ../lib/puppet/util/windows/service.rb:258
10250
9469
  msgid "Failed to fetch services"
10251
9470
  msgstr ""
10252
9471
 
10253
- #: ../lib/puppet/util/windows/service.rb:601
9472
+ #: ../lib/puppet/util/windows/service.rb:307
10254
9473
  msgid "Failed to open a handle to the service"
10255
9474
  msgstr ""
10256
9475
 
10257
- #: ../lib/puppet/util/windows/service.rb:618
9476
+ #: ../lib/puppet/util/windows/service.rb:324
10258
9477
  msgid "Failed to open a handle to the service control manager"
10259
9478
  msgstr ""
10260
9479
 
10261
- #: ../lib/puppet/util/windows/service.rb:641
9480
+ #: ../lib/puppet/util/windows/service.rb:347
10262
9481
  msgid "The service is already in the %{final_state} state. No further work needs to be done."
10263
9482
  msgstr ""
10264
9483
 
10265
- #: ../lib/puppet/util/windows/service.rb:653
9484
+ #: ../lib/puppet/util/windows/service.rb:359
10266
9485
  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."
10267
9486
  msgstr ""
10268
9487
 
10269
- #: ../lib/puppet/util/windows/service.rb:664
9488
+ #: ../lib/puppet/util/windows/service.rb:370
10270
9489
  msgid "There is already a pending transition to the %{final_state} state for the %{service_name} service."
10271
9490
  msgstr ""
10272
9491
 
10273
- #: ../lib/puppet/util/windows/service.rb:680
9492
+ #: ../lib/puppet/util/windows/service.rb:386
10274
9493
  msgid "The service is in the %{pending_state} state, which is an unsafe pending state."
10275
9494
  msgstr ""
10276
9495
 
10277
- #: ../lib/puppet/util/windows/service.rb:685
9496
+ #: ../lib/puppet/util/windows/service.rb:391
10278
9497
  msgid "Transitioning the %{service_name} service from %{initial_state} to %{final_state}"
10279
9498
  msgstr ""
10280
9499
 
10281
- #: ../lib/puppet/util/windows/service.rb:689
9500
+ #: ../lib/puppet/util/windows/service.rb:395
10282
9501
  msgid "Waiting for the transition to finish"
10283
9502
  msgstr ""
10284
9503
 
10285
- #: ../lib/puppet/util/windows/service.rb:694
9504
+ #: ../lib/puppet/util/windows/service.rb:400
10286
9505
  msgid "Failed to transition the %{service_name} service to the %{final_state} state. Detail: %{detail}"
10287
9506
  msgstr ""
10288
9507
 
10289
- #: ../lib/puppet/util/windows/service.rb:733 ../lib/puppet/util/windows/service.rb:769
9508
+ #: ../lib/puppet/util/windows/service.rb:439 ../lib/puppet/util/windows/service.rb:475
10290
9509
  msgid "Service query failed"
10291
9510
  msgstr ""
10292
9511
 
10293
- #: ../lib/puppet/util/windows/service.rb:812
9512
+ #: ../lib/puppet/util/windows/service.rb:518
10294
9513
  msgid "Service query for %{parameter_name} failed"
10295
9514
  msgstr ""
10296
9515
 
10297
- #: ../lib/puppet/util/windows/service.rb:835
9516
+ #: ../lib/puppet/util/windows/service.rb:541
10298
9517
  msgid "Failed to update service %{change} configuration"
10299
9518
  msgstr ""
10300
9519
 
10301
- #: ../lib/puppet/util/windows/service.rb:862
9520
+ #: ../lib/puppet/util/windows/service.rb:568
10302
9521
  msgid "Failed to send the %{control_signal} signal to the service. Its current state is %{current_state}. Reason for failure:"
10303
9522
  msgstr ""
10304
9523
 
10305
- #: ../lib/puppet/util/windows/service.rb:897
9524
+ #: ../lib/puppet/util/windows/service.rb:603
10306
9525
  msgid "The service transitioned to the %{pending_state} state."
10307
9526
  msgstr ""
10308
9527
 
10309
- #: ../lib/puppet/util/windows/service.rb:911
9528
+ #: ../lib/puppet/util/windows/service.rb:617
10310
9529
  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}."
10311
9530
  msgstr ""
10312
9531
 
10313
- #: ../lib/puppet/util/windows/service.rb:926
9532
+ #: ../lib/puppet/util/windows/service.rb:632
10314
9533
  msgid "Waiting for the pending transition to the %{final_state} state to finish."
10315
9534
  msgstr ""
10316
9535
 
10317
- #: ../lib/puppet/util/windows/service.rb:940
9536
+ #: ../lib/puppet/util/windows/service.rb:646
10318
9537
  msgid "Unexpected transition to the %{current_state} state while waiting for the pending transition from %{pending_state} to %{final_state} to finish."
10319
9538
  msgstr ""
10320
9539
 
10321
- #: ../lib/puppet/util/windows/service.rb:954
9540
+ #: ../lib/puppet/util/windows/service.rb:660
10322
9541
  msgid "Timed out while waiting for the pending transition from %{pending_state} to %{final_state} to finish. The current state is %{current_state}."
10323
9542
  msgstr ""
10324
9543
 
10325
- #: ../lib/puppet/util/windows/sid.rb:96
9544
+ #: ../lib/puppet/util/windows/sid.rb:94
10326
9545
  msgid "Octet string must be an array of bytes"
10327
9546
  msgstr ""
10328
9547
 
10329
- #: ../lib/puppet/util/windows/sid.rb:163
9548
+ #: ../lib/puppet/util/windows/sid.rb:161
10330
9549
  msgid "Failed to convert binary SID"
10331
9550
  msgstr ""
10332
9551
 
10333
- #: ../lib/puppet/util/windows/sid.rb:168
9552
+ #: ../lib/puppet/util/windows/sid.rb:166
10334
9553
  msgid "ConvertSidToStringSidW failed to allocate buffer for sid"
10335
9554
  msgstr ""
10336
9555
 
10337
- #: ../lib/puppet/util/windows/sid.rb:188
9556
+ #: ../lib/puppet/util/windows/sid.rb:186
10338
9557
  msgid "Failed to convert string SID: %{string_sid}"
10339
9558
  msgstr ""
10340
9559
 
@@ -10358,76 +9577,72 @@ msgstr ""
10358
9577
  msgid "Failed to unload user profile %{user}"
10359
9578
  msgstr ""
10360
9579
 
10361
- #: ../lib/puppet/util/yaml.rb:47
10362
- msgid "Puppet::Util::Yaml.load_file is deprecated. Use safe_load_file instead."
10363
- msgstr ""
10364
-
10365
- #: ../lib/puppet/x509/cert_provider.rb:39
9580
+ #: ../lib/puppet/x509/cert_provider.rb:45
10366
9581
  msgid "Failed to save CA certificates to '%{capath}'"
10367
9582
  msgstr ""
10368
9583
 
10369
- #: ../lib/puppet/x509/cert_provider.rb:52
9584
+ #: ../lib/puppet/x509/cert_provider.rb:59
10370
9585
  msgid "The CA certificates are missing from '%{path}'"
10371
9586
  msgstr ""
10372
9587
 
10373
- #: ../lib/puppet/x509/cert_provider.rb:56
9588
+ #: ../lib/puppet/x509/cert_provider.rb:63
10374
9589
  msgid "Failed to load CA certificates from '%{capath}'"
10375
9590
  msgstr ""
10376
9591
 
10377
9592
  #. TRANSLATORS 'PEM' is an acronym and shouldn't be translated
10378
- #: ../lib/puppet/x509/cert_provider.rb:67
9593
+ #: ../lib/puppet/x509/cert_provider.rb:75
10379
9594
  msgid "Failed to parse CA certificates as PEM"
10380
9595
  msgstr ""
10381
9596
 
10382
- #: ../lib/puppet/x509/cert_provider.rb:82
9597
+ #: ../lib/puppet/x509/cert_provider.rb:91
10383
9598
  msgid "Failed to save CRLs to '%{crlpath}'"
10384
9599
  msgstr ""
10385
9600
 
10386
- #: ../lib/puppet/x509/cert_provider.rb:95
9601
+ #: ../lib/puppet/x509/cert_provider.rb:105
10387
9602
  msgid "The CRL is missing from '%{path}'"
10388
9603
  msgstr ""
10389
9604
 
10390
- #: ../lib/puppet/x509/cert_provider.rb:99
9605
+ #: ../lib/puppet/x509/cert_provider.rb:109
10391
9606
  msgid "Failed to load CRLs from '%{crlpath}'"
10392
9607
  msgstr ""
10393
9608
 
10394
9609
  #. TRANSLATORS 'PEM' is an acronym and shouldn't be translated
10395
- #: ../lib/puppet/x509/cert_provider.rb:110
9610
+ #: ../lib/puppet/x509/cert_provider.rb:121
10396
9611
  msgid "Failed to parse CRLs as PEM"
10397
9612
  msgstr ""
10398
9613
 
10399
- #: ../lib/puppet/x509/cert_provider.rb:156
9614
+ #: ../lib/puppet/x509/cert_provider.rb:171
10400
9615
  msgid "Failed to save private key for '%{name}'"
10401
9616
  msgstr ""
10402
9617
 
10403
- #: ../lib/puppet/x509/cert_provider.rb:175
9618
+ #: ../lib/puppet/x509/cert_provider.rb:191
10404
9619
  msgid "The private key is missing from '%{path}'"
10405
9620
  msgstr ""
10406
9621
 
10407
- #: ../lib/puppet/x509/cert_provider.rb:179
9622
+ #: ../lib/puppet/x509/cert_provider.rb:195
10408
9623
  msgid "Failed to load private key for '%{name}'"
10409
9624
  msgstr ""
10410
9625
 
10411
- #: ../lib/puppet/x509/cert_provider.rb:235
9626
+ #: ../lib/puppet/x509/cert_provider.rb:255
10412
9627
  msgid "Failed to save client certificate for '%{name}'"
10413
9628
  msgstr ""
10414
9629
 
10415
- #: ../lib/puppet/x509/cert_provider.rb:250
9630
+ #: ../lib/puppet/x509/cert_provider.rb:271
10416
9631
  msgid "The client certificate is missing from '%{path}'"
10417
9632
  msgstr ""
10418
9633
 
10419
- #: ../lib/puppet/x509/cert_provider.rb:254
9634
+ #: ../lib/puppet/x509/cert_provider.rb:275
10420
9635
  msgid "Failed to load client certificate for '%{name}'"
10421
9636
  msgstr ""
10422
9637
 
10423
- #: ../lib/puppet/x509/cert_provider.rb:300
9638
+ #: ../lib/puppet/x509/cert_provider.rb:324
10424
9639
  msgid "Failed to save certificate request for '%{name}'"
10425
9640
  msgstr ""
10426
9641
 
10427
- #: ../lib/puppet/x509/cert_provider.rb:315
9642
+ #: ../lib/puppet/x509/cert_provider.rb:340
10428
9643
  msgid "Failed to load certificate request for '%{name}'"
10429
9644
  msgstr ""
10430
9645
 
10431
- #: ../lib/puppet/x509/cert_provider.rb:326
9646
+ #: ../lib/puppet/x509/cert_provider.rb:353
10432
9647
  msgid "Failed to delete certificate request for '%{name}'"
10433
9648
  msgstr ""