puppet 5.4.0-x86-mingw32 → 5.5.0-x86-mingw32

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

Potentially problematic release.


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

Files changed (441) hide show
  1. data/Gemfile +3 -3
  2. data/MAINTAINERS +0 -19
  3. data/README.md +5 -5
  4. data/Rakefile +26 -0
  5. data/conf/auth.conf +5 -0
  6. data/ext/project_data.yaml +1 -0
  7. data/ext/regexp_nodes/regexp_nodes.rb +3 -4
  8. data/lib/puppet/application/apply.rb +1 -1
  9. data/lib/puppet/application/cert.rb +3 -1
  10. data/lib/puppet/application/device.rb +100 -13
  11. data/lib/puppet/application/facts.rb +5 -0
  12. data/lib/puppet/application/lookup.rb +12 -2
  13. data/lib/puppet/configurer.rb +37 -17
  14. data/lib/puppet/confine.rb +4 -1
  15. data/lib/puppet/datatypes.rb +1 -1
  16. data/lib/puppet/environments.rb +1 -1
  17. data/lib/puppet/error.rb +6 -3
  18. data/lib/puppet/external/dot.rb +0 -7
  19. data/lib/puppet/external/nagios/parser.rb +1 -1
  20. data/lib/puppet/face/config.rb +92 -10
  21. data/lib/puppet/face/epp.rb +31 -6
  22. data/lib/puppet/face/facts.rb +49 -0
  23. data/lib/puppet/face/help.rb +33 -35
  24. data/lib/puppet/face/help/action.erb +1 -1
  25. data/lib/puppet/face/help/face.erb +1 -1
  26. data/lib/puppet/face/man.rb +55 -12
  27. data/lib/puppet/face/parser.rb +30 -3
  28. data/lib/puppet/file_bucket/file.rb +0 -2
  29. data/lib/puppet/file_serving/base.rb +10 -10
  30. data/lib/puppet/forge.rb +3 -3
  31. data/lib/puppet/forge/errors.rb +3 -3
  32. data/lib/puppet/functions.rb +1 -3
  33. data/lib/puppet/functions/alert.rb +1 -1
  34. data/lib/puppet/functions/all.rb +6 -6
  35. data/lib/puppet/functions/annotate.rb +10 -10
  36. data/lib/puppet/functions/any.rb +6 -6
  37. data/lib/puppet/functions/assert_type.rb +4 -4
  38. data/lib/puppet/functions/binary_file.rb +14 -2
  39. data/lib/puppet/functions/break.rb +31 -2
  40. data/lib/puppet/functions/call.rb +4 -4
  41. data/lib/puppet/functions/contain.rb +19 -3
  42. data/lib/puppet/functions/convert_to.rb +6 -5
  43. data/lib/puppet/functions/crit.rb +1 -1
  44. data/lib/puppet/functions/debug.rb +1 -1
  45. data/lib/puppet/functions/defined.rb +11 -9
  46. data/lib/puppet/functions/dig.rb +26 -2
  47. data/lib/puppet/functions/each.rb +8 -8
  48. data/lib/puppet/functions/emerg.rb +1 -1
  49. data/lib/puppet/functions/empty.rb +79 -0
  50. data/lib/puppet/functions/err.rb +1 -1
  51. data/lib/puppet/functions/eyaml_lookup_key.rb +3 -1
  52. data/lib/puppet/functions/filter.rb +7 -7
  53. data/lib/puppet/functions/find_file.rb +15 -1
  54. data/lib/puppet/functions/flatten.rb +64 -0
  55. data/lib/puppet/functions/hiera.rb +6 -6
  56. data/lib/puppet/functions/hiera_array.rb +6 -6
  57. data/lib/puppet/functions/hiera_hash.rb +6 -6
  58. data/lib/puppet/functions/hiera_include.rb +8 -8
  59. data/lib/puppet/functions/include.rb +28 -2
  60. data/lib/puppet/functions/info.rb +1 -1
  61. data/lib/puppet/functions/inline_epp.rb +2 -2
  62. data/lib/puppet/functions/join.rb +56 -0
  63. data/lib/puppet/functions/json_data.rb +2 -2
  64. data/lib/puppet/functions/keys.rb +25 -0
  65. data/lib/puppet/functions/length.rb +44 -0
  66. data/lib/puppet/functions/lest.rb +39 -1
  67. data/lib/puppet/functions/lookup.rb +2 -1
  68. data/lib/puppet/functions/map.rb +10 -9
  69. data/lib/puppet/functions/match.rb +6 -6
  70. data/lib/puppet/functions/new.rb +995 -2
  71. data/lib/puppet/functions/next.rb +1 -1
  72. data/lib/puppet/functions/notice.rb +1 -1
  73. data/lib/puppet/functions/reduce.rb +6 -6
  74. data/lib/puppet/functions/regsubst.rb +9 -3
  75. data/lib/puppet/functions/require.rb +36 -2
  76. data/lib/puppet/functions/return.rb +1 -1
  77. data/lib/puppet/functions/reverse_each.rb +71 -2
  78. data/lib/puppet/functions/slice.rb +23 -9
  79. data/lib/puppet/functions/split.rb +12 -10
  80. data/lib/puppet/functions/step.rb +73 -1
  81. data/lib/puppet/functions/strftime.rb +176 -2
  82. data/lib/puppet/functions/then.rb +65 -2
  83. data/lib/puppet/functions/tree_each.rb +19 -19
  84. data/lib/puppet/functions/type.rb +42 -1
  85. data/lib/puppet/functions/unique.rb +13 -13
  86. data/lib/puppet/functions/unwrap.rb +8 -4
  87. data/lib/puppet/functions/values.rb +25 -0
  88. data/lib/puppet/functions/versioncmp.rb +1 -1
  89. data/lib/puppet/functions/warning.rb +1 -1
  90. data/lib/puppet/functions/with.rb +6 -4
  91. data/lib/puppet/functions/yaml_data.rb +3 -1
  92. data/lib/puppet/indirector/certificate_status/file.rb +1 -1
  93. data/lib/puppet/indirector/facts/facter.rb +1 -3
  94. data/lib/puppet/indirector/facts/rest.rb +21 -0
  95. data/lib/puppet/indirector/facts/yaml.rb +0 -4
  96. data/lib/puppet/indirector/rest.rb +2 -2
  97. data/lib/puppet/module.rb +3 -3
  98. data/lib/puppet/module/task.rb +2 -3
  99. data/lib/puppet/module_tool/applications/application.rb +4 -4
  100. data/lib/puppet/module_tool/applications/builder.rb +2 -2
  101. data/lib/puppet/module_tool/applications/checksummer.rb +3 -3
  102. data/lib/puppet/module_tool/applications/unpacker.rb +2 -2
  103. data/lib/puppet/module_tool/metadata.rb +3 -3
  104. data/lib/puppet/network/authconfig.rb +1 -1
  105. data/lib/puppet/network/format_support.rb +1 -1
  106. data/lib/puppet/network/formats.rb +5 -7
  107. data/lib/puppet/network/http/api/indirected_routes.rb +1 -0
  108. data/lib/puppet/network/http/api/master/v3/environment.rb +2 -2
  109. data/lib/puppet/network/http/api/master/v3/environments.rb +2 -2
  110. data/lib/puppet/network/http/error.rb +3 -3
  111. data/lib/puppet/network/resolver.rb +1 -2
  112. data/lib/puppet/parser/compiler.rb +12 -5
  113. data/lib/puppet/parser/compiler/catalog_validator/env_relationship_validator.rb +1 -1
  114. data/lib/puppet/parser/functions/fqdn_rand.rb +15 -4
  115. data/lib/puppet/parser/functions/new.rb +31 -46
  116. data/lib/puppet/parser/parser_factory.rb +1 -1
  117. data/lib/puppet/parser/resource.rb +1 -1
  118. data/lib/puppet/parser/type_loader.rb +11 -11
  119. data/lib/puppet/pops/evaluator/closure.rb +1 -1
  120. data/lib/puppet/pops/evaluator/collector_transformer.rb +1 -1
  121. data/lib/puppet/pops/evaluator/epp_evaluator.rb +2 -2
  122. data/lib/puppet/pops/evaluator/runtime3_resource_support.rb +2 -2
  123. data/lib/puppet/pops/evaluator/runtime3_support.rb +5 -2
  124. data/lib/puppet/pops/functions/dispatch.rb +1 -1
  125. data/lib/puppet/pops/issue_reporter.rb +18 -1
  126. data/lib/puppet/pops/issues.rb +6 -3
  127. data/lib/puppet/pops/loader/ruby_data_type_instantiator.rb +1 -2
  128. data/lib/puppet/pops/loader/ruby_function_instantiator.rb +1 -2
  129. data/lib/puppet/pops/loader/task_instantiator.rb +5 -5
  130. data/lib/puppet/pops/loader/type_definition_instantiator.rb +4 -1
  131. data/lib/puppet/pops/loaders.rb +18 -7
  132. data/lib/puppet/pops/lookup/global_data_provider.rb +1 -1
  133. data/lib/puppet/pops/lookup/lookup_adapter.rb +55 -6
  134. data/lib/puppet/pops/model/factory.rb +6 -3
  135. data/lib/puppet/pops/model/model_tree_dumper.rb +4 -0
  136. data/lib/puppet/pops/model/pn_transformer.rb +400 -0
  137. data/lib/puppet/pops/parser/egrammar.ra +1 -1
  138. data/lib/puppet/pops/parser/eparser.rb +1 -1
  139. data/lib/puppet/pops/parser/heredoc_support.rb +1 -1
  140. data/lib/puppet/pops/parser/lexer_support.rb +3 -2
  141. data/lib/puppet/pops/parser/locator.rb +0 -2
  142. data/lib/puppet/pops/parser/pn_parser.rb +316 -0
  143. data/lib/puppet/pops/pcore.rb +17 -17
  144. data/lib/puppet/pops/pn.rb +236 -0
  145. data/lib/puppet/pops/serialization/json.rb +7 -7
  146. data/lib/puppet/pops/types/class_loader.rb +6 -3
  147. data/lib/puppet/pops/types/implementation_registry.rb +28 -35
  148. data/lib/puppet/pops/types/p_object_type.rb +3 -3
  149. data/lib/puppet/pops/types/p_timespan_type.rb +2 -2
  150. data/lib/puppet/pops/types/p_type_set_type.rb +24 -1
  151. data/lib/puppet/pops/types/ruby_generator.rb +3 -4
  152. data/lib/puppet/pops/types/type_calculator.rb +1 -1
  153. data/lib/puppet/pops/types/type_factory.rb +0 -4
  154. data/lib/puppet/pops/types/type_mismatch_describer.rb +1 -1
  155. data/lib/puppet/pops/types/type_parser.rb +14 -7
  156. data/lib/puppet/pops/types/types.rb +1 -1
  157. data/lib/puppet/pops/utils.rb +2 -2
  158. data/lib/puppet/pops/validation/checker4_0.rb +6 -2
  159. data/lib/puppet/provider/group/groupadd.rb +3 -1
  160. data/lib/puppet/provider/group/windows_adsi.rb +4 -7
  161. data/lib/puppet/provider/nameservice.rb +3 -3
  162. data/lib/puppet/provider/package/pacman.rb +4 -4
  163. data/lib/puppet/provider/package/pip.rb +3 -3
  164. data/lib/puppet/provider/package/pkgdmg.rb +3 -3
  165. data/lib/puppet/provider/package/pkgutil.rb +2 -2
  166. data/lib/puppet/provider/package/portage.rb +9 -9
  167. data/lib/puppet/provider/package/zypper.rb +2 -2
  168. data/lib/puppet/provider/service/base.rb +1 -1
  169. data/lib/puppet/provider/service/smf.rb +3 -2
  170. data/lib/puppet/provider/service/systemd.rb +1 -1
  171. data/lib/puppet/provider/user/useradd.rb +6 -2
  172. data/lib/puppet/provider/user/windows_adsi.rb +1 -1
  173. data/lib/puppet/provider/yumrepo/inifile.rb +20 -9
  174. data/lib/puppet/provider/zfs/zfs.rb +1 -1
  175. data/lib/puppet/reference/configuration.rb +2 -0
  176. data/lib/puppet/reference/type.rb +11 -11
  177. data/lib/puppet/resource.rb +1 -1
  178. data/lib/puppet/resource/capability_finder.rb +5 -5
  179. data/lib/puppet/resource/catalog.rb +6 -3
  180. data/lib/puppet/resource/status.rb +9 -2
  181. data/lib/puppet/resource/type.rb +1 -1
  182. data/lib/puppet/settings.rb +31 -19
  183. data/lib/puppet/settings/base_setting.rb +5 -0
  184. data/lib/puppet/settings/config_file.rb +1 -1
  185. data/lib/puppet/settings/ttl_setting.rb +5 -0
  186. data/lib/puppet/ssl/certificate_factory.rb +2 -2
  187. data/lib/puppet/ssl/certificate_request.rb +0 -2
  188. data/lib/puppet/syntax_checkers/json.rb +1 -1
  189. data/lib/puppet/transaction/additional_resource_generator.rb +2 -2
  190. data/lib/puppet/transaction/event.rb +1 -1
  191. data/lib/puppet/transaction/report.rb +18 -12
  192. data/lib/puppet/type.rb +9 -13
  193. data/lib/puppet/type/augeas.rb +2 -2
  194. data/lib/puppet/type/cron.rb +11 -6
  195. data/lib/puppet/type/exec.rb +1 -1
  196. data/lib/puppet/type/file.rb +4 -5
  197. data/lib/puppet/type/host.rb +1 -1
  198. data/lib/puppet/type/k5login.rb +30 -54
  199. data/lib/puppet/type/package.rb +3 -3
  200. data/lib/puppet/type/schedule.rb +12 -12
  201. data/lib/puppet/type/scheduled_task.rb +2 -2
  202. data/lib/puppet/type/ssh_authorized_key.rb +5 -5
  203. data/lib/puppet/type/sshkey.rb +2 -2
  204. data/lib/puppet/type/tidy.rb +1 -1
  205. data/lib/puppet/type/user.rb +1 -1
  206. data/lib/puppet/type/yumrepo.rb +26 -5
  207. data/lib/puppet/util.rb +0 -4
  208. data/lib/puppet/util/backups.rb +1 -1
  209. data/lib/puppet/util/inifile.rb +3 -4
  210. data/lib/puppet/util/json.rb +68 -0
  211. data/lib/puppet/util/json_lockfile.rb +3 -3
  212. data/lib/puppet/util/log.rb +2 -5
  213. data/lib/puppet/util/log/destinations.rb +2 -2
  214. data/lib/puppet/util/network_device/cisco/facts.rb +1 -1
  215. data/lib/puppet/util/plist.rb +1 -1
  216. data/lib/puppet/util/reference.rb +1 -8
  217. data/lib/puppet/util/tagging.rb +1 -1
  218. data/lib/puppet/util/warnings.rb +0 -2
  219. data/lib/puppet/util/windows/adsi.rb +15 -18
  220. data/lib/puppet/util/windows/com.rb +2 -1
  221. data/lib/puppet/util/windows/file.rb +2 -2
  222. data/lib/puppet/util/windows/principal.rb +7 -6
  223. data/lib/puppet/util/windows/sid.rb +60 -7
  224. data/lib/puppet/util/windows/taskscheduler.rb +0 -9
  225. data/lib/puppet/version.rb +1 -1
  226. data/lib/puppet_pal.rb +53 -48
  227. data/locales/ja/puppet.po +1357 -912
  228. data/locales/puppet.pot +549 -466
  229. data/man/man5/puppet.conf.5 +103 -20
  230. data/man/man8/puppet-agent.8 +6 -2
  231. data/man/man8/puppet-apply.8 +2 -2
  232. data/man/man8/puppet-ca.8 +1 -1
  233. data/man/man8/puppet-catalog.8 +1 -1
  234. data/man/man8/puppet-cert.8 +1 -1
  235. data/man/man8/puppet-certificate.8 +1 -1
  236. data/man/man8/puppet-certificate_request.8 +1 -1
  237. data/man/man8/puppet-certificate_revocation_list.8 +1 -1
  238. data/man/man8/puppet-config.8 +35 -1
  239. data/man/man8/puppet-describe.8 +1 -1
  240. data/man/man8/puppet-device.8 +33 -11
  241. data/man/man8/puppet-doc.8 +1 -1
  242. data/man/man8/puppet-epp.8 +34 -12
  243. data/man/man8/puppet-facts.8 +50 -1
  244. data/man/man8/puppet-filebucket.8 +38 -11
  245. data/man/man8/puppet-generate.8 +1 -1
  246. data/man/man8/puppet-help.8 +1 -1
  247. data/man/man8/puppet-key.8 +1 -1
  248. data/man/man8/puppet-lookup.8 +1 -1
  249. data/man/man8/puppet-man.8 +10 -4
  250. data/man/man8/puppet-master.8 +1 -1
  251. data/man/man8/puppet-module.8 +15 -6
  252. data/man/man8/puppet-node.8 +1 -1
  253. data/man/man8/puppet-parser.8 +31 -8
  254. data/man/man8/puppet-plugin.8 +1 -1
  255. data/man/man8/puppet-report.8 +1 -1
  256. data/man/man8/puppet-resource.8 +1 -1
  257. data/man/man8/puppet-script.8 +67 -0
  258. data/man/man8/puppet-status.8 +1 -1
  259. data/man/man8/puppet.8 +3 -3
  260. data/spec/fixtures/unit/pops/binder/bindings_composer/ok/modules/awesome2/lib/puppet_x/awesome2/echo_scheme_handler.rb +1 -1
  261. data/spec/integration/application/apply_spec.rb +15 -15
  262. data/spec/integration/application/lookup_spec.rb +21 -0
  263. data/spec/integration/faces/config_spec.rb +16 -4
  264. data/spec/integration/network/http/api/indirected_routes_spec.rb +5 -5
  265. data/spec/integration/parser/catalog_spec.rb +1 -1
  266. data/spec/integration/parser/collection_spec.rb +2 -2
  267. data/spec/integration/parser/compiler_spec.rb +17 -18
  268. data/spec/integration/parser/pcore_resource_spec.rb +2 -2
  269. data/spec/integration/parser/scope_spec.rb +2 -2
  270. data/spec/integration/ssl/certificate_authority_spec.rb +7 -7
  271. data/spec/integration/ssl/certificate_revocation_list_spec.rb +1 -1
  272. data/spec/integration/ssl/key_spec.rb +1 -1
  273. data/spec/integration/transaction/report_spec.rb +3 -3
  274. data/spec/integration/transaction_spec.rb +0 -1
  275. data/spec/integration/type/file_spec.rb +10 -11
  276. data/spec/integration/type_spec.rb +1 -2
  277. data/spec/integration/util/windows/adsi_spec.rb +86 -1
  278. data/spec/integration/util/windows/principal_spec.rb +11 -2
  279. data/spec/integration/util/windows/security_spec.rb +2 -2
  280. data/spec/lib/matchers/json.rb +4 -4
  281. data/spec/lib/puppet_spec/language.rb +34 -35
  282. data/spec/lib/puppet_spec/module_tool/shared_functions.rb +2 -2
  283. data/spec/shared_behaviours/file_server_terminus.rb +0 -2
  284. data/spec/shared_behaviours/things_that_declare_options.rb +2 -2
  285. data/spec/spec_helper.rb +1 -1
  286. data/spec/unit/application/cert_spec.rb +21 -9
  287. data/spec/unit/application/device_spec.rb +96 -2
  288. data/spec/unit/application/face_base_spec.rb +2 -2
  289. data/spec/unit/application/lookup_spec.rb +0 -1
  290. data/spec/unit/configurer_spec.rb +14 -0
  291. data/spec/unit/confine_spec.rb +16 -0
  292. data/spec/unit/data_providers/hiera_data_provider_spec.rb +4 -4
  293. data/spec/unit/datatypes_spec.rb +49 -0
  294. data/spec/unit/environments_spec.rb +7 -0
  295. data/spec/unit/face/config_spec.rb +116 -12
  296. data/spec/unit/face/epp_face_spec.rb +53 -2
  297. data/spec/unit/face/facts_spec.rb +53 -0
  298. data/spec/unit/face/help_spec.rb +62 -69
  299. data/spec/unit/face/man_spec.rb +26 -0
  300. data/spec/unit/face/module/list_spec.rb +0 -1
  301. data/spec/unit/face/parser_spec.rb +78 -0
  302. data/spec/unit/file_bucket/dipper_spec.rb +0 -4
  303. data/spec/unit/file_serving/content_spec.rb +0 -1
  304. data/spec/unit/file_serving/fileset_spec.rb +0 -1
  305. data/spec/unit/file_serving/metadata_spec.rb +0 -1
  306. data/spec/unit/file_serving/terminus_selector_spec.rb +0 -2
  307. data/spec/unit/forge_spec.rb +1 -2
  308. data/spec/unit/functions/assert_type_spec.rb +1 -1
  309. data/spec/unit/functions/empty_spec.rb +77 -0
  310. data/spec/unit/functions/epp_spec.rb +1 -1
  311. data/spec/unit/functions/flatten_spec.rb +31 -0
  312. data/spec/unit/functions/include_spec.rb +2 -2
  313. data/spec/unit/functions/inline_epp_spec.rb +1 -1
  314. data/spec/unit/functions/join_spec.rb +33 -0
  315. data/spec/unit/functions/keys_spec.rb +31 -0
  316. data/spec/unit/functions/length_spec.rb +50 -0
  317. data/spec/unit/functions/lookup_fixture_spec.rb +1 -1
  318. data/spec/unit/functions/lookup_spec.rb +52 -0
  319. data/spec/unit/functions/shared.rb +1 -1
  320. data/spec/unit/functions/values_spec.rb +30 -0
  321. data/spec/unit/functions/versioncmp_spec.rb +1 -1
  322. data/spec/unit/functions4_spec.rb +30 -32
  323. data/spec/unit/graph/title_hash_prioritizer_spec.rb +2 -1
  324. data/spec/unit/indirector/catalog/compiler_spec.rb +0 -15
  325. data/spec/unit/indirector/facts/rest_spec.rb +45 -0
  326. data/spec/unit/indirector/facts/yaml_spec.rb +6 -0
  327. data/spec/unit/indirector/file_bucket_file/file_spec.rb +2 -2
  328. data/spec/unit/indirector/indirection_spec.rb +1 -1
  329. data/spec/unit/indirector/node/ldap_spec.rb +2 -2
  330. data/spec/unit/indirector/request_spec.rb +0 -2
  331. data/spec/unit/indirector/rest_spec.rb +2 -2
  332. data/spec/unit/indirector_spec.rb +0 -1
  333. data/spec/unit/info_service_spec.rb +1 -1
  334. data/spec/unit/interface/action_manager_spec.rb +1 -1
  335. data/spec/unit/interface/action_spec.rb +1 -1
  336. data/spec/unit/module_spec.rb +0 -5
  337. data/spec/unit/module_tool/applications/builder_spec.rb +1 -1
  338. data/spec/unit/module_tool/applications/unpacker_spec.rb +4 -4
  339. data/spec/unit/network/formats_spec.rb +5 -13
  340. data/spec/unit/network/http/api/indirected_routes_spec.rb +6 -2
  341. data/spec/unit/network/http/connection_spec.rb +1 -1
  342. data/spec/unit/network/http/handler_spec.rb +3 -2
  343. data/spec/unit/node/environment_spec.rb +1 -1
  344. data/spec/unit/node_spec.rb +3 -3
  345. data/spec/unit/parser/compiler_spec.rb +9 -2
  346. data/spec/unit/parser/environment_compiler_spec.rb +8 -8
  347. data/spec/unit/parser/functions/create_resources_spec.rb +1 -1
  348. data/spec/unit/parser/functions/fail_spec.rb +1 -1
  349. data/spec/unit/parser/functions/fqdn_rand_spec.rb +24 -0
  350. data/spec/unit/parser/functions/realize_spec.rb +1 -1
  351. data/spec/unit/parser/resource_spec.rb +0 -1
  352. data/spec/unit/parser/scope_spec.rb +3 -3
  353. data/spec/unit/parser/type_loader_spec.rb +1 -1
  354. data/spec/unit/pops/adaptable_spec.rb +0 -1
  355. data/spec/unit/pops/evaluator/evaluating_parser_spec.rb +0 -3
  356. data/spec/unit/pops/evaluator/runtime3_converter_spec.rb +0 -4
  357. data/spec/unit/pops/factory_rspec_helper.rb +1 -1
  358. data/spec/unit/pops/factory_spec.rb +5 -5
  359. data/spec/unit/pops/issues_spec.rb +23 -8
  360. data/spec/unit/pops/loaders/loaders_spec.rb +24 -2
  361. data/spec/unit/pops/loaders/static_loader_spec.rb +1 -1
  362. data/spec/unit/pops/lookup/interpolation_spec.rb +5 -0
  363. data/spec/unit/pops/lookup/lookup_spec.rb +56 -0
  364. data/spec/unit/pops/model/pn_transformer_spec.rb +53 -0
  365. data/spec/unit/pops/parser/lexer2_spec.rb +14 -5
  366. data/spec/unit/pops/parser/parse_basic_expressions_spec.rb +9 -9
  367. data/spec/unit/pops/parser/parse_calls_spec.rb +1 -1
  368. data/spec/unit/pops/parser/parse_functions_spec.rb +1 -1
  369. data/spec/unit/pops/parser/parse_heredoc_spec.rb +3 -3
  370. data/spec/unit/pops/parser/parse_lambda_spec.rb +1 -1
  371. data/spec/unit/pops/parser/parse_resource_spec.rb +35 -35
  372. data/spec/unit/pops/parser/pn_parser_spec.rb +101 -0
  373. data/spec/unit/pops/pn_spec.rb +148 -0
  374. data/spec/unit/pops/types/iterable_spec.rb +1 -1
  375. data/spec/unit/pops/types/p_object_type_spec.rb +5 -5
  376. data/spec/unit/pops/types/p_timespan_type_spec.rb +11 -4
  377. data/spec/unit/pops/types/p_timestamp_type_spec.rb +9 -2
  378. data/spec/unit/pops/types/p_type_set_type_spec.rb +106 -2
  379. data/spec/unit/pops/types/ruby_generator_spec.rb +3 -8
  380. data/spec/unit/pops/types/string_converter_spec.rb +3 -3
  381. data/spec/unit/pops/types/type_calculator_spec.rb +1 -1
  382. data/spec/unit/pops/validator/validator_spec.rb +3 -1
  383. data/spec/unit/property_spec.rb +2 -2
  384. data/spec/unit/provider/aixobject_spec.rb +1 -1
  385. data/spec/unit/provider/cron/crontab_spec.rb +3 -3
  386. data/spec/unit/provider/exec/posix_spec.rb +6 -6
  387. data/spec/unit/provider/group/groupadd_spec.rb +4 -4
  388. data/spec/unit/provider/group/windows_adsi_spec.rb +79 -22
  389. data/spec/unit/provider/ldap_spec.rb +0 -1
  390. data/spec/unit/provider/nameservice_spec.rb +5 -5
  391. data/spec/unit/provider/package/rpm_spec.rb +3 -4
  392. data/spec/unit/provider/package/yum_spec.rb +6 -2
  393. data/spec/unit/provider/parsedfile_spec.rb +1 -1
  394. data/spec/unit/provider/service/base_spec.rb +2 -4
  395. data/spec/unit/provider/service/init_spec.rb +2 -2
  396. data/spec/unit/provider/service/openrc_spec.rb +2 -2
  397. data/spec/unit/provider/service/redhat_spec.rb +2 -2
  398. data/spec/unit/provider/service/smf_spec.rb +2 -0
  399. data/spec/unit/provider/service/systemd_spec.rb +3 -3
  400. data/spec/unit/provider/service/upstart_spec.rb +7 -7
  401. data/spec/unit/provider/ssh_authorized_key/parsed_spec.rb +0 -4
  402. data/spec/unit/provider/sshkey/parsed_spec.rb +0 -2
  403. data/spec/unit/provider/user/useradd_spec.rb +15 -9
  404. data/spec/unit/provider/user/windows_adsi_spec.rb +4 -4
  405. data/spec/unit/provider/yumrepo/inifile_spec.rb +76 -0
  406. data/spec/unit/puppet_pal_2pec.rb +4 -5
  407. data/spec/unit/resource/catalog_spec.rb +8 -3
  408. data/spec/unit/resource/status_spec.rb +15 -4
  409. data/spec/unit/resource/type_spec.rb +2 -3
  410. data/spec/unit/settings_spec.rb +9 -4
  411. data/spec/unit/ssl/certificate_authority_spec.rb +1 -9
  412. data/spec/unit/ssl/certificate_request_spec.rb +1 -2
  413. data/spec/unit/transaction/report_spec.rb +41 -0
  414. data/spec/unit/transaction_spec.rb +1 -1
  415. data/spec/unit/type/exec_spec.rb +7 -9
  416. data/spec/unit/type/file/selinux_spec.rb +0 -1
  417. data/spec/unit/type/file_spec.rb +4 -3
  418. data/spec/unit/type/k5login_spec.rb +79 -10
  419. data/spec/unit/type/mount_spec.rb +1 -1
  420. data/spec/unit/type/nagios_spec.rb +6 -6
  421. data/spec/unit/type/user_spec.rb +1 -1
  422. data/spec/unit/type/yumrepo_spec.rb +18 -0
  423. data/spec/unit/type/zfs_spec.rb +1 -1
  424. data/spec/unit/type_spec.rb +14 -15
  425. data/spec/unit/util/docs_spec.rb +1 -1
  426. data/spec/unit/util/execution_spec.rb +0 -1
  427. data/spec/unit/util/inifile_spec.rb +35 -4
  428. data/spec/unit/util/log/destinations_spec.rb +2 -2
  429. data/spec/unit/util/log_spec.rb +6 -5
  430. data/spec/unit/util/network_device/cisco/device_spec.rb +2 -2
  431. data/spec/unit/util/plist_spec.rb +3 -3
  432. data/spec/unit/util/selinux_spec.rb +2 -2
  433. data/spec/unit/util/tagging_spec.rb +1 -7
  434. data/spec/unit/util/windows/adsi_spec.rb +31 -27
  435. data/spec/unit/util/windows/sid_spec.rb +86 -15
  436. data/spec/unit/util_spec.rb +2 -2
  437. data/spec/watchr.rb +0 -1
  438. data/tasks/benchmark.rake +37 -0
  439. data/tasks/manpages.rake +1 -1
  440. metadata +83 -11
  441. checksums.yaml +0 -7
data/locales/puppet.pot CHANGED
@@ -6,11 +6,11 @@
6
6
  #, fuzzy
7
7
  msgid ""
8
8
  msgstr ""
9
- "Project-Id-Version: Puppet automation framework 5.3.4-746-ge9bf54f\n"
9
+ "Project-Id-Version: Puppet automation framework 5.3.5-1336-g4dd20f6\n"
10
10
  "\n"
11
11
  "Report-Msgid-Bugs-To: https://tickets.puppetlabs.com\n"
12
- "POT-Creation-Date: 2018-02-07 21:18+0000\n"
13
- "PO-Revision-Date: 2018-02-07 21:18+0000\n"
12
+ "POT-Creation-Date: 2018-03-13 16:16+0000\n"
13
+ "PO-Revision-Date: 2018-03-13 16:16+0000\n"
14
14
  "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
15
15
  "Language-Team: LANGUAGE <LL@li.org>\n"
16
16
  "Language: \n"
@@ -217,7 +217,7 @@ msgstr ""
217
217
  msgid "Exiting"
218
218
  msgstr ""
219
219
 
220
- #: ../lib/puppet/application/apply.rb:348
220
+ #: ../lib/puppet/application/apply.rb:346
221
221
  msgid "Could not deserialize catalog from %{format}: %{detail}"
222
222
  msgstr ""
223
223
 
@@ -225,7 +225,11 @@ msgstr ""
225
225
  msgid "Manage certificates and requests"
226
226
  msgstr ""
227
227
 
228
- #: ../lib/puppet/application/cert.rb:332
228
+ #: ../lib/puppet/application/cert.rb:272
229
+ msgid "Refusing to destroy all certs, provide an explicit list of certs to destroy"
230
+ msgstr ""
231
+
232
+ #: ../lib/puppet/application/cert.rb:334
229
233
  msgid "You must specify the hosts to apply to; valid values are an array or the symbol :all"
230
234
  msgstr ""
231
235
 
@@ -233,22 +237,46 @@ msgstr ""
233
237
  msgid "Display help about resource types"
234
238
  msgstr ""
235
239
 
236
- #: ../lib/puppet/application/device.rb:66
240
+ #: ../lib/puppet/application/device.rb:75
237
241
  msgid "Manage remote network devices"
238
242
  msgstr ""
239
243
 
240
- #: ../lib/puppet/application/device.rb:203
244
+ #: ../lib/puppet/application/device.rb:211
245
+ msgid "resource command requires target"
246
+ msgstr ""
247
+
248
+ #: ../lib/puppet/application/device.rb:216
249
+ msgid "missing argument: --target is required when using --apply"
250
+ msgstr ""
251
+
252
+ #: ../lib/puppet/application/device.rb:220
253
+ msgid "%{file} does not exist, cannot apply"
254
+ msgstr ""
255
+
256
+ #: ../lib/puppet/application/device.rb:238
241
257
  msgid "Target device / certificate '%{target}' not found in %{config}"
242
258
  msgstr ""
243
259
 
244
- #: ../lib/puppet/application/device.rb:205
260
+ #: ../lib/puppet/application/device.rb:240
245
261
  msgid "No device found in %{config}"
246
262
  msgstr ""
247
263
 
248
- #: ../lib/puppet/application/device.rb:215
264
+ #: ../lib/puppet/application/device.rb:262
265
+ msgid "retrieving resource: %{resource} from %{target} at %{scheme}%{url_host}%{port}%{url_path}"
266
+ msgstr ""
267
+
268
+ #: ../lib/puppet/application/device.rb:294
249
269
  msgid "starting applying configuration to %{target} at %{scheme}%{url_host}%{port}%{url_path}"
250
270
  msgstr ""
251
271
 
272
+ #: ../lib/puppet/application/device.rb:331 ../lib/puppet/application/resource.rb:196
273
+ msgid "You must specify the type to display"
274
+ msgstr ""
275
+
276
+ #: ../lib/puppet/application/device.rb:332 ../lib/puppet/application/resource.rb:197
277
+ msgid "Could not find type %{type}"
278
+ msgstr ""
279
+
252
280
  #: ../lib/puppet/application/doc.rb:28
253
281
  msgid "Invalid output format %{arg}"
254
282
  msgstr ""
@@ -369,7 +397,7 @@ msgstr ""
369
397
  msgid "Unknown rendering format '%{format}'"
370
398
  msgstr ""
371
399
 
372
- #: ../lib/puppet/application/lookup.rb:350 ../lib/puppet/face/epp.rb:493
400
+ #: ../lib/puppet/application/lookup.rb:360 ../lib/puppet/face/epp.rb:518
373
401
  msgid "Incorrect formatted data in %{fact_file} given via the --facts flag"
374
402
  msgstr ""
375
403
 
@@ -421,14 +449,6 @@ msgstr ""
421
449
  msgid "Editing with Yaml output is not supported"
422
450
  msgstr ""
423
451
 
424
- #: ../lib/puppet/application/resource.rb:196
425
- msgid "You must specify the type to display"
426
- msgstr ""
427
-
428
- #: ../lib/puppet/application/resource.rb:197
429
- msgid "Could not find type %{type}"
430
- msgstr ""
431
-
432
452
  #: ../lib/puppet/application/resource.rb:204
433
453
  msgid "Invalid parameter setting %{setting}"
434
454
  msgstr ""
@@ -533,11 +553,11 @@ msgstr ""
533
553
  msgid "Could not run command from %{setting}: %{detail}"
534
554
  msgstr ""
535
555
 
536
- #: ../lib/puppet/configurer.rb:432
556
+ #: ../lib/puppet/configurer.rb:437
537
557
  msgid "Could not retrieve catalog from cache: %{detail}"
538
558
  msgstr ""
539
559
 
540
- #: ../lib/puppet/configurer.rb:444
560
+ #: ../lib/puppet/configurer.rb:457
541
561
  msgid "Could not retrieve catalog from remote server: %{detail}"
542
562
  msgstr ""
543
563
 
@@ -645,11 +665,11 @@ msgstr ""
645
665
  msgid "Setting 'pluginsync' is deprecated."
646
666
  msgstr ""
647
667
 
648
- #: ../lib/puppet/error.rb:67
668
+ #: ../lib/puppet/error.rb:69
649
669
  msgid "Could not parse for environment %{environment}: %{message}"
650
670
  msgstr ""
651
671
 
652
- #: ../lib/puppet/error.rb:68 ../lib/puppet/parser/compiler.rb:41
672
+ #: ../lib/puppet/error.rb:70 ../lib/puppet/parser/compiler.rb:41
653
673
  msgid "%{message} on node %{node}"
654
674
  msgstr ""
655
675
 
@@ -661,7 +681,7 @@ msgstr ""
661
681
  msgid "exceed depth limit"
662
682
  msgstr ""
663
683
 
664
- #: ../lib/puppet/face/ca.rb:5 ../lib/puppet/face/certificate.rb:6 ../lib/puppet/face/config.rb:8 ../lib/puppet/face/epp.rb:8 ../lib/puppet/face/facts.rb:6 ../lib/puppet/face/generate.rb:7 ../lib/puppet/face/help.rb:9 ../lib/puppet/face/key.rb:5 ../lib/puppet/face/man.rb:8 ../lib/puppet/face/module.rb:9 ../lib/puppet/face/node.rb:4 ../lib/puppet/face/parser.rb:6 ../lib/puppet/face/plugin.rb:6 ../lib/puppet/face/report.rb:5 ../lib/puppet/face/resource.rb:5 ../lib/puppet/face/status.rb:5
684
+ #: ../lib/puppet/face/ca.rb:5 ../lib/puppet/face/certificate.rb:6 ../lib/puppet/face/config.rb:7 ../lib/puppet/face/epp.rb:8 ../lib/puppet/face/facts.rb:6 ../lib/puppet/face/generate.rb:7 ../lib/puppet/face/help.rb:9 ../lib/puppet/face/key.rb:5 ../lib/puppet/face/man.rb:8 ../lib/puppet/face/module.rb:9 ../lib/puppet/face/node.rb:4 ../lib/puppet/face/parser.rb:6 ../lib/puppet/face/plugin.rb:6 ../lib/puppet/face/report.rb:5 ../lib/puppet/face/resource.rb:5 ../lib/puppet/face/status.rb:5
665
685
  msgid "Apache 2 license; see COPYING"
666
686
  msgstr ""
667
687
 
@@ -850,109 +870,94 @@ msgstr ""
850
870
  msgid "Manage the list of revoked certificates."
851
871
  msgstr ""
852
872
 
853
- #: ../lib/puppet/face/config.rb:10
873
+ #: ../lib/puppet/face/config.rb:9
854
874
  msgid "Interact with Puppet's settings."
855
875
  msgstr ""
856
876
 
857
- #: ../lib/puppet/face/config.rb:16
877
+ #: ../lib/puppet/face/config.rb:17
858
878
  msgid "SECTION_NAME"
859
879
  msgstr ""
860
880
 
861
- #: ../lib/puppet/face/config.rb:18
881
+ #: ../lib/puppet/face/config.rb:19
862
882
  msgid "The section of the configuration file to interact with."
863
883
  msgstr ""
864
884
 
865
- #: ../lib/puppet/face/config.rb:36
885
+ #: ../lib/puppet/face/config.rb:37
866
886
  msgid "Examine Puppet's current settings."
867
887
  msgstr ""
868
888
 
869
- #: ../lib/puppet/face/config.rb:37
889
+ #: ../lib/puppet/face/config.rb:38
870
890
  msgid "(all | <setting> [<setting> ...]"
871
891
  msgstr ""
872
892
 
873
- #: ../lib/puppet/face/config.rb:79
893
+ #: ../lib/puppet/face/config.rb:83
874
894
  msgid "New environment loaders generated from the requested section."
875
895
  msgstr ""
876
896
 
877
- #: ../lib/puppet/face/config.rb:85
897
+ #: ../lib/puppet/face/config.rb:135
878
898
  msgid "No section specified; defaulting to '%{section_name}'."
879
899
  msgstr ""
880
900
 
881
901
  #. TRANSLATORS '--section' is a command line option and should not be translated
882
- #. TRANSLATORS '--section' is a command line option and should not be translated
883
- #: ../lib/puppet/face/config.rb:88 ../lib/puppet/face/config.rb:141
902
+ #: ../lib/puppet/face/config.rb:138
884
903
  msgid "Set the config section by using the `--section` flag."
885
904
  msgstr ""
886
905
 
887
906
  #. TRANSLATORS `puppet config --section user print foo` is a command line example and should not be translated
888
- #: ../lib/puppet/face/config.rb:90
907
+ #: ../lib/puppet/face/config.rb:140
889
908
  msgid "For example, `puppet config --section user print foo`."
890
909
  msgstr ""
891
910
 
892
- #: ../lib/puppet/face/config.rb:91
911
+ #: ../lib/puppet/face/config.rb:141
893
912
  msgid "For more information, see https://puppet.com/docs/puppet/latest/configuration.html"
894
913
  msgstr ""
895
914
 
896
- #: ../lib/puppet/face/config.rb:110
897
- msgid "Set Puppet's settings."
898
- msgstr ""
899
-
900
- #: ../lib/puppet/face/config.rb:111
901
- msgid "[setting_name] [setting_value]"
915
+ #: ../lib/puppet/face/config.rb:148
916
+ msgid "Resolving settings from section '%{section_name}' in environment '%{environment_name}'"
902
917
  msgstr ""
903
918
 
904
- #. TRANSLATORS `[user]`, `[agent]`, and `[master]` are section names and should not be translated
905
- #: ../lib/puppet/face/config.rb:134
906
- msgid "The environment should be set in either the `[user]`, `[agent]`, or `[master]` section."
919
+ #: ../lib/puppet/face/config.rb:153
920
+ msgid "Set Puppet's settings."
907
921
  msgstr ""
908
922
 
909
- #. TRANSLATORS `[agent]` is a section name and `puppet agent` is a command line example and should not be translated
910
- #: ../lib/puppet/face/config.rb:136
911
- msgid "Variables set in the `[agent]` section are used when running `puppet agent`."
923
+ #: ../lib/puppet/face/config.rb:154
924
+ msgid "[setting_name] [setting_value]"
912
925
  msgstr ""
913
926
 
914
- #. TRANSLATORS `[user]` is a section name and `puppet apply` and `puppet module` are command line examples and should not be translated
915
- #: ../lib/puppet/face/config.rb:138
927
+ #: ../lib/puppet/face/config.rb:182
916
928
  msgid ""
917
- "Variables set in the `[user]` section are used when running various other puppet subcommands, like `puppet apply` and `puppet module`;\n"
918
- " these require the defined environment directory to exist locally."
929
+ "The environment should be set in either the `[user]`, `[agent]`, or `[master]`\n"
930
+ "section. Variables set in the `[agent]` section are used when running\n"
931
+ "`puppet agent`. Variables set in the `[user]` section are used when running\n"
932
+ "various other puppet subcommands, like `puppet apply` and `puppet module`; these\n"
933
+ "require the defined environment directory to exist locally. Set the config\n"
934
+ "section by using the `--section` flag. For example,\n"
935
+ "`puppet config --section user set environment foo`. For more information, see\n"
936
+ "https://puppet.com/docs/puppet/latest/configuration.html#environment\n"
919
937
  msgstr ""
920
938
 
921
- #. TRANSLATORS `puppet config --section user set environment foo` is a command line example and should not be translated
922
- #: ../lib/puppet/face/config.rb:143
923
- msgid "For example, `puppet config --section user set environment foo`."
924
- msgstr ""
925
-
926
- #: ../lib/puppet/face/config.rb:144
927
- msgid "For more information, see https://puppet.com/docs/puppet/latest/configuration.html#environment"
928
- msgstr ""
929
-
930
- #: ../lib/puppet/face/config.rb:160
939
+ #: ../lib/puppet/face/config.rb:208
931
940
  msgid "Delete a Puppet setting."
932
941
  msgstr ""
933
942
 
934
- #: ../lib/puppet/face/config.rb:161
943
+ #: ../lib/puppet/face/config.rb:209
935
944
  msgid "(<setting>"
936
945
  msgstr ""
937
946
 
938
947
  #. TRANSLATORS 'main' is a specific section name and should not be translated
939
- #: ../lib/puppet/face/config.rb:186
948
+ #: ../lib/puppet/face/config.rb:244
940
949
  msgid "Deleted setting from '%{section_name}': '%{setting_string}'"
941
950
  msgstr ""
942
951
 
943
- #: ../lib/puppet/face/config.rb:189
952
+ #: ../lib/puppet/face/config.rb:247
944
953
  msgid "No setting found in configuration file for section '%{section_name}' setting name '%{name}'"
945
954
  msgstr ""
946
955
 
947
956
  #. TRANSLATORS the 'puppet.conf' is a specific file and should not be translated
948
- #: ../lib/puppet/face/config.rb:196
957
+ #: ../lib/puppet/face/config.rb:254
949
958
  msgid "The puppet.conf file does not exist %{puppet_conf}"
950
959
  msgstr ""
951
960
 
952
- #: ../lib/puppet/face/config.rb:203
953
- msgid "Resolving settings from section '%{section_name}' in environment '%{environment}'"
954
- msgstr ""
955
-
956
961
  #: ../lib/puppet/face/epp.rb:10
957
962
  msgid "Interact directly with the EPP template parser/renderer."
958
963
  msgstr ""
@@ -977,7 +982,7 @@ msgstr ""
977
982
  msgid "No template specified. No action taken"
978
983
  msgstr ""
979
984
 
980
- #: ../lib/puppet/face/epp.rb:95 ../lib/puppet/face/epp.rb:184
985
+ #: ../lib/puppet/face/epp.rb:95 ../lib/puppet/face/epp.rb:198
981
986
  msgid ""
982
987
  "One or more file(s) specified did not exist:\n"
983
988
  "%{missing_files_list}"
@@ -995,95 +1000,107 @@ msgstr ""
995
1000
  msgid "A dump of the resulting AST model unless there are syntax or validation errors."
996
1001
  msgstr ""
997
1002
 
998
- #: ../lib/puppet/face/epp.rb:131 ../lib/puppet/face/epp.rb:295 ../lib/puppet/face/parser.rb:81
1003
+ #: ../lib/puppet/face/epp.rb:137 ../lib/puppet/face/epp.rb:309 ../lib/puppet/face/parser.rb:89
999
1004
  msgid "<source>"
1000
1005
  msgstr ""
1001
1006
 
1002
- #: ../lib/puppet/face/epp.rb:133
1007
+ #: ../lib/puppet/face/epp.rb:139
1003
1008
  msgid "Dump one epp source expression given on the command line."
1004
1009
  msgstr ""
1005
1010
 
1006
- #: ../lib/puppet/face/epp.rb:137
1011
+ #: ../lib/puppet/face/epp.rb:143
1007
1012
  msgid "Whether or not to validate the parsed result, if no-validate only syntax errors are reported."
1008
1013
  msgstr ""
1009
1014
 
1010
- #: ../lib/puppet/face/epp.rb:141
1015
+ #: ../lib/puppet/face/epp.rb:146 ../lib/puppet/face/parser.rb:98
1016
+ msgid "<old, pn, or json>"
1017
+ msgstr ""
1018
+
1019
+ #: ../lib/puppet/face/epp.rb:147 ../lib/puppet/face/parser.rb:99
1020
+ msgid "Get result in 'old' (deprecated format), 'pn' (new format), or 'json' (new format in JSON)."
1021
+ msgstr ""
1022
+
1023
+ #: ../lib/puppet/face/epp.rb:151 ../lib/puppet/face/parser.rb:103
1024
+ msgid "Pretty print output. Only applicable together with --format pn or json"
1025
+ msgstr ""
1026
+
1027
+ #: ../lib/puppet/face/epp.rb:155
1011
1028
  msgid "Whether or not to show a file name header between files."
1012
1029
  msgstr ""
1013
1030
 
1014
- #: ../lib/puppet/face/epp.rb:165 ../lib/puppet/face/parser.rb:99
1031
+ #: ../lib/puppet/face/epp.rb:179 ../lib/puppet/face/parser.rb:115
1015
1032
  msgid "No input to parse given on command line or stdin"
1016
1033
  msgstr ""
1017
1034
 
1018
- #: ../lib/puppet/face/epp.rb:193
1035
+ #: ../lib/puppet/face/epp.rb:207
1019
1036
  msgid "Renders an epp template as text"
1020
1037
  msgstr ""
1021
1038
 
1022
- #: ../lib/puppet/face/epp.rb:195
1039
+ #: ../lib/puppet/face/epp.rb:209
1023
1040
  msgid "A rendered result of one or more given templates."
1024
1041
  msgstr ""
1025
1042
 
1026
- #: ../lib/puppet/face/epp.rb:291
1043
+ #: ../lib/puppet/face/epp.rb:305
1027
1044
  msgid "<node_name>"
1028
1045
  msgstr ""
1029
1046
 
1030
- #: ../lib/puppet/face/epp.rb:292
1047
+ #: ../lib/puppet/face/epp.rb:306
1031
1048
  msgid "The name of the node for which facts are obtained. Defaults to facts for the local node."
1032
1049
  msgstr ""
1033
1050
 
1034
- #: ../lib/puppet/face/epp.rb:297
1051
+ #: ../lib/puppet/face/epp.rb:311
1035
1052
  msgid "Render one inline epp template given on the command line."
1036
1053
  msgstr ""
1037
1054
 
1038
- #: ../lib/puppet/face/epp.rb:300
1055
+ #: ../lib/puppet/face/epp.rb:314
1039
1056
  msgid "<values_hash>"
1040
1057
  msgstr ""
1041
1058
 
1042
- #: ../lib/puppet/face/epp.rb:301
1059
+ #: ../lib/puppet/face/epp.rb:315
1043
1060
  msgid "A Hash in Puppet DSL form given as arguments to the template being rendered."
1044
1061
  msgstr ""
1045
1062
 
1046
- #: ../lib/puppet/face/epp.rb:304
1063
+ #: ../lib/puppet/face/epp.rb:318
1047
1064
  msgid "<pp_or_yaml_file>"
1048
1065
  msgstr ""
1049
1066
 
1050
- #: ../lib/puppet/face/epp.rb:305
1067
+ #: ../lib/puppet/face/epp.rb:319
1051
1068
  msgid "A .pp or .yaml file that is processed to produce a hash of values for the template."
1052
1069
  msgstr ""
1053
1070
 
1054
- #: ../lib/puppet/face/epp.rb:308
1071
+ #: ../lib/puppet/face/epp.rb:322
1055
1072
  msgid "<facts_file>"
1056
1073
  msgstr ""
1057
1074
 
1058
- #: ../lib/puppet/face/epp.rb:309
1075
+ #: ../lib/puppet/face/epp.rb:323
1059
1076
  msgid "A .yaml or .json file containing a hash of facts made available in $facts and $trusted"
1060
1077
  msgstr ""
1061
1078
 
1062
- #: ../lib/puppet/face/epp.rb:313
1079
+ #: ../lib/puppet/face/epp.rb:327
1063
1080
  msgid "Whether or not to show a file name header between rendered results."
1064
1081
  msgstr ""
1065
1082
 
1066
- #: ../lib/puppet/face/epp.rb:334
1083
+ #: ../lib/puppet/face/epp.rb:348
1067
1084
  msgid "No input to process given on command line or stdin"
1068
1085
  msgstr ""
1069
1086
 
1070
- #: ../lib/puppet/face/epp.rb:348
1087
+ #: ../lib/puppet/face/epp.rb:362
1071
1088
  msgid "error while rendering epp"
1072
1089
  msgstr ""
1073
1090
 
1074
- #: ../lib/puppet/face/epp.rb:388
1091
+ #: ../lib/puppet/face/epp.rb:413
1075
1092
  msgid "Only .yaml or .pp can be used as a --values_file"
1076
1093
  msgstr ""
1077
1094
 
1078
- #: ../lib/puppet/face/epp.rb:391
1095
+ #: ../lib/puppet/face/epp.rb:416
1079
1096
  msgid "Could not load --values_file %{error}"
1080
1097
  msgstr ""
1081
1098
 
1082
- #: ../lib/puppet/face/epp.rb:394
1099
+ #: ../lib/puppet/face/epp.rb:419
1083
1100
  msgid "--values_file option must evaluate to a Hash or undef/nil, got: '%{template_class}'"
1084
1101
  msgstr ""
1085
1102
 
1086
- #: ../lib/puppet/face/epp.rb:407
1103
+ #: ../lib/puppet/face/epp.rb:432
1087
1104
  msgid "--values option must evaluate to a Hash or undef, got: '%{values_class}'"
1088
1105
  msgstr ""
1089
1106
 
@@ -1099,6 +1116,14 @@ msgstr ""
1099
1116
  msgid "[<node_certname>]"
1100
1117
  msgstr ""
1101
1118
 
1119
+ #: ../lib/puppet/face/facts.rb:40
1120
+ msgid "Upload local facts to the puppet master."
1121
+ msgstr ""
1122
+
1123
+ #: ../lib/puppet/face/facts.rb:80
1124
+ msgid "Uploading facts for '%{node}' to: '%{server}'"
1125
+ msgstr ""
1126
+
1102
1127
  #: ../lib/puppet/face/generate.rb:9
1103
1128
  msgid "Generates Puppet code from Ruby definitions."
1104
1129
  msgstr ""
@@ -1158,44 +1183,50 @@ msgstr ""
1158
1183
  msgid "The version of the subcommand for which to show help."
1159
1184
  msgstr ""
1160
1185
 
1161
- #: ../lib/puppet/face/help.rb:50
1162
- msgid "Puppet help only takes two (optional) arguments: a subcommand and an action"
1186
+ #. TRANSLATORS 'puppet help' is a command line and should not be translated
1187
+ #: ../lib/puppet/face/help.rb:37
1188
+ msgid "The 'puppet help' command takes two (optional) arguments: a subcommand and an action"
1163
1189
  msgstr ""
1164
1190
 
1165
- #: ../lib/puppet/face/help.rb:59
1166
- msgid "Version only makes sense when a Faces subcommand is given"
1191
+ #. TRANSLATORS '--version' is a command line option and should not be translated
1192
+ #: ../lib/puppet/face/help.rb:47
1193
+ msgid "Supplying a '--version' only makes sense when a Faces subcommand is given"
1167
1194
  msgstr ""
1168
1195
 
1169
- #: ../lib/puppet/face/help.rb:69
1170
- msgid "Legacy subcommands don't take actions"
1196
+ #: ../lib/puppet/face/help.rb:55
1197
+ msgid "The legacy subcommand '%{sub_command}' does not support supplying an action"
1171
1198
  msgstr ""
1172
1199
 
1173
- #: ../lib/puppet/face/help.rb:82
1200
+ #: ../lib/puppet/face/help.rb:76
1174
1201
  msgid "Could not load help for the application %{application_name}."
1175
1202
  msgstr ""
1176
1203
 
1177
- #: ../lib/puppet/face/help.rb:83 ../lib/puppet/face/help.rb:95
1204
+ #: ../lib/puppet/face/help.rb:77 ../lib/puppet/face/help.rb:89
1178
1205
  msgid "Please check the error logs for more information."
1179
1206
  msgstr ""
1180
1207
 
1181
- #: ../lib/puppet/face/help.rb:85 ../lib/puppet/face/help.rb:97
1208
+ #: ../lib/puppet/face/help.rb:79 ../lib/puppet/face/help.rb:91
1182
1209
  msgid "Detail: \"%{detail}\""
1183
1210
  msgstr ""
1184
1211
 
1185
- #: ../lib/puppet/face/help.rb:94
1212
+ #: ../lib/puppet/face/help.rb:88
1186
1213
  msgid "Could not load help for the face %{face_name}."
1187
1214
  msgstr ""
1188
1215
 
1189
- #: ../lib/puppet/face/help.rb:106
1216
+ #: ../lib/puppet/face/help.rb:100
1190
1217
  msgid "Unable to load action %{actionname} from %{face}"
1191
1218
  msgstr ""
1192
1219
 
1193
- #: ../lib/puppet/face/help.rb:148
1194
- msgid " (Deprecated)"
1220
+ #: ../lib/puppet/face/help.rb:142
1221
+ msgid "(Deprecated)"
1222
+ msgstr ""
1223
+
1224
+ #: ../lib/puppet/face/help.rb:145 ../lib/puppet/face/help.rb:157
1225
+ msgid "!%{sub_command}! Subcommand unavailable due to error."
1195
1226
  msgstr ""
1196
1227
 
1197
- #: ../lib/puppet/face/help.rb:151 ../lib/puppet/face/help.rb:161
1198
- msgid "! Subcommand unavailable due to error. Check error logs."
1228
+ #: ../lib/puppet/face/help.rb:146 ../lib/puppet/face/help.rb:158
1229
+ msgid "Check error logs."
1199
1230
  msgstr ""
1200
1231
 
1201
1232
  #: ../lib/puppet/face/key.rb:7
@@ -1206,16 +1237,16 @@ msgstr ""
1206
1237
  msgid "Display Puppet manual pages."
1207
1238
  msgstr ""
1208
1239
 
1209
- #: ../lib/puppet/face/man.rb:26
1240
+ #: ../lib/puppet/face/man.rb:28
1210
1241
  msgid "Display the manual page for a Puppet subcommand."
1211
1242
  msgstr ""
1212
1243
 
1213
- #: ../lib/puppet/face/man.rb:27
1244
+ #: ../lib/puppet/face/man.rb:29
1214
1245
  msgid "<subcommand>"
1215
1246
  msgstr ""
1216
1247
 
1217
1248
  #. TRANSLATORS '--render-as s' is a command line option and should not be translated
1218
- #: ../lib/puppet/face/man.rb:29
1249
+ #: ../lib/puppet/face/man.rb:31
1219
1250
  msgid ""
1220
1251
  " The man data, in Markdown format, suitable for consumption by Ronn.\n"
1221
1252
  "\n"
@@ -1223,6 +1254,11 @@ msgid ""
1223
1254
  " text (e.g. for use in a pipeline), call this action with '--render-as s'.\n"
1224
1255
  msgstr ""
1225
1256
 
1257
+ #. TRANSLATORS 'puppet man' is a specific command line and should not be translated
1258
+ #: ../lib/puppet/face/man.rb:56
1259
+ msgid "The 'puppet man' command takes a single subcommand to review the subcommand's manpage"
1260
+ msgstr ""
1261
+
1226
1262
  #: ../lib/puppet/face/module.rb:11
1227
1263
  msgid "Creates, installs and searches for modules on the Puppet Forge."
1228
1264
  msgstr ""
@@ -1603,24 +1639,20 @@ msgstr ""
1603
1639
  msgid "Outputs a dump of the internal parse tree for debugging"
1604
1640
  msgstr ""
1605
1641
 
1606
- #: ../lib/puppet/face/parser.rb:67
1607
- msgid "<source>| [<manifest> ...] "
1608
- msgstr ""
1609
-
1610
- #: ../lib/puppet/face/parser.rb:83
1642
+ #: ../lib/puppet/face/parser.rb:91
1611
1643
  msgid "dump one source expression given on the command line."
1612
1644
  msgstr ""
1613
1645
 
1614
- #: ../lib/puppet/face/parser.rb:87
1646
+ #: ../lib/puppet/face/parser.rb:95
1615
1647
  msgid "Whether or not to validate the parsed result, if no-validate only syntax errors are reported"
1616
1648
  msgstr ""
1617
1649
 
1618
- #: ../lib/puppet/face/parser.rb:115
1650
+ #: ../lib/puppet/face/parser.rb:131
1619
1651
  msgid ""
1620
1652
  "One or more file(s) specified did not exist:\n"
1621
1653
  msgstr ""
1622
1654
 
1623
- #: ../lib/puppet/face/parser.rb:149
1655
+ #: ../lib/puppet/face/parser.rb:176
1624
1656
  msgid "For puppet parser validate"
1625
1657
  msgstr ""
1626
1658
 
@@ -1775,11 +1807,11 @@ msgstr ""
1775
1807
  msgid "Unknown option(s): %{opts}"
1776
1808
  msgstr ""
1777
1809
 
1778
- #: ../lib/puppet/file_bucket/file.rb:98
1810
+ #: ../lib/puppet/file_bucket/file.rb:96
1779
1811
  msgid "Computing checksum on string"
1780
1812
  msgstr ""
1781
1813
 
1782
- #: ../lib/puppet/file_bucket/file.rb:123
1814
+ #: ../lib/puppet/file_bucket/file.rb:121
1783
1815
  msgid "Computing checksum on file %{path}"
1784
1816
  msgstr ""
1785
1817
 
@@ -2152,26 +2184,30 @@ msgid ""
2152
2184
  msgstr ""
2153
2185
 
2154
2186
  #. TRANSLATORS the string "binary_file()" should not be translated
2155
- #: ../lib/puppet/functions/binary_file.rb:16
2187
+ #: ../lib/puppet/functions/binary_file.rb:28
2156
2188
  msgid "binary_file(): The given file '%{unresolved_path}' does not exist"
2157
2189
  msgstr ""
2158
2190
 
2159
- #: ../lib/puppet/functions/defined.rb:130
2191
+ #: ../lib/puppet/functions/defined.rb:132
2160
2192
  msgid "The given resource type is a reference to all kind of types"
2161
2193
  msgstr ""
2162
2194
 
2163
- #: ../lib/puppet/functions/defined.rb:135 ../lib/puppet/functions/defined.rb:149
2195
+ #: ../lib/puppet/functions/defined.rb:137 ../lib/puppet/functions/defined.rb:151
2164
2196
  msgid "The given class type is a reference to all classes"
2165
2197
  msgstr ""
2166
2198
 
2167
- #: ../lib/puppet/functions/defined.rb:153
2199
+ #: ../lib/puppet/functions/defined.rb:155
2168
2200
  msgid "Invalid argument of type '%{value_class}' to 'defined'"
2169
2201
  msgstr ""
2170
2202
 
2171
- #: ../lib/puppet/functions/dig.rb:17
2203
+ #: ../lib/puppet/functions/dig.rb:41
2172
2204
  msgid "The given data does not contain a Collection at %{walked_path}, got '%{klass}'"
2173
2205
  msgstr ""
2174
2206
 
2207
+ #: ../lib/puppet/functions/empty.rb:76
2208
+ msgid "Calling function empty() with %{arg_type} value is deprecated."
2209
+ msgstr ""
2210
+
2175
2211
  #. TRANSLATORS 'eyaml_lookup_key':, 'path', 'paths' 'glob', 'globs', 'mapped_paths', and lookup_key should not be translated
2176
2212
  #: ../lib/puppet/functions/eyaml_lookup_key.rb:31
2177
2213
  msgid "'eyaml_lookup_key': one of 'path', 'paths' 'glob', 'globs' or 'mapped_paths' must be declared in hiera.yaml when using this lookup_key function"
@@ -2201,19 +2237,19 @@ msgstr ""
2201
2237
  msgid "Given Regexp Type has no regular expression"
2202
2238
  msgstr ""
2203
2239
 
2204
- #: ../lib/puppet/functions/require.rb:36
2240
+ #: ../lib/puppet/functions/require.rb:70
2205
2241
  msgid "Could not find class %{klass}"
2206
2242
  msgstr ""
2207
2243
 
2208
- #: ../lib/puppet/functions/slice.rb:102
2244
+ #: ../lib/puppet/functions/slice.rb:116
2209
2245
  msgid "slice(): block must define at least one parameter. Block has 0."
2210
2246
  msgstr ""
2211
2247
 
2212
- #: ../lib/puppet/functions/slice.rb:105
2248
+ #: ../lib/puppet/functions/slice.rb:119
2213
2249
  msgid "slice(): block must define one parameter, or the same number of parameters as the given size of the slice (%{slice_size}). Block has %{serving_size}; %{parameter_names}"
2214
2250
  msgstr ""
2215
2251
 
2216
- #: ../lib/puppet/functions/strftime.rb:39
2252
+ #: ../lib/puppet/functions/strftime.rb:213
2217
2253
  msgid "The argument signature (String format, [String timezone]) is deprecated for #strftime. See #strftime documentation and Timespan type for more info"
2218
2254
  msgstr ""
2219
2255
 
@@ -2556,7 +2592,7 @@ msgstr ""
2556
2592
  msgid "You cannot save facts to the code store; it is only used for getting facts from Facter"
2557
2593
  msgstr ""
2558
2594
 
2559
- #: ../lib/puppet/indirector/facts/facter.rb:58
2595
+ #: ../lib/puppet/indirector/facts/facter.rb:56
2560
2596
  msgid "Loading facts"
2561
2597
  msgstr ""
2562
2598
 
@@ -2568,6 +2604,10 @@ msgstr ""
2568
2604
  msgid "You cannot save facts to the code store; it is only used for getting facts from a remote device"
2569
2605
  msgstr ""
2570
2606
 
2607
+ #: ../lib/puppet/indirector/facts/rest.rb:8 ../lib/puppet/indirector/rest.rb:235
2608
+ msgid "PUT does not accept options"
2609
+ msgstr ""
2610
+
2571
2611
  #: ../lib/puppet/indirector/file_bucket_file/file.rb:28
2572
2612
  msgid "could not find diff_with %{diff}"
2573
2613
  msgstr ""
@@ -2666,39 +2706,39 @@ msgstr ""
2666
2706
  msgid "Could not find terminus %{terminus_class} for indirection %{name}"
2667
2707
  msgstr ""
2668
2708
 
2669
- #: ../lib/puppet/indirector/indirection.rb:170
2709
+ #: ../lib/puppet/indirector/indirection.rb:172
2670
2710
  msgid "Expiring the %{cache} cache of %{instance}"
2671
2711
  msgstr ""
2672
2712
 
2673
- #: ../lib/puppet/indirector/indirection.rb:200
2713
+ #: ../lib/puppet/indirector/indirection.rb:202
2674
2714
  msgid "Caching %{indirection} for %{request}"
2675
2715
  msgstr ""
2676
2716
 
2677
- #: ../lib/puppet/indirector/indirection.rb:211
2717
+ #: ../lib/puppet/indirector/indirection.rb:213
2678
2718
  msgid "Filtered result for %{indirection} %{request}"
2679
2719
  msgstr ""
2680
2720
 
2681
- #: ../lib/puppet/indirector/indirection.rb:240
2721
+ #: ../lib/puppet/indirector/indirection.rb:242
2682
2722
  msgid "Not using expired %{indirection} for %{request} from cache; expired at %{expiration}"
2683
2723
  msgstr ""
2684
2724
 
2685
- #: ../lib/puppet/indirector/indirection.rb:247
2725
+ #: ../lib/puppet/indirector/indirection.rb:249
2686
2726
  msgid "Cached %{indirection} for %{request} failed: %{detail}"
2687
2727
  msgstr ""
2688
2728
 
2689
- #: ../lib/puppet/indirector/indirection.rb:272
2729
+ #: ../lib/puppet/indirector/indirection.rb:274
2690
2730
  msgid "Search results from terminus %{terminus_name} are not an array"
2691
2731
  msgstr ""
2692
2732
 
2693
- #: ../lib/puppet/indirector/indirection.rb:309
2733
+ #: ../lib/puppet/indirector/indirection.rb:311
2694
2734
  msgid "Not authorized to call %{method} on %{description}"
2695
2735
  msgstr ""
2696
2736
 
2697
- #: ../lib/puppet/indirector/indirection.rb:312
2737
+ #: ../lib/puppet/indirector/indirection.rb:314
2698
2738
  msgid "Not authorized to call %{method} on %{description} with %{option}"
2699
2739
  msgstr ""
2700
2740
 
2701
- #: ../lib/puppet/indirector/indirection.rb:338
2741
+ #: ../lib/puppet/indirector/indirection.rb:340
2702
2742
  msgid "Could not find terminus %{terminus_class} for indirection %{indirection}"
2703
2743
  msgstr ""
2704
2744
 
@@ -2837,19 +2877,19 @@ msgstr ""
2837
2877
  msgid "Server version %{version} does not accept reports in '%{format}', use `preferred_serialization_format=pson`"
2838
2878
  msgstr ""
2839
2879
 
2840
- #: ../lib/puppet/indirector/request.rb:96
2880
+ #: ../lib/puppet/indirector/request.rb:100
2841
2881
  msgid "Could not find indirection '%{indirection}'"
2842
2882
  msgstr ""
2843
2883
 
2844
- #: ../lib/puppet/indirector/request.rb:135
2884
+ #: ../lib/puppet/indirector/request.rb:139
2845
2885
  msgid "HTTP REST queries cannot handle values of type '%{klass}'"
2846
2886
  msgstr ""
2847
2887
 
2848
- #: ../lib/puppet/indirector/request.rb:190
2888
+ #: ../lib/puppet/indirector/request.rb:194
2849
2889
  msgid "Error connecting to %{srv_server}:%{srv_port}: %{message}"
2850
2890
  msgstr ""
2851
2891
 
2852
- #: ../lib/puppet/indirector/request.rb:245
2892
+ #: ../lib/puppet/indirector/request.rb:249
2853
2893
  msgid "Could not understand URL %{key}: %{detail}"
2854
2894
  msgstr ""
2855
2895
 
@@ -2869,10 +2909,6 @@ msgstr ""
2869
2909
  msgid "DELETE does not accept options"
2870
2910
  msgstr ""
2871
2911
 
2872
- #: ../lib/puppet/indirector/rest.rb:235
2873
- msgid "PUT does not accept options"
2874
- msgstr ""
2875
-
2876
2912
  #. TRANSLATORS "PSON" should not be translated
2877
2913
  #: ../lib/puppet/indirector/rest.rb:270
2878
2914
  msgid "Downgrading to PSON for future requests"
@@ -4127,23 +4163,23 @@ msgstr ""
4127
4163
  msgid "No name provided in serialized data"
4128
4164
  msgstr ""
4129
4165
 
4130
- #: ../lib/puppet/node.rb:100
4166
+ #: ../lib/puppet/node.rb:101
4131
4167
  msgid "Node names cannot be nil"
4132
4168
  msgstr ""
4133
4169
 
4134
- #: ../lib/puppet/node.rb:136
4170
+ #: ../lib/puppet/node.rb:137
4135
4171
  msgid "Could not retrieve facts for %{name}: %{detail}"
4136
4172
  msgstr ""
4137
4173
 
4138
- #: ../lib/puppet/node.rb:154
4174
+ #: ../lib/puppet/node.rb:155
4139
4175
  msgid "The node parameter '%{param_name}' for node '%{node_name}' was already set to '%{value}'. It could not be set to '%{desired_value}'"
4140
4176
  msgstr ""
4141
4177
 
4142
- #: ../lib/puppet/node.rb:193
4178
+ #: ../lib/puppet/node.rb:194
4143
4179
  msgid "Host is missing hostname and/or domain: %{name}"
4144
4180
  msgstr ""
4145
4181
 
4146
- #: ../lib/puppet/node.rb:225
4182
+ #: ../lib/puppet/node.rb:226
4147
4183
  msgid "Trusted node data modified for node %{name}"
4148
4184
  msgstr ""
4149
4185
 
@@ -4151,7 +4187,7 @@ msgstr ""
4151
4187
  msgid "The 'disable_per_environment_manifest' setting is true, and the '%{env_name}' environment has an environment.conf manifest that conflicts with the 'default_manifest' setting."
4152
4188
  msgstr ""
4153
4189
 
4154
- #: ../lib/puppet/node/environment.rb:564 ../lib/puppet/pops/loaders.rb:287
4190
+ #: ../lib/puppet/node/environment.rb:564 ../lib/puppet/pops/loaders.rb:298
4155
4191
  msgid "Could not parse for environment %{env}: %{detail}"
4156
4192
  msgstr ""
4157
4193
 
@@ -4841,22 +4877,22 @@ msgid "epp(): Invalid EPP: %{detail}"
4841
4877
  msgstr ""
4842
4878
 
4843
4879
  #. TRANSLATORS 'LambdaExpression' is a class name and should not be translated
4844
- #: ../lib/puppet/pops/evaluator/epp_evaluator.rb:64
4880
+ #: ../lib/puppet/pops/evaluator/epp_evaluator.rb:62
4845
4881
  msgid "%{function_name}(): the parser did not produce a LambdaExpression, got '%{class_name}'"
4846
4882
  msgstr ""
4847
4883
 
4848
4884
  #. TRANSLATORS 'EppExpression' is a class name and should not be translated
4849
- #: ../lib/puppet/pops/evaluator/epp_evaluator.rb:69
4885
+ #: ../lib/puppet/pops/evaluator/epp_evaluator.rb:67
4850
4886
  msgid "%{function_name}(): the parser did not produce an EppExpression, got '%{class_name}'"
4851
4887
  msgstr ""
4852
4888
 
4853
4889
  #. TRANSLATORS 'EPP' refers to 'Embedded Puppet (EPP) template'
4854
- #: ../lib/puppet/pops/evaluator/epp_evaluator.rb:74
4890
+ #: ../lib/puppet/pops/evaluator/epp_evaluator.rb:72
4855
4891
  msgid "%{function_name}(): The EPP template contains illegal expressions (definitions)"
4856
4892
  msgstr ""
4857
4893
 
4858
4894
  #. TRANSLATORS 'template_args' is a variable name and should not be translated
4859
- #: ../lib/puppet/pops/evaluator/epp_evaluator.rb:114
4895
+ #: ../lib/puppet/pops/evaluator/epp_evaluator.rb:113
4860
4896
  msgid "%{function_name}(): the template_args must be a Hash, got a %{class_name}"
4861
4897
  msgstr ""
4862
4898
 
@@ -4880,7 +4916,7 @@ msgstr ""
4880
4916
  msgid "Can only delete from an Array or Hash."
4881
4917
  msgstr ""
4882
4918
 
4883
- #: ../lib/puppet/pops/evaluator/external_syntax_support.rb:22 ../lib/puppet/pops/evaluator/runtime3_support.rb:23 ../lib/puppet/pops/evaluator/runtime3_support.rb:528
4919
+ #: ../lib/puppet/pops/evaluator/external_syntax_support.rb:22 ../lib/puppet/pops/evaluator/runtime3_support.rb:23 ../lib/puppet/pops/evaluator/runtime3_support.rb:531
4884
4920
  msgid "Internal Error: Configuration of runtime error handling wrong: should have raised exception"
4885
4921
  msgstr ""
4886
4922
 
@@ -4925,702 +4961,706 @@ msgstr ""
4925
4961
  msgid "Language validation logged %{error_count} errors. Giving up"
4926
4962
  msgstr ""
4927
4963
 
4928
- #: ../lib/puppet/pops/issues.rb:53
4964
+ #: ../lib/puppet/pops/issues.rb:52
4929
4965
  msgid "Error while reporting issue: %{code}. %{message}"
4930
4966
  msgstr ""
4931
4967
 
4932
4968
  #. TRANSLATORS ":label" is a keyword and should not be translated
4933
- #: ../lib/puppet/pops/issues.rb:94
4969
+ #: ../lib/puppet/pops/issues.rb:93
4934
4970
  msgid "Label provider key :label must be set to produce the text of the message!"
4935
4971
  msgstr ""
4936
4972
 
4937
4973
  #. TRANSLATORS ":semantic" is a keyword and should not be translated
4938
- #: ../lib/puppet/pops/issues.rb:102
4974
+ #: ../lib/puppet/pops/issues.rb:101
4939
4975
  msgid "Label provider key :semantic must be set to produce the text of the message!"
4940
4976
  msgstr ""
4941
4977
 
4942
- #: ../lib/puppet/pops/issues.rb:147
4978
+ #: ../lib/puppet/pops/issues.rb:146
4943
4979
  msgid "%{issue} may not have a name containing a hyphen. The name '%{name}' is not legal"
4944
4980
  msgstr ""
4945
4981
 
4946
- #: ../lib/puppet/pops/issues.rb:157
4982
+ #: ../lib/puppet/pops/issues.rb:156
4947
4983
  msgid "A variable name may not contain a hyphen. The name '%{name}' is not legal"
4948
4984
  msgstr ""
4949
4985
 
4950
- #: ../lib/puppet/pops/issues.rb:165
4986
+ #: ../lib/puppet/pops/issues.rb:164
4951
4987
  msgid "Classes, definitions, and nodes may only appear at toplevel or inside other classes"
4952
4988
  msgstr ""
4953
4989
 
4954
- #: ../lib/puppet/pops/issues.rb:169
4990
+ #: ../lib/puppet/pops/issues.rb:168
4955
4991
  msgid "%{value} may only appear at toplevel"
4956
4992
  msgstr ""
4957
4993
 
4958
- #: ../lib/puppet/pops/issues.rb:173
4994
+ #: ../lib/puppet/pops/issues.rb:172
4959
4995
  msgid "Illegal attempt to assign to '%{name}'. Cannot assign to variables in other namespaces"
4960
4996
  msgstr ""
4961
4997
 
4962
- #: ../lib/puppet/pops/issues.rb:178
4998
+ #: ../lib/puppet/pops/issues.rb:177
4963
4999
  msgid "Illegal attempt to assign to '%{value}'. Not an assignable reference"
4964
5000
  msgstr ""
4965
5001
 
4966
- #: ../lib/puppet/pops/issues.rb:184
5002
+ #: ../lib/puppet/pops/issues.rb:183
4967
5003
  msgid "Cannot reassign built in (or already assigned) variable '$%{var}'"
4968
5004
  msgstr ""
4969
5005
 
4970
- #: ../lib/puppet/pops/issues.rb:186
5006
+ #: ../lib/puppet/pops/issues.rb:185
4971
5007
  msgid "Cannot reassign variable '$%{var}'"
4972
5008
  msgstr ""
4973
5009
 
4974
- #: ../lib/puppet/pops/issues.rb:192
5010
+ #: ../lib/puppet/pops/issues.rb:191
4975
5011
  msgid "Attempt to assign to a reserved variable name: '$%{var}'"
4976
5012
  msgstr ""
4977
5013
 
4978
- #: ../lib/puppet/pops/issues.rb:197
5014
+ #: ../lib/puppet/pops/issues.rb:196
4979
5015
  msgid "Illegal attempt to assign to the numeric match result variable '$%{var}'. Numeric variables are not assignable"
4980
5016
  msgstr ""
4981
5017
 
4982
- #: ../lib/puppet/pops/issues.rb:202
5018
+ #: ../lib/puppet/pops/issues.rb:201
4983
5019
  msgid "Assignment not allowed here"
4984
5020
  msgstr ""
4985
5021
 
4986
- #: ../lib/puppet/pops/issues.rb:207
5022
+ #: ../lib/puppet/pops/issues.rb:206
4987
5023
  msgid "The numeric parameter name '$%{name}' cannot be used (clashes with numeric match result variables)"
4988
5024
  msgstr ""
4989
5025
 
4990
- #: ../lib/puppet/pops/issues.rb:215
5026
+ #: ../lib/puppet/pops/issues.rb:214
4991
5027
  msgid "Illegal attempt to assign via [index/key]. Not an assignable reference"
4992
5028
  msgstr ""
4993
5029
 
4994
- #: ../lib/puppet/pops/issues.rb:222
5030
+ #: ../lib/puppet/pops/issues.rb:221
4995
5031
  msgid "Illegal attempt to assign to %{value} via [index/key]. Not an assignable reference"
4996
5032
  msgstr ""
4997
5033
 
4998
- #: ../lib/puppet/pops/issues.rb:226
5034
+ #: ../lib/puppet/pops/issues.rb:225
4999
5035
  msgid "Mismatched number of assignable entries and values, expected %{expected}, got %{actual}"
5000
5036
  msgstr ""
5001
5037
 
5002
- #: ../lib/puppet/pops/issues.rb:230
5038
+ #: ../lib/puppet/pops/issues.rb:229
5003
5039
  msgid "No value for required key '%{key}' in assignment to variables from hash"
5004
5040
  msgstr ""
5005
5041
 
5006
- #: ../lib/puppet/pops/issues.rb:234
5042
+ #: ../lib/puppet/pops/issues.rb:233
5007
5043
  msgid "No value for required variable '$%{name}' in assignment to variables from class reference"
5008
5044
  msgstr ""
5009
5045
 
5010
- #: ../lib/puppet/pops/issues.rb:238
5046
+ #: ../lib/puppet/pops/issues.rb:237
5011
5047
  msgid "The operator '%{operator}' is no longer supported. See http://links.puppet.com/remove-plus-equals"
5012
5048
  msgstr ""
5013
5049
 
5014
- #: ../lib/puppet/pops/issues.rb:244
5050
+ #: ../lib/puppet/pops/issues.rb:243
5015
5051
  msgid "The operator '%{operator}' is not supported."
5016
5052
  msgstr ""
5017
5053
 
5018
- #: ../lib/puppet/pops/issues.rb:251
5054
+ #: ../lib/puppet/pops/issues.rb:250
5019
5055
  msgid "The operator '%{operator}' in %{value} is not supported."
5020
5056
  msgstr ""
5021
5057
 
5022
- #: ../lib/puppet/pops/issues.rb:257
5058
+ #: ../lib/puppet/pops/issues.rb:256
5023
5059
  msgid "Operator '%{operator}' is not applicable to %{left}."
5024
5060
  msgstr ""
5025
5061
 
5026
- #: ../lib/puppet/pops/issues.rb:261
5062
+ #: ../lib/puppet/pops/issues.rb:260
5027
5063
  msgid "Operator '%{operator}' is not applicable to %{left} when right side is %{right}."
5028
5064
  msgstr ""
5029
5065
 
5030
- #: ../lib/puppet/pops/issues.rb:265
5066
+ #: ../lib/puppet/pops/issues.rb:264
5031
5067
  msgid "Comparison of: %{left} %{operator} %{right}, is not possible. Caused by '%{detail}'."
5032
5068
  msgstr ""
5033
5069
 
5034
- #: ../lib/puppet/pops/issues.rb:269
5070
+ #: ../lib/puppet/pops/issues.rb:268
5035
5071
  msgid "Can not convert right match operand to a regular expression. Caused by '%{detail}'."
5036
5072
  msgstr ""
5037
5073
 
5038
- #: ../lib/puppet/pops/issues.rb:273
5074
+ #: ../lib/puppet/pops/issues.rb:272
5039
5075
  msgid "Left match operand must result in a String value. Got %{left}."
5040
5076
  msgstr ""
5041
5077
 
5042
- #: ../lib/puppet/pops/issues.rb:280
5078
+ #: ../lib/puppet/pops/issues.rb:279
5043
5079
  msgid "Invalid use of expression. %{value} does not produce a value"
5044
5080
  msgstr ""
5045
5081
 
5046
- #: ../lib/puppet/pops/issues.rb:286
5082
+ #: ../lib/puppet/pops/issues.rb:285
5047
5083
  msgid "Illegal +> operation on attribute %{attr}. This operator can not be used in %{expression}"
5048
5084
  msgstr ""
5049
5085
 
5050
- #: ../lib/puppet/pops/issues.rb:290
5086
+ #: ../lib/puppet/pops/issues.rb:289
5051
5087
  msgid "Illegal name. The given name '%{name}' does not conform to the naming rule /^((::)?[a-z_]\\w*)(::[a-z]\\w*)*$/"
5052
5088
  msgstr ""
5053
5089
 
5054
- #: ../lib/puppet/pops/issues.rb:294
5090
+ #: ../lib/puppet/pops/issues.rb:293
5055
5091
  msgid "Illegal type mapping. Expected a Type on the left side, got %{expression}"
5056
5092
  msgstr ""
5057
5093
 
5058
- #: ../lib/puppet/pops/issues.rb:298
5094
+ #: ../lib/puppet/pops/issues.rb:297
5059
5095
  msgid "Illegal type mapping. Expected a Tuple[Regexp,String] on the left side, got %{expression}"
5060
5096
  msgstr ""
5061
5097
 
5062
- #: ../lib/puppet/pops/issues.rb:302
5098
+ #: ../lib/puppet/pops/issues.rb:301
5063
5099
  msgid "Illegal parameter name. The given name '%{name}' does not conform to the naming rule /^[a-z_]\\w*$/"
5064
5100
  msgstr ""
5065
5101
 
5066
- #: ../lib/puppet/pops/issues.rb:306
5102
+ #: ../lib/puppet/pops/issues.rb:305
5067
5103
  msgid "Illegal variable name, The given name '%{name}' does not conform to the naming rule /^((::)?[a-z]\\w*)*((::)?[a-z_]\\w*)$/"
5068
5104
  msgstr ""
5069
5105
 
5070
- #: ../lib/puppet/pops/issues.rb:310
5106
+ #: ../lib/puppet/pops/issues.rb:309
5071
5107
  msgid "Illegal numeric variable name, The given name '%{name}' must be a decimal value if it starts with a digit 0-9"
5072
5108
  msgstr ""
5073
5109
 
5074
- #: ../lib/puppet/pops/issues.rb:316
5110
+ #: ../lib/puppet/pops/issues.rb:315
5075
5111
  msgid "Illegal type reference. The given name '%{name}' does not conform to the naming rule"
5076
5112
  msgstr ""
5077
5113
 
5078
- #: ../lib/puppet/pops/issues.rb:324
5114
+ #: ../lib/puppet/pops/issues.rb:323
5079
5115
  msgid "You cannot collect exported resources without storeconfigs being set; the collection will be ignored"
5080
5116
  msgstr ""
5081
5117
 
5082
- #: ../lib/puppet/pops/issues.rb:332
5118
+ #: ../lib/puppet/pops/issues.rb:331
5083
5119
  msgid "You cannot collect exported resources without storeconfigs being set; the export is ignored"
5084
5120
  msgstr ""
5085
5121
 
5086
- #: ../lib/puppet/pops/issues.rb:338
5122
+ #: ../lib/puppet/pops/issues.rb:337
5087
5123
  msgid "The hostname '%{hostname}' contains illegal characters (only letters, digits, '_', '-', and '.' are allowed)"
5088
5124
  msgstr ""
5089
5125
 
5090
- #: ../lib/puppet/pops/issues.rb:344
5126
+ #: ../lib/puppet/pops/issues.rb:343
5091
5127
  msgid "An interpolated expression is not allowed in a hostname of a node"
5092
5128
  msgstr ""
5093
5129
 
5094
- #: ../lib/puppet/pops/issues.rb:351
5130
+ #: ../lib/puppet/pops/issues.rb:350
5095
5131
  msgid "Illegal expression. %{expression} is unacceptable as %{feature} in %{container}"
5096
5132
  msgstr ""
5097
5133
 
5098
- #: ../lib/puppet/pops/issues.rb:357
5134
+ #: ../lib/puppet/pops/issues.rb:356
5099
5135
  msgid "Illegal variable expression. %{expression} did not produce a variable name (String or Numeric)."
5100
5136
  msgstr ""
5101
5137
 
5102
- #: ../lib/puppet/pops/issues.rb:364
5138
+ #: ../lib/puppet/pops/issues.rb:363
5103
5139
  msgid "Illegal query expression. %{expression} cannot be used in a query"
5104
5140
  msgstr ""
5105
5141
 
5106
- #: ../lib/puppet/pops/issues.rb:370
5142
+ #: ../lib/puppet/pops/issues.rb:369
5107
5143
  msgid "Resource Defaults are not virtualizable"
5108
5144
  msgstr ""
5109
5145
 
5110
- #: ../lib/puppet/pops/issues.rb:374
5146
+ #: ../lib/puppet/pops/issues.rb:373
5111
5147
  msgid "Classes are not virtualizable"
5112
5148
  msgstr ""
5113
5149
 
5114
- #: ../lib/puppet/pops/issues.rb:381
5150
+ #: ../lib/puppet/pops/issues.rb:380
5115
5151
  msgid "Attempt to use unsupported range in %{expression}, %{count} values given for max 1"
5116
5152
  msgstr ""
5117
5153
 
5118
- #: ../lib/puppet/pops/issues.rb:387
5154
+ #: ../lib/puppet/pops/issues.rb:386
5119
5155
  msgid "Expressions of type %{expression} are not supported in this version of Puppet"
5120
5156
  msgstr ""
5121
5157
 
5122
- #: ../lib/puppet/pops/issues.rb:391
5158
+ #: ../lib/puppet/pops/issues.rb:390
5123
5159
  msgid "Illegal relationship operand, can not form a relationship with %{expression}. A Catalog type is required."
5124
5160
  msgstr ""
5125
5161
 
5126
- #: ../lib/puppet/pops/issues.rb:395
5162
+ #: ../lib/puppet/pops/issues.rb:394
5127
5163
  msgid "Illegal relationship operand, can not form a relationship with something of type %{expression_type}. A Catalog type is required."
5128
5164
  msgstr ""
5129
5165
 
5130
- #: ../lib/puppet/pops/issues.rb:399
5166
+ #: ../lib/puppet/pops/issues.rb:398
5131
5167
  msgid "String supports [] with one or two arguments. Got %{actual}"
5132
5168
  msgstr ""
5133
5169
 
5134
- #: ../lib/puppet/pops/issues.rb:403
5170
+ #: ../lib/puppet/pops/issues.rb:402
5135
5171
  msgid "String-Type [] requires all arguments to be integers (or default). Got %{actual}"
5136
5172
  msgstr ""
5137
5173
 
5138
- #: ../lib/puppet/pops/issues.rb:407
5174
+ #: ../lib/puppet/pops/issues.rb:406
5139
5175
  msgid "Array supports [] with one or two arguments. Got %{actual}"
5140
5176
  msgstr ""
5141
5177
 
5142
- #: ../lib/puppet/pops/issues.rb:411
5178
+ #: ../lib/puppet/pops/issues.rb:410
5143
5179
  msgid "Hash supports [] with one or more arguments. Got %{actual}"
5144
5180
  msgstr ""
5145
5181
 
5146
- #: ../lib/puppet/pops/issues.rb:415
5182
+ #: ../lib/puppet/pops/issues.rb:414
5147
5183
  msgid "Integer-Type supports [] with one or two arguments (from, to). Got %{actual}"
5148
5184
  msgstr ""
5149
5185
 
5150
- #: ../lib/puppet/pops/issues.rb:419
5186
+ #: ../lib/puppet/pops/issues.rb:418
5151
5187
  msgid "Integer-Type [] requires all arguments to be integers (or default). Got %{actual}"
5152
5188
  msgstr ""
5153
5189
 
5154
- #: ../lib/puppet/pops/issues.rb:423
5190
+ #: ../lib/puppet/pops/issues.rb:422
5155
5191
  msgid "A Type's size constraint arguments must be a single Integer type, or 1-2 integers (or default). Got %{actual}"
5156
5192
  msgstr ""
5157
5193
 
5158
- #: ../lib/puppet/pops/issues.rb:427
5194
+ #: ../lib/puppet/pops/issues.rb:426
5159
5195
  msgid "Float-Type supports [] with one or two arguments (from, to). Got %{actual}"
5160
5196
  msgstr ""
5161
5197
 
5162
- #: ../lib/puppet/pops/issues.rb:431
5198
+ #: ../lib/puppet/pops/issues.rb:430
5163
5199
  msgid "Float-Type [] requires all arguments to be floats, or integers (or default). Got %{actual}"
5164
5200
  msgstr ""
5165
5201
 
5166
- #: ../lib/puppet/pops/issues.rb:436
5202
+ #: ../lib/puppet/pops/issues.rb:435
5167
5203
  msgid "one of %{expected} are"
5168
5204
  msgstr ""
5169
5205
 
5170
- #: ../lib/puppet/pops/issues.rb:438
5206
+ #: ../lib/puppet/pops/issues.rb:437
5171
5207
  msgid "%{expected} is"
5172
5208
  msgstr ""
5173
5209
 
5174
- #: ../lib/puppet/pops/issues.rb:440
5210
+ #: ../lib/puppet/pops/issues.rb:439
5175
5211
  msgid "%{expression}[] cannot use %{actual} where %{expected_text} expected"
5176
5212
  msgstr ""
5177
5213
 
5178
- #: ../lib/puppet/pops/issues.rb:444
5214
+ #: ../lib/puppet/pops/issues.rb:443
5179
5215
  msgid "A substring operation does not accept %{label_article} %{actual_type} as a character index. Expected an Integer"
5180
5216
  msgstr ""
5181
5217
 
5182
- #: ../lib/puppet/pops/issues.rb:448
5218
+ #: ../lib/puppet/pops/issues.rb:447
5183
5219
  msgid "%{expression}[] argument must be a Type or a String. Got %{actual}"
5184
5220
  msgstr ""
5185
5221
 
5186
- #: ../lib/puppet/pops/issues.rb:452
5222
+ #: ../lib/puppet/pops/issues.rb:451
5187
5223
  msgid "%{base_type}[] arguments must be types. Got %{actual}"
5188
5224
  msgstr ""
5189
5225
 
5190
- #: ../lib/puppet/pops/issues.rb:458
5226
+ #: ../lib/puppet/pops/issues.rb:457
5191
5227
  msgid "%{base_type_label}[] accepts %{min} or more arguments. Got %{actual}"
5192
5228
  msgstr ""
5193
5229
 
5194
- #: ../lib/puppet/pops/issues.rb:460
5230
+ #: ../lib/puppet/pops/issues.rb:459
5195
5231
  msgid "%{base_type_label}[] accepts %{min} to %{max} arguments. Got %{actual}"
5196
5232
  msgstr ""
5197
5233
 
5198
- #: ../lib/puppet/pops/issues.rb:462
5234
+ #: ../lib/puppet/pops/issues.rb:461
5199
5235
  msgid "%{base_type_label}[] accepts %{min} %{label}. Got %{actual}"
5200
5236
  msgstr ""
5201
5237
 
5202
- #: ../lib/puppet/pops/issues.rb:462
5238
+ #: ../lib/puppet/pops/issues.rb:461
5203
5239
  msgid "argument"
5204
5240
  msgstr ""
5205
5241
 
5206
- #: ../lib/puppet/pops/issues.rb:467
5242
+ #: ../lib/puppet/pops/issues.rb:466
5207
5243
  msgid "Error creating type specialization of %{base_type}, %{message}"
5208
5244
  msgstr ""
5209
5245
 
5210
- #: ../lib/puppet/pops/issues.rb:471
5246
+ #: ../lib/puppet/pops/issues.rb:470
5211
5247
  msgid "Cannot specialize an already specialized %{kind} type"
5212
5248
  msgstr ""
5213
5249
 
5214
- #: ../lib/puppet/pops/issues.rb:475
5250
+ #: ../lib/puppet/pops/issues.rb:474
5215
5251
  msgid "First argument to Resource[] must be a resource type or a String. Got %{actual}."
5216
5252
  msgstr ""
5217
5253
 
5218
- #: ../lib/puppet/pops/issues.rb:479
5254
+ #: ../lib/puppet/pops/issues.rb:478
5219
5255
  msgid "Arguments to Resource[] are all empty/undefined"
5220
5256
  msgstr ""
5221
5257
 
5222
- #: ../lib/puppet/pops/issues.rb:483
5258
+ #: ../lib/puppet/pops/issues.rb:482
5223
5259
  msgid "Illegal Class name in class reference. %{expression} cannot be used where a String is expected"
5224
5260
  msgstr ""
5225
5261
 
5226
- #: ../lib/puppet/pops/issues.rb:487
5262
+ #: ../lib/puppet/pops/issues.rb:486
5227
5263
  msgid "Unacceptable name. The name '%{name}' is unacceptable as the name of %{value}"
5228
5264
  msgstr ""
5229
5265
 
5230
- #: ../lib/puppet/pops/issues.rb:491
5266
+ #: ../lib/puppet/pops/issues.rb:490
5231
5267
  msgid "Parameter $%{param} is not last, and has 'captures rest'"
5232
5268
  msgstr ""
5233
5269
 
5234
- #: ../lib/puppet/pops/issues.rb:495
5270
+ #: ../lib/puppet/pops/issues.rb:494
5235
5271
  msgid "Parameter $%{param} has 'captures rest' - not supported in %{container}"
5236
5272
  msgstr ""
5237
5273
 
5238
- #: ../lib/puppet/pops/issues.rb:499
5274
+ #: ../lib/puppet/pops/issues.rb:498
5239
5275
  msgid "Parameter $%{param} is required but appears after optional parameters"
5240
5276
  msgstr ""
5241
5277
 
5242
- #: ../lib/puppet/pops/issues.rb:503
5278
+ #: ../lib/puppet/pops/issues.rb:502
5243
5279
  msgid "Parameter $%{param} is required but no value was given"
5244
5280
  msgstr ""
5245
5281
 
5246
- #: ../lib/puppet/pops/issues.rb:507
5282
+ #: ../lib/puppet/pops/issues.rb:506
5247
5283
  msgid "The value '%{value}' cannot be converted to Numeric."
5248
5284
  msgstr ""
5249
5285
 
5250
- #: ../lib/puppet/pops/issues.rb:511
5286
+ #: ../lib/puppet/pops/issues.rb:510
5251
5287
  msgid "The string '%{before}' was automatically coerced to the numerical value %{after}"
5252
5288
  msgstr ""
5253
5289
 
5254
- #: ../lib/puppet/pops/issues.rb:515
5290
+ #: ../lib/puppet/pops/issues.rb:514
5255
5291
  msgid "Unknown function: '%{name}'."
5256
5292
  msgstr ""
5257
5293
 
5258
- #: ../lib/puppet/pops/issues.rb:519
5294
+ #: ../lib/puppet/pops/issues.rb:518
5259
5295
  msgid "Unknown variable: '%{name}'."
5260
5296
  msgstr ""
5261
5297
 
5262
- #: ../lib/puppet/pops/issues.rb:523
5298
+ #: ../lib/puppet/pops/issues.rb:522
5263
5299
  msgid "Error while evaluating %{expression}, %{detail}"
5264
5300
  msgstr ""
5265
5301
 
5266
- #: ../lib/puppet/pops/issues.rb:527
5302
+ #: ../lib/puppet/pops/issues.rb:526
5267
5303
  msgid "Resource type not found: %{res_type}"
5268
5304
  msgstr ""
5269
5305
 
5270
- #: ../lib/puppet/pops/issues.rb:531
5306
+ #: ../lib/puppet/pops/issues.rb:530
5271
5307
  msgid "Illegal Resource Type expression, expected result to be a type name, or untitled Resource, got %{actual}"
5272
5308
  msgstr ""
5273
5309
 
5274
- #: ../lib/puppet/pops/issues.rb:535
5310
+ #: ../lib/puppet/pops/issues.rb:534
5275
5311
  msgid "The title '%{title}' has already been used in this resource expression"
5276
5312
  msgstr ""
5277
5313
 
5278
- #: ../lib/puppet/pops/issues.rb:539
5314
+ #: ../lib/puppet/pops/issues.rb:538
5279
5315
  msgid "The attribute '%{attribute}' has already been set"
5280
5316
  msgstr ""
5281
5317
 
5282
- #: ../lib/puppet/pops/issues.rb:543
5318
+ #: ../lib/puppet/pops/issues.rb:542
5283
5319
  msgid "Missing title. The title expression resulted in undef"
5284
5320
  msgstr ""
5285
5321
 
5286
- #: ../lib/puppet/pops/issues.rb:547
5322
+ #: ../lib/puppet/pops/issues.rb:546
5287
5323
  msgid "Missing title at index %{index}. The title expression resulted in an undef title"
5288
5324
  msgstr ""
5289
5325
 
5290
- #: ../lib/puppet/pops/issues.rb:551
5326
+ #: ../lib/puppet/pops/issues.rb:550
5291
5327
  msgid "Illegal title type at index %{index}. Expected String, got %{actual}"
5292
5328
  msgstr ""
5293
5329
 
5294
- #: ../lib/puppet/pops/issues.rb:555
5330
+ #: ../lib/puppet/pops/issues.rb:554
5295
5331
  msgid "Empty string title at %{index}. Title strings must have a length greater than zero."
5296
5332
  msgstr ""
5297
5333
 
5298
- #: ../lib/puppet/pops/issues.rb:559
5334
+ #: ../lib/puppet/pops/issues.rb:558
5299
5335
  msgid "Resource not found: %{type_name}['%{title}']"
5300
5336
  msgstr ""
5301
5337
 
5302
- #: ../lib/puppet/pops/issues.rb:563
5338
+ #: ../lib/puppet/pops/issues.rb:562
5303
5339
  msgid "The resource %{type_name}['%{title}'] does not have a parameter called '%{param}'"
5304
5340
  msgstr ""
5305
5341
 
5306
- #: ../lib/puppet/pops/issues.rb:567
5342
+ #: ../lib/puppet/pops/issues.rb:566
5307
5343
  msgid "Division by 0"
5308
5344
  msgstr ""
5309
5345
 
5310
- #: ../lib/puppet/pops/issues.rb:571
5346
+ #: ../lib/puppet/pops/issues.rb:570
5311
5347
  msgid "The result of the %{operator} expression is Infinity"
5312
5348
  msgstr ""
5313
5349
 
5314
- #: ../lib/puppet/pops/issues.rb:576
5350
+ #: ../lib/puppet/pops/issues.rb:575
5315
5351
  msgid "Heredoc syntax specification has empty segment between '+' : '%{syntax}'"
5316
5352
  msgstr ""
5317
5353
 
5318
- #: ../lib/puppet/pops/issues.rb:580
5354
+ #: ../lib/puppet/pops/issues.rb:579
5319
5355
  msgid "Ambiguous EPP parameter expression. Probably missing '<%-' before parameters to remove leading whitespace"
5320
5356
  msgstr ""
5321
5357
 
5322
5358
  #. TRANSLATORS "import" is a function name and should not be translated
5323
- #: ../lib/puppet/pops/issues.rb:585
5359
+ #: ../lib/puppet/pops/issues.rb:584
5324
5360
  msgid "Use of 'import' has been discontinued in favor of a manifest directory. See http://links.puppet.com/puppet-import-deprecation"
5325
5361
  msgstr ""
5326
5362
 
5327
- #: ../lib/puppet/pops/issues.rb:589
5363
+ #: ../lib/puppet/pops/issues.rb:588
5328
5364
  msgid "This %{expression} has no effect. A value was produced and then forgotten (one or more preceding expressions may have the wrong form)"
5329
5365
  msgstr ""
5330
5366
 
5331
- #: ../lib/puppet/pops/issues.rb:593
5367
+ #: ../lib/puppet/pops/issues.rb:592
5332
5368
  msgid "This expression is invalid. Did you try declaring a '%{name}' resource without a title?"
5333
5369
  msgstr ""
5334
5370
 
5335
- #: ../lib/puppet/pops/issues.rb:597
5371
+ #: ../lib/puppet/pops/issues.rb:596
5336
5372
  msgid "This %{expression} has no effect. %{container} can not end with a value-producing expression without other effect"
5337
5373
  msgstr ""
5338
5374
 
5339
- #: ../lib/puppet/pops/issues.rb:601
5375
+ #: ../lib/puppet/pops/issues.rb:600
5340
5376
  msgid "Use of reserved word: %{word}, must be quoted if intended to be a String value"
5341
5377
  msgstr ""
5342
5378
 
5343
- #: ../lib/puppet/pops/issues.rb:605
5379
+ #: ../lib/puppet/pops/issues.rb:604
5344
5380
  msgid "Use of future reserved word: '%{word}'"
5345
5381
  msgstr ""
5346
5382
 
5347
- #: ../lib/puppet/pops/issues.rb:609
5383
+ #: ../lib/puppet/pops/issues.rb:608
5348
5384
  msgid "The name: '%{name}' is already defined by Puppet and can not be used as the name of %{expression}."
5349
5385
  msgstr ""
5350
5386
 
5351
- #: ../lib/puppet/pops/issues.rb:613
5387
+ #: ../lib/puppet/pops/issues.rb:612
5352
5388
  msgid "No matching entry for selector parameter with value '%{param}'"
5353
5389
  msgstr ""
5354
5390
 
5355
- #: ../lib/puppet/pops/issues.rb:617
5391
+ #: ../lib/puppet/pops/issues.rb:616
5356
5392
  msgid "Node inheritance is not supported in Puppet >= 4.0.0. See http://links.puppet.com/puppet-node-inheritance-deprecation"
5357
5393
  msgstr ""
5358
5394
 
5359
- #: ../lib/puppet/pops/issues.rb:621
5395
+ #: ../lib/puppet/pops/issues.rb:620
5360
5396
  msgid "Resource Override can only operate on resources, got: %{actual}"
5361
5397
  msgstr ""
5362
5398
 
5363
- #: ../lib/puppet/pops/issues.rb:625
5399
+ #: ../lib/puppet/pops/issues.rb:624
5364
5400
  msgid "The parameter '%{param}' is declared more than once in the parameter list"
5365
5401
  msgstr ""
5366
5402
 
5367
- #: ../lib/puppet/pops/issues.rb:629
5403
+ #: ../lib/puppet/pops/issues.rb:628
5368
5404
  msgid "The key '%{key}' is declared more than once"
5369
5405
  msgstr ""
5370
5406
 
5371
- #: ../lib/puppet/pops/issues.rb:633
5407
+ #: ../lib/puppet/pops/issues.rb:632
5372
5408
  msgid "This %{container} already has a 'default' entry - this is a duplicate"
5373
5409
  msgstr ""
5374
5410
 
5375
- #: ../lib/puppet/pops/issues.rb:637
5411
+ #: ../lib/puppet/pops/issues.rb:636
5376
5412
  msgid "The parameter $%{param} redefines a built in parameter in %{container}"
5377
5413
  msgstr ""
5378
5414
 
5379
- #: ../lib/puppet/pops/issues.rb:641
5415
+ #: ../lib/puppet/pops/issues.rb:640
5380
5416
  msgid "Expected value of type %{expected}, got %{actual}"
5381
5417
  msgstr ""
5382
5418
 
5383
- #: ../lib/puppet/pops/issues.rb:645
5419
+ #: ../lib/puppet/pops/issues.rb:644
5384
5420
  msgid "Unfolding of attributes from Hash can only be used once per resource body"
5385
5421
  msgstr ""
5386
5422
 
5387
- #: ../lib/puppet/pops/issues.rb:649
5423
+ #: ../lib/puppet/pops/issues.rb:648
5388
5424
  msgid "This %{expression} appears in a context where catalog related expressions are not allowed"
5389
5425
  msgstr ""
5390
5426
 
5391
- #: ../lib/puppet/pops/issues.rb:653
5427
+ #: ../lib/puppet/pops/issues.rb:652
5392
5428
  msgid "Syntax error at %{location}"
5393
5429
  msgstr ""
5394
5430
 
5395
- #: ../lib/puppet/pops/issues.rb:657
5431
+ #: ../lib/puppet/pops/issues.rb:656
5396
5432
  msgid "Illegal class reference"
5397
5433
  msgstr ""
5398
5434
 
5399
- #: ../lib/puppet/pops/issues.rb:661
5435
+ #: ../lib/puppet/pops/issues.rb:660
5400
5436
  msgid "Illegal fully qualified class reference"
5401
5437
  msgstr ""
5402
5438
 
5403
- #: ../lib/puppet/pops/issues.rb:665
5439
+ #: ../lib/puppet/pops/issues.rb:664
5404
5440
  msgid "Illegal fully qualified name"
5405
5441
  msgstr ""
5406
5442
 
5407
- #: ../lib/puppet/pops/issues.rb:669
5443
+ #: ../lib/puppet/pops/issues.rb:668
5408
5444
  msgid "Illegal name or bare word"
5409
5445
  msgstr ""
5410
5446
 
5411
- #: ../lib/puppet/pops/issues.rb:673
5447
+ #: ../lib/puppet/pops/issues.rb:672
5412
5448
  msgid "Illegal number '%{value}'"
5413
5449
  msgstr ""
5414
5450
 
5415
- #: ../lib/puppet/pops/issues.rb:677
5451
+ #: ../lib/puppet/pops/issues.rb:676
5416
5452
  msgid "Unicode escape '\\u' was not followed by 4 hex digits or 1-6 hex digits in {} or was > 10ffff"
5417
5453
  msgstr ""
5418
5454
 
5419
- #: ../lib/puppet/pops/issues.rb:681
5455
+ #: ../lib/puppet/pops/issues.rb:680
5420
5456
  msgid "Not a valid hex number %{value}"
5421
5457
  msgstr ""
5422
5458
 
5423
- #: ../lib/puppet/pops/issues.rb:685
5459
+ #: ../lib/puppet/pops/issues.rb:684
5424
5460
  msgid "Not a valid octal number %{value}"
5425
5461
  msgstr ""
5426
5462
 
5427
- #: ../lib/puppet/pops/issues.rb:689
5463
+ #: ../lib/puppet/pops/issues.rb:688
5428
5464
  msgid "Not a valid decimal number %{value}"
5429
5465
  msgstr ""
5430
5466
 
5431
- #: ../lib/puppet/pops/issues.rb:693
5467
+ #: ../lib/puppet/pops/issues.rb:692
5432
5468
  msgid "Internal Error: No string or file given to lexer to process."
5433
5469
  msgstr ""
5434
5470
 
5435
- #: ../lib/puppet/pops/issues.rb:697
5471
+ #: ../lib/puppet/pops/issues.rb:696
5436
5472
  msgid "Unrecognized escape sequence '\\%{ch}'"
5437
5473
  msgstr ""
5438
5474
 
5439
- #: ../lib/puppet/pops/issues.rb:701
5475
+ #: ../lib/puppet/pops/issues.rb:700
5440
5476
  msgid "Unclosed quote after %{after} followed by '%{followed_by}'"
5441
5477
  msgstr ""
5442
5478
 
5443
- #: ../lib/puppet/pops/issues.rb:705
5479
+ #: ../lib/puppet/pops/issues.rb:704
5444
5480
  msgid "Unclosed multiline comment"
5445
5481
  msgstr ""
5446
5482
 
5447
- #: ../lib/puppet/pops/issues.rb:709
5483
+ #: ../lib/puppet/pops/issues.rb:708
5448
5484
  msgid "Internal error: %{error}"
5449
5485
  msgstr ""
5450
5486
 
5451
- #: ../lib/puppet/pops/issues.rb:713
5487
+ #: ../lib/puppet/pops/issues.rb:712
5452
5488
  msgid "Unbalanced epp tag, reached <eof> without closing tag."
5453
5489
  msgstr ""
5454
5490
 
5455
- #: ../lib/puppet/pops/issues.rb:717
5491
+ #: ../lib/puppet/pops/issues.rb:716
5456
5492
  msgid "Reaching end after opening <%# without seeing %>"
5457
5493
  msgstr ""
5458
5494
 
5459
- #: ../lib/puppet/pops/issues.rb:721
5495
+ #: ../lib/puppet/pops/issues.rb:720
5460
5496
  msgid "Unbalanced embedded expression - opening <% and reaching end of input"
5461
5497
  msgstr ""
5462
5498
 
5463
- #: ../lib/puppet/pops/issues.rb:725
5499
+ #: ../lib/puppet/pops/issues.rb:724
5464
5500
  msgid "Unclosed parenthesis after '@(' followed by '%{followed_by}'"
5465
5501
  msgstr ""
5466
5502
 
5467
- #: ../lib/puppet/pops/issues.rb:729
5503
+ #: ../lib/puppet/pops/issues.rb:728
5468
5504
  msgid "Heredoc without end-tagged line"
5469
5505
  msgstr ""
5470
5506
 
5471
- #: ../lib/puppet/pops/issues.rb:733
5507
+ #: ../lib/puppet/pops/issues.rb:732
5472
5508
  msgid "Invalid heredoc escape char. Only t, r, n, s, u, L, $ allowed. Got '%{actual}'"
5473
5509
  msgstr ""
5474
5510
 
5475
- #: ../lib/puppet/pops/issues.rb:737
5511
+ #: ../lib/puppet/pops/issues.rb:736
5476
5512
  msgid "Invalid syntax in heredoc expected @(endtag[:syntax][/escapes])"
5477
5513
  msgstr ""
5478
5514
 
5479
- #: ../lib/puppet/pops/issues.rb:741
5515
+ #: ../lib/puppet/pops/issues.rb:740
5480
5516
  msgid "Heredoc without any following lines of text"
5481
5517
  msgstr ""
5482
5518
 
5483
- #: ../lib/puppet/pops/issues.rb:745
5519
+ #: ../lib/puppet/pops/issues.rb:744
5520
+ msgid "Heredoc with an empty endtag"
5521
+ msgstr ""
5522
+
5523
+ #: ../lib/puppet/pops/issues.rb:748
5484
5524
  msgid "An escape char for @() may only appear once. Got '%{escapes}'"
5485
5525
  msgstr ""
5486
5526
 
5487
- #: ../lib/puppet/pops/issues.rb:749
5527
+ #: ../lib/puppet/pops/issues.rb:752
5488
5528
  msgid "Illegal %{format} Byte Order mark at beginning of input: %{bom} - remove these from the puppet source"
5489
5529
  msgstr ""
5490
5530
 
5491
- #: ../lib/puppet/pops/issues.rb:753
5531
+ #: ../lib/puppet/pops/issues.rb:756
5492
5532
  msgid "No such file or directory: %{file}"
5493
5533
  msgstr ""
5494
5534
 
5495
- #: ../lib/puppet/pops/issues.rb:757
5535
+ #: ../lib/puppet/pops/issues.rb:760
5496
5536
  msgid "%{file} is not a file"
5497
5537
  msgstr ""
5498
5538
 
5499
- #: ../lib/puppet/pops/issues.rb:762
5539
+ #: ../lib/puppet/pops/issues.rb:765
5500
5540
  msgid "%{expression} resulted in a value outside of Puppet Integer max range, got '%{value}'"
5501
5541
  msgstr ""
5502
5542
 
5503
- #: ../lib/puppet/pops/issues.rb:764
5543
+ #: ../lib/puppet/pops/issues.rb:767
5504
5544
  msgid "%{expression} resulted in a value outside of Puppet Integer min range, got '%{value}'"
5505
5545
  msgstr ""
5506
5546
 
5507
- #: ../lib/puppet/pops/issues.rb:769
5547
+ #: ../lib/puppet/pops/issues.rb:772
5508
5548
  msgid "This runtime does not support hiera.yaml version %{version}"
5509
5549
  msgstr ""
5510
5550
 
5511
- #: ../lib/puppet/pops/issues.rb:773
5551
+ #: ../lib/puppet/pops/issues.rb:776
5512
5552
  msgid "hiera.yaml version 3 cannot be used in %{location}"
5513
5553
  msgstr ""
5514
5554
 
5515
- #: ../lib/puppet/pops/issues.rb:777
5555
+ #: ../lib/puppet/pops/issues.rb:780
5516
5556
  msgid "hiera.yaml version 4 cannot be used in the global layer"
5517
5557
  msgstr ""
5518
5558
 
5519
- #: ../lib/puppet/pops/issues.rb:781
5559
+ #: ../lib/puppet/pops/issues.rb:784
5520
5560
  msgid "Undefined variable '%{name}'"
5521
5561
  msgstr ""
5522
5562
 
5523
- #: ../lib/puppet/pops/issues.rb:785
5563
+ #: ../lib/puppet/pops/issues.rb:788
5524
5564
  msgid "Backend '%{name}' is defined more than once."
5525
5565
  msgstr ""
5526
5566
 
5527
- #: ../lib/puppet/pops/issues.rb:788 ../lib/puppet/pops/issues.rb:801
5567
+ #: ../lib/puppet/pops/issues.rb:791 ../lib/puppet/pops/issues.rb:804
5528
5568
  msgid "First defined at %{error_location}"
5529
5569
  msgstr ""
5530
5570
 
5531
- #: ../lib/puppet/pops/issues.rb:794
5571
+ #: ../lib/puppet/pops/issues.rb:797
5532
5572
  msgid "No data provider is registered for backend '%{name}'"
5533
5573
  msgstr ""
5534
5574
 
5535
- #: ../lib/puppet/pops/issues.rb:798
5575
+ #: ../lib/puppet/pops/issues.rb:801
5536
5576
  msgid "Hierarchy name '%{name}' defined more than once."
5537
5577
  msgstr ""
5538
5578
 
5539
- #: ../lib/puppet/pops/issues.rb:807
5579
+ #: ../lib/puppet/pops/issues.rb:810
5540
5580
  msgid "'hiera3_backend' is only allowed in the global layer"
5541
5581
  msgstr ""
5542
5582
 
5543
- #: ../lib/puppet/pops/issues.rb:811
5583
+ #: ../lib/puppet/pops/issues.rb:814
5544
5584
  msgid "'default_hierarchy' is only allowed in the module layer"
5545
5585
  msgstr ""
5546
5586
 
5547
- #: ../lib/puppet/pops/issues.rb:815
5587
+ #: ../lib/puppet/pops/issues.rb:818
5548
5588
  msgid "Use \"data_hash: %{function_name}_data\" instead of \"hiera3_backend: %{function_name}\""
5549
5589
  msgstr ""
5550
5590
 
5551
- #: ../lib/puppet/pops/issues.rb:819
5591
+ #: ../lib/puppet/pops/issues.rb:822
5552
5592
  msgid "One of %{keys} must be defined in hierarchy '%{name}'"
5553
5593
  msgstr ""
5554
5594
 
5555
- #: ../lib/puppet/pops/issues.rb:823 ../lib/puppet/pops/issues.rb:831
5595
+ #: ../lib/puppet/pops/issues.rb:826 ../lib/puppet/pops/issues.rb:834
5556
5596
  msgid "Only one of %{keys} can be defined in hierarchy '%{name}'"
5557
5597
  msgstr ""
5558
5598
 
5559
- #: ../lib/puppet/pops/issues.rb:827
5599
+ #: ../lib/puppet/pops/issues.rb:830
5560
5600
  msgid "Only one of %{keys} can be defined in defaults"
5561
5601
  msgstr ""
5562
5602
 
5563
- #: ../lib/puppet/pops/issues.rb:835
5603
+ #: ../lib/puppet/pops/issues.rb:838
5564
5604
  msgid "Option key '%{key}' used in hierarchy '%{name}' is reserved by Puppet"
5565
5605
  msgstr ""
5566
5606
 
5567
- #: ../lib/puppet/pops/issues.rb:839
5607
+ #: ../lib/puppet/pops/issues.rb:842
5568
5608
  msgid "Option key '%{key}' used in defaults is reserved by Puppet"
5569
5609
  msgstr ""
5570
5610
 
5571
- #: ../lib/puppet/pops/issues.rb:843
5611
+ #: ../lib/puppet/pops/issues.rb:846
5572
5612
  msgid "Unable to find '%{function_type}' function named '%{function_name}'"
5573
5613
  msgstr ""
5574
5614
 
5575
- #: ../lib/puppet/pops/issues.rb:847
5615
+ #: ../lib/puppet/pops/issues.rb:850
5576
5616
  msgid "'alias' interpolation is only permitted if the expression is equal to the entire string"
5577
5617
  msgstr ""
5578
5618
 
5579
- #: ../lib/puppet/pops/issues.rb:851
5619
+ #: ../lib/puppet/pops/issues.rb:854
5580
5620
  msgid "Unknown interpolation method '%{name}'"
5581
5621
  msgstr ""
5582
5622
 
5583
- #: ../lib/puppet/pops/issues.rb:855
5623
+ #: ../lib/puppet/pops/issues.rb:858
5584
5624
  msgid "Interpolation using method syntax is not allowed in this context"
5585
5625
  msgstr ""
5586
5626
 
5587
- #: ../lib/puppet/pops/issues.rb:859
5627
+ #: ../lib/puppet/pops/issues.rb:862
5588
5628
  msgid "Endless recursion detected when attempting to serialize value of class %{type_name}"
5589
5629
  msgstr ""
5590
5630
 
5591
- #: ../lib/puppet/pops/issues.rb:863
5631
+ #: ../lib/puppet/pops/issues.rb:866
5592
5632
  msgid "%{path} contains the special value default. It will be converted to the String 'default'"
5593
5633
  msgstr ""
5594
5634
 
5595
- #: ../lib/puppet/pops/issues.rb:867
5635
+ #: ../lib/puppet/pops/issues.rb:870
5596
5636
  msgid "%{path} contains %{klass} value. It will be converted to the String '%{value}'"
5597
5637
  msgstr ""
5598
5638
 
5599
- #: ../lib/puppet/pops/issues.rb:871
5639
+ #: ../lib/puppet/pops/issues.rb:874
5600
5640
  msgid "%{path} contains a hash with %{klass} key. It will be converted to the String '%{value}'"
5601
5641
  msgstr ""
5602
5642
 
5603
- #: ../lib/puppet/pops/issues.rb:875
5643
+ #: ../lib/puppet/pops/issues.rb:878
5604
5644
  msgid "The feature '%{feature}' is only available when compiling a catalog"
5605
5645
  msgstr ""
5606
5646
 
5607
- #: ../lib/puppet/pops/issues.rb:879
5647
+ #: ../lib/puppet/pops/issues.rb:882
5608
5648
  msgid "The catalog operation '%{operation}' is only available when compiling a catalog"
5609
5649
  msgstr ""
5610
5650
 
5611
- #: ../lib/puppet/pops/issues.rb:883
5651
+ #: ../lib/puppet/pops/issues.rb:886
5612
5652
  msgid "The task operation '%{operation}' is not available when compiling a catalog"
5613
5653
  msgstr ""
5614
5654
 
5615
- #: ../lib/puppet/pops/issues.rb:887
5655
+ #: ../lib/puppet/pops/issues.rb:890
5616
5656
  msgid "The 'bolt' library is required to %{action}"
5617
5657
  msgstr ""
5618
5658
 
5619
- #: ../lib/puppet/pops/issues.rb:891
5659
+ #: ../lib/puppet/pops/issues.rb:894
5620
5660
  msgid "Task not found: %{type_name}"
5621
5661
  msgstr ""
5622
5662
 
5623
- #: ../lib/puppet/pops/issues.rb:895
5663
+ #: ../lib/puppet/pops/issues.rb:898
5624
5664
  msgid "Failed to load: %{type_name}"
5625
5665
  msgstr ""
5626
5666
 
@@ -5770,23 +5810,23 @@ msgstr ""
5770
5810
  msgid "The code loaded from %{source_ref} contains additional logic - can only contain the type '%{name}'"
5771
5811
  msgstr ""
5772
5812
 
5773
- #: ../lib/puppet/pops/loaders.rb:32
5813
+ #: ../lib/puppet/pops/loaders.rb:31
5774
5814
  msgid "Attempt to redefine already initialized loaders for environment"
5775
5815
  msgstr ""
5776
5816
 
5777
- #: ../lib/puppet/pops/loaders.rb:168
5817
+ #: ../lib/puppet/pops/loaders.rb:174
5778
5818
  msgid "Internal Error: Puppet Context ':loaders' missing"
5779
5819
  msgstr ""
5780
5820
 
5781
- #: ../lib/puppet/pops/loaders.rb:182
5821
+ #: ../lib/puppet/pops/loaders.rb:188
5782
5822
  msgid "Unable to find loader named '%{loader_name}'"
5783
5823
  msgstr ""
5784
5824
 
5785
- #: ../lib/puppet/pops/loaders.rb:203
5825
+ #: ../lib/puppet/pops/loaders.rb:209
5786
5826
  msgid "Internal Error: did not find public loader for module: '%{module_name}'"
5787
5827
  msgstr ""
5788
5828
 
5789
- #: ../lib/puppet/pops/loaders.rb:244
5829
+ #: ../lib/puppet/pops/loaders.rb:255
5790
5830
  msgid "Internal Error: Attempt to redefine loader named '%{name}'"
5791
5831
  msgstr ""
5792
5832
 
@@ -5829,51 +5869,64 @@ msgstr ""
5829
5869
  msgid "Recursive lookup detected in [%{name_stack}]"
5830
5870
  msgstr ""
5831
5871
 
5832
- #: ../lib/puppet/pops/lookup/lookup_adapter.rb:93
5872
+ #: ../lib/puppet/pops/lookup/lookup_adapter.rb:101
5873
+ msgid "Invalid data type in lookup_options for key '%{key}' could not parse '%{source}', error: '%{msg}"
5874
+ msgstr ""
5875
+
5876
+ #. TRANSLATORS 'lookup_options', 'convert_to' and args_string variable should not be translated,
5877
+ #: ../lib/puppet/pops/lookup/lookup_adapter.rb:109
5878
+ msgid "Applying convert_to lookup_option with arguments %{args}"
5879
+ msgstr ""
5880
+
5881
+ #: ../lib/puppet/pops/lookup/lookup_adapter.rb:112
5882
+ msgid "The convert_to lookup_option for key '%{key}' raised error: %{msg}"
5883
+ msgstr ""
5884
+
5885
+ #: ../lib/puppet/pops/lookup/lookup_adapter.rb:142
5833
5886
  msgid "Lookup of key '%{key}' failed: %{detail}"
5834
5887
  msgstr ""
5835
5888
 
5836
- #: ../lib/puppet/pops/lookup/lookup_adapter.rb:239
5889
+ #: ../lib/puppet/pops/lookup/lookup_adapter.rb:288
5837
5890
  msgid "value of %{opts} must be a hash"
5838
5891
  msgstr ""
5839
5892
 
5840
- #: ../lib/puppet/pops/lookup/lookup_adapter.rb:246
5893
+ #: ../lib/puppet/pops/lookup/lookup_adapter.rb:295
5841
5894
  msgid "all %{opts} patterns must match a key starting with module name '%{module_name}'"
5842
5895
  msgstr ""
5843
5896
 
5844
- #: ../lib/puppet/pops/lookup/lookup_adapter.rb:250
5897
+ #: ../lib/puppet/pops/lookup/lookup_adapter.rb:299
5845
5898
  msgid "all %{opts} keys must start with module name '%{module_name}'"
5846
5899
  msgstr ""
5847
5900
 
5848
- #: ../lib/puppet/pops/lookup/lookup_adapter.rb:375
5901
+ #: ../lib/puppet/pops/lookup/lookup_adapter.rb:424
5849
5902
  msgid "Defining \"data_provider\": \"%{name}\" in metadata.json is deprecated. It is ignored since a '%{config}' with version >= 5 is present"
5850
5903
  msgstr ""
5851
5904
 
5852
- #: ../lib/puppet/pops/lookup/lookup_adapter.rb:385
5905
+ #: ../lib/puppet/pops/lookup/lookup_adapter.rb:434
5853
5906
  msgid "Defining \"data_provider\": \"%{name}\" in metadata.json is deprecated."
5854
5907
  msgstr ""
5855
5908
 
5856
- #: ../lib/puppet/pops/lookup/lookup_adapter.rb:386 ../lib/puppet/pops/lookup/lookup_adapter.rb:440
5909
+ #: ../lib/puppet/pops/lookup/lookup_adapter.rb:435 ../lib/puppet/pops/lookup/lookup_adapter.rb:489
5857
5910
  msgid "A '%{hiera_config}' file should be used instead"
5858
5911
  msgstr ""
5859
5912
 
5860
- #: ../lib/puppet/pops/lookup/lookup_adapter.rb:400
5913
+ #: ../lib/puppet/pops/lookup/lookup_adapter.rb:449
5861
5914
  msgid "Environment '%{env}', cannot find module_data_provider '%{provider}'"
5862
5915
  msgstr ""
5863
5916
 
5864
- #: ../lib/puppet/pops/lookup/lookup_adapter.rb:424
5917
+ #: ../lib/puppet/pops/lookup/lookup_adapter.rb:473
5865
5918
  msgid "Defining environment_data_provider='%{provider_name}' in environment.conf is deprecated"
5866
5919
  msgstr ""
5867
5920
 
5868
- #: ../lib/puppet/pops/lookup/lookup_adapter.rb:428
5921
+ #: ../lib/puppet/pops/lookup/lookup_adapter.rb:477
5869
5922
  msgid "The environment_data_provider='%{provider_name}' setting is ignored since '%{config_path}' version >= 5"
5870
5923
  msgstr ""
5871
5924
 
5872
- #: ../lib/puppet/pops/lookup/lookup_adapter.rb:439
5925
+ #: ../lib/puppet/pops/lookup/lookup_adapter.rb:488
5873
5926
  msgid "Defining environment_data_provider='%{provider_name}' in environment.conf is deprecated."
5874
5927
  msgstr ""
5875
5928
 
5876
- #: ../lib/puppet/pops/lookup/lookup_adapter.rb:455
5929
+ #: ../lib/puppet/pops/lookup/lookup_adapter.rb:504
5877
5930
  msgid "Environment '%{env}', cannot find environment_data_provider '%{provider}'"
5878
5931
  msgstr ""
5879
5932
 
@@ -5928,11 +5981,11 @@ msgid "Unacceptable transform - found an Object without a rule: %{klass}"
5928
5981
  msgstr ""
5929
5982
 
5930
5983
  #. TRANSLATORS 'NUMBER' refers to a method name and the 'name_or_numeric' was the passed in value and should not be translated
5931
- #: ../lib/puppet/pops/model/factory.rb:806
5984
+ #: ../lib/puppet/pops/model/factory.rb:809
5932
5985
  msgid "Internal Error, NUMBER token does not contain a valid number, %{name_or_numeric}"
5933
5986
  msgstr ""
5934
5987
 
5935
- #: ../lib/puppet/pops/model/factory.rb:1114
5988
+ #: ../lib/puppet/pops/model/factory.rb:1117
5936
5989
  msgid "can only concatenate strings, got %{class_name}"
5937
5990
  msgstr ""
5938
5991
 
@@ -5944,6 +5997,42 @@ msgstr ""
5944
5997
  msgid "illegal comma separated argument list"
5945
5998
  msgstr ""
5946
5999
 
6000
+ #: ../lib/puppet/pops/parser/pn_parser.rb:64
6001
+ msgid "unexpected end of input"
6002
+ msgstr ""
6003
+
6004
+ #: ../lib/puppet/pops/parser/pn_parser.rb:66
6005
+ msgid "unexpected %{value}"
6006
+ msgstr ""
6007
+
6008
+ #: ../lib/puppet/pops/parser/pn_parser.rb:103
6009
+ msgid "map key expected"
6010
+ msgstr ""
6011
+
6012
+ #: ../lib/puppet/pops/parser/pn_parser.rb:114
6013
+ msgid "expected identifier to follow '('"
6014
+ msgstr ""
6015
+
6016
+ #: ../lib/puppet/pops/parser/pn_parser.rb:125
6017
+ msgid "missing '%{token}' to end list"
6018
+ msgstr ""
6019
+
6020
+ #: ../lib/puppet/pops/parser/pn_parser.rb:186
6021
+ msgid "expected identifier after ':'"
6022
+ msgstr ""
6023
+
6024
+ #: ../lib/puppet/pops/parser/pn_parser.rb:225
6025
+ msgid "unterminated quote"
6026
+ msgstr ""
6027
+
6028
+ #: ../lib/puppet/pops/parser/pn_parser.rb:251
6029
+ msgid "malformed octal quote"
6030
+ msgstr ""
6031
+
6032
+ #: ../lib/puppet/pops/parser/pn_parser.rb:266 ../lib/puppet/pops/parser/pn_parser.rb:271 ../lib/puppet/pops/parser/pn_parser.rb:275
6033
+ msgid "digit expected"
6034
+ msgstr ""
6035
+
5947
6036
  #: ../lib/puppet/pops/resource/resource_type_impl.rb:167 ../lib/puppet/type.rb:428
5948
6037
  msgid "you must specify title patterns when there are two or more key attributes"
5949
6038
  msgstr ""
@@ -6200,23 +6289,23 @@ msgstr ""
6200
6289
  msgid "Everything is now reported using present tense"
6201
6290
  msgstr ""
6202
6291
 
6203
- #: ../lib/puppet/pops/types/type_parser.rb:420
6292
+ #: ../lib/puppet/pops/types/type_parser.rb:427
6204
6293
  msgid "Enum parameters must be identifiers or strings"
6205
6294
  msgstr ""
6206
6295
 
6207
- #: ../lib/puppet/pops/types/type_parser.rb:656
6296
+ #: ../lib/puppet/pops/types/type_parser.rb:663
6208
6297
  msgid "The expression <%{expression}> is not a valid type specification."
6209
6298
  msgstr ""
6210
6299
 
6211
- #: ../lib/puppet/pops/types/type_parser.rb:661
6300
+ #: ../lib/puppet/pops/types/type_parser.rb:668
6212
6301
  msgid "Invalid number of type parameters specified: %{type} requires %{required}, %{given} provided"
6213
6302
  msgstr ""
6214
6303
 
6215
- #: ../lib/puppet/pops/types/type_parser.rb:666
6304
+ #: ../lib/puppet/pops/types/type_parser.rb:673
6216
6305
  msgid "Not a parameterized type <%{type}>"
6217
6306
  msgstr ""
6218
6307
 
6219
- #: ../lib/puppet/pops/types/type_parser.rb:670
6308
+ #: ../lib/puppet/pops/types/type_parser.rb:677
6220
6309
  msgid "Unknown type <%{type}>"
6221
6310
  msgstr ""
6222
6311
 
@@ -7366,7 +7455,7 @@ msgstr ""
7366
7455
  msgid "Could not find resource %{resource} when converting %{message} resources"
7367
7456
  msgstr ""
7368
7457
 
7369
- #: ../lib/puppet/resource/status.rb:135 ../lib/puppet/transaction.rb:264
7458
+ #: ../lib/puppet/resource/status.rb:139 ../lib/puppet/transaction.rb:264
7370
7459
  msgid "Could not evaluate: %{detail}"
7371
7460
  msgstr ""
7372
7461
 
@@ -7519,24 +7608,24 @@ msgstr ""
7519
7608
  msgid "Setting %{name} is deprecated in puppet.conf."
7520
7609
  msgstr ""
7521
7610
 
7522
- #: ../lib/puppet/settings.rb:1312
7611
+ #: ../lib/puppet/settings.rb:1329
7523
7612
  msgid "Error converting value for param '%{name}': %{detail}"
7524
7613
  msgstr ""
7525
7614
 
7526
- #: ../lib/puppet/settings.rb:1341
7615
+ #: ../lib/puppet/settings.rb:1353
7527
7616
  msgid "Could not find value for %{expression}"
7528
7617
  msgstr ""
7529
7618
 
7530
7619
  #. TRANSLATORS '$environment' is a Puppet specific variable and should not be translated
7531
- #: ../lib/puppet/settings.rb:1351
7620
+ #: ../lib/puppet/settings.rb:1363
7532
7621
  msgid "You cannot interpolate $environment within '%{setting_name}' when using directory environments."
7533
7622
  msgstr ""
7534
7623
 
7535
- #: ../lib/puppet/settings.rb:1352
7624
+ #: ../lib/puppet/settings.rb:1364
7536
7625
  msgid "Its value will remain %{value}."
7537
7626
  msgstr ""
7538
7627
 
7539
- #: ../lib/puppet/settings.rb:1383
7628
+ #: ../lib/puppet/settings.rb:1395
7540
7629
  msgid "Attempt to assign a value to unknown setting %{name}"
7541
7630
  msgstr ""
7542
7631
 
@@ -7576,11 +7665,11 @@ msgid "Short names can only be one character."
7576
7665
  msgstr ""
7577
7666
 
7578
7667
  #. TRANSLATORS 'deprecated' is a Puppet setting and ':completely' and ':allowed_on_commandline' are possible values and should not be translated
7579
- #: ../lib/puppet/settings/base_setting.rb:167
7668
+ #: ../lib/puppet/settings/base_setting.rb:172
7580
7669
  msgid "Unsupported deprecated value '%{deprecation}'."
7581
7670
  msgstr ""
7582
7671
 
7583
- #: ../lib/puppet/settings/base_setting.rb:168
7672
+ #: ../lib/puppet/settings/base_setting.rb:173
7584
7673
  msgid "Supported values for deprecated are ':completely' or ':allowed_on_commandline'"
7585
7674
  msgstr ""
7586
7675
 
@@ -7666,11 +7755,11 @@ msgstr ""
7666
7755
  msgid "Invalid terminus setting: %{value}"
7667
7756
  msgstr ""
7668
7757
 
7669
- #: ../lib/puppet/settings/ttl_setting.rb:33
7758
+ #: ../lib/puppet/settings/ttl_setting.rb:38
7670
7759
  msgid "Invalid negative 'time to live' %{value} - did you mean 'unlimited'?"
7671
7760
  msgstr ""
7672
7761
 
7673
- #: ../lib/puppet/settings/ttl_setting.rb:43
7762
+ #: ../lib/puppet/settings/ttl_setting.rb:48
7674
7763
  msgid "Invalid 'time to live' format '%{value}' for parameter: %{param_name}"
7675
7764
  msgstr ""
7676
7765
 
@@ -7868,31 +7957,31 @@ msgstr ""
7868
7957
  msgid "Cannot create CSR with attribute %{oid}: %{message}"
7869
7958
  msgstr ""
7870
7959
 
7871
- #: ../lib/puppet/ssl/certificate_request.rb:255
7960
+ #: ../lib/puppet/ssl/certificate_request.rb:253
7872
7961
  msgid "Cannot specify CSR extension request %{oid}: conflicts with internally used extension request"
7873
7962
  msgstr ""
7874
7963
 
7875
- #: ../lib/puppet/ssl/certificate_request.rb:261
7964
+ #: ../lib/puppet/ssl/certificate_request.rb:259
7876
7965
  msgid "Cannot create CSR with extension request %{oid}: %{message}"
7877
7966
  msgstr ""
7878
7967
 
7879
- #: ../lib/puppet/ssl/certificate_request.rb:304
7968
+ #: ../lib/puppet/ssl/certificate_request.rb:302
7880
7969
  msgid "In %{attr}, expected Set but found %{klass}"
7881
7970
  msgstr ""
7882
7971
 
7883
- #: ../lib/puppet/ssl/certificate_request.rb:308
7972
+ #: ../lib/puppet/ssl/certificate_request.rb:306
7884
7973
  msgid "In %{attr}, expected Set[Array] but found %{klass}"
7885
7974
  msgstr ""
7886
7975
 
7887
- #: ../lib/puppet/ssl/certificate_request.rb:312
7976
+ #: ../lib/puppet/ssl/certificate_request.rb:310
7888
7977
  msgid "In %{attr}, expected Set[Array] with one value but found %{count} elements"
7889
7978
  msgstr ""
7890
7979
 
7891
- #: ../lib/puppet/ssl/certificate_request.rb:316
7980
+ #: ../lib/puppet/ssl/certificate_request.rb:314
7892
7981
  msgid "In %{attr}, expected Set[Array[Sequence[...]]], but found %{klass}"
7893
7982
  msgstr ""
7894
7983
 
7895
- #: ../lib/puppet/ssl/certificate_request.rb:320
7984
+ #: ../lib/puppet/ssl/certificate_request.rb:318
7896
7985
  msgid "In %{attr}, expected Set[Array[Sequence[Array[...]]]], but found %{klass}"
7897
7986
  msgstr ""
7898
7987
 
@@ -8260,19 +8349,19 @@ msgstr ""
8260
8349
  msgid "You cannot add relationships without a catalog"
8261
8350
  msgstr ""
8262
8351
 
8263
- #: ../lib/puppet/type.rb:2442
8352
+ #: ../lib/puppet/type.rb:2438
8264
8353
  msgid "Unable to mark '%{name}' as sensitive: %{name} is a parameter and not a property, and cannot be automatically redacted."
8265
8354
  msgstr ""
8266
8355
 
8267
- #: ../lib/puppet/type.rb:2445
8356
+ #: ../lib/puppet/type.rb:2441
8268
8357
  msgid "Unable to mark '%{name}' as sensitive: the property itself was not assigned a value."
8269
8358
  msgstr ""
8270
8359
 
8271
- #: ../lib/puppet/type.rb:2447
8360
+ #: ../lib/puppet/type.rb:2443
8272
8361
  msgid "Unable to mark '%{name}' as sensitive: the property itself is not defined on %{type}."
8273
8362
  msgstr ""
8274
8363
 
8275
- #: ../lib/puppet/type.rb:2498
8364
+ #: ../lib/puppet/type.rb:2494
8276
8365
  msgid "Could not set %{attribute} on %{class_name}: %{detail}"
8277
8366
  msgstr ""
8278
8367
 
@@ -8292,11 +8381,11 @@ msgstr ""
8292
8381
  msgid "Invalid special schedule %{value}"
8293
8382
  msgstr ""
8294
8383
 
8295
- #: ../lib/puppet/type/cron.rb:324
8384
+ #: ../lib/puppet/type/cron.rb:329
8296
8385
  msgid "Invalid environment setting %{value}"
8297
8386
  msgstr ""
8298
8387
 
8299
- #: ../lib/puppet/type/cron.rb:419
8388
+ #: ../lib/puppet/type/cron.rb:424
8300
8389
  msgid "%{cron} cannot specify both a special schedule and a value for %{field}"
8301
8390
  msgstr ""
8302
8391
 
@@ -8368,74 +8457,74 @@ msgstr ""
8368
8457
  msgid "Invalid recurse value %{value}"
8369
8458
  msgstr ""
8370
8459
 
8371
- #: ../lib/puppet/type/file.rb:201
8460
+ #: ../lib/puppet/type/file.rb:200
8372
8461
  msgid "Invalid recurselimit value %{value}"
8373
8462
  msgstr ""
8374
8463
 
8375
- #: ../lib/puppet/type/file.rb:371
8464
+ #: ../lib/puppet/type/file.rb:370
8376
8465
  msgid "You cannot specify more than one of %{creators}"
8377
8466
  msgstr ""
8378
8467
 
8379
- #: ../lib/puppet/type/file.rb:373
8468
+ #: ../lib/puppet/type/file.rb:372
8380
8469
  msgid "You cannot specify a remote recursion without a source"
8381
8470
  msgstr ""
8382
8471
 
8383
- #: ../lib/puppet/type/file.rb:375
8472
+ #: ../lib/puppet/type/file.rb:374
8384
8473
  msgid "You cannot specify source when using checksum 'none'"
8385
8474
  msgstr ""
8386
8475
 
8387
- #: ../lib/puppet/type/file.rb:378
8476
+ #: ../lib/puppet/type/file.rb:377
8388
8477
  msgid "You cannot specify content when using checksum '%{checksum_type}'"
8389
8478
  msgstr ""
8390
8479
 
8391
- #: ../lib/puppet/type/file.rb:381
8480
+ #: ../lib/puppet/type/file.rb:380
8392
8481
  msgid "Possible error: recurselimit is set but not recurse, no recursion will happen"
8393
8482
  msgstr ""
8394
8483
 
8395
- #: ../lib/puppet/type/file.rb:389
8484
+ #: ../lib/puppet/type/file.rb:388
8396
8485
  msgid "Checksum value '%{value}' is not a valid checksum type %{checksum}"
8397
8486
  msgstr ""
8398
8487
 
8399
- #: ../lib/puppet/type/file.rb:392
8488
+ #: ../lib/puppet/type/file.rb:391
8400
8489
  msgid "Checksum value is ignored unless content or source are specified"
8401
8490
  msgstr ""
8402
8491
 
8403
- #: ../lib/puppet/type/file.rb:430
8492
+ #: ../lib/puppet/type/file.rb:429
8404
8493
  msgid "Can not find filebucket for backups without a catalog"
8405
8494
  msgstr ""
8406
8495
 
8407
- #: ../lib/puppet/type/file.rb:434
8496
+ #: ../lib/puppet/type/file.rb:433
8408
8497
  msgid "Could not find filebucket %{backup} specified in backup"
8409
8498
  msgstr ""
8410
8499
 
8411
- #: ../lib/puppet/type/file.rb:730
8500
+ #: ../lib/puppet/type/file.rb:729
8412
8501
  msgid "Could not back up file of type %{current_type}"
8413
8502
  msgstr ""
8414
8503
 
8415
- #: ../lib/puppet/type/file.rb:745
8504
+ #: ../lib/puppet/type/file.rb:744
8416
8505
  msgid "Could not remove files of type %{current_type}"
8417
8506
  msgstr ""
8418
8507
 
8419
8508
  #. TRANSLATORS "source_permissions => ignore" should not be translated
8420
- #: ../lib/puppet/type/file.rb:756
8509
+ #: ../lib/puppet/type/file.rb:755
8421
8510
  msgid "Copying owner/mode/group from the source file on Windows is not supported; use source_permissions => ignore."
8422
8511
  msgstr ""
8423
8512
 
8424
8513
  #. TRANSLATORS "stat" is a program name and should not be translated
8425
- #: ../lib/puppet/type/file.rb:837 ../lib/puppet/type/tidy.rb:341
8514
+ #: ../lib/puppet/type/file.rb:836 ../lib/puppet/type/k5login.rb:97 ../lib/puppet/type/tidy.rb:341
8426
8515
  msgid "Could not stat; permission denied"
8427
8516
  msgstr ""
8428
8517
 
8429
- #: ../lib/puppet/type/file.rb:962
8518
+ #: ../lib/puppet/type/file.rb:961
8430
8519
  msgid "Not removing directory; use 'force' to override"
8431
8520
  msgstr ""
8432
8521
 
8433
8522
  #. TRANSLATORS refers to a file which could not be backed up
8434
- #: ../lib/puppet/type/file.rb:987
8523
+ #: ../lib/puppet/type/file.rb:986
8435
8524
  msgid "Could not back up; will not remove"
8436
8525
  msgstr ""
8437
8526
 
8438
- #: ../lib/puppet/type/file.rb:1001
8527
+ #: ../lib/puppet/type/file.rb:1000
8439
8528
  msgid "File written to disk did not match checksum; discarding changes (%{content_checksum} vs %{newsum})"
8440
8529
  msgstr ""
8441
8530
 
@@ -8504,7 +8593,7 @@ msgstr ""
8504
8593
  msgid "Invalid interface ip address"
8505
8594
  msgstr ""
8506
8595
 
8507
- #: ../lib/puppet/type/k5login.rb:24
8596
+ #: ../lib/puppet/type/k5login.rb:25
8508
8597
  msgid "File paths must be fully qualified."
8509
8598
  msgstr ""
8510
8599
 
@@ -8805,11 +8894,11 @@ msgstr ""
8805
8894
  msgid "Class name must be provided."
8806
8895
  msgstr ""
8807
8896
 
8808
- #: ../lib/puppet/type/yumrepo.rb:65 ../lib/puppet/type/yumrepo.rb:82 ../lib/puppet/type/yumrepo.rb:138 ../lib/puppet/type/yumrepo.rb:162 ../lib/puppet/type/yumrepo.rb:184 ../lib/puppet/type/yumrepo.rb:312 ../lib/puppet/type/yumrepo.rb:378
8897
+ #: ../lib/puppet/type/yumrepo.rb:65 ../lib/puppet/type/yumrepo.rb:82 ../lib/puppet/type/yumrepo.rb:138 ../lib/puppet/type/yumrepo.rb:162 ../lib/puppet/type/yumrepo.rb:185 ../lib/puppet/type/yumrepo.rb:314 ../lib/puppet/type/yumrepo.rb:380
8809
8898
  msgid "Must be a valid URL"
8810
8899
  msgstr ""
8811
8900
 
8812
- #: ../lib/puppet/type/yumrepo.rb:270
8901
+ #: ../lib/puppet/type/yumrepo.rb:272
8813
8902
  msgid "Must be within range 1-99"
8814
8903
  msgstr ""
8815
8904
 
@@ -8912,15 +9001,15 @@ msgstr ""
8912
9001
  msgid "Failed to convert '%{path}' to URI: %{detail}"
8913
9002
  msgstr ""
8914
9003
 
8915
- #: ../lib/puppet/util.rb:448
9004
+ #: ../lib/puppet/util.rb:444
8916
9005
  msgid "path may not be nil"
8917
9006
  msgstr ""
8918
9007
 
8919
- #: ../lib/puppet/util.rb:566
9008
+ #: ../lib/puppet/util.rb:562
8920
9009
  msgid "replace_file requires a block"
8921
9010
  msgstr ""
8922
9011
 
8923
- #: ../lib/puppet/util.rb:570
9012
+ #: ../lib/puppet/util.rb:566
8924
9013
  msgid "replace_file default_mode: %{default_mode} is invalid"
8925
9014
  msgstr ""
8926
9015
 
@@ -9313,7 +9402,7 @@ msgstr ""
9313
9402
  msgid "Could not write crontab for %{path}: %{detail}"
9314
9403
  msgstr ""
9315
9404
 
9316
- #: ../lib/puppet/util/http_proxy.rb:203
9405
+ #: ../lib/puppet/util/http_proxy.rb:205
9317
9406
  msgid "Too many HTTP redirections for %{uri}"
9318
9407
  msgstr ""
9319
9408
 
@@ -9321,15 +9410,15 @@ msgstr ""
9321
9410
  msgid "Cannot read nonexistent file %{file}"
9322
9411
  msgstr ""
9323
9412
 
9324
- #: ../lib/puppet/util/inifile.rb:186
9413
+ #: ../lib/puppet/util/inifile.rb:185
9325
9414
  msgid "Property with key %{key} outside of a section"
9326
9415
  msgstr ""
9327
9416
 
9328
- #: ../lib/puppet/util/inifile.rb:192
9417
+ #: ../lib/puppet/util/inifile.rb:191
9329
9418
  msgid "Can't parse line '%{line}'"
9330
9419
  msgstr ""
9331
9420
 
9332
- #: ../lib/puppet/util/inifile.rb:241
9421
+ #: ../lib/puppet/util/inifile.rb:240
9333
9422
  msgid "Section %{name} is already defined, cannot redefine"
9334
9423
  msgstr ""
9335
9424
 
@@ -9375,7 +9464,7 @@ msgstr ""
9375
9464
  msgid "Logs require a level"
9376
9465
  msgstr ""
9377
9466
 
9378
- #: ../lib/puppet/util/log.rb:87 ../lib/puppet/util/log.rb:373 ../lib/puppet/util/windows/eventlog.rb:99
9467
+ #: ../lib/puppet/util/log.rb:87 ../lib/puppet/util/log.rb:370 ../lib/puppet/util/windows/eventlog.rb:99
9379
9468
  msgid "Invalid log level %{level}"
9380
9469
  msgstr ""
9381
9470
 
@@ -9387,40 +9476,40 @@ msgstr ""
9387
9476
  msgid "Unknown destination type %{dest}"
9388
9477
  msgstr ""
9389
9478
 
9390
- #: ../lib/puppet/util/log.rb:173
9479
+ #: ../lib/puppet/util/log.rb:171
9391
9480
  msgid "Received a Log attribute with invalid encoding:%{log_message}"
9392
9481
  msgstr ""
9393
9482
 
9394
- #: ../lib/puppet/util/log.rb:175
9483
+ #: ../lib/puppet/util/log.rb:173
9395
9484
  msgid ""
9396
9485
  "Backtrace:\n"
9397
9486
  "%{backtrace}"
9398
9487
  msgstr ""
9399
9488
 
9400
- #: ../lib/puppet/util/log.rb:230
9489
+ #: ../lib/puppet/util/log.rb:227
9401
9490
  msgid "Reopening log files"
9402
9491
  msgstr ""
9403
9492
 
9404
9493
  #. TRANSLATORS 'Puppet::Util::Log' refers to a Puppet source code class
9405
- #: ../lib/puppet/util/log.rb:363
9494
+ #: ../lib/puppet/util/log.rb:360
9406
9495
  msgid "Puppet::Util::Log requires a message"
9407
9496
  msgstr ""
9408
9497
 
9409
9498
  #. TRANSLATORS 'Puppet::Util::Log' refers to a Puppet source code class
9410
- #: ../lib/puppet/util/log.rb:369
9499
+ #: ../lib/puppet/util/log.rb:366
9411
9500
  msgid "Puppet::Util::Log requires a log level"
9412
9501
  msgstr ""
9413
9502
 
9414
9503
  #. TRANSLATORS 'Puppet::Util::Log' refers to a Puppet source code class
9415
- #: ../lib/puppet/util/log.rb:371
9504
+ #: ../lib/puppet/util/log.rb:368
9416
9505
  msgid "Puppet::Util::Log requires a symbol or string"
9417
9506
  msgstr ""
9418
9507
 
9419
- #: ../lib/puppet/util/log.rb:402
9508
+ #: ../lib/puppet/util/log.rb:399
9420
9509
  msgid "Could not parse for environment %{environment}: %{msg}"
9421
9510
  msgstr ""
9422
9511
 
9423
- #: ../lib/puppet/util/log.rb:404
9512
+ #: ../lib/puppet/util/log.rb:401
9424
9513
  msgid "%{msg} on node %{node}"
9425
9514
  msgstr ""
9426
9515
 
@@ -9579,37 +9668,31 @@ msgstr ""
9579
9668
  msgid "RDOC SUPPORT FOR MANIFEST HAS BEEN REMOVED - See PUP-3638"
9580
9669
  msgstr ""
9581
9670
 
9582
- #: ../lib/puppet/util/reference.rb:16
9583
- msgid ""
9584
- "*This page autogenerated on %{current_time}*\n"
9585
- msgstr ""
9586
-
9587
- #: ../lib/puppet/util/reference.rb:34
9671
+ #: ../lib/puppet/util/reference.rb:30
9588
9672
  msgid "Could not find section %{name}"
9589
9673
  msgstr ""
9590
9674
 
9591
- #: ../lib/puppet/util/reference.rb:40
9675
+ #: ../lib/puppet/util/reference.rb:36
9592
9676
  msgid "creating pdf"
9593
9677
  msgstr ""
9594
9678
 
9595
- #: ../lib/puppet/util/reference.rb:42
9679
+ #: ../lib/puppet/util/reference.rb:38
9596
9680
  msgid "Could not find rst2latex"
9597
9681
  msgstr ""
9598
9682
 
9599
- #: ../lib/puppet/util/reference.rb:52
9683
+ #: ../lib/puppet/util/reference.rb:48
9600
9684
  msgid "rst2latex failed"
9601
9685
  msgstr ""
9602
9686
 
9603
- #: ../lib/puppet/util/reference.rb:92
9687
+ #: ../lib/puppet/util/reference.rb:88
9604
9688
  msgid "%{name} Reference"
9605
9689
  msgstr ""
9606
9690
 
9607
- #. TRANSLATORS message accompanied by date of generation
9608
- #: ../lib/puppet/util/reference.rb:115
9691
+ #: ../lib/puppet/util/reference.rb:110
9609
9692
  msgid ""
9610
9693
  "\n"
9611
9694
  "\n"
9612
- "**This page is autogenerated; any changes will get overwritten** *(last generated on %{current_time})*\n"
9695
+ "**This page is autogenerated; any changes will get overwritten**\n"
9613
9696
  "\n"
9614
9697
  msgstr ""
9615
9698
 
@@ -9749,39 +9832,39 @@ msgstr ""
9749
9832
  msgid "Value must be in DOMAIN\\user style syntax"
9750
9833
  msgstr ""
9751
9834
 
9752
- #: ../lib/puppet/util/windows/adsi.rb:156
9835
+ #: ../lib/puppet/util/windows/adsi.rb:158
9753
9836
  msgid "Could not resolve name: %{name}"
9754
9837
  msgstr ""
9755
9838
 
9756
- #: ../lib/puppet/util/windows/adsi.rb:214
9839
+ #: ../lib/puppet/util/windows/adsi.rb:216
9757
9840
  msgid "Puppet is not able to create/delete domain users with the user resource."
9758
9841
  msgstr ""
9759
9842
 
9760
- #: ../lib/puppet/util/windows/adsi.rb:219
9843
+ #: ../lib/puppet/util/windows/adsi.rb:221
9761
9844
  msgid "User update failed: %{e}"
9762
9845
  msgstr ""
9763
9846
 
9764
- #: ../lib/puppet/util/windows/adsi.rb:314
9847
+ #: ../lib/puppet/util/windows/adsi.rb:316
9765
9848
  msgid "Cannot create user if group '%{name}' exists."
9766
9849
  msgstr ""
9767
9850
 
9768
- #: ../lib/puppet/util/windows/adsi.rb:328
9851
+ #: ../lib/puppet/util/windows/adsi.rb:330
9769
9852
  msgid "Failed to get user name"
9770
9853
  msgstr ""
9771
9854
 
9772
- #: ../lib/puppet/util/windows/adsi.rb:406
9855
+ #: ../lib/puppet/util/windows/adsi.rb:408
9773
9856
  msgid "Cannot delete user profile for '%{sid}' prior to Vista SP1"
9774
9857
  msgstr ""
9775
9858
 
9776
- #: ../lib/puppet/util/windows/adsi.rb:444
9859
+ #: ../lib/puppet/util/windows/adsi.rb:446
9777
9860
  msgid "Puppet is not able to create/delete domain groups with the group resource."
9778
9861
  msgstr ""
9779
9862
 
9780
- #: ../lib/puppet/util/windows/adsi.rb:449
9863
+ #: ../lib/puppet/util/windows/adsi.rb:451
9781
9864
  msgid "Group update failed: %{error}"
9782
9865
  msgstr ""
9783
9866
 
9784
- #: ../lib/puppet/util/windows/adsi.rb:505
9867
+ #: ../lib/puppet/util/windows/adsi.rb:502
9785
9868
  msgid "Cannot create group if user '%{name}' exists."
9786
9869
  msgstr ""
9787
9870
 
@@ -9797,11 +9880,11 @@ msgstr ""
9797
9880
  msgid "%{name} failed (hresult %{result})."
9798
9881
  msgstr ""
9799
9882
 
9800
- #: ../lib/puppet/util/windows/com.rb:142 ../lib/puppet/util/windows/com.rb:183
9883
+ #: ../lib/puppet/util/windows/com.rb:143 ../lib/puppet/util/windows/com.rb:184
9801
9884
  msgid "Failed to call %{klass}::%{name} with HRESULT: %{result}."
9802
9885
  msgstr ""
9803
9886
 
9804
- #: ../lib/puppet/util/windows/com.rb:169
9887
+ #: ../lib/puppet/util/windows/com.rb:170
9805
9888
  msgid "CoCreateInstance failed (%{klass})."
9806
9889
  msgstr ""
9807
9890
 
@@ -9844,17 +9927,17 @@ msgstr ""
9844
9927
  msgid "Failed to call GetLongPathName"
9845
9928
  msgstr ""
9846
9929
 
9847
- #: ../lib/puppet/util/windows/principal.rb:67 ../lib/puppet/util/windows/principal.rb:74
9848
- msgid "Failed to call LookupAccountNameW"
9930
+ #: ../lib/puppet/util/windows/principal.rb:68 ../lib/puppet/util/windows/principal.rb:75
9931
+ msgid "Failed to call LookupAccountNameW with account: %{account_name}"
9849
9932
  msgstr ""
9850
9933
 
9851
9934
  #. TRANSLATORS `lookup_account_sid` is a variable name and should not be translated
9852
- #: ../lib/puppet/util/windows/principal.rb:97
9935
+ #: ../lib/puppet/util/windows/principal.rb:98
9853
9936
  msgid "Byte array for lookup_account_sid must not be nil and must be at least 1 byte long"
9854
9937
  msgstr ""
9855
9938
 
9856
- #: ../lib/puppet/util/windows/principal.rb:119 ../lib/puppet/util/windows/principal.rb:126
9857
- msgid "Failed to call LookupAccountSidW"
9939
+ #: ../lib/puppet/util/windows/principal.rb:120 ../lib/puppet/util/windows/principal.rb:127
9940
+ msgid "Failed to call LookupAccountSidW with bytes: %{sid_bytes}"
9858
9941
  msgstr ""
9859
9942
 
9860
9943
  #: ../lib/puppet/util/windows/process.rb:24
@@ -9933,7 +10016,7 @@ msgstr ""
9933
10016
  msgid "Failed to get volume information"
9934
10017
  msgstr ""
9935
10018
 
9936
- #: ../lib/puppet/util/windows/security.rb:383 ../lib/puppet/util/windows/security.rb:400 ../lib/puppet/util/windows/sid.rb:125 ../lib/puppet/util/windows/sid.rb:187 ../lib/puppet/util/windows/user.rb:45
10019
+ #: ../lib/puppet/util/windows/security.rb:383 ../lib/puppet/util/windows/security.rb:400 ../lib/puppet/util/windows/sid.rb:154 ../lib/puppet/util/windows/sid.rb:216 ../lib/puppet/util/windows/user.rb:45
9937
10020
  msgid "Invalid SID"
9938
10021
  msgstr ""
9939
10022
 
@@ -9973,75 +10056,75 @@ msgstr ""
9973
10056
  msgid "Failed to set security information"
9974
10057
  msgstr ""
9975
10058
 
9976
- #: ../lib/puppet/util/windows/sid.rb:92
10059
+ #: ../lib/puppet/util/windows/sid.rb:93
9977
10060
  msgid "Octet string must be an array of bytes"
9978
10061
  msgstr ""
9979
10062
 
9980
- #: ../lib/puppet/util/windows/sid.rb:131
10063
+ #: ../lib/puppet/util/windows/sid.rb:160
9981
10064
  msgid "Failed to convert binary SID"
9982
10065
  msgstr ""
9983
10066
 
9984
- #: ../lib/puppet/util/windows/sid.rb:136
10067
+ #: ../lib/puppet/util/windows/sid.rb:165
9985
10068
  msgid "ConvertSidToStringSidW failed to allocate buffer for sid"
9986
10069
  msgstr ""
9987
10070
 
9988
- #: ../lib/puppet/util/windows/sid.rb:156
10071
+ #: ../lib/puppet/util/windows/sid.rb:185
9989
10072
  msgid "Failed to convert string SID: %{string_sid}"
9990
10073
  msgstr ""
9991
10074
 
9992
- #: ../lib/puppet/util/windows/taskscheduler.rb:213 ../lib/puppet/util/windows/taskscheduler.rb:246 ../lib/puppet/util/windows/taskscheduler.rb:262 ../lib/puppet/util/windows/taskscheduler.rb:314 ../lib/puppet/util/windows/taskscheduler.rb:341 ../lib/puppet/util/windows/taskscheduler.rb:373 ../lib/puppet/util/windows/taskscheduler.rb:398 ../lib/puppet/util/windows/taskscheduler.rb:417 ../lib/puppet/util/windows/taskscheduler.rb:433 ../lib/puppet/util/windows/taskscheduler.rb:454 ../lib/puppet/util/windows/taskscheduler.rb:470 ../lib/puppet/util/windows/taskscheduler.rb:489 ../lib/puppet/util/windows/taskscheduler.rb:507 ../lib/puppet/util/windows/taskscheduler.rb:540 ../lib/puppet/util/windows/taskscheduler.rb:555 ../lib/puppet/util/windows/taskscheduler.rb:596 ../lib/puppet/util/windows/taskscheduler.rb:612 ../lib/puppet/util/windows/taskscheduler.rb:623 ../lib/puppet/util/windows/taskscheduler.rb:641 ../lib/puppet/util/windows/taskscheduler.rb:661 ../lib/puppet/util/windows/taskscheduler.rb:689
10075
+ #: ../lib/puppet/util/windows/taskscheduler.rb:209 ../lib/puppet/util/windows/taskscheduler.rb:242 ../lib/puppet/util/windows/taskscheduler.rb:258 ../lib/puppet/util/windows/taskscheduler.rb:310 ../lib/puppet/util/windows/taskscheduler.rb:337 ../lib/puppet/util/windows/taskscheduler.rb:369 ../lib/puppet/util/windows/taskscheduler.rb:394 ../lib/puppet/util/windows/taskscheduler.rb:413 ../lib/puppet/util/windows/taskscheduler.rb:429 ../lib/puppet/util/windows/taskscheduler.rb:450 ../lib/puppet/util/windows/taskscheduler.rb:466 ../lib/puppet/util/windows/taskscheduler.rb:485 ../lib/puppet/util/windows/taskscheduler.rb:503 ../lib/puppet/util/windows/taskscheduler.rb:536 ../lib/puppet/util/windows/taskscheduler.rb:551 ../lib/puppet/util/windows/taskscheduler.rb:592 ../lib/puppet/util/windows/taskscheduler.rb:608 ../lib/puppet/util/windows/taskscheduler.rb:619 ../lib/puppet/util/windows/taskscheduler.rb:637 ../lib/puppet/util/windows/taskscheduler.rb:657 ../lib/puppet/util/windows/taskscheduler.rb:685
9993
10076
  msgid "No current task scheduler. ITaskScheduler is NULL."
9994
10077
  msgstr ""
9995
10078
 
9996
- #: ../lib/puppet/util/windows/taskscheduler.rb:273 ../lib/puppet/util/windows/taskscheduler.rb:285 ../lib/puppet/util/windows/taskscheduler.rb:306 ../lib/puppet/util/windows/taskscheduler.rb:342 ../lib/puppet/util/windows/taskscheduler.rb:374 ../lib/puppet/util/windows/taskscheduler.rb:399 ../lib/puppet/util/windows/taskscheduler.rb:418 ../lib/puppet/util/windows/taskscheduler.rb:434 ../lib/puppet/util/windows/taskscheduler.rb:455 ../lib/puppet/util/windows/taskscheduler.rb:471 ../lib/puppet/util/windows/taskscheduler.rb:490 ../lib/puppet/util/windows/taskscheduler.rb:508 ../lib/puppet/util/windows/taskscheduler.rb:541 ../lib/puppet/util/windows/taskscheduler.rb:597 ../lib/puppet/util/windows/taskscheduler.rb:613 ../lib/puppet/util/windows/taskscheduler.rb:624 ../lib/puppet/util/windows/taskscheduler.rb:642 ../lib/puppet/util/windows/taskscheduler.rb:662 ../lib/puppet/util/windows/taskscheduler.rb:674 ../lib/puppet/util/windows/taskscheduler.rb:690 ../lib/puppet/util/windows/taskscheduler.rb:700 ../lib/puppet/util/windows/taskscheduler.rb:726 ../lib/puppet/util/windows/taskscheduler.rb:745 ../lib/puppet/util/windows/taskscheduler.rb:763 ../lib/puppet/util/windows/taskscheduler.rb:777 ../lib/puppet/util/windows/taskscheduler.rb:795 ../lib/puppet/util/windows/taskscheduler.rb:810 ../lib/puppet/util/windows/taskscheduler.rb:826 ../lib/puppet/util/windows/taskscheduler.rb:846 ../lib/puppet/util/windows/taskscheduler.rb:862
10079
+ #: ../lib/puppet/util/windows/taskscheduler.rb:269 ../lib/puppet/util/windows/taskscheduler.rb:281 ../lib/puppet/util/windows/taskscheduler.rb:302 ../lib/puppet/util/windows/taskscheduler.rb:338 ../lib/puppet/util/windows/taskscheduler.rb:370 ../lib/puppet/util/windows/taskscheduler.rb:395 ../lib/puppet/util/windows/taskscheduler.rb:414 ../lib/puppet/util/windows/taskscheduler.rb:430 ../lib/puppet/util/windows/taskscheduler.rb:451 ../lib/puppet/util/windows/taskscheduler.rb:467 ../lib/puppet/util/windows/taskscheduler.rb:486 ../lib/puppet/util/windows/taskscheduler.rb:504 ../lib/puppet/util/windows/taskscheduler.rb:537 ../lib/puppet/util/windows/taskscheduler.rb:593 ../lib/puppet/util/windows/taskscheduler.rb:609 ../lib/puppet/util/windows/taskscheduler.rb:620 ../lib/puppet/util/windows/taskscheduler.rb:638 ../lib/puppet/util/windows/taskscheduler.rb:658 ../lib/puppet/util/windows/taskscheduler.rb:670 ../lib/puppet/util/windows/taskscheduler.rb:686 ../lib/puppet/util/windows/taskscheduler.rb:696 ../lib/puppet/util/windows/taskscheduler.rb:722 ../lib/puppet/util/windows/taskscheduler.rb:741 ../lib/puppet/util/windows/taskscheduler.rb:759 ../lib/puppet/util/windows/taskscheduler.rb:773 ../lib/puppet/util/windows/taskscheduler.rb:791 ../lib/puppet/util/windows/taskscheduler.rb:806 ../lib/puppet/util/windows/taskscheduler.rb:822 ../lib/puppet/util/windows/taskscheduler.rb:842 ../lib/puppet/util/windows/taskscheduler.rb:858
9997
10080
  msgid "No currently active task. ITask is NULL."
9998
10081
  msgstr ""
9999
10082
 
10000
- #: ../lib/puppet/util/windows/taskscheduler.rb:286
10083
+ #: ../lib/puppet/util/windows/taskscheduler.rb:282
10001
10084
  msgid "Account information must be set on the current task to save it properly."
10002
10085
  msgstr ""
10003
10086
 
10004
- #: ../lib/puppet/util/windows/taskscheduler.rb:351
10087
+ #: ../lib/puppet/util/windows/taskscheduler.rb:347
10005
10088
  msgid "User has exceeded maximum allowed length %{max}"
10006
10089
  msgstr ""
10007
10090
 
10008
- #: ../lib/puppet/util/windows/taskscheduler.rb:363
10091
+ #: ../lib/puppet/util/windows/taskscheduler.rb:359
10009
10092
  msgid "job created, but password was invalid"
10010
10093
  msgstr ""
10011
10094
 
10012
- #: ../lib/puppet/util/windows/taskscheduler.rb:423
10095
+ #: ../lib/puppet/util/windows/taskscheduler.rb:419
10013
10096
  msgid "Application name has exceeded maximum allowed length %{max}"
10014
10097
  msgstr ""
10015
10098
 
10016
- #: ../lib/puppet/util/windows/taskscheduler.rb:459
10099
+ #: ../lib/puppet/util/windows/taskscheduler.rb:455
10017
10100
  msgid "Parameters has exceeded maximum allowed length %{max}"
10018
10101
  msgstr ""
10019
10102
 
10020
- #: ../lib/puppet/util/windows/taskscheduler.rb:494
10103
+ #: ../lib/puppet/util/windows/taskscheduler.rb:490
10021
10104
  msgid "Working directory has exceeded maximum allowed length %{max}"
10022
10105
  msgstr ""
10023
10106
 
10024
- #: ../lib/puppet/util/windows/taskscheduler.rb:560
10107
+ #: ../lib/puppet/util/windows/taskscheduler.rb:556
10025
10108
  msgid "task '%{task}' already exists"
10026
10109
  msgstr ""
10027
10110
 
10028
- #: ../lib/puppet/util/windows/taskscheduler.rb:767
10111
+ #: ../lib/puppet/util/windows/taskscheduler.rb:763
10029
10112
  msgid "Comment has exceeded maximum allowed length %{max}"
10030
10113
  msgstr ""
10031
10114
 
10032
- #: ../lib/puppet/util/windows/taskscheduler.rb:799
10115
+ #: ../lib/puppet/util/windows/taskscheduler.rb:795
10033
10116
  msgid "Creator has exceeded maximum allowed length %{max}"
10034
10117
  msgstr ""
10035
10118
 
10036
- #: ../lib/puppet/util/windows/taskscheduler.rb:922
10119
+ #: ../lib/puppet/util/windows/taskscheduler.rb:918
10037
10120
  msgid "Invalid type key '%{key}'"
10038
10121
  msgstr ""
10039
10122
 
10040
- #: ../lib/puppet/util/windows/taskscheduler.rb:930
10123
+ #: ../lib/puppet/util/windows/taskscheduler.rb:926
10041
10124
  msgid "Invalid key '%{key}'"
10042
10125
  msgstr ""
10043
10126
 
10044
- #: ../lib/puppet/util/windows/taskscheduler.rb:980 ../lib/puppet/util/windows/taskscheduler.rb:1047
10127
+ #: ../lib/puppet/util/windows/taskscheduler.rb:974 ../lib/puppet/util/windows/taskscheduler.rb:1041
10045
10128
  msgid "Unknown trigger type %{type}"
10046
10129
  msgstr ""
10047
10130
 
@@ -10126,14 +10209,14 @@ msgstr ""
10126
10209
  msgid "Given value for '%{varname}' has illegal type - got: %{type}"
10127
10210
  msgstr ""
10128
10211
 
10129
- #: ../lib/puppet_pal.rb:850
10212
+ #: ../lib/puppet_pal.rb:852
10130
10213
  msgid "Puppet Pal: %{what}"
10131
10214
  msgstr ""
10132
10215
 
10133
- #: ../lib/puppet_pal.rb:863
10216
+ #: ../lib/puppet_pal.rb:866
10134
10217
  msgid "Cannot use '%{a_term}' and '%{b_term}' at the same time"
10135
10218
  msgstr ""
10136
10219
 
10137
- #: ../lib/puppet_pal.rb:869
10220
+ #: ../lib/puppet_pal.rb:873
10138
10221
  msgid "A block must be given"
10139
10222
  msgstr ""