puppet 6.16.0-x86-mingw32 → 6.20.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 (458) hide show
  1. checksums.yaml +4 -4
  2. data/CODEOWNERS +2 -16
  3. data/Gemfile +6 -2
  4. data/Gemfile.lock +40 -36
  5. data/README.md +3 -4
  6. data/Rakefile +4 -12
  7. data/lib/puppet/agent.rb +2 -2
  8. data/lib/puppet/agent/locker.rb +0 -7
  9. data/lib/puppet/application.rb +10 -6
  10. data/lib/puppet/application/agent.rb +23 -6
  11. data/lib/puppet/application/apply.rb +20 -21
  12. data/lib/puppet/application/device.rb +1 -0
  13. data/lib/puppet/application/doc.rb +1 -1
  14. data/lib/puppet/application/filebucket.rb +2 -2
  15. data/lib/puppet/application/lookup.rb +16 -4
  16. data/lib/puppet/application/script.rb +1 -0
  17. data/lib/puppet/application_support.rb +7 -0
  18. data/lib/puppet/configurer.rb +70 -20
  19. data/lib/puppet/configurer/downloader.rb +31 -10
  20. data/lib/puppet/confine.rb +2 -2
  21. data/lib/puppet/confine/any.rb +1 -1
  22. data/lib/puppet/defaults.rb +113 -46
  23. data/lib/puppet/environments.rb +84 -59
  24. data/lib/puppet/face/catalog.rb +1 -1
  25. data/lib/puppet/face/config.rb +56 -16
  26. data/lib/puppet/face/epp.rb +12 -2
  27. data/lib/puppet/face/facts.rb +60 -0
  28. data/lib/puppet/face/node.rb +3 -3
  29. data/lib/puppet/face/node/clean.rb +2 -2
  30. data/lib/puppet/face/status.rb +1 -1
  31. data/lib/puppet/feature/base.rb +1 -1
  32. data/lib/puppet/ffi/posix.rb +10 -0
  33. data/lib/puppet/ffi/posix/constants.rb +14 -0
  34. data/lib/puppet/ffi/posix/functions.rb +24 -0
  35. data/lib/puppet/file_bucket/dipper.rb +1 -1
  36. data/lib/puppet/file_serving/http_metadata.rb +13 -1
  37. data/lib/puppet/file_serving/metadata.rb +4 -1
  38. data/lib/puppet/file_serving/mount/locales.rb +1 -2
  39. data/lib/puppet/file_serving/mount/pluginfacts.rb +1 -2
  40. data/lib/puppet/file_serving/mount/plugins.rb +1 -2
  41. data/lib/puppet/file_serving/terminus_selector.rb +7 -8
  42. data/lib/puppet/file_system/file_impl.rb +4 -4
  43. data/lib/puppet/file_system/uniquefile.rb +8 -16
  44. data/lib/puppet/forge.rb +1 -1
  45. data/lib/puppet/forge/cache.rb +1 -1
  46. data/lib/puppet/forge/repository.rb +3 -7
  47. data/lib/puppet/functions/epp.rb +1 -0
  48. data/lib/puppet/functions/inline_epp.rb +1 -0
  49. data/lib/puppet/functions/lstrip.rb +4 -4
  50. data/lib/puppet/functions/new.rb +8 -3
  51. data/lib/puppet/functions/reverse_each.rb +1 -1
  52. data/lib/puppet/functions/rstrip.rb +4 -4
  53. data/lib/puppet/functions/step.rb +1 -1
  54. data/lib/puppet/functions/strip.rb +4 -4
  55. data/lib/puppet/gettext/config.rb +5 -5
  56. data/lib/puppet/gettext/module_translations.rb +4 -4
  57. data/lib/puppet/http.rb +1 -0
  58. data/lib/puppet/http/client.rb +6 -1
  59. data/lib/puppet/http/redirector.rb +9 -7
  60. data/lib/puppet/http/resolver.rb +5 -8
  61. data/lib/puppet/http/resolver/server_list.rb +18 -36
  62. data/lib/puppet/http/resolver/settings.rb +4 -4
  63. data/lib/puppet/http/resolver/srv.rb +5 -5
  64. data/lib/puppet/http/response.rb +19 -0
  65. data/lib/puppet/http/service.rb +3 -1
  66. data/lib/puppet/http/service/compiler.rb +1 -1
  67. data/lib/puppet/http/service/file_server.rb +1 -1
  68. data/lib/puppet/http/service/puppetserver.rb +39 -0
  69. data/lib/puppet/http/session.rb +5 -4
  70. data/lib/puppet/indirector.rb +1 -1
  71. data/lib/puppet/indirector/catalog/compiler.rb +1 -1
  72. data/lib/puppet/indirector/exec.rb +1 -1
  73. data/lib/puppet/indirector/fact_search.rb +60 -0
  74. data/lib/puppet/indirector/facts/facter.rb +3 -3
  75. data/lib/puppet/indirector/facts/json.rb +27 -0
  76. data/lib/puppet/indirector/facts/yaml.rb +4 -59
  77. data/lib/puppet/indirector/file_content/rest.rb +1 -1
  78. data/lib/puppet/indirector/file_metadata/http.rb +25 -5
  79. data/lib/puppet/indirector/file_metadata/rest.rb +2 -2
  80. data/lib/puppet/indirector/hiera.rb +4 -0
  81. data/lib/puppet/indirector/indirection.rb +1 -1
  82. data/lib/puppet/indirector/json.rb +5 -1
  83. data/lib/puppet/indirector/msgpack.rb +1 -1
  84. data/lib/puppet/indirector/node/json.rb +8 -0
  85. data/lib/puppet/indirector/report/json.rb +34 -0
  86. data/lib/puppet/indirector/report/processor.rb +2 -2
  87. data/lib/puppet/indirector/request.rb +5 -5
  88. data/lib/puppet/indirector/yaml.rb +1 -1
  89. data/lib/puppet/module.rb +1 -2
  90. data/lib/puppet/module_tool/applications/installer.rb +48 -2
  91. data/lib/puppet/module_tool/errors/shared.rb +17 -2
  92. data/lib/puppet/network/format_support.rb +2 -2
  93. data/lib/puppet/network/formats.rb +2 -1
  94. data/lib/puppet/network/http/api/indirected_routes.rb +1 -1
  95. data/lib/puppet/network/http/api/master/v3/environment.rb +3 -0
  96. data/lib/puppet/network/http/api/master/v3/environments.rb +0 -1
  97. data/lib/puppet/network/http/connection_adapter.rb +6 -4
  98. data/lib/puppet/network/http/route.rb +2 -2
  99. data/lib/puppet/node/environment.rb +12 -5
  100. data/lib/puppet/node/facts.rb +17 -0
  101. data/lib/puppet/pal/pal_impl.rb +90 -13
  102. data/lib/puppet/parameter.rb +1 -1
  103. data/lib/puppet/parser/ast/leaf.rb +7 -6
  104. data/lib/puppet/parser/ast/pops_bridge.rb +0 -4
  105. data/lib/puppet/parser/compiler.rb +1 -1
  106. data/lib/puppet/parser/compiler/catalog_validator/env_relationship_validator.rb +2 -0
  107. data/lib/puppet/parser/compiler/catalog_validator/site_validator.rb +2 -0
  108. data/lib/puppet/parser/environment_compiler.rb +4 -1
  109. data/lib/puppet/parser/functions.rb +21 -17
  110. data/lib/puppet/parser/functions/create_resources.rb +11 -7
  111. data/lib/puppet/parser/resource.rb +3 -2
  112. data/lib/puppet/parser/resource/param.rb +6 -0
  113. data/lib/puppet/parser/templatewrapper.rb +1 -1
  114. data/lib/puppet/parser/type_loader.rb +2 -2
  115. data/lib/puppet/pops/adaptable.rb +7 -13
  116. data/lib/puppet/pops/adapters.rb +8 -4
  117. data/lib/puppet/pops/evaluator/collectors/abstract_collector.rb +1 -3
  118. data/lib/puppet/pops/evaluator/deferred_resolver.rb +5 -3
  119. data/lib/puppet/pops/evaluator/evaluator_impl.rb +27 -8
  120. data/lib/puppet/pops/evaluator/runtime3_converter.rb +2 -2
  121. data/lib/puppet/pops/issues.rb +5 -0
  122. data/lib/puppet/pops/loader/runtime3_type_loader.rb +4 -2
  123. data/lib/puppet/pops/loaders.rb +18 -11
  124. data/lib/puppet/pops/lookup/context.rb +1 -1
  125. data/lib/puppet/pops/lookup/hiera_config.rb +14 -1
  126. data/lib/puppet/pops/model/ast_transformer.rb +1 -1
  127. data/lib/puppet/pops/resource/resource_type_impl.rb +2 -0
  128. data/lib/puppet/pops/types/iterable.rb +34 -8
  129. data/lib/puppet/pops/types/p_meta_type.rb +1 -1
  130. data/lib/puppet/pops/types/p_type_set_type.rb +4 -0
  131. data/lib/puppet/pops/validation/checker4_0.rb +29 -15
  132. data/lib/puppet/pops/validation/validator_factory_4_0.rb +1 -0
  133. data/lib/puppet/provider/file/windows.rb +1 -1
  134. data/lib/puppet/provider/package/apt.rb +38 -0
  135. data/lib/puppet/provider/package/aptitude.rb +1 -1
  136. data/lib/puppet/provider/package/dpkg.rb +1 -1
  137. data/lib/puppet/provider/package/gem.rb +4 -2
  138. data/lib/puppet/provider/package/pip2.rb +17 -0
  139. data/lib/puppet/provider/package/puppet_gem.rb +5 -0
  140. data/lib/puppet/provider/package/puppetserver_gem.rb +180 -0
  141. data/lib/puppet/provider/package/yum.rb +2 -1
  142. data/lib/puppet/provider/package/zypper.rb +3 -0
  143. data/lib/puppet/provider/service/windows.rb +23 -7
  144. data/lib/puppet/provider/user/aix.rb +3 -3
  145. data/lib/puppet/provider/user/user_role_add.rb +1 -1
  146. data/lib/puppet/provider/user/useradd.rb +11 -4
  147. data/lib/puppet/provider/user/windows_adsi.rb +18 -1
  148. data/lib/puppet/reference/configuration.rb +6 -5
  149. data/lib/puppet/reports/http.rb +2 -0
  150. data/lib/puppet/resource.rb +2 -1
  151. data/lib/puppet/resource/type.rb +10 -1
  152. data/lib/puppet/rest/route.rb +2 -2
  153. data/lib/puppet/settings.rb +63 -21
  154. data/lib/puppet/settings/alias_setting.rb +37 -0
  155. data/lib/puppet/settings/base_setting.rb +26 -2
  156. data/lib/puppet/ssl/ssl_context.rb +2 -2
  157. data/lib/puppet/ssl/ssl_provider.rb +20 -1
  158. data/lib/puppet/ssl/validator/default_validator.rb +1 -1
  159. data/lib/puppet/test/test_helper.rb +18 -13
  160. data/lib/puppet/transaction.rb +2 -2
  161. data/lib/puppet/transaction/persistence.rb +1 -1
  162. data/lib/puppet/transaction/report.rb +12 -8
  163. data/lib/puppet/trusted_external.rb +29 -1
  164. data/lib/puppet/type.rb +15 -7
  165. data/lib/puppet/type/file.rb +40 -15
  166. data/lib/puppet/type/file/checksum.rb +4 -4
  167. data/lib/puppet/type/file/source.rb +32 -12
  168. data/lib/puppet/type/filebucket.rb +1 -1
  169. data/lib/puppet/type/notify.rb +2 -2
  170. data/lib/puppet/type/service.rb +53 -0
  171. data/lib/puppet/type/user.rb +18 -3
  172. data/lib/puppet/util.rb +41 -3
  173. data/lib/puppet/util/autoload.rb +10 -15
  174. data/lib/puppet/util/character_encoding.rb +9 -5
  175. data/lib/puppet/util/checksums.rb +19 -4
  176. data/lib/puppet/util/connection.rb +8 -8
  177. data/lib/puppet/util/execution.rb +2 -2
  178. data/lib/puppet/util/fact_dif.rb +62 -0
  179. data/lib/puppet/util/fileparsing.rb +2 -2
  180. data/lib/puppet/util/posix.rb +54 -5
  181. data/lib/puppet/util/provider_features.rb +1 -1
  182. data/lib/puppet/util/reference.rb +1 -1
  183. data/lib/puppet/util/rubygems.rb +5 -1
  184. data/lib/puppet/util/run_mode.rb +5 -1
  185. data/lib/puppet/util/windows.rb +1 -0
  186. data/lib/puppet/util/windows/api_types.rb +60 -33
  187. data/lib/puppet/util/windows/eventlog.rb +1 -6
  188. data/lib/puppet/util/windows/monkey_patches/dir.rb +40 -0
  189. data/lib/puppet/util/windows/principal.rb +8 -6
  190. data/lib/puppet/util/windows/registry.rb +11 -11
  191. data/lib/puppet/util/windows/security.rb +4 -4
  192. data/lib/puppet/util/windows/service.rb +43 -26
  193. data/lib/puppet/util/windows/user.rb +242 -8
  194. data/lib/puppet/version.rb +1 -1
  195. data/locales/puppet.pot +501 -443
  196. data/man/man5/puppet.conf.5 +70 -24
  197. data/man/man8/puppet-agent.8 +8 -5
  198. data/man/man8/puppet-apply.8 +2 -2
  199. data/man/man8/puppet-catalog.8 +1 -1
  200. data/man/man8/puppet-config.8 +6 -6
  201. data/man/man8/puppet-describe.8 +1 -1
  202. data/man/man8/puppet-device.8 +2 -2
  203. data/man/man8/puppet-doc.8 +1 -1
  204. data/man/man8/puppet-epp.8 +1 -1
  205. data/man/man8/puppet-facts.8 +32 -1
  206. data/man/man8/puppet-filebucket.8 +3 -3
  207. data/man/man8/puppet-generate.8 +1 -1
  208. data/man/man8/puppet-help.8 +1 -1
  209. data/man/man8/puppet-key.8 +1 -1
  210. data/man/man8/puppet-lookup.8 +2 -2
  211. data/man/man8/puppet-man.8 +1 -1
  212. data/man/man8/puppet-module.8 +1 -1
  213. data/man/man8/puppet-node.8 +7 -4
  214. data/man/man8/puppet-parser.8 +1 -1
  215. data/man/man8/puppet-plugin.8 +1 -1
  216. data/man/man8/puppet-report.8 +4 -1
  217. data/man/man8/puppet-resource.8 +1 -1
  218. data/man/man8/puppet-script.8 +2 -2
  219. data/man/man8/puppet-ssl.8 +1 -1
  220. data/man/man8/puppet-status.8 +2 -2
  221. data/man/man8/puppet.8 +2 -2
  222. data/spec/fixtures/integration/application/agent/cached_deferred_catalog.json +91 -0
  223. data/spec/fixtures/integration/application/apply/environments/spec/modules/amod/lib/puppet/provider/applytest/applytest.rb +2 -0
  224. data/spec/fixtures/integration/application/apply/environments/spec/modules/amod/lib/puppet/type/applytest.rb +25 -0
  225. data/spec/fixtures/unit/forge/bacula-releases.json +128 -0
  226. data/spec/fixtures/unit/forge/bacula.tar.gz +0 -0
  227. data/spec/fixtures/unit/provider/package/puppetserver_gem/gem-list-local-packages +30 -0
  228. data/spec/fixtures/unit/provider/user/aix/aix_passwd_file.out +4 -0
  229. data/spec/integration/application/agent_spec.rb +263 -54
  230. data/spec/integration/application/apply_spec.rb +168 -149
  231. data/spec/integration/application/doc_spec.rb +16 -6
  232. data/spec/integration/application/filebucket_spec.rb +70 -21
  233. data/spec/integration/application/help_spec.rb +42 -0
  234. data/spec/integration/application/lookup_spec.rb +13 -0
  235. data/spec/integration/application/module_spec.rb +68 -0
  236. data/spec/integration/application/plugin_spec.rb +53 -3
  237. data/spec/integration/configurer_spec.rb +14 -0
  238. data/spec/integration/data_binding_spec.rb +82 -0
  239. data/spec/integration/defaults_spec.rb +20 -3
  240. data/spec/integration/directory_environments_spec.rb +17 -17
  241. data/spec/integration/environments/setting_hooks_spec.rb +1 -1
  242. data/spec/integration/indirector/facts/facter_spec.rb +8 -6
  243. data/spec/integration/network/http_pool_spec.rb +26 -9
  244. data/spec/integration/node/environment_spec.rb +1 -1
  245. data/spec/integration/parser/compiler_spec.rb +11 -0
  246. data/spec/integration/resource/type_collection_spec.rb +2 -6
  247. data/spec/integration/transaction_spec.rb +4 -9
  248. data/spec/integration/type/file_spec.rb +1 -1
  249. data/spec/integration/util/execution_spec.rb +22 -0
  250. data/spec/integration/util/windows/adsi_spec.rb +5 -3
  251. data/spec/integration/util/windows/monkey_patches/dir_spec.rb +11 -0
  252. data/spec/integration/util/windows/process_spec.rb +26 -32
  253. data/spec/integration/util/windows/registry_spec.rb +7 -17
  254. data/spec/integration/util/windows/user_spec.rb +47 -5
  255. data/spec/integration/util_spec.rb +7 -33
  256. data/spec/lib/puppet_spec/matchers.rb +0 -80
  257. data/spec/lib/puppet_spec/puppetserver.rb +8 -0
  258. data/spec/lib/puppet_spec/settings.rb +6 -1
  259. data/spec/shared_contexts/types_setup.rb +2 -0
  260. data/spec/spec_helper.rb +1 -4
  261. data/spec/unit/agent_spec.rb +8 -6
  262. data/spec/unit/application/agent_spec.rb +3 -5
  263. data/spec/unit/application/config_spec.rb +224 -4
  264. data/spec/unit/application/doc_spec.rb +2 -2
  265. data/spec/unit/application/face_base_spec.rb +6 -4
  266. data/spec/unit/application/facts_spec.rb +41 -10
  267. data/spec/unit/application/filebucket_spec.rb +0 -2
  268. data/spec/unit/application/man_spec.rb +52 -0
  269. data/spec/unit/application/resource_spec.rb +3 -1
  270. data/spec/unit/application/ssl_spec.rb +15 -2
  271. data/spec/unit/application_spec.rb +60 -13
  272. data/spec/unit/configurer/downloader_spec.rb +10 -0
  273. data/spec/unit/configurer/fact_handler_spec.rb +4 -4
  274. data/spec/unit/configurer_spec.rb +86 -37
  275. data/spec/unit/confine/feature_spec.rb +1 -1
  276. data/spec/unit/confine_spec.rb +10 -3
  277. data/spec/unit/context/trusted_information_spec.rb +10 -4
  278. data/spec/unit/defaults_spec.rb +20 -1
  279. data/spec/unit/environments_spec.rb +176 -32
  280. data/spec/unit/face/config_spec.rb +65 -12
  281. data/spec/unit/face/node_spec.rb +2 -13
  282. data/spec/unit/file_serving/configuration/parser_spec.rb +0 -1
  283. data/spec/unit/file_serving/http_metadata_spec.rb +37 -14
  284. data/spec/unit/file_serving/metadata_spec.rb +3 -3
  285. data/spec/unit/file_serving/mount/locales_spec.rb +2 -2
  286. data/spec/unit/file_serving/mount/pluginfacts_spec.rb +2 -2
  287. data/spec/unit/file_serving/mount/plugins_spec.rb +2 -2
  288. data/spec/unit/file_serving/terminus_helper_spec.rb +11 -4
  289. data/spec/unit/file_serving/terminus_selector_spec.rb +45 -26
  290. data/spec/unit/file_system/uniquefile_spec.rb +18 -0
  291. data/spec/unit/file_system_spec.rb +1 -2
  292. data/spec/unit/forge/module_release_spec.rb +2 -7
  293. data/spec/unit/functions/inline_epp_spec.rb +26 -1
  294. data/spec/unit/http/client_spec.rb +64 -9
  295. data/spec/unit/http/resolver_spec.rb +24 -5
  296. data/spec/unit/http/response_spec.rb +6 -0
  297. data/spec/unit/http/service/ca_spec.rb +2 -3
  298. data/spec/unit/http/service/compiler_spec.rb +51 -3
  299. data/spec/unit/http/service/file_server_spec.rb +2 -3
  300. data/spec/unit/http/service/puppetserver_spec.rb +82 -0
  301. data/spec/unit/http/service/report_spec.rb +2 -3
  302. data/spec/unit/http/service_spec.rb +1 -2
  303. data/spec/unit/http/session_spec.rb +8 -21
  304. data/spec/unit/indirector/catalog/json_spec.rb +1 -1
  305. data/spec/unit/indirector/catalog/rest_spec.rb +1 -1
  306. data/spec/unit/indirector/face_spec.rb +0 -1
  307. data/spec/unit/indirector/facts/facter_spec.rb +0 -1
  308. data/spec/unit/indirector/facts/json_spec.rb +255 -0
  309. data/spec/unit/indirector/facts/rest_spec.rb +1 -1
  310. data/spec/unit/indirector/file_bucket_file/selector_spec.rb +26 -8
  311. data/spec/unit/indirector/file_metadata/http_spec.rb +27 -0
  312. data/spec/unit/indirector/indirection_spec.rb +8 -12
  313. data/spec/unit/indirector/json_spec.rb +8 -8
  314. data/spec/unit/indirector/key/file_spec.rb +0 -1
  315. data/spec/unit/indirector/msgpack_spec.rb +8 -8
  316. data/spec/unit/indirector/node/json_spec.rb +33 -0
  317. data/spec/unit/indirector/node/rest_spec.rb +1 -1
  318. data/spec/{integration/indirector/report/yaml.rb → unit/indirector/report/json_spec.rb} +13 -24
  319. data/spec/unit/indirector/report/yaml_spec.rb +72 -8
  320. data/spec/unit/indirector/request_spec.rb +5 -5
  321. data/spec/unit/indirector/rest_spec.rb +1 -1
  322. data/spec/unit/indirector/status/rest_spec.rb +1 -1
  323. data/spec/unit/indirector/yaml_spec.rb +7 -7
  324. data/spec/unit/indirector_spec.rb +2 -2
  325. data/spec/unit/interface_spec.rb +3 -3
  326. data/spec/unit/module_tool/applications/installer_spec.rb +66 -0
  327. data/spec/unit/module_tool/tar/mini_spec.rb +20 -0
  328. data/spec/unit/network/authconfig_spec.rb +0 -3
  329. data/spec/unit/network/format_support_spec.rb +3 -2
  330. data/spec/unit/network/http/api/indirected_routes_spec.rb +2 -10
  331. data/spec/unit/network/http/api/master/v3/environments_spec.rb +12 -23
  332. data/spec/unit/network/http/connection_spec.rb +42 -32
  333. data/spec/unit/network/http/handler_spec.rb +0 -5
  334. data/spec/unit/node/environment_spec.rb +18 -1
  335. data/spec/unit/parser/ast/block_expression_spec.rb +1 -1
  336. data/spec/unit/parser/compiler_spec.rb +3 -19
  337. data/spec/unit/parser/environment_compiler_spec.rb +7 -0
  338. data/spec/unit/parser/resource_spec.rb +14 -8
  339. data/spec/unit/parser/scope_spec.rb +1 -1
  340. data/spec/unit/parser/templatewrapper_spec.rb +4 -3
  341. data/spec/unit/pops/evaluator/deferred_resolver_spec.rb +20 -0
  342. data/spec/unit/pops/evaluator/evaluating_parser_spec.rb +15 -1
  343. data/spec/unit/pops/loaders/loaders_spec.rb +71 -1
  344. data/spec/unit/pops/lookup/lookup_spec.rb +25 -0
  345. data/spec/unit/pops/types/type_calculator_spec.rb +1 -11
  346. data/spec/unit/property_spec.rb +1 -0
  347. data/spec/unit/provider/exec_spec.rb +4 -3
  348. data/spec/unit/provider/nameservice_spec.rb +66 -65
  349. data/spec/unit/provider/package/apt_spec.rb +76 -3
  350. data/spec/unit/provider/package/aptitude_spec.rb +1 -0
  351. data/spec/unit/provider/package/base_spec.rb +6 -5
  352. data/spec/unit/provider/package/dpkg_spec.rb +22 -7
  353. data/spec/unit/provider/package/openbsd_spec.rb +2 -0
  354. data/spec/unit/provider/package/pacman_spec.rb +18 -12
  355. data/spec/unit/provider/package/pip2_spec.rb +36 -0
  356. data/spec/unit/provider/package/pip_spec.rb +6 -11
  357. data/spec/unit/provider/package/pkgdmg_spec.rb +0 -4
  358. data/spec/unit/provider/package/puppet_gem_spec.rb +4 -1
  359. data/spec/unit/provider/package/puppetserver_gem_spec.rb +137 -0
  360. data/spec/unit/provider/package/yum_spec.rb +31 -0
  361. data/spec/unit/provider/package/zypper_spec.rb +14 -0
  362. data/spec/unit/provider/service/base_spec.rb +2 -4
  363. data/spec/unit/provider/service/bsd_spec.rb +5 -1
  364. data/spec/unit/provider/service/daemontools_spec.rb +1 -1
  365. data/spec/unit/provider/service/debian_spec.rb +3 -5
  366. data/spec/unit/provider/service/freebsd_spec.rb +1 -1
  367. data/spec/unit/provider/service/gentoo_spec.rb +4 -5
  368. data/spec/unit/provider/service/init_spec.rb +45 -5
  369. data/spec/unit/provider/service/launchd_spec.rb +5 -6
  370. data/spec/unit/provider/service/openrc_spec.rb +4 -5
  371. data/spec/unit/provider/service/openwrt_spec.rb +1 -1
  372. data/spec/unit/provider/service/redhat_spec.rb +1 -1
  373. data/spec/unit/provider/service/runit_spec.rb +2 -1
  374. data/spec/unit/provider/service/smf_spec.rb +1 -1
  375. data/spec/unit/provider/service/src_spec.rb +3 -5
  376. data/spec/unit/provider/service/systemd_spec.rb +3 -6
  377. data/spec/unit/provider/service/upstart_spec.rb +4 -5
  378. data/spec/unit/provider/service/windows_spec.rb +50 -14
  379. data/spec/unit/provider/user/aix_spec.rb +5 -0
  380. data/spec/unit/provider/user/hpux_spec.rb +1 -1
  381. data/spec/unit/provider/user/openbsd_spec.rb +1 -0
  382. data/spec/unit/provider/user/pw_spec.rb +2 -0
  383. data/spec/unit/provider/user/useradd_spec.rb +23 -16
  384. data/spec/unit/provider/user/windows_adsi_spec.rb +82 -0
  385. data/spec/unit/provider_spec.rb +8 -10
  386. data/spec/unit/puppet_pal_2pec.rb +40 -0
  387. data/spec/unit/puppet_pal_catalog_spec.rb +45 -0
  388. data/spec/unit/reports/store_spec.rb +17 -13
  389. data/spec/unit/resource/capability_finder_spec.rb +6 -1
  390. data/spec/unit/resource/type_spec.rb +1 -1
  391. data/spec/unit/resource_spec.rb +14 -13
  392. data/spec/unit/rest/route_spec.rb +4 -4
  393. data/spec/unit/settings_spec.rb +576 -239
  394. data/spec/unit/ssl/base_spec.rb +0 -1
  395. data/spec/unit/ssl/host_spec.rb +0 -5
  396. data/spec/unit/ssl/ssl_provider_spec.rb +82 -50
  397. data/spec/unit/test/test_helper_spec.rb +17 -0
  398. data/spec/unit/transaction/additional_resource_generator_spec.rb +3 -7
  399. data/spec/unit/transaction/event_manager_spec.rb +14 -11
  400. data/spec/unit/transaction/persistence_spec.rb +15 -0
  401. data/spec/unit/transaction/report_spec.rb +3 -1
  402. data/spec/unit/transaction_spec.rb +13 -4
  403. data/spec/unit/type/file/content_spec.rb +0 -1
  404. data/spec/unit/type/file/selinux_spec.rb +0 -2
  405. data/spec/unit/type/file/source_spec.rb +4 -4
  406. data/spec/unit/type/file_spec.rb +122 -102
  407. data/spec/unit/type/filebucket_spec.rb +1 -1
  408. data/spec/unit/type/group_spec.rb +13 -6
  409. data/spec/unit/type/resources_spec.rb +7 -7
  410. data/spec/unit/type/service_spec.rb +210 -1
  411. data/spec/unit/type/tidy_spec.rb +0 -1
  412. data/spec/unit/type/user_spec.rb +31 -2
  413. data/spec/unit/type_spec.rb +52 -2
  414. data/spec/unit/util/at_fork_spec.rb +2 -2
  415. data/spec/unit/util/autoload_spec.rb +5 -1
  416. data/spec/unit/util/backups_spec.rb +1 -2
  417. data/spec/unit/util/character_encoding_spec.rb +4 -4
  418. data/spec/unit/util/checksums_spec.rb +16 -0
  419. data/spec/unit/util/command_line_spec.rb +11 -6
  420. data/spec/unit/util/execution_spec.rb +15 -11
  421. data/spec/unit/util/inifile_spec.rb +6 -14
  422. data/spec/unit/util/log_spec.rb +8 -7
  423. data/spec/unit/util/logging_spec.rb +3 -3
  424. data/spec/unit/util/posix_spec.rb +363 -15
  425. data/spec/unit/util/rubygems_spec.rb +2 -2
  426. data/spec/unit/util/run_mode_spec.rb +6 -6
  427. data/spec/unit/util/selinux_spec.rb +76 -52
  428. data/spec/unit/util/storage_spec.rb +3 -1
  429. data/spec/unit/util/suidmanager_spec.rb +44 -41
  430. data/spec/unit/util/windows/api_types_spec.rb +104 -40
  431. data/spec/unit/util/windows/service_spec.rb +4 -4
  432. data/spec/unit/util_spec.rb +16 -9
  433. data/spec/unit/x509/cert_provider_spec.rb +1 -1
  434. metadata +52 -53
  435. data/spec/integration/faces/config_spec.rb +0 -91
  436. data/spec/integration/faces/documentation_spec.rb +0 -57
  437. data/spec/integration/file_bucket/file_spec.rb +0 -50
  438. data/spec/integration/file_serving/content_spec.rb +0 -7
  439. data/spec/integration/file_serving/fileset_spec.rb +0 -12
  440. data/spec/integration/file_serving/metadata_spec.rb +0 -8
  441. data/spec/integration/file_serving/terminus_helper_spec.rb +0 -20
  442. data/spec/integration/file_system/uniquefile_spec.rb +0 -26
  443. data/spec/integration/module_tool/forge_spec.rb +0 -51
  444. data/spec/integration/module_tool/tar/mini_spec.rb +0 -28
  445. data/spec/integration/provider/service/init_spec.rb +0 -48
  446. data/spec/integration/provider/service/systemd_spec.rb +0 -25
  447. data/spec/integration/provider/service/windows_spec.rb +0 -50
  448. data/spec/integration/reference/providers_spec.rb +0 -21
  449. data/spec/integration/reports_spec.rb +0 -13
  450. data/spec/integration/ssl/certificate_request_spec.rb +0 -44
  451. data/spec/integration/ssl/host_spec.rb +0 -72
  452. data/spec/integration/ssl/key_spec.rb +0 -99
  453. data/spec/integration/test/test_helper_spec.rb +0 -31
  454. data/spec/shared_behaviours/file_serving_model.rb +0 -51
  455. data/spec/unit/face/catalog_spec.rb +0 -6
  456. data/spec/unit/face/man_spec.rb +0 -25
  457. data/spec/unit/face/module_spec.rb +0 -3
  458. data/spec/unit/man_spec.rb +0 -31
@@ -6,7 +6,7 @@
6
6
  # Raketasks and such to set the version based on the output of `git describe`
7
7
 
8
8
  module Puppet
9
- PUPPETVERSION = '6.16.0'
9
+ PUPPETVERSION = '6.20.0'
10
10
 
11
11
  ##
12
12
  # version is a public API method intended to always provide a fast and
@@ -1,16 +1,16 @@
1
1
  # SOME DESCRIPTIVE TITLE.
2
- # Copyright (C) 2020 Puppet, Inc.
2
+ # Copyright (C) 2021 Puppet, Inc.
3
3
  # This file is distributed under the same license as the Puppet automation framework package.
4
- # FIRST AUTHOR <EMAIL@ADDRESS>, 2020.
4
+ # FIRST AUTHOR <EMAIL@ADDRESS>, 2021.
5
5
  #
6
6
  #, fuzzy
7
7
  msgid ""
8
8
  msgstr ""
9
- "Project-Id-Version: Puppet automation framework 6.15.0-156-gc38342f706\n"
9
+ "Project-Id-Version: Puppet automation framework 6.19.1-133-gcc65fe8151\n"
10
10
  "\n"
11
11
  "Report-Msgid-Bugs-To: https://tickets.puppetlabs.com\n"
12
- "POT-Creation-Date: 2020-05-20 22:19+0000\n"
13
- "PO-Revision-Date: 2020-05-20 22:19+0000\n"
12
+ "POT-Creation-Date: 2021-01-14 12:33+0000\n"
13
+ "PO-Revision-Date: 2021-01-14 12:33+0000\n"
14
14
  "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
15
15
  "Language-Team: LANGUAGE <LL@li.org>\n"
16
16
  "Language: \n"
@@ -44,7 +44,7 @@ msgstr ""
44
44
  msgid "Please supply a parameter to perform a Hiera lookup"
45
45
  msgstr ""
46
46
 
47
- #: ../lib/hiera_puppet.rb:75 ../lib/puppet/indirector/hiera.rb:81
47
+ #: ../lib/hiera_puppet.rb:75 ../lib/puppet/indirector/hiera.rb:85
48
48
  msgid "Config file %{hiera_config} not found, using Hiera defaults"
49
49
  msgstr ""
50
50
 
@@ -72,39 +72,39 @@ msgid ""
72
72
  "Use 'puppet agent --enable' to re-enable."
73
73
  msgstr ""
74
74
 
75
- #: ../lib/puppet/agent.rb:67
75
+ #: ../lib/puppet/agent.rb:68
76
76
  msgid "Run of %{client_class} already in progress; skipping (%{lockfile_path} exists)"
77
77
  msgstr ""
78
78
 
79
- #: ../lib/puppet/agent.rb:70
79
+ #: ../lib/puppet/agent.rb:71
80
80
  msgid "Exiting now because the maxwaitforlock timeout has been exceeded."
81
81
  msgstr ""
82
82
 
83
- #: ../lib/puppet/agent.rb:73
83
+ #: ../lib/puppet/agent.rb:74
84
84
  msgid "Another puppet instance is already running; --waitforlock flag used, waiting for running instance to finish."
85
85
  msgstr ""
86
86
 
87
- #: ../lib/puppet/agent.rb:74 ../lib/puppet/ssl/state_machine.rb:279 ../lib/puppet/ssl/state_machine.rb:310
87
+ #: ../lib/puppet/agent.rb:75 ../lib/puppet/ssl/state_machine.rb:279 ../lib/puppet/ssl/state_machine.rb:310
88
88
  msgid "Will try again in %{time} seconds."
89
89
  msgstr ""
90
90
 
91
- #: ../lib/puppet/agent.rb:79
91
+ #: ../lib/puppet/agent.rb:80
92
92
  msgid "Execution of %{client_class} did not complete within %{runtimeout} seconds and was terminated."
93
93
  msgstr ""
94
94
 
95
- #: ../lib/puppet/agent.rb:84
95
+ #: ../lib/puppet/agent.rb:85
96
96
  msgid "Could not run %{client_class}: %{detail}"
97
97
  msgstr ""
98
98
 
99
- #: ../lib/puppet/agent.rb:91
99
+ #: ../lib/puppet/agent.rb:92
100
100
  msgid "Shutdown/restart in progress (%{status}); skipping run"
101
101
  msgstr ""
102
102
 
103
- #: ../lib/puppet/agent.rb:109
103
+ #: ../lib/puppet/agent.rb:110
104
104
  msgid "puppet agent: applying configuration"
105
105
  msgstr ""
106
106
 
107
- #: ../lib/puppet/agent.rb:132
107
+ #: ../lib/puppet/agent.rb:133
108
108
  msgid "Could not create instance of %{client_class}: %{detail}"
109
109
  msgstr ""
110
110
 
@@ -120,16 +120,6 @@ msgstr ""
120
120
  msgid "Failed to acquire lock"
121
121
  msgstr ""
122
122
 
123
- #. TRANSLATORS 'Puppet::Agent::Locker.running?' is a method name and should not be translated
124
- #: ../lib/puppet/agent/locker.rb:33
125
- msgid "Puppet::Agent::Locker.running? is deprecated as it is inherently unsafe."
126
- msgstr ""
127
-
128
- #. TRANSLATORS 'LockError' should not be translated
129
- #: ../lib/puppet/agent/locker.rb:35
130
- msgid "The only safe way to know if the lock is locked is to try lock and perform some action and then handle the LockError that may result."
131
- msgstr ""
132
-
133
123
  #: ../lib/puppet/application.rb:238
134
124
  msgid "Unable to find application '%{application_name}'. %{error}"
135
125
  msgstr ""
@@ -178,11 +168,11 @@ msgstr ""
178
168
  msgid "No valid command or main"
179
169
  msgstr ""
180
170
 
181
- #: ../lib/puppet/application.rb:428
171
+ #: ../lib/puppet/application.rb:431
182
172
  msgid "Could not set logdest to %{dest}."
183
173
  msgstr ""
184
174
 
185
- #: ../lib/puppet/application.rb:504
175
+ #: ../lib/puppet/application.rb:508
186
176
  msgid "No help available for puppet %{app_name}"
187
177
  msgstr ""
188
178
 
@@ -194,19 +184,19 @@ msgstr ""
194
184
  msgid "The puppet agent daemon"
195
185
  msgstr ""
196
186
 
197
- #: ../lib/puppet/application/agent.rb:398
187
+ #: ../lib/puppet/application/agent.rb:415
198
188
  msgid "Fingerprint asked but neither the certificate, nor the certificate request have been issued"
199
189
  msgstr ""
200
190
 
201
- #: ../lib/puppet/application/agent.rb:403
191
+ #: ../lib/puppet/application/agent.rb:420
202
192
  msgid "Failed to generate fingerprint: %{message}"
203
193
  msgstr ""
204
194
 
205
- #: ../lib/puppet/application/agent.rb:426
195
+ #: ../lib/puppet/application/agent.rb:443
206
196
  msgid "Starting Puppet client version %{version}"
207
197
  msgstr ""
208
198
 
209
- #: ../lib/puppet/application/agent.rb:442
199
+ #: ../lib/puppet/application/agent.rb:459
210
200
  msgid "The puppet agent command does not take parameters"
211
201
  msgstr ""
212
202
 
@@ -216,35 +206,35 @@ msgstr ""
216
206
 
217
207
  #. TRANSLATORS "puppet apply" is a program command and should not be translated
218
208
  #. TRANSLATORS "puppet apply" is a program command and should not be translated
219
- #: ../lib/puppet/application/apply.rb:207 ../lib/puppet/application/apply.rb:322
209
+ #: ../lib/puppet/application/apply.rb:208 ../lib/puppet/application/apply.rb:321
220
210
  msgid "For puppet apply"
221
211
  msgstr ""
222
212
 
223
- #: ../lib/puppet/application/apply.rb:215
213
+ #: ../lib/puppet/application/apply.rb:216
224
214
  msgid "%{file} is not readable"
225
215
  msgstr ""
226
216
 
227
- #: ../lib/puppet/application/apply.rb:293 ../lib/puppet/application/script.rb:239
217
+ #: ../lib/puppet/application/apply.rb:287 ../lib/puppet/application/script.rb:240
228
218
  msgid "Exiting"
229
219
  msgstr ""
230
220
 
231
- #: ../lib/puppet/application/apply.rb:332
221
+ #: ../lib/puppet/application/apply.rb:331
232
222
  msgid "Could not deserialize catalog from %{format}: %{detail}"
233
223
  msgstr ""
234
224
 
235
- #: ../lib/puppet/application/apply.rb:353 ../lib/puppet/application/script.rb:144
225
+ #: ../lib/puppet/application/apply.rb:352 ../lib/puppet/application/script.rb:145
236
226
  msgid "Could not find facts for %{node}"
237
227
  msgstr ""
238
228
 
239
- #: ../lib/puppet/application/apply.rb:365 ../lib/puppet/application/script.rb:152
229
+ #: ../lib/puppet/application/apply.rb:364 ../lib/puppet/application/script.rb:153
240
230
  msgid "Could not find node %{node}"
241
231
  msgstr ""
242
232
 
243
- #: ../lib/puppet/application/apply.rb:378 ../lib/puppet/application/script.rb:137
233
+ #: ../lib/puppet/application/apply.rb:377 ../lib/puppet/application/script.rb:138
244
234
  msgid "Could not find file %{manifest}"
245
235
  msgstr ""
246
236
 
247
- #: ../lib/puppet/application/apply.rb:379
237
+ #: ../lib/puppet/application/apply.rb:378
248
238
  msgid "Only one file can be applied per run. Skipping %{files}"
249
239
  msgstr ""
250
240
 
@@ -260,47 +250,47 @@ msgstr ""
260
250
  msgid "Manage remote network devices"
261
251
  msgstr ""
262
252
 
263
- #: ../lib/puppet/application/device.rb:230
253
+ #: ../lib/puppet/application/device.rb:231
264
254
  msgid "resource command requires target"
265
255
  msgstr ""
266
256
 
267
- #: ../lib/puppet/application/device.rb:233
257
+ #: ../lib/puppet/application/device.rb:234
268
258
  msgid "facts command requires target"
269
259
  msgstr ""
270
260
 
271
- #: ../lib/puppet/application/device.rb:236
261
+ #: ../lib/puppet/application/device.rb:237
272
262
  msgid "missing argument: --target is required when using --apply"
273
263
  msgstr ""
274
264
 
275
- #: ../lib/puppet/application/device.rb:237
265
+ #: ../lib/puppet/application/device.rb:238
276
266
  msgid "%{file} does not exist, cannot apply"
277
267
  msgstr ""
278
268
 
279
- #: ../lib/puppet/application/device.rb:255
269
+ #: ../lib/puppet/application/device.rb:256
280
270
  msgid "Target device / certificate '%{target}' not found in %{config}"
281
271
  msgstr ""
282
272
 
283
- #: ../lib/puppet/application/device.rb:257
273
+ #: ../lib/puppet/application/device.rb:258
284
274
  msgid "No device found in %{config}"
285
275
  msgstr ""
286
276
 
287
- #: ../lib/puppet/application/device.rb:316
277
+ #: ../lib/puppet/application/device.rb:317
288
278
  msgid "retrieving resource: %{resource} from %{target} at %{scheme}%{url_host}%{port}%{url_path}"
289
279
  msgstr ""
290
280
 
291
- #: ../lib/puppet/application/device.rb:331
281
+ #: ../lib/puppet/application/device.rb:332
292
282
  msgid "retrieving facts from %{target} at %{scheme}%{url_host}%{port}%{url_path}"
293
283
  msgstr ""
294
284
 
295
- #: ../lib/puppet/application/device.rb:354
285
+ #: ../lib/puppet/application/device.rb:355
296
286
  msgid "starting applying configuration to %{target} at %{scheme}%{url_host}%{port}%{url_path}"
297
287
  msgstr ""
298
288
 
299
- #: ../lib/puppet/application/device.rb:392 ../lib/puppet/application/resource.rb:196
289
+ #: ../lib/puppet/application/device.rb:393 ../lib/puppet/application/resource.rb:196
300
290
  msgid "You must specify the type to display"
301
291
  msgstr ""
302
292
 
303
- #: ../lib/puppet/application/device.rb:393 ../lib/puppet/application/resource.rb:197
293
+ #: ../lib/puppet/application/device.rb:394 ../lib/puppet/application/resource.rb:197
304
294
  msgid "Could not find type %{type}"
305
295
  msgstr ""
306
296
 
@@ -400,31 +390,31 @@ msgid ""
400
390
  "%{run_help}"
401
391
  msgstr ""
402
392
 
403
- #: ../lib/puppet/application/lookup.rb:99
393
+ #: ../lib/puppet/application/lookup.rb:105
404
394
  msgid "Interactive Hiera lookup"
405
395
  msgstr ""
406
396
 
407
- #: ../lib/puppet/application/lookup.rb:266
397
+ #: ../lib/puppet/application/lookup.rb:272
408
398
  msgid ""
409
399
  "The options %{deep_merge_opts} are only available with '--merge deep'\n"
410
400
  "%{run_help}"
411
401
  msgstr ""
412
402
 
413
- #: ../lib/puppet/application/lookup.rb:277
403
+ #: ../lib/puppet/application/lookup.rb:283
414
404
  msgid ""
415
405
  "The --merge option only accepts %{strategies}, or %{last_strategy}\n"
416
406
  "%{run_help}"
417
407
  msgstr ""
418
408
 
419
- #: ../lib/puppet/application/lookup.rb:302
409
+ #: ../lib/puppet/application/lookup.rb:308
420
410
  msgid "No keys were given to lookup."
421
411
  msgstr ""
422
412
 
423
- #: ../lib/puppet/application/lookup.rb:310
413
+ #: ../lib/puppet/application/lookup.rb:316
424
414
  msgid "Unknown rendering format '%{format}'"
425
415
  msgstr ""
426
416
 
427
- #: ../lib/puppet/application/lookup.rb:360 ../lib/puppet/face/epp.rb:520
417
+ #: ../lib/puppet/application/lookup.rb:366 ../lib/puppet/face/epp.rb:530
428
418
  msgid "Incorrect formatted data in %{fact_file} given via the --facts flag"
429
419
  msgstr ""
430
420
 
@@ -448,11 +438,11 @@ msgstr ""
448
438
  msgid "Run a puppet manifests as a script without compiling a catalog"
449
439
  msgstr ""
450
440
 
451
- #: ../lib/puppet/application/script.rb:124
441
+ #: ../lib/puppet/application/script.rb:125
452
442
  msgid "Bolt must be installed to use the script application"
453
443
  msgstr ""
454
444
 
455
- #: ../lib/puppet/application/script.rb:138
445
+ #: ../lib/puppet/application/script.rb:139
456
446
  msgid "Only one file can be used per run. Skipping %{files}"
457
447
  msgstr ""
458
448
 
@@ -536,101 +526,105 @@ msgstr ""
536
526
  msgid "Cannot remove %{file}: %{detail}"
537
527
  msgstr ""
538
528
 
539
- #: ../lib/puppet/configurer.rb:72
529
+ #: ../lib/puppet/configurer.rb:80
540
530
  msgid "Using cached catalog from environment '%{environment}'"
541
531
  msgstr ""
542
532
 
543
- #: ../lib/puppet/configurer.rb:78
533
+ #: ../lib/puppet/configurer.rb:86
544
534
  msgid "Not using cache on failed catalog"
545
535
  msgstr ""
546
536
 
547
- #: ../lib/puppet/configurer.rb:87
537
+ #: ../lib/puppet/configurer.rb:95
548
538
  msgid "Not using cached catalog because its environment '%{catalog_env}' does not match '%{local_env}'"
549
539
  msgstr ""
550
540
 
551
- #: ../lib/puppet/configurer.rb:92 ../lib/puppet/configurer.rb:174
541
+ #: ../lib/puppet/configurer.rb:100 ../lib/puppet/configurer.rb:182
552
542
  msgid "Using cached catalog from environment '%{catalog_env}'"
553
543
  msgstr ""
554
544
 
555
- #: ../lib/puppet/configurer.rb:167
545
+ #: ../lib/puppet/configurer.rb:175
556
546
  msgid "Could not retrieve catalog; skipping run"
557
547
  msgstr ""
558
548
 
559
- #: ../lib/puppet/configurer.rb:183
549
+ #: ../lib/puppet/configurer.rb:191
560
550
  msgid "Applied catalog in %{seconds} seconds"
561
551
  msgstr ""
562
552
 
563
- #: ../lib/puppet/configurer.rb:219 ../lib/puppet/http/resolver/server_list.rb:68
564
- msgid "Could not select a functional puppet master from server_list: '%{server_list}'"
553
+ #: ../lib/puppet/configurer.rb:227
554
+ msgid "Could not select a functional puppet server from server_list: '%{server_list}'"
565
555
  msgstr ""
566
556
 
567
- #: ../lib/puppet/configurer.rb:256
557
+ #. TRANSLATORS 'server_list' is the name of a setting and should not be translated
558
+ #: ../lib/puppet/configurer.rb:241
559
+ msgid "Selected puppet server from the `server_list` setting: %{server}:%{port}"
560
+ msgstr ""
561
+
562
+ #: ../lib/puppet/configurer.rb:277
568
563
  msgid "Local environment: '%{local_env}' doesn't match the environment of the cached catalog '%{catalog_env}', switching agent to '%{catalog_env}'."
569
564
  msgstr ""
570
565
 
571
- #: ../lib/puppet/configurer.rb:301
566
+ #: ../lib/puppet/configurer.rb:322
572
567
  msgid "Local environment: '%{local_env}' doesn't match server specified node environment '%{node_env}', switching agent to '%{node_env}'."
573
568
  msgstr ""
574
569
 
575
- #: ../lib/puppet/configurer.rb:307
570
+ #: ../lib/puppet/configurer.rb:337
576
571
  msgid "Using configured environment '%{env}'"
577
572
  msgstr ""
578
573
 
579
- #: ../lib/puppet/configurer.rb:311
574
+ #: ../lib/puppet/configurer.rb:341
580
575
  msgid "Unable to fetch my node definition, but the agent run will continue:"
581
576
  msgstr ""
582
577
 
583
- #: ../lib/puppet/configurer.rb:340
578
+ #: ../lib/puppet/configurer.rb:369
584
579
  msgid "Not using catalog because its environment '%{catalog_env}' does not match agent specified environment '%{local_env}' and strict_environment_mode is set"
585
580
  msgstr ""
586
581
 
587
- #: ../lib/puppet/configurer.rb:351
582
+ #: ../lib/puppet/configurer.rb:380
588
583
  msgid "Catalog environment didn't stabilize after %{tries} fetches, aborting run"
589
584
  msgstr ""
590
585
 
591
- #: ../lib/puppet/configurer.rb:353
586
+ #: ../lib/puppet/configurer.rb:382
592
587
  msgid "Local environment: '%{local_env}' doesn't match server specified environment '%{catalog_env}', restarting agent run with environment '%{catalog_env}'"
593
588
  msgstr ""
594
589
 
595
- #: ../lib/puppet/configurer.rb:394
590
+ #: ../lib/puppet/configurer.rb:426
596
591
  msgid "Failed to apply catalog: %{detail}"
597
592
  msgstr ""
598
593
 
599
- #: ../lib/puppet/configurer.rb:423 ../lib/puppet/http/resolver/server_list.rb:89
594
+ #: ../lib/puppet/configurer.rb:455 ../lib/puppet/http/resolver/server_list.rb:67
600
595
  msgid "Puppet server %{host}:%{port} is unavailable: %{code} %{reason}"
601
596
  msgstr ""
602
597
 
603
598
  #. TRANSLATORS 'server_list' is the name of a setting and should not be translated
604
- #. TRANSLATORS 'server_list' is the name of a setting and should not be translated
605
- #: ../lib/puppet/configurer.rb:427 ../lib/puppet/http/resolver/server_list.rb:95
599
+ #: ../lib/puppet/configurer.rb:459 ../lib/puppet/http/resolver/server_list.rb:70
606
600
  msgid "Unable to connect to server from server_list setting: %{detail}"
607
601
  msgstr ""
608
602
 
609
- #: ../lib/puppet/configurer.rb:438 ../lib/puppet/face/report.rb:47
603
+ #: ../lib/puppet/configurer.rb:470 ../lib/puppet/face/report.rb:47
610
604
  msgid "Could not send report: %{detail}"
611
605
  msgstr ""
612
606
 
613
- #: ../lib/puppet/configurer.rb:447
607
+ #: ../lib/puppet/configurer.rb:479
614
608
  msgid "Could not save last run local report: %{detail}"
615
609
  msgstr ""
616
610
 
617
- #: ../lib/puppet/configurer.rb:466
611
+ #: ../lib/puppet/configurer.rb:498
618
612
  msgid "Uploading facts for %{node} to %{server}"
619
613
  msgstr ""
620
614
 
621
- #: ../lib/puppet/configurer.rb:474
615
+ #: ../lib/puppet/configurer.rb:506
622
616
  msgid "Failed to submit facts: %{detail}"
623
617
  msgstr ""
624
618
 
625
- #: ../lib/puppet/configurer.rb:489
619
+ #: ../lib/puppet/configurer.rb:521
626
620
  msgid "Could not run command from %{setting}: %{detail}"
627
621
  msgstr ""
628
622
 
629
- #: ../lib/puppet/configurer.rb:507
623
+ #: ../lib/puppet/configurer.rb:539
630
624
  msgid "Could not retrieve catalog from cache: %{detail}"
631
625
  msgstr ""
632
626
 
633
- #: ../lib/puppet/configurer.rb:528
627
+ #: ../lib/puppet/configurer.rb:560
634
628
  msgid "Could not retrieve catalog from remote server: %{detail}"
635
629
  msgstr ""
636
630
 
@@ -638,7 +632,11 @@ msgstr ""
638
632
  msgid "Retrieving %{name}"
639
633
  msgstr ""
640
634
 
641
- #: ../lib/puppet/configurer/downloader.rb:20
635
+ #: ../lib/puppet/configurer/downloader.rb:21
636
+ msgid "Failed to retrieve %{name}: %{detail}"
637
+ msgstr ""
638
+
639
+ #: ../lib/puppet/configurer/downloader.rb:32
642
640
  msgid "Could not retrieve %{name}: %{detail}"
643
641
  msgstr ""
644
642
 
@@ -694,11 +692,11 @@ msgstr ""
694
692
  msgid "a data type can only have one implementation"
695
693
  msgstr ""
696
694
 
697
- #: ../lib/puppet/defaults.rb:178
695
+ #: ../lib/puppet/defaults.rb:179
698
696
  msgid "Cannot disable unrecognized warning types '%{invalid}'."
699
697
  msgstr ""
700
698
 
701
- #: ../lib/puppet/defaults.rb:179
699
+ #: ../lib/puppet/defaults.rb:180
702
700
  msgid "Valid values are '%{values}'."
703
701
  msgstr ""
704
702
 
@@ -713,22 +711,31 @@ msgid "Convert custom terminus to hiera 5 API."
713
711
  msgstr ""
714
712
 
715
713
  #. TRANSLATORS 'environment_data_provider' is a setting and should not be translated
716
- #: ../lib/puppet/defaults.rb:739
714
+ #: ../lib/puppet/defaults.rb:762
717
715
  msgid "Setting 'environment_data_provider' is deprecated."
718
716
  msgstr ""
719
717
 
720
- #: ../lib/puppet/defaults.rb:820
718
+ #: ../lib/puppet/defaults.rb:847
721
719
  msgid "Certificate names must be lower case"
722
720
  msgstr ""
723
721
 
724
- #: ../lib/puppet/defaults.rb:1005
722
+ #: ../lib/puppet/defaults.rb:1042
725
723
  msgid "Setting 'ssl_client_ca_auth' is deprecated."
726
724
  msgstr ""
727
725
 
728
- #: ../lib/puppet/defaults.rb:1084 ../lib/puppet/settings/enum_setting.rb:13 ../lib/puppet/settings/symbolic_enum_setting.rb:14
726
+ #: ../lib/puppet/defaults.rb:1121 ../lib/puppet/settings/enum_setting.rb:13 ../lib/puppet/settings/symbolic_enum_setting.rb:14
729
727
  msgid "Invalid value '%{value}' for parameter %{name}. Allowed values are '%{allowed_values}'"
730
728
  msgstr ""
731
729
 
730
+ #. TRANSLATORS 'pluginsync' is a setting and should not be translated
731
+ #: ../lib/puppet/defaults.rb:1995
732
+ msgid "Setting 'pluginsync' is deprecated."
733
+ msgstr ""
734
+
735
+ #: ../lib/puppet/defaults.rb:2230
736
+ msgid "The 'func3x_check' setting is deprecated and will be removed in a future release."
737
+ msgstr ""
738
+
732
739
  #: ../lib/puppet/error.rb:77
733
740
  msgid "Could not parse for environment %{environment}: %{message}"
734
741
  msgstr ""
@@ -771,7 +778,7 @@ msgstr ""
771
778
  msgid "no matching resources found"
772
779
  msgstr ""
773
780
 
774
- #: ../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
781
+ #: ../lib/puppet/face/config.rb:7 ../lib/puppet/face/epp.rb:8 ../lib/puppet/face/facts.rb:30 ../lib/puppet/face/generate.rb:7 ../lib/puppet/face/help.rb:9 ../lib/puppet/face/key.rb:5 ../lib/puppet/face/man.rb:8 ../lib/puppet/face/module.rb:9 ../lib/puppet/face/node.rb:4 ../lib/puppet/face/parser.rb:6 ../lib/puppet/face/plugin.rb:6 ../lib/puppet/face/report.rb:5 ../lib/puppet/face/resource.rb:5 ../lib/puppet/face/status.rb:5
775
782
  msgid "Apache 2 license; see COPYING"
776
783
  msgstr ""
777
784
 
@@ -827,7 +834,7 @@ msgstr ""
827
834
 
828
835
  #: ../lib/puppet/face/config.rb:146
829
836
  msgid ""
830
- "The environment should be set in either the `[user]`, `[agent]`, or `[master]`\n"
837
+ "The environment should be set in either the `[user]`, `[agent]`, or `[server]`\n"
831
838
  "section. Variables set in the `[agent]` section are used when running\n"
832
839
  "`puppet agent`. Variables set in the `[user]` section are used when running\n"
833
840
  "various other puppet subcommands, like `puppet apply` and `puppet module`; these\n"
@@ -837,25 +844,28 @@ msgid ""
837
844
  "https://puppet.com/docs/puppet/latest/configuration.html#environment\n"
838
845
  msgstr ""
839
846
 
840
- #: ../lib/puppet/face/config.rb:174
847
+ #: ../lib/puppet/face/config.rb:186
848
+ msgid "Deleted setting from '%{section_name}': '%{setting_string}', and adding it to 'server' section"
849
+ msgstr ""
850
+
851
+ #: ../lib/puppet/face/config.rb:201
841
852
  msgid "Delete a Puppet setting."
842
853
  msgstr ""
843
854
 
844
- #: ../lib/puppet/face/config.rb:175
855
+ #: ../lib/puppet/face/config.rb:202
845
856
  msgid "<setting>"
846
857
  msgstr ""
847
858
 
848
- #. TRANSLATORS 'main' is a specific section name and should not be translated
849
- #: ../lib/puppet/face/config.rb:212
859
+ #: ../lib/puppet/face/config.rb:236 ../lib/puppet/face/config.rb:240 ../lib/puppet/face/config.rb:251
850
860
  msgid "Deleted setting from '%{section_name}': '%{setting_string}'"
851
861
  msgstr ""
852
862
 
853
- #: ../lib/puppet/face/config.rb:215
863
+ #: ../lib/puppet/face/config.rb:254
854
864
  msgid "No setting found in configuration file for section '%{section_name}' setting name '%{name}'"
855
865
  msgstr ""
856
866
 
857
867
  #. TRANSLATORS the 'puppet.conf' is a specific file and should not be translated
858
- #: ../lib/puppet/face/config.rb:222
868
+ #: ../lib/puppet/face/config.rb:262
859
869
  msgid "The puppet.conf file does not exist %{puppet_conf}"
860
870
  msgstr ""
861
871
 
@@ -1005,26 +1015,34 @@ msgstr ""
1005
1015
  msgid "--values option must evaluate to a Hash or undef, got: '%{values_class}'"
1006
1016
  msgstr ""
1007
1017
 
1008
- #: ../lib/puppet/face/facts.rb:8
1018
+ #: ../lib/puppet/face/facts.rb:32
1009
1019
  msgid "Retrieve and store facts."
1010
1020
  msgstr ""
1011
1021
 
1012
- #: ../lib/puppet/face/facts.rb:16
1022
+ #: ../lib/puppet/face/facts.rb:40
1013
1023
  msgid "Retrieve a node's facts."
1014
1024
  msgstr ""
1015
1025
 
1016
- #: ../lib/puppet/face/facts.rb:17
1026
+ #: ../lib/puppet/face/facts.rb:41
1017
1027
  msgid "[<node_certname>]"
1018
1028
  msgstr ""
1019
1029
 
1020
- #: ../lib/puppet/face/facts.rb:40
1030
+ #: ../lib/puppet/face/facts.rb:64
1021
1031
  msgid "Upload local facts to the puppet master."
1022
1032
  msgstr ""
1023
1033
 
1024
- #: ../lib/puppet/face/facts.rb:82
1034
+ #: ../lib/puppet/face/facts.rb:106
1025
1035
  msgid "Uploading facts for '%{node}' to '%{server}'"
1026
1036
  msgstr ""
1027
1037
 
1038
+ #: ../lib/puppet/face/facts.rb:116
1039
+ msgid "Compare Facter 3 output with Facter 4 output"
1040
+ msgstr ""
1041
+
1042
+ #: ../lib/puppet/face/facts.rb:145
1043
+ msgid "Already using Facter 4. To use `puppet facts diff` remove facterng from the .conf file or run `puppet config set facterng false`."
1044
+ msgstr ""
1045
+
1028
1046
  #: ../lib/puppet/face/generate.rb:9
1029
1047
  msgid "Generates Puppet code from Ruby definitions."
1030
1048
  msgstr ""
@@ -1762,7 +1780,7 @@ msgstr ""
1762
1780
  msgid "No task specified"
1763
1781
  msgstr ""
1764
1782
 
1765
- #: ../lib/puppet/file_serving/terminus_selector.rb:29
1783
+ #: ../lib/puppet/file_serving/terminus_selector.rb:28
1766
1784
  msgid "URI protocol '%{protocol}' is not currently supported for file serving"
1767
1785
  msgstr ""
1768
1786
 
@@ -1782,7 +1800,7 @@ msgstr ""
1782
1800
  msgid "Timeout waiting for exclusive lock on %{path}"
1783
1801
  msgstr ""
1784
1802
 
1785
- #: ../lib/puppet/file_system/jruby.rb:18 ../lib/puppet/file_system/windows.rb:127 ../lib/puppet/util.rb:681
1803
+ #: ../lib/puppet/file_system/jruby.rb:18 ../lib/puppet/file_system/windows.rb:127 ../lib/puppet/util.rb:706
1786
1804
  msgid "Is a directory: %{directory}"
1787
1805
  msgstr ""
1788
1806
 
@@ -1818,7 +1836,7 @@ msgstr ""
1818
1836
  msgid "unexpected prefix_suffix: %{value}"
1819
1837
  msgstr ""
1820
1838
 
1821
- #: ../lib/puppet/file_system/uniquefile.rb:140
1839
+ #: ../lib/puppet/file_system/uniquefile.rb:136
1822
1840
  msgid "cannot generate temporary name using `%{basename}' under `%{tmpdir}'"
1823
1841
  msgstr ""
1824
1842
 
@@ -2246,11 +2264,11 @@ msgstr ""
2246
2264
  msgid "Request to %{uri} failed after %{elapsed} seconds: %{message}"
2247
2265
  msgstr ""
2248
2266
 
2249
- #: ../lib/puppet/http/client.rb:321
2267
+ #: ../lib/puppet/http/client.rb:326
2250
2268
  msgid "Sleeping for %{interval} seconds before retrying the request"
2251
2269
  msgstr ""
2252
2270
 
2253
- #: ../lib/puppet/http/client.rb:364 ../lib/puppet/indirector/request.rb:142
2271
+ #: ../lib/puppet/http/client.rb:369 ../lib/puppet/indirector/request.rb:142
2254
2272
  msgid "HTTP REST queries cannot handle values of type '%{klass}'"
2255
2273
  msgstr ""
2256
2274
 
@@ -2262,11 +2280,11 @@ msgstr ""
2262
2280
  msgid "Too many HTTP retries for %{addr}"
2263
2281
  msgstr ""
2264
2282
 
2265
- #: ../lib/puppet/http/redirector.rb:76
2283
+ #: ../lib/puppet/http/redirector.rb:78
2266
2284
  msgid "Location response header is missing"
2267
2285
  msgstr ""
2268
2286
 
2269
- #: ../lib/puppet/http/redirector.rb:80
2287
+ #: ../lib/puppet/http/redirector.rb:82
2270
2288
  msgid "Location URI is invalid: %{detail}"
2271
2289
  msgstr ""
2272
2290
 
@@ -2274,15 +2292,15 @@ msgstr ""
2274
2292
  msgid "Failed to parse Retry-After header '%{retry_after}' as an integer or RFC 2822 date"
2275
2293
  msgstr ""
2276
2294
 
2277
- #: ../lib/puppet/http/service.rb:119
2295
+ #: ../lib/puppet/http/service.rb:121
2278
2296
  msgid "Ignoring extra header \"%{name}\" as it was previously set."
2279
2297
  msgstr ""
2280
2298
 
2281
- #: ../lib/puppet/http/service.rb:122
2299
+ #: ../lib/puppet/http/service.rb:124
2282
2300
  msgid "Ignoring extra header \"%{name}\" as it has no value."
2283
2301
  msgstr ""
2284
2302
 
2285
- #: ../lib/puppet/http/service.rb:145 ../lib/puppet/indirector/rest.rb:288
2303
+ #: ../lib/puppet/http/service.rb:147 ../lib/puppet/indirector/rest.rb:288
2286
2304
  msgid "No content type in http response; cannot parse"
2287
2305
  msgstr ""
2288
2306
 
@@ -2595,7 +2613,7 @@ msgstr ""
2595
2613
  msgid "Puppet::Indirector::FileContent::Http is deprecated. Use Puppet::HTTP::Client instead."
2596
2614
  msgstr ""
2597
2615
 
2598
- #: ../lib/puppet/indirector/file_metadata/http.rb:25
2616
+ #: ../lib/puppet/indirector/file_metadata/http.rb:32
2599
2617
  msgid "cannot lookup multiple files"
2600
2618
  msgstr ""
2601
2619
 
@@ -2608,12 +2626,12 @@ msgid "Could not find filesystem info for file '%{request}' in environment %{env
2608
2626
  msgstr ""
2609
2627
 
2610
2628
  #. TRANSLATORS "Hiera" is the name of a code library and should not be translated
2611
- #: ../lib/puppet/indirector/hiera.rb:8
2629
+ #: ../lib/puppet/indirector/hiera.rb:12
2612
2630
  msgid "Hiera terminus not supported without hiera library"
2613
2631
  msgstr ""
2614
2632
 
2615
2633
  #. TRANSLATORS "merge" is a parameter name and should not be translated
2616
- #: ../lib/puppet/indirector/hiera.rb:68
2634
+ #: ../lib/puppet/indirector/hiera.rb:72
2617
2635
  msgid "Unrecognized value for request 'merge' parameter: '%{merge}'"
2618
2636
  msgstr ""
2619
2637
 
@@ -2702,11 +2720,11 @@ msgstr ""
2702
2720
  msgid "invalid key"
2703
2721
  msgstr ""
2704
2722
 
2705
- #: ../lib/puppet/indirector/json.rb:58
2723
+ #: ../lib/puppet/indirector/json.rb:62
2706
2724
  msgid "Could not read JSON data for %{name} %{key}: %{detail}"
2707
2725
  msgstr ""
2708
2726
 
2709
- #: ../lib/puppet/indirector/json.rb:64
2727
+ #: ../lib/puppet/indirector/json.rb:68
2710
2728
  msgid "Could not parse JSON data for %{name} %{key}: %{detail}"
2711
2729
  msgstr ""
2712
2730
 
@@ -2763,6 +2781,14 @@ msgstr ""
2763
2781
  msgid "Could not load external node results for %{name}: %{detail}"
2764
2782
  msgstr ""
2765
2783
 
2784
+ #: ../lib/puppet/indirector/report/json.rb:19 ../lib/puppet/indirector/report/yaml.rb:19
2785
+ msgid "replace_file mode: %{mode} is invalid"
2786
+ msgstr ""
2787
+
2788
+ #: ../lib/puppet/indirector/report/json.rb:31 ../lib/puppet/indirector/report/yaml.rb:31 ../lib/puppet/indirector/yaml.rb:32
2789
+ msgid "Could not save %{indirection} %{request}: %{detail}"
2790
+ msgstr ""
2791
+
2766
2792
  #: ../lib/puppet/indirector/report/processor.rb:39
2767
2793
  msgid "Report %{report} failed: %{detail}"
2768
2794
  msgstr ""
@@ -2775,14 +2801,6 @@ msgstr ""
2775
2801
  msgid "Server version %{version} does not accept reports in '%{format}', use `preferred_serialization_format=pson`"
2776
2802
  msgstr ""
2777
2803
 
2778
- #: ../lib/puppet/indirector/report/yaml.rb:19
2779
- msgid "replace_file mode: %{mode} is invalid"
2780
- msgstr ""
2781
-
2782
- #: ../lib/puppet/indirector/report/yaml.rb:31 ../lib/puppet/indirector/yaml.rb:32
2783
- msgid "Could not save %{indirection} %{request}: %{detail}"
2784
- msgstr ""
2785
-
2786
2804
  #: ../lib/puppet/indirector/request.rb:103
2787
2805
  msgid "Could not find indirection '%{indirection}'"
2788
2806
  msgstr ""
@@ -2806,9 +2824,9 @@ msgstr ""
2806
2824
  msgid "Selected port from the first entry of the `server_list` setting: %{port}"
2807
2825
  msgstr ""
2808
2826
 
2809
- #. TRANSLATORS 'masterport' is the name of a setting and should not be translated
2827
+ #. TRANSLATORS 'serverport' is the name of a setting and should not be translated
2810
2828
  #: ../lib/puppet/indirector/request.rb:235
2811
- msgid "Selected port from the `masterport` setting: %{port}"
2829
+ msgid "Selected port from the `serverport` setting: %{port}"
2812
2830
  msgstr ""
2813
2831
 
2814
2832
  #: ../lib/puppet/indirector/request.rb:266
@@ -2981,8 +2999,8 @@ msgstr ""
2981
2999
  msgid "Option %{option} conflicts with existing option %{conflict} on %{face}"
2982
3000
  msgstr ""
2983
3001
 
2984
- #. TRANSLATORS 'Puppet.settings' should not be translated
2985
3002
  #. TRANSLATORS 'Puppet.settings' references to the Puppet settings options and should not be translated
3003
+ #. TRANSLATORS 'Puppet.settings' should not be translated
2986
3004
  #: ../lib/puppet/interface/action.rb:315 ../lib/puppet/interface/option_manager.rb:14
2987
3005
  msgid "Global option %{option} does not exist in Puppet.settings"
2988
3006
  msgstr ""
@@ -3207,11 +3225,11 @@ msgid "Loaded puppet/type/%{name} but no class was created"
3207
3225
  msgstr ""
3208
3226
 
3209
3227
  #. TRANSLATORS 'metadata.json' is a specific file name and should not be translated.
3210
- #: ../lib/puppet/module.rb:222
3228
+ #: ../lib/puppet/module.rb:221
3211
3229
  msgid "%{name} has an invalid and unparsable metadata.json file. The parse error: %{error}"
3212
3230
  msgstr ""
3213
3231
 
3214
- #: ../lib/puppet/module.rb:468
3232
+ #: ../lib/puppet/module.rb:467
3215
3233
  msgid ""
3216
3234
  " Invalid module name '%{name}'; module names must match either:\n"
3217
3235
  " An installed module name (ex. modulename) matching the expression /^[a-z][a-z0-9_]*$/ -or-\n"
@@ -3338,11 +3356,11 @@ msgstr ""
3338
3356
  msgid "Resolving dependencies ..."
3339
3357
  msgstr ""
3340
3358
 
3341
- #: ../lib/puppet/module_tool/applications/installer.rb:162
3359
+ #: ../lib/puppet/module_tool/applications/installer.rb:208
3342
3360
  msgid "Preparing to install ..."
3343
3361
  msgstr ""
3344
3362
 
3345
- #: ../lib/puppet/module_tool/applications/installer.rb:165
3363
+ #: ../lib/puppet/module_tool/applications/installer.rb:211
3346
3364
  msgid "Installing -- do not interrupt ..."
3347
3365
  msgstr ""
3348
3366
 
@@ -3386,7 +3404,7 @@ msgstr ""
3386
3404
  msgid "'%{module_name}' (%{version}) requested; '%{module_name}' (%{installed_version}) already installed"
3387
3405
  msgstr ""
3388
3406
 
3389
- #: ../lib/puppet/module_tool/errors/installer.rb:16 ../lib/puppet/module_tool/errors/installer.rb:54 ../lib/puppet/module_tool/errors/installer.rb:72 ../lib/puppet/module_tool/errors/shared.rb:64 ../lib/puppet/module_tool/errors/shared.rb:106
3407
+ #: ../lib/puppet/module_tool/errors/installer.rb:16 ../lib/puppet/module_tool/errors/installer.rb:54 ../lib/puppet/module_tool/errors/installer.rb:72 ../lib/puppet/module_tool/errors/shared.rb:79 ../lib/puppet/module_tool/errors/shared.rb:121
3390
3408
  msgid "Could not install module '%{module_name}' (%{version})"
3391
3409
  msgstr ""
3392
3410
 
@@ -3416,7 +3434,7 @@ msgstr ""
3416
3434
  msgid "Could not install '%{requested_package}'"
3417
3435
  msgstr ""
3418
3436
 
3419
- #: ../lib/puppet/module_tool/errors/installer.rb:38 ../lib/puppet/module_tool/errors/shared.rb:43
3437
+ #: ../lib/puppet/module_tool/errors/installer.rb:38 ../lib/puppet/module_tool/errors/shared.rb:58
3420
3438
  msgid " No releases are available from %{source}"
3421
3439
  msgstr ""
3422
3440
 
@@ -3461,150 +3479,162 @@ msgstr ""
3461
3479
  msgid " Package attempted to install file into %{path} under %{directory}."
3462
3480
  msgstr ""
3463
3481
 
3464
- #: ../lib/puppet/module_tool/errors/shared.rb:11
3482
+ #: ../lib/puppet/module_tool/errors/shared.rb:12
3465
3483
  msgid "Could not %{action} '%{module_name}' (%{version}); no version satisfies all dependencies"
3466
3484
  msgstr ""
3467
3485
 
3468
- #: ../lib/puppet/module_tool/errors/shared.rb:16 ../lib/puppet/module_tool/errors/shared.rb:171 ../lib/puppet/module_tool/errors/upgrader.rb:58
3486
+ #: ../lib/puppet/module_tool/errors/shared.rb:17 ../lib/puppet/module_tool/errors/shared.rb:186 ../lib/puppet/module_tool/errors/upgrader.rb:58
3469
3487
  msgid "Could not %{action} module '%{module_name}' (%{version})"
3470
3488
  msgstr ""
3471
3489
 
3472
- #: ../lib/puppet/module_tool/errors/shared.rb:17
3473
- msgid " No version of '%{module_name}' can satisfy all dependencies"
3490
+ #: ../lib/puppet/module_tool/errors/shared.rb:20
3491
+ msgid " The requested version cannot satisfy one or more of the following installed modules:"
3492
+ msgstr ""
3493
+
3494
+ #: ../lib/puppet/module_tool/errors/shared.rb:22
3495
+ msgid " %{name}, installed: %{current_version}, expected: %{constraints}"
3496
+ msgstr ""
3497
+
3498
+ #: ../lib/puppet/module_tool/errors/shared.rb:25
3499
+ msgid " %{mod}, expects '%{name}': %{range}"
3500
+ msgstr ""
3501
+
3502
+ #: ../lib/puppet/module_tool/errors/shared.rb:30
3503
+ msgid " The requested version cannot satisfy all dependencies"
3474
3504
  msgstr ""
3475
3505
 
3476
3506
  #. TRANSLATORS `puppet module %{action} --ignore-dependencies` is a command line and should not be translated
3477
- #: ../lib/puppet/module_tool/errors/shared.rb:19
3478
- msgid " Use `puppet module %{action} --ignore-dependencies` to %{action} only this module"
3507
+ #: ../lib/puppet/module_tool/errors/shared.rb:34
3508
+ msgid " Use `puppet module %{action} '%{module_name}' --ignore-dependencies` to %{action} only this module"
3479
3509
  msgstr ""
3480
3510
 
3481
- #: ../lib/puppet/module_tool/errors/shared.rb:33
3511
+ #: ../lib/puppet/module_tool/errors/shared.rb:48
3482
3512
  msgid "Could not %{action} '%{module_name}'; no releases are available from %{source}"
3483
3513
  msgstr ""
3484
3514
 
3485
- #: ../lib/puppet/module_tool/errors/shared.rb:35
3515
+ #: ../lib/puppet/module_tool/errors/shared.rb:50
3486
3516
  msgid "Could not %{action} '%{module_name}'; no releases matching '%{version}' are available from %{source}"
3487
3517
  msgstr ""
3488
3518
 
3489
- #: ../lib/puppet/module_tool/errors/shared.rb:41
3519
+ #: ../lib/puppet/module_tool/errors/shared.rb:56
3490
3520
  msgid "Could not %{action} '%{module_name}' (%{version})"
3491
3521
  msgstr ""
3492
3522
 
3493
- #: ../lib/puppet/module_tool/errors/shared.rb:44
3523
+ #: ../lib/puppet/module_tool/errors/shared.rb:59
3494
3524
  msgid " Does '%{module_name}' have at least one published release?"
3495
3525
  msgstr ""
3496
3526
 
3497
- #: ../lib/puppet/module_tool/errors/shared.rb:46
3527
+ #: ../lib/puppet/module_tool/errors/shared.rb:61
3498
3528
  msgid " No releases matching '%{requested_version}' are available from %{source}"
3499
3529
  msgstr ""
3500
3530
 
3501
- #: ../lib/puppet/module_tool/errors/shared.rb:59
3531
+ #: ../lib/puppet/module_tool/errors/shared.rb:74
3502
3532
  msgid "'%{module_name}' (%{version}) requested; installation conflict"
3503
3533
  msgstr ""
3504
3534
 
3505
- #: ../lib/puppet/module_tool/errors/shared.rb:67
3535
+ #: ../lib/puppet/module_tool/errors/shared.rb:82
3506
3536
  msgid " Dependency '%{name}' (%{version}) would overwrite %{directory}"
3507
3537
  msgstr ""
3508
3538
 
3509
- #: ../lib/puppet/module_tool/errors/shared.rb:69
3539
+ #: ../lib/puppet/module_tool/errors/shared.rb:84
3510
3540
  msgid " Installation would overwrite %{directory}"
3511
3541
  msgstr ""
3512
3542
 
3513
- #: ../lib/puppet/module_tool/errors/shared.rb:73
3543
+ #: ../lib/puppet/module_tool/errors/shared.rb:88
3514
3544
  msgid " Currently, '%{current_name}' (%{current_version}) is installed to that directory"
3515
3545
  msgstr ""
3516
3546
 
3517
3547
  #. TRANSLATORS `puppet module install --ignore-dependencies` is a command line and should not be translated
3518
- #: ../lib/puppet/module_tool/errors/shared.rb:78
3548
+ #: ../lib/puppet/module_tool/errors/shared.rb:93
3519
3549
  msgid " Use `puppet module install --ignore-dependencies` to install only this module"
3520
3550
  msgstr ""
3521
3551
 
3522
3552
  #. TRANSLATORS `puppet module install --force` is a command line and should not be translated
3523
3553
  #. TRANSLATORS `puppet module install --force` is a command line and should not be translated
3524
- #: ../lib/puppet/module_tool/errors/shared.rb:81 ../lib/puppet/module_tool/errors/shared.rb:110
3554
+ #: ../lib/puppet/module_tool/errors/shared.rb:96 ../lib/puppet/module_tool/errors/shared.rb:125
3525
3555
  msgid " Use `puppet module install --force` to install this module anyway"
3526
3556
  msgstr ""
3527
3557
 
3528
- #: ../lib/puppet/module_tool/errors/shared.rb:95
3558
+ #: ../lib/puppet/module_tool/errors/shared.rb:110
3529
3559
  msgid "'%{module_name}' (%{version}) requested; Invalid dependency cycle"
3530
3560
  msgstr ""
3531
3561
 
3532
- #: ../lib/puppet/module_tool/errors/shared.rb:100
3562
+ #: ../lib/puppet/module_tool/errors/shared.rb:115
3533
3563
  msgid "You specified '%{name}' (%{version})"
3534
3564
  msgstr ""
3535
3565
 
3536
3566
  #. TRANSLATORS This message repeats as separate lines as a list under the heading "You specified '%{name}' (%{version})\n"
3537
- #: ../lib/puppet/module_tool/errors/shared.rb:103
3567
+ #: ../lib/puppet/module_tool/errors/shared.rb:118
3538
3568
  msgid "This depends on '%{name}' (%{version})"
3539
3569
  msgstr ""
3540
3570
 
3541
- #: ../lib/puppet/module_tool/errors/shared.rb:107
3571
+ #: ../lib/puppet/module_tool/errors/shared.rb:122
3542
3572
  msgid " No version of '%{module_name}' will satisfy dependencies"
3543
3573
  msgstr ""
3544
3574
 
3545
- #: ../lib/puppet/module_tool/errors/shared.rb:120
3575
+ #: ../lib/puppet/module_tool/errors/shared.rb:135
3546
3576
  msgid "Could not %{action} '%{module_name}'; module is not installed"
3547
3577
  msgstr ""
3548
3578
 
3549
- #: ../lib/puppet/module_tool/errors/shared.rb:125 ../lib/puppet/module_tool/errors/shared.rb:148 ../lib/puppet/module_tool/errors/shared.rb:189
3579
+ #: ../lib/puppet/module_tool/errors/shared.rb:140 ../lib/puppet/module_tool/errors/shared.rb:163 ../lib/puppet/module_tool/errors/shared.rb:204
3550
3580
  msgid "Could not %{action} module '%{module_name}'"
3551
3581
  msgstr ""
3552
3582
 
3553
- #: ../lib/puppet/module_tool/errors/shared.rb:126
3583
+ #: ../lib/puppet/module_tool/errors/shared.rb:141
3554
3584
  msgid " Module '%{module_name}' is not installed"
3555
3585
  msgstr ""
3556
3586
 
3557
3587
  #. TRANSLATORS `puppet module %{action} %{suggestion}` is a command line and should not be translated
3558
- #: ../lib/puppet/module_tool/errors/shared.rb:129
3588
+ #: ../lib/puppet/module_tool/errors/shared.rb:144
3559
3589
  msgid " You may have meant `puppet module %{action} %{suggestion}`"
3560
3590
  msgstr ""
3561
3591
 
3562
3592
  #. TRANSLATORS `puppet module install` is a command line and should not be translated
3563
- #: ../lib/puppet/module_tool/errors/shared.rb:132
3593
+ #: ../lib/puppet/module_tool/errors/shared.rb:147
3564
3594
  msgid " Use `puppet module install` to install this module"
3565
3595
  msgstr ""
3566
3596
 
3567
3597
  #. TRANSLATORS "module path" refers to a set of directories where modules may be installed
3568
- #: ../lib/puppet/module_tool/errors/shared.rb:143
3598
+ #: ../lib/puppet/module_tool/errors/shared.rb:158
3569
3599
  msgid "Could not %{action} '%{module_name}'; module appears in multiple places in the module path"
3570
3600
  msgstr ""
3571
3601
 
3572
- #: ../lib/puppet/module_tool/errors/shared.rb:149
3602
+ #: ../lib/puppet/module_tool/errors/shared.rb:164
3573
3603
  msgid " Module '%{module_name}' appears multiple places in the module path"
3574
3604
  msgstr ""
3575
3605
 
3576
3606
  #. TRANSLATORS This is repeats as separate lines as a list under "Module '%{module_name}' appears multiple places in the module path"
3577
- #: ../lib/puppet/module_tool/errors/shared.rb:152
3607
+ #: ../lib/puppet/module_tool/errors/shared.rb:167
3578
3608
  msgid " '%{module_name}' (%{version}) was found in %{path}"
3579
3609
  msgstr ""
3580
3610
 
3581
3611
  #. TRANSLATORS `--modulepath` is command line option and should not be translated
3582
- #: ../lib/puppet/module_tool/errors/shared.rb:155
3612
+ #: ../lib/puppet/module_tool/errors/shared.rb:170
3583
3613
  msgid " Use the `--modulepath` option to limit the search to specific directories"
3584
3614
  msgstr ""
3585
3615
 
3586
- #: ../lib/puppet/module_tool/errors/shared.rb:166
3616
+ #: ../lib/puppet/module_tool/errors/shared.rb:181
3587
3617
  msgid "Could not %{action} '%{module_name}'; module has had changes made locally"
3588
3618
  msgstr ""
3589
3619
 
3590
- #: ../lib/puppet/module_tool/errors/shared.rb:172
3620
+ #: ../lib/puppet/module_tool/errors/shared.rb:187
3591
3621
  msgid " Installed module has had changes made locally"
3592
3622
  msgstr ""
3593
3623
 
3594
3624
  #. TRANSLATORS `puppet module %{action} --ignore-changes` is a command line and should not be translated
3595
- #: ../lib/puppet/module_tool/errors/shared.rb:174
3625
+ #: ../lib/puppet/module_tool/errors/shared.rb:189
3596
3626
  msgid " Use `puppet module %{action} --ignore-changes` to %{action} this module anyway"
3597
3627
  msgstr ""
3598
3628
 
3599
- #: ../lib/puppet/module_tool/errors/shared.rb:184
3629
+ #: ../lib/puppet/module_tool/errors/shared.rb:199
3600
3630
  msgid "Could not %{action} '%{module_name}'; %{error}"
3601
3631
  msgstr ""
3602
3632
 
3603
- #: ../lib/puppet/module_tool/errors/shared.rb:190
3633
+ #: ../lib/puppet/module_tool/errors/shared.rb:205
3604
3634
  msgid " Failure trying to parse metadata"
3605
3635
  msgstr ""
3606
3636
 
3607
- #: ../lib/puppet/module_tool/errors/shared.rb:191
3637
+ #: ../lib/puppet/module_tool/errors/shared.rb:206
3608
3638
  msgid " Original message was: %{message}"
3609
3639
  msgstr ""
3610
3640
 
@@ -3951,19 +3981,19 @@ msgstr ""
3951
3981
  msgid "Not a valid indirection type"
3952
3982
  msgstr ""
3953
3983
 
3954
- #: ../lib/puppet/network/http/api/master/v3/environment.rb:11
3984
+ #: ../lib/puppet/network/http/api/master/v3/environment.rb:14
3955
3985
  msgid "%{env_name} is not a known environment"
3956
3986
  msgstr ""
3957
3987
 
3958
- #: ../lib/puppet/network/http/api/master/v3/environment.rb:40
3988
+ #: ../lib/puppet/network/http/api/master/v3/environment.rb:43
3959
3989
  msgid "Application %{application} assigns nodes to non-existent components: %{component_list}"
3960
3990
  msgstr ""
3961
3991
 
3962
- #: ../lib/puppet/network/http/api/master/v3/environment.rb:46
3992
+ #: ../lib/puppet/network/http/api/master/v3/environment.rb:49
3963
3993
  msgid "Application %{application} has components without assigned nodes: %{component_list}"
3964
3994
  msgstr ""
3965
3995
 
3966
- #: ../lib/puppet/network/http/api/master/v3/environment.rb:55
3996
+ #: ../lib/puppet/network/http/api/master/v3/environment.rb:58
3967
3997
  msgid "Application %{app} assigns multiple nodes to component %{comp}"
3968
3998
  msgstr ""
3969
3999
 
@@ -4003,7 +4033,7 @@ msgstr ""
4003
4033
  msgid "Expected an instance of Puppet::SSL::Verifier but was passed a %{klass}"
4004
4034
  msgstr ""
4005
4035
 
4006
- #: ../lib/puppet/network/http/connection.rb:229 ../lib/puppet/network/http/connection_adapter.rb:155
4036
+ #: ../lib/puppet/network/http/connection.rb:229 ../lib/puppet/network/http/connection_adapter.rb:174
4007
4037
  msgid "Too many HTTP redirections for %{host}:%{port}"
4008
4038
  msgstr ""
4009
4039
 
@@ -4163,7 +4193,7 @@ msgstr ""
4163
4193
  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."
4164
4194
  msgstr ""
4165
4195
 
4166
- #: ../lib/puppet/node/environment.rb:561 ../lib/puppet/pops/loaders.rb:300
4196
+ #: ../lib/puppet/node/environment.rb:568 ../lib/puppet/pops/loaders.rb:301
4167
4197
  msgid "Could not parse for environment %{env}: %{detail}"
4168
4198
  msgstr ""
4169
4199
 
@@ -4195,54 +4225,54 @@ msgstr ""
4195
4225
 
4196
4226
  #. TRANSLATORS: do not translate the variable names in this error message
4197
4227
  #. TRANSLATORS: do not translate the variable names in this error message
4198
- #: ../lib/puppet/pal/pal_impl.rb:73 ../lib/puppet/pal/pal_impl.rb:171
4228
+ #: ../lib/puppet/pal/pal_impl.rb:75 ../lib/puppet/pal/pal_impl.rb:181
4199
4229
  msgid "manifest_file or code_string cannot be given when configured_by_env is true"
4200
4230
  msgstr ""
4201
4231
 
4202
- #: ../lib/puppet/pal/pal_impl.rb:219
4232
+ #: ../lib/puppet/pal/pal_impl.rb:237
4203
4233
  msgid "temporary environment name"
4204
4234
  msgstr ""
4205
4235
 
4206
4236
  #. TRANSLATORS: do not translate variable name string in these assertions
4207
- #: ../lib/puppet/pal/pal_impl.rb:224
4237
+ #: ../lib/puppet/pal/pal_impl.rb:242
4208
4238
  msgid "A block must be given to 'in_tmp_environment'"
4209
4239
  msgstr ""
4210
4240
 
4211
4241
  #. TRANSLATORS terms in the assertions below are names of terms in code
4212
- #: ../lib/puppet/pal/pal_impl.rb:278
4242
+ #: ../lib/puppet/pal/pal_impl.rb:296
4213
4243
  msgid "A block must be given to 'in_environment'"
4214
4244
  msgstr ""
4215
4245
 
4216
4246
  #. TRANSLATORS 'in_environment' is a name, do not translate
4217
- #: ../lib/puppet/pal/pal_impl.rb:283
4247
+ #: ../lib/puppet/pal/pal_impl.rb:301
4218
4248
  msgid "The environment directory '%{env_dir}' does not exist"
4219
4249
  msgstr ""
4220
4250
 
4221
- #: ../lib/puppet/pal/pal_impl.rb:306
4251
+ #: ../lib/puppet/pal/pal_impl.rb:324
4222
4252
  msgid "No directory found for the environment '%{env_name}' on the path '%{envpath}'"
4223
4253
  msgstr ""
4224
4254
 
4225
- #: ../lib/puppet/pal/pal_impl.rb:360
4255
+ #: ../lib/puppet/pal/pal_impl.rb:378
4226
4256
  msgid "Given variables must be a hash, got %{type}"
4227
4257
  msgstr ""
4228
4258
 
4229
- #: ../lib/puppet/pal/pal_impl.rb:366
4259
+ #: ../lib/puppet/pal/pal_impl.rb:384
4230
4260
  msgid "Given variable '%{varname}' has illegal name"
4231
4261
  msgstr ""
4232
4262
 
4233
- #: ../lib/puppet/pal/pal_impl.rb:370
4263
+ #: ../lib/puppet/pal/pal_impl.rb:388
4234
4264
  msgid "Given value for '%{varname}' has illegal type - got: %{type}"
4235
4265
  msgstr ""
4236
4266
 
4237
- #: ../lib/puppet/pal/pal_impl.rb:485
4267
+ #: ../lib/puppet/pal/pal_impl.rb:562
4238
4268
  msgid "Puppet Pal: %{what}"
4239
4269
  msgstr ""
4240
4270
 
4241
- #: ../lib/puppet/pal/pal_impl.rb:499
4271
+ #: ../lib/puppet/pal/pal_impl.rb:576
4242
4272
  msgid "Cannot use '%{a_term}' and '%{b_term}' at the same time"
4243
4273
  msgstr ""
4244
4274
 
4245
- #: ../lib/puppet/pal/pal_impl.rb:506
4275
+ #: ../lib/puppet/pal/pal_impl.rb:583
4246
4276
  msgid "A block must be given"
4247
4277
  msgstr ""
4248
4278
 
@@ -4307,7 +4337,7 @@ msgstr ""
4307
4337
  msgid "Node inheritance is removed in Puppet 4.0.0. See http://links.puppet.com/puppet-node-inheritance-deprecation"
4308
4338
  msgstr ""
4309
4339
 
4310
- #: ../lib/puppet/parser/ast/pops_bridge.rb:190
4340
+ #: ../lib/puppet/parser/ast/pops_bridge.rb:186
4311
4341
  msgid "Instantiating Resource with type checked parameters - scope is missing, skipping type checking."
4312
4342
  msgstr ""
4313
4343
 
@@ -4332,7 +4362,7 @@ msgid "For more information, see https://puppet.com/docs/puppet/latest/environme
4332
4362
  msgstr ""
4333
4363
 
4334
4364
  #. TRANSLATORS "stage" is a keyword in Puppet and should not be translated
4335
- #: ../lib/puppet/parser/compiler.rb:98 ../lib/puppet/parser/environment_compiler.rb:134
4365
+ #: ../lib/puppet/parser/compiler.rb:98 ../lib/puppet/parser/environment_compiler.rb:137
4336
4366
  msgid "Only classes can set 'stage'; normal resources like %{resource} cannot change run stage"
4337
4367
  msgstr ""
4338
4368
 
@@ -4467,11 +4497,11 @@ msgstr ""
4467
4497
  msgid "For initializing compiler"
4468
4498
  msgstr ""
4469
4499
 
4470
- #: ../lib/puppet/parser/compiler/catalog_validator/env_relationship_validator.rb:17
4500
+ #: ../lib/puppet/parser/compiler/catalog_validator/env_relationship_validator.rb:19
4471
4501
  msgid "Capability '%{cap}' referenced by '%{param}' is never exported"
4472
4502
  msgstr ""
4473
4503
 
4474
- #: ../lib/puppet/parser/compiler/catalog_validator/env_relationship_validator.rb:56
4504
+ #: ../lib/puppet/parser/compiler/catalog_validator/env_relationship_validator.rb:58
4475
4505
  msgid "'%{value}' is exported by both '%{hash}' and '%{resource}'"
4476
4506
  msgstr ""
4477
4507
 
@@ -4483,55 +4513,55 @@ msgstr ""
4483
4513
  msgid "Could not find resource '%{res}' in parameter '%{param}'"
4484
4514
  msgstr ""
4485
4515
 
4486
- #: ../lib/puppet/parser/compiler/catalog_validator/site_validator.rb:14
4516
+ #: ../lib/puppet/parser/compiler/catalog_validator/site_validator.rb:16
4487
4517
  msgid "Only application components can appear inside a site - %{res} is not allowed"
4488
4518
  msgstr ""
4489
4519
 
4490
- #: ../lib/puppet/parser/environment_compiler.rb:12
4520
+ #: ../lib/puppet/parser/environment_compiler.rb:13
4491
4521
  msgid "%{detail} in environment %{env}"
4492
4522
  msgstr ""
4493
4523
 
4494
- #: ../lib/puppet/parser/environment_compiler.rb:59
4524
+ #: ../lib/puppet/parser/environment_compiler.rb:62
4495
4525
  msgid "For compiling environment catalog %{env}"
4496
4526
  msgstr ""
4497
4527
 
4498
- #: ../lib/puppet/parser/environment_compiler.rb:62
4528
+ #: ../lib/puppet/parser/environment_compiler.rb:65
4499
4529
  msgid "Env Compile: Created settings scope"
4500
4530
  msgstr ""
4501
4531
 
4502
- #: ../lib/puppet/parser/environment_compiler.rb:64
4532
+ #: ../lib/puppet/parser/environment_compiler.rb:67
4503
4533
  msgid "Env Compile: Evaluated main"
4504
4534
  msgstr ""
4505
4535
 
4506
- #: ../lib/puppet/parser/environment_compiler.rb:66
4536
+ #: ../lib/puppet/parser/environment_compiler.rb:69
4507
4537
  msgid "Env Compile: Evaluated site"
4508
4538
  msgstr ""
4509
4539
 
4510
- #: ../lib/puppet/parser/environment_compiler.rb:68
4540
+ #: ../lib/puppet/parser/environment_compiler.rb:71
4511
4541
  msgid "Env Compile: Evaluated application instances"
4512
4542
  msgstr ""
4513
4543
 
4514
- #: ../lib/puppet/parser/environment_compiler.rb:70
4544
+ #: ../lib/puppet/parser/environment_compiler.rb:73
4515
4545
  msgid "Env Compile: Prune"
4516
4546
  msgstr ""
4517
4547
 
4518
- #: ../lib/puppet/parser/environment_compiler.rb:72
4548
+ #: ../lib/puppet/parser/environment_compiler.rb:75
4519
4549
  msgid "Env Compile: Validate Catalog pre-finish"
4520
4550
  msgstr ""
4521
4551
 
4522
- #: ../lib/puppet/parser/environment_compiler.rb:76
4552
+ #: ../lib/puppet/parser/environment_compiler.rb:79
4523
4553
  msgid "Env Compile: Finished catalog"
4524
4554
  msgstr ""
4525
4555
 
4526
- #: ../lib/puppet/parser/environment_compiler.rb:80
4556
+ #: ../lib/puppet/parser/environment_compiler.rb:83
4527
4557
  msgid "Env Compile: Validate Catalog final"
4528
4558
  msgstr ""
4529
4559
 
4530
- #: ../lib/puppet/parser/environment_compiler.rb:156
4560
+ #: ../lib/puppet/parser/environment_compiler.rb:159
4531
4561
  msgid "Environment Compiler: Could not find a site definition to evaluate"
4532
4562
  msgstr ""
4533
4563
 
4534
- #: ../lib/puppet/parser/environment_compiler.rb:162
4564
+ #: ../lib/puppet/parser/environment_compiler.rb:165
4535
4565
  msgid "Evaluated application %{resource}"
4536
4566
  msgstr ""
4537
4567
 
@@ -4547,31 +4577,31 @@ msgstr ""
4547
4577
  msgid "The method 'Puppet::Parser::Functions.autoloader#loaded?(\"%{name}\")' is deprecated in favor of using 'Scope#call_function'."
4548
4578
  msgstr ""
4549
4579
 
4550
- #: ../lib/puppet/parser/functions.rb:186
4580
+ #: ../lib/puppet/parser/functions.rb:190
4551
4581
  msgid "Overwriting previous definition for function %{name}"
4552
4582
  msgstr ""
4553
4583
 
4554
- #: ../lib/puppet/parser/functions.rb:192
4584
+ #: ../lib/puppet/parser/functions.rb:196
4555
4585
  msgid "Invalid statement type %{type}"
4556
4586
  msgstr ""
4557
4587
 
4558
- #: ../lib/puppet/parser/functions.rb:204
4588
+ #: ../lib/puppet/parser/functions.rb:208
4559
4589
  msgid "Called %{name}"
4560
4590
  msgstr ""
4561
4591
 
4562
- #: ../lib/puppet/parser/functions.rb:207
4592
+ #: ../lib/puppet/parser/functions.rb:211
4563
4593
  msgid "%{name}(): Wrong number of arguments given (%{arg_count} for %{arity})"
4564
4594
  msgstr ""
4565
4595
 
4566
- #: ../lib/puppet/parser/functions.rb:209
4596
+ #: ../lib/puppet/parser/functions.rb:213
4567
4597
  msgid "%{name}(): Wrong number of arguments given (%{arg_count} for minimum %{min_arg_count})"
4568
4598
  msgstr ""
4569
4599
 
4570
- #: ../lib/puppet/parser/functions.rb:215
4600
+ #: ../lib/puppet/parser/functions.rb:219
4571
4601
  msgid "custom functions must be called with a single array that contains the arguments. For example, function_example([1]) instead of function_example(1)"
4572
4602
  msgstr ""
4573
4603
 
4574
- #: ../lib/puppet/parser/functions.rb:314
4604
+ #: ../lib/puppet/parser/functions.rb:318
4575
4605
  msgid "%{name}() can only be called using the 4.x function API. See Scope#call_function"
4576
4606
  msgstr ""
4577
4607
 
@@ -4579,15 +4609,15 @@ msgstr ""
4579
4609
  msgid "Calling function_contain via the Scope class is deprecated. Use Scope#call_function instead"
4580
4610
  msgstr ""
4581
4611
 
4582
- #: ../lib/puppet/parser/functions/create_resources.rb:56
4612
+ #: ../lib/puppet/parser/functions/create_resources.rb:60
4583
4613
  msgid "create_resources(): wrong number of arguments (%{count}; must be 2 or 3)"
4584
4614
  msgstr ""
4585
4615
 
4586
- #: ../lib/puppet/parser/functions/create_resources.rb:57
4616
+ #: ../lib/puppet/parser/functions/create_resources.rb:61
4587
4617
  msgid "create_resources(): second argument must be a hash"
4588
4618
  msgstr ""
4589
4619
 
4590
- #: ../lib/puppet/parser/functions/create_resources.rb:59
4620
+ #: ../lib/puppet/parser/functions/create_resources.rb:63
4591
4621
  msgid "create_resources(): third argument, if provided, must be a hash"
4592
4622
  msgstr ""
4593
4623
 
@@ -4701,23 +4731,23 @@ msgstr ""
4701
4731
  msgid "Attempt to reassign attribute '%{name}' in '%{resource}' caused by multiple consumed mappings to the same attribute"
4702
4732
  msgstr ""
4703
4733
 
4704
- #: ../lib/puppet/parser/resource.rb:364
4734
+ #: ../lib/puppet/parser/resource.rb:365
4705
4735
  msgid "Parameter '%{name}' is already set on %{resource}; cannot redefine"
4706
4736
  msgstr ""
4707
4737
 
4708
- #: ../lib/puppet/parser/resource.rb:367
4738
+ #: ../lib/puppet/parser/resource.rb:368
4709
4739
  msgid "Parameter '%{name}' is already set on %{resource} at %{error_location}; cannot redefine"
4710
4740
  msgstr ""
4711
4741
 
4712
- #: ../lib/puppet/parser/resource.rb:372
4742
+ #: ../lib/puppet/parser/resource.rb:373
4713
4743
  msgid "Parameter '%{name}' is already set on %{resource} by %{source}; cannot redefine"
4714
4744
  msgstr ""
4715
4745
 
4716
- #: ../lib/puppet/parser/resource.rb:375
4746
+ #: ../lib/puppet/parser/resource.rb:376
4717
4747
  msgid "Parameter '%{name}' is already set on %{resource} by %{source} at %{error_location}; cannot redefine"
4718
4748
  msgstr ""
4719
4749
 
4720
- #: ../lib/puppet/parser/resource.rb:414
4750
+ #: ../lib/puppet/parser/resource.rb:415
4721
4751
  msgid "Duplicate parameter '%{param}' for on %{resource}"
4722
4752
  msgstr ""
4723
4753
 
@@ -4955,23 +4985,23 @@ msgstr ""
4955
4985
  msgid "multi var assignment from class"
4956
4986
  msgstr ""
4957
4987
 
4958
- #: ../lib/puppet/pops/evaluator/evaluator_impl.rb:742
4988
+ #: ../lib/puppet/pops/evaluator/evaluator_impl.rb:761
4959
4989
  msgid "break() from context where this is illegal"
4960
4990
  msgstr ""
4961
4991
 
4962
- #: ../lib/puppet/pops/evaluator/evaluator_impl.rb:1222
4992
+ #: ../lib/puppet/pops/evaluator/evaluator_impl.rb:1241
4963
4993
  msgid "Can only append Array or Hash to a Hash"
4964
4994
  msgstr ""
4965
4995
 
4966
- #: ../lib/puppet/pops/evaluator/evaluator_impl.rb:1226
4996
+ #: ../lib/puppet/pops/evaluator/evaluator_impl.rb:1245
4967
4997
  msgid "An URI can only be merged with an URI or String"
4968
4998
  msgstr ""
4969
4999
 
4970
- #: ../lib/puppet/pops/evaluator/evaluator_impl.rb:1229
5000
+ #: ../lib/puppet/pops/evaluator/evaluator_impl.rb:1248
4971
5001
  msgid "Can only append Binary to a Binary"
4972
5002
  msgstr ""
4973
5003
 
4974
- #: ../lib/puppet/pops/evaluator/evaluator_impl.rb:1262
5004
+ #: ../lib/puppet/pops/evaluator/evaluator_impl.rb:1281
4975
5005
  msgid "Can only delete from an Array or Hash."
4976
5006
  msgstr ""
4977
5007
 
@@ -5743,6 +5773,10 @@ msgstr ""
5743
5773
  msgid "Failed to load: %{type_name}"
5744
5774
  msgstr ""
5745
5775
 
5776
+ #: ../lib/puppet/pops/issues.rb:925
5777
+ msgid "Use of the application-orchestration %{expr} is deprecated. See https://puppet.com/docs/puppet/5.5/deprecated_language.html"
5778
+ msgstr ""
5779
+
5746
5780
  #: ../lib/puppet/pops/label_provider.rb:76
5747
5781
  msgid "<%{string}> does not appear to contain a word"
5748
5782
  msgstr ""
@@ -5914,19 +5948,19 @@ msgstr ""
5914
5948
  msgid "Attempt to redefine already initialized loaders for environment"
5915
5949
  msgstr ""
5916
5950
 
5917
- #: ../lib/puppet/pops/loaders.rb:176
5951
+ #: ../lib/puppet/pops/loaders.rb:177
5918
5952
  msgid "Internal Error: Puppet Context ':loaders' missing"
5919
5953
  msgstr ""
5920
5954
 
5921
- #: ../lib/puppet/pops/loaders.rb:190
5955
+ #: ../lib/puppet/pops/loaders.rb:191
5922
5956
  msgid "Unable to find loader named '%{loader_name}'"
5923
5957
  msgstr ""
5924
5958
 
5925
- #: ../lib/puppet/pops/loaders.rb:211
5959
+ #: ../lib/puppet/pops/loaders.rb:212
5926
5960
  msgid "Internal Error: did not find public loader for module: '%{module_name}'"
5927
5961
  msgstr ""
5928
5962
 
5929
- #: ../lib/puppet/pops/loaders.rb:257
5963
+ #: ../lib/puppet/pops/loaders.rb:258
5930
5964
  msgid "Internal Error: Attempt to redefine loader named '%{name}'"
5931
5965
  msgstr ""
5932
5966
 
@@ -5945,23 +5979,23 @@ msgstr ""
5945
5979
  msgid "Unknown Explain type %{qualifier_type}"
5946
5980
  msgstr ""
5947
5981
 
5948
- #: ../lib/puppet/pops/lookup/hiera_config.rb:85
5982
+ #: ../lib/puppet/pops/lookup/hiera_config.rb:86
5949
5983
  msgid "Using of legacy data provider function '%{function_name}'. Please convert to a 'data_hash' function"
5950
5984
  msgstr ""
5951
5985
 
5952
- #: ../lib/puppet/pops/lookup/hiera_config.rb:142
5986
+ #: ../lib/puppet/pops/lookup/hiera_config.rb:143
5953
5987
  msgid "%{config_path}: File exists but does not contain a valid YAML hash. Falling back to Hiera version 3 default config"
5954
5988
  msgstr ""
5955
5989
 
5956
- #: ../lib/puppet/pops/lookup/hiera_config.rb:200
5990
+ #: ../lib/puppet/pops/lookup/hiera_config.rb:201
5957
5991
  msgid "Hiera configuration recreated due to change of scope variables used in interpolation expressions"
5958
5992
  msgstr ""
5959
5993
 
5960
- #: ../lib/puppet/pops/lookup/hiera_config.rb:428
5994
+ #: ../lib/puppet/pops/lookup/hiera_config.rb:429
5961
5995
  msgid "%{config_path}: Use of 'hiera.yaml' version 3 is deprecated. It should be converted to version 5"
5962
5996
  msgstr ""
5963
5997
 
5964
- #: ../lib/puppet/pops/lookup/hiera_config.rb:528
5998
+ #: ../lib/puppet/pops/lookup/hiera_config.rb:529
5965
5999
  msgid "%{config_path}: Use of 'hiera.yaml' version 4 is deprecated. It should be converted to version 5"
5966
6000
  msgstr ""
5967
6001
 
@@ -6133,7 +6167,7 @@ msgstr ""
6133
6167
  msgid "digit expected"
6134
6168
  msgstr ""
6135
6169
 
6136
- #: ../lib/puppet/pops/resource/resource_type_impl.rb:167 ../lib/puppet/type.rb:440
6170
+ #: ../lib/puppet/pops/resource/resource_type_impl.rb:167 ../lib/puppet/type.rb:444
6137
6171
  msgid "you must specify title patterns when there are two or more key attributes"
6138
6172
  msgstr ""
6139
6173
 
@@ -6774,7 +6808,7 @@ msgstr ""
6774
6808
  msgid "Could not list installed Packages: %{detail}"
6775
6809
  msgstr ""
6776
6810
 
6777
- #: ../lib/puppet/provider/package/aix.rb:156 ../lib/puppet/provider/package/yum.rb:332
6811
+ #: ../lib/puppet/provider/package/aix.rb:156 ../lib/puppet/provider/package/yum.rb:333
6778
6812
  msgid "Tried to get latest on a missing package"
6779
6813
  msgstr ""
6780
6814
 
@@ -6790,19 +6824,19 @@ msgstr ""
6790
6824
  msgid "Mac OS X packages must specify a package source"
6791
6825
  msgstr ""
6792
6826
 
6793
- #: ../lib/puppet/provider/package/apt.rb:47
6827
+ #: ../lib/puppet/provider/package/apt.rb:85
6794
6828
  msgid "/etc/apt/sources.list contains a cdrom source; not installing. Use 'allowcdrom' to override this failure."
6795
6829
  msgstr ""
6796
6830
 
6797
- #: ../lib/puppet/provider/package/apt.rb:129 ../lib/puppet/provider/package/fink.rb:55
6831
+ #: ../lib/puppet/provider/package/apt.rb:167 ../lib/puppet/provider/package/fink.rb:55
6798
6832
  msgid "Could not find latest version"
6799
6833
  msgstr ""
6800
6834
 
6801
- #: ../lib/puppet/provider/package/apt.rb:140 ../lib/puppet/provider/package/fink.rb:66
6835
+ #: ../lib/puppet/provider/package/apt.rb:178 ../lib/puppet/provider/package/fink.rb:66
6802
6836
  msgid "Preseeding %{response} to debconf-set-selections"
6803
6837
  msgstr ""
6804
6838
 
6805
- #: ../lib/puppet/provider/package/apt.rb:144 ../lib/puppet/provider/package/fink.rb:70
6839
+ #: ../lib/puppet/provider/package/apt.rb:182 ../lib/puppet/provider/package/fink.rb:70
6806
6840
  msgid "No responsefile specified or non existent, not preseeding anything"
6807
6841
  msgstr ""
6808
6842
 
@@ -6854,27 +6888,27 @@ msgstr ""
6854
6888
  msgid "source is defined but does not have trailing slash, ignoring %{source}"
6855
6889
  msgstr ""
6856
6890
 
6857
- #: ../lib/puppet/provider/package/gem.rb:100
6891
+ #: ../lib/puppet/provider/package/gem.rb:102 ../lib/puppet/provider/package/puppetserver_gem.rb:61
6858
6892
  msgid "Could not list gems: %{detail}"
6859
6893
  msgstr ""
6860
6894
 
6861
- #: ../lib/puppet/provider/package/gem.rb:126
6895
+ #: ../lib/puppet/provider/package/gem.rb:128
6862
6896
  msgid "Could not match %{desc}"
6863
6897
  msgstr ""
6864
6898
 
6865
- #: ../lib/puppet/provider/package/gem.rb:204
6899
+ #: ../lib/puppet/provider/package/gem.rb:206 ../lib/puppet/provider/package/puppetserver_gem.rb:93
6866
6900
  msgid "Invalid source '%{uri}': %{detail}"
6867
6901
  msgstr ""
6868
6902
 
6869
- #: ../lib/puppet/provider/package/gem.rb:215
6903
+ #: ../lib/puppet/provider/package/gem.rb:217 ../lib/puppet/provider/package/puppetserver_gem.rb:104
6870
6904
  msgid "puppet:// URLs are not supported as gem sources"
6871
6905
  msgstr ""
6872
6906
 
6873
- #: ../lib/puppet/provider/package/gem.rb:231
6907
+ #: ../lib/puppet/provider/package/gem.rb:233 ../lib/puppet/provider/package/puppetserver_gem.rb:115
6874
6908
  msgid "Could not install: %{output}"
6875
6909
  msgstr ""
6876
6910
 
6877
- #: ../lib/puppet/provider/package/gem.rb:257
6911
+ #: ../lib/puppet/provider/package/gem.rb:259 ../lib/puppet/provider/package/puppetserver_gem.rb:125
6878
6912
  msgid "Could not uninstall: %{output}"
6879
6913
  msgstr ""
6880
6914
 
@@ -7219,35 +7253,35 @@ msgstr ""
7219
7253
  msgid "The %{service} service is incomplete so its status will be reported as :stopped. See `svcs -xv %{fmri}` for more details."
7220
7254
  msgstr ""
7221
7255
 
7222
- #: ../lib/puppet/provider/service/windows.rb:23
7256
+ #: ../lib/puppet/provider/service/windows.rb:22
7223
7257
  msgid "Cannot enable %{resource_name}, error was: %{detail}"
7224
7258
  msgstr ""
7225
7259
 
7226
- #: ../lib/puppet/provider/service/windows.rb:29
7260
+ #: ../lib/puppet/provider/service/windows.rb:28
7227
7261
  msgid "Cannot disable %{resource_name}, error was: %{detail}"
7228
7262
  msgstr ""
7229
7263
 
7230
- #: ../lib/puppet/provider/service/windows.rb:35
7264
+ #: ../lib/puppet/provider/service/windows.rb:34
7231
7265
  msgid "Cannot enable %{resource_name} for manual start, error was: %{detail}"
7232
7266
  msgstr ""
7233
7267
 
7234
- #: ../lib/puppet/provider/service/windows.rb:41
7268
+ #: ../lib/puppet/provider/service/windows.rb:40
7235
7269
  msgid "Cannot enable %{resource_name} for delayed start, error was: %{detail}"
7236
7270
  msgstr ""
7237
7271
 
7238
- #: ../lib/puppet/provider/service/windows.rb:61
7272
+ #: ../lib/puppet/provider/service/windows.rb:60
7239
7273
  msgid "Unknown start type: %{start_type}"
7240
7274
  msgstr ""
7241
7275
 
7242
- #: ../lib/puppet/provider/service/windows.rb:64
7276
+ #: ../lib/puppet/provider/service/windows.rb:63
7243
7277
  msgid "Cannot get start type %{resource_name}, error was: %{detail}"
7244
7278
  msgstr ""
7245
7279
 
7246
- #: ../lib/puppet/provider/service/windows.rb:78
7280
+ #: ../lib/puppet/provider/service/windows.rb:77
7247
7281
  msgid "Will not start disabled service %{resource_name} without managing enable. Specify 'enable => false' to override."
7248
7282
  msgstr ""
7249
7283
 
7250
- #: ../lib/puppet/provider/service/windows.rb:110
7284
+ #: ../lib/puppet/provider/service/windows.rb:109
7251
7285
  msgid "Unknown service state '%{current_state}' for service '%{resource_name}'"
7252
7286
  msgstr ""
7253
7287
 
@@ -7269,15 +7303,15 @@ msgstr ""
7269
7303
  msgid "ruby-shadow doesn't support %{method}"
7270
7304
  msgstr ""
7271
7305
 
7272
- #: ../lib/puppet/provider/user/windows_adsi.rb:128
7306
+ #: ../lib/puppet/provider/user/windows_adsi.rb:145
7273
7307
  msgid "The user account '%s' is disabled; The password will still be changed"
7274
7308
  msgstr ""
7275
7309
 
7276
- #: ../lib/puppet/provider/user/windows_adsi.rb:130
7310
+ #: ../lib/puppet/provider/user/windows_adsi.rb:147
7277
7311
  msgid "The user account '%s' is locked out; The password will still be changed"
7278
7312
  msgstr ""
7279
7313
 
7280
- #: ../lib/puppet/provider/user/windows_adsi.rb:132
7314
+ #: ../lib/puppet/provider/user/windows_adsi.rb:149
7281
7315
  msgid "The user account '%s' is expired; The password will still be changed"
7282
7316
  msgstr ""
7283
7317
 
@@ -7332,7 +7366,7 @@ msgstr ""
7332
7366
  msgid "You must pass a callback for non-NONE events"
7333
7367
  msgstr ""
7334
7368
 
7335
- #: ../lib/puppet/reports/http.rb:38
7369
+ #: ../lib/puppet/reports/http.rb:40
7336
7370
  msgid "Unable to submit report to %{url} [%{code}] %{message}"
7337
7371
  msgstr ""
7338
7372
 
@@ -7389,11 +7423,11 @@ msgstr ""
7389
7423
  msgid "no parameter named '%{name}'"
7390
7424
  msgstr ""
7391
7425
 
7392
- #: ../lib/puppet/resource.rb:634
7426
+ #: ../lib/puppet/resource.rb:635
7393
7427
  msgid "No title provided and %{type} is not a valid resource reference"
7394
7428
  msgstr ""
7395
7429
 
7396
- #: ../lib/puppet/resource.rb:708
7430
+ #: ../lib/puppet/resource.rb:709
7397
7431
  msgid "No set of title patterns matched the title \"%{title}\"."
7398
7432
  msgstr ""
7399
7433
 
@@ -7483,67 +7517,67 @@ msgstr ""
7483
7517
  msgid "Could not evaluate: %{detail}"
7484
7518
  msgstr ""
7485
7519
 
7486
- #: ../lib/puppet/resource/type.rb:78
7520
+ #: ../lib/puppet/resource/type.rb:82
7487
7521
  msgid "Invalid export in %{reference}: %{ex} is not a resource"
7488
7522
  msgstr ""
7489
7523
 
7490
- #: ../lib/puppet/resource/type.rb:79
7524
+ #: ../lib/puppet/resource/type.rb:83
7491
7525
  msgid "Invalid export in %{reference}: %{ex} is not a capability resource"
7492
7526
  msgstr ""
7493
7527
 
7494
- #: ../lib/puppet/resource/type.rb:83
7528
+ #: ../lib/puppet/resource/type.rb:87
7495
7529
  msgid "Resource type %{res_type} does not produce %{ex_type}"
7496
7530
  msgstr ""
7497
7531
 
7498
- #: ../lib/puppet/resource/type.rb:144
7532
+ #: ../lib/puppet/resource/type.rb:148
7499
7533
  msgid "Invalid resource supertype '%{type}'"
7500
7534
  msgstr ""
7501
7535
 
7502
- #: ../lib/puppet/resource/type.rb:192
7536
+ #: ../lib/puppet/resource/type.rb:200
7503
7537
  msgid "%{name} is not a class; cannot add code to it"
7504
7538
  msgstr ""
7505
7539
 
7506
- #: ../lib/puppet/resource/type.rb:193
7540
+ #: ../lib/puppet/resource/type.rb:201
7507
7541
  msgid "%{name} is not a class; cannot add code from it"
7508
7542
  msgstr ""
7509
7543
 
7510
- #: ../lib/puppet/resource/type.rb:197
7544
+ #: ../lib/puppet/resource/type.rb:205
7511
7545
  msgid "Cannot have code outside of a class/node/define because 'freeze_main' is enabled"
7512
7546
  msgstr ""
7513
7547
 
7514
- #: ../lib/puppet/resource/type.rb:201
7548
+ #: ../lib/puppet/resource/type.rb:209
7515
7549
  msgid "Cannot merge classes with different parent classes (%{name} => %{parent} vs. %{other_name} => %{other_parent})"
7516
7550
  msgstr ""
7517
7551
 
7518
- #: ../lib/puppet/resource/type.rb:232
7552
+ #: ../lib/puppet/resource/type.rb:240
7519
7553
  msgid "Cannot create resources for defined resource types"
7520
7554
  msgstr ""
7521
7555
 
7522
- #: ../lib/puppet/resource/type.rb:286
7556
+ #: ../lib/puppet/resource/type.rb:295
7523
7557
  msgid "The method Puppet::Resource::Type.assign_parameter_values is deprecated and will be removed in the next major release of Puppet."
7524
7558
  msgstr ""
7525
7559
 
7526
- #: ../lib/puppet/resource/type.rb:302
7560
+ #: ../lib/puppet/resource/type.rb:311
7527
7561
  msgid "Could not find parent resource type '%{parent}' of type %{parent_type} in %{env}"
7528
7562
  msgstr ""
7529
7563
 
7530
- #: ../lib/puppet/resource/type.rb:429
7564
+ #: ../lib/puppet/resource/type.rb:438
7531
7565
  msgid "Parameter '%{name}' is given a type, but is not a valid parameter."
7532
7566
  msgstr ""
7533
7567
 
7534
- #: ../lib/puppet/resource/type.rb:432
7568
+ #: ../lib/puppet/resource/type.rb:441
7535
7569
  msgid "Parameter '%{name}' is given a type that is not a Puppet Type, got %{class_name}"
7536
7570
  msgstr ""
7537
7571
 
7538
- #: ../lib/puppet/resource/type.rb:474
7572
+ #: ../lib/puppet/resource/type.rb:483
7539
7573
  msgid "Could not find scope for %{class_name}"
7540
7574
  msgstr ""
7541
7575
 
7542
- #: ../lib/puppet/resource/type.rb:495
7576
+ #: ../lib/puppet/resource/type.rb:504
7543
7577
  msgid "%{param} is a metaparam; this value will inherit to all contained resources in the %{name} definition"
7544
7578
  msgstr ""
7545
7579
 
7546
- #: ../lib/puppet/resource/type.rb:497
7580
+ #: ../lib/puppet/resource/type.rb:506
7547
7581
  msgid "%{param} is a metaparameter; please choose another parameter name in the %{name} definition"
7548
7582
  msgstr ""
7549
7583
 
@@ -7615,69 +7649,69 @@ msgstr ""
7615
7649
  msgid "Downloaded existing certificate request for %{name} from %{server}"
7616
7650
  msgstr ""
7617
7651
 
7618
- #: ../lib/puppet/settings.rb:98
7652
+ #: ../lib/puppet/settings.rb:99
7619
7653
  msgid "New environment loaders generated from the requested section."
7620
7654
  msgstr ""
7621
7655
 
7622
- #: ../lib/puppet/settings.rb:300
7656
+ #: ../lib/puppet/settings.rb:301
7623
7657
  msgid "Attempting to initialize global default settings more than once!"
7624
7658
  msgstr ""
7625
7659
 
7626
- #: ../lib/puppet/settings.rb:500
7660
+ #: ../lib/puppet/settings.rb:501
7627
7661
  msgid "Using --configprint is deprecated. Use 'puppet config <subcommand>' instead."
7628
7662
  msgstr ""
7629
7663
 
7630
- #: ../lib/puppet/settings.rb:642
7664
+ #: ../lib/puppet/settings.rb:643
7631
7665
  msgid "Could not load %{file}: %{detail}"
7632
7666
  msgstr ""
7633
7667
 
7634
- #: ../lib/puppet/settings.rb:748
7668
+ #: ../lib/puppet/settings.rb:750
7635
7669
  msgid "Invalid setting type '%{type}'"
7636
7670
  msgstr ""
7637
7671
 
7638
- #: ../lib/puppet/settings.rb:894
7672
+ #: ../lib/puppet/settings.rb:905
7639
7673
  msgid "Unknown searchpath case: %{source_type} for the %{source} settings path element."
7640
7674
  msgstr ""
7641
7675
 
7642
- #: ../lib/puppet/settings.rb:957
7676
+ #: ../lib/puppet/settings.rb:978
7643
7677
  msgid "setting definition for '%{name}' is not a hash!"
7644
7678
  msgstr ""
7645
7679
 
7646
- #: ../lib/puppet/settings.rb:962
7680
+ #: ../lib/puppet/settings.rb:983
7647
7681
  msgid "Setting %{name} is already defined"
7648
7682
  msgstr ""
7649
7683
 
7650
- #: ../lib/puppet/settings.rb:968
7684
+ #: ../lib/puppet/settings.rb:989
7651
7685
  msgid "Setting %{name} is already using short name '%{short}'"
7652
7686
  msgstr ""
7653
7687
 
7654
- #: ../lib/puppet/settings.rb:1227
7688
+ #: ../lib/puppet/settings.rb:1253
7655
7689
  msgid "Setting %{name} is deprecated."
7656
7690
  msgstr ""
7657
7691
 
7658
7692
  #. TRANSLATORS 'puppet.conf' is a file name and should not be translated
7659
- #: ../lib/puppet/settings.rb:1232
7693
+ #: ../lib/puppet/settings.rb:1258
7660
7694
  msgid "Setting %{name} is deprecated in puppet.conf."
7661
7695
  msgstr ""
7662
7696
 
7663
- #: ../lib/puppet/settings.rb:1403
7697
+ #: ../lib/puppet/settings.rb:1435
7664
7698
  msgid "Error converting value for param '%{name}': %{detail}"
7665
7699
  msgstr ""
7666
7700
 
7667
- #: ../lib/puppet/settings.rb:1427
7701
+ #: ../lib/puppet/settings.rb:1459
7668
7702
  msgid "Could not find value for %{expression}"
7669
7703
  msgstr ""
7670
7704
 
7671
7705
  #. TRANSLATORS '$environment' is a Puppet specific variable and should not be translated
7672
- #: ../lib/puppet/settings.rb:1437
7706
+ #: ../lib/puppet/settings.rb:1469
7673
7707
  msgid "You cannot interpolate $environment within '%{setting_name}' when using directory environments."
7674
7708
  msgstr ""
7675
7709
 
7676
- #: ../lib/puppet/settings.rb:1438
7710
+ #: ../lib/puppet/settings.rb:1470
7677
7711
  msgid "Its value will remain %{value}."
7678
7712
  msgstr ""
7679
7713
 
7680
- #: ../lib/puppet/settings.rb:1469
7714
+ #: ../lib/puppet/settings.rb:1501
7681
7715
  msgid "Attempt to assign a value to unknown setting %{name}"
7682
7716
  msgstr ""
7683
7717
 
@@ -7690,38 +7724,38 @@ msgid "Invalid autosign value %{value}: must be 'true'/'false' or an absolute pa
7690
7724
  msgstr ""
7691
7725
 
7692
7726
  #. TRANSLATORS ':%{name}', ':call_hook', and ':on_write_only' should not be translated
7693
- #: ../lib/puppet/settings/base_setting.rb:15
7727
+ #: ../lib/puppet/settings/base_setting.rb:37
7694
7728
  msgid "Setting :%{name} :call_hook is nil, defaulting to :on_write_only"
7695
7729
  msgstr ""
7696
7730
 
7697
7731
  #. TRANSLATORS 'call_hook' is a Puppet option name and should not be translated
7698
- #: ../lib/puppet/settings/base_setting.rb:20
7732
+ #: ../lib/puppet/settings/base_setting.rb:42
7699
7733
  msgid "Invalid option %{value} for call_hook"
7700
7734
  msgstr ""
7701
7735
 
7702
7736
  #. TRANSLATORS ':call_hook' and ':hook' are specific setting names and should not be translated
7703
- #: ../lib/puppet/settings/base_setting.rb:77
7737
+ #: ../lib/puppet/settings/base_setting.rb:101
7704
7738
  msgid "Cannot reference :call_hook for :%{name} if no :hook is defined"
7705
7739
  msgstr ""
7706
7740
 
7707
- #: ../lib/puppet/settings/base_setting.rb:83
7741
+ #: ../lib/puppet/settings/base_setting.rb:107
7708
7742
  msgid "%{class_name} (setting '%{setting}') does not accept %{parameter}"
7709
7743
  msgstr ""
7710
7744
 
7711
- #: ../lib/puppet/settings/base_setting.rb:90
7745
+ #: ../lib/puppet/settings/base_setting.rb:114
7712
7746
  msgid "You must provide a description for the %{class_name} config option"
7713
7747
  msgstr ""
7714
7748
 
7715
- #: ../lib/puppet/settings/base_setting.rb:104
7749
+ #: ../lib/puppet/settings/base_setting.rb:128
7716
7750
  msgid "Short names can only be one character."
7717
7751
  msgstr ""
7718
7752
 
7719
7753
  #. TRANSLATORS 'deprecated' is a Puppet setting and ':completely' and ':allowed_on_commandline' are possible values and should not be translated
7720
- #: ../lib/puppet/settings/base_setting.rb:173
7754
+ #: ../lib/puppet/settings/base_setting.rb:197
7721
7755
  msgid "Unsupported deprecated value '%{deprecation}'."
7722
7756
  msgstr ""
7723
7757
 
7724
- #: ../lib/puppet/settings/base_setting.rb:174
7758
+ #: ../lib/puppet/settings/base_setting.rb:198
7725
7759
  msgid "Supported values for deprecated are ':completely' or ':allowed_on_commandline'"
7726
7760
  msgstr ""
7727
7761
 
@@ -8031,79 +8065,87 @@ msgstr ""
8031
8065
  msgid "Error registering ssl custom OIDs mapping from file '%{custom_oid_file}': %{err}"
8032
8066
  msgstr ""
8033
8067
 
8034
- #: ../lib/puppet/ssl/ssl_provider.rb:85
8068
+ #: ../lib/puppet/ssl/ssl_provider.rb:66
8069
+ msgid "Failed to add '%{path}' as a trusted CA file: %{detail}"
8070
+ msgstr ""
8071
+
8072
+ #: ../lib/puppet/ssl/ssl_provider.rb:70
8073
+ msgid "The 'ssl_trust_store' setting does not refer to a file and will be ignored: '%{path}'"
8074
+ msgstr ""
8075
+
8076
+ #: ../lib/puppet/ssl/ssl_provider.rb:104
8035
8077
  msgid "CA certs are missing"
8036
8078
  msgstr ""
8037
8079
 
8038
- #: ../lib/puppet/ssl/ssl_provider.rb:86
8080
+ #: ../lib/puppet/ssl/ssl_provider.rb:105
8039
8081
  msgid "CRLs are missing"
8040
8082
  msgstr ""
8041
8083
 
8042
- #: ../lib/puppet/ssl/ssl_provider.rb:87
8084
+ #: ../lib/puppet/ssl/ssl_provider.rb:106
8043
8085
  msgid "Private key is missing"
8044
8086
  msgstr ""
8045
8087
 
8046
- #: ../lib/puppet/ssl/ssl_provider.rb:88
8088
+ #: ../lib/puppet/ssl/ssl_provider.rb:107
8047
8089
  msgid "Client cert is missing"
8048
8090
  msgstr ""
8049
8091
 
8050
- #: ../lib/puppet/ssl/ssl_provider.rb:94
8092
+ #: ../lib/puppet/ssl/ssl_provider.rb:113
8051
8093
  msgid "Unsupported key '%{type}'"
8052
8094
  msgstr ""
8053
8095
 
8054
- #: ../lib/puppet/ssl/ssl_provider.rb:98
8096
+ #: ../lib/puppet/ssl/ssl_provider.rb:117
8055
8097
  msgid "The certificate for '%{name}' does not match its private key"
8056
8098
  msgstr ""
8057
8099
 
8058
- #: ../lib/puppet/ssl/ssl_provider.rb:137
8100
+ #: ../lib/puppet/ssl/ssl_provider.rb:156
8059
8101
  msgid "Failed to load private key for host '%{name}': %{message}"
8060
8102
  msgstr ""
8061
8103
 
8062
- #: ../lib/puppet/ssl/ssl_provider.rb:151
8104
+ #: ../lib/puppet/ssl/ssl_provider.rb:170
8063
8105
  msgid "The CSR for host '%{name}' does not match the public key"
8064
8106
  msgstr ""
8065
8107
 
8066
- #: ../lib/puppet/ssl/ssl_provider.rb:215
8108
+ #: ../lib/puppet/ssl/ssl_provider.rb:234
8067
8109
  msgid "The issuer '%{issuer}' of certificate '%{subject}' cannot be found locally"
8068
8110
  msgstr ""
8069
8111
 
8070
- #: ../lib/puppet/ssl/ssl_provider.rb:231
8112
+ #: ../lib/puppet/ssl/ssl_provider.rb:250
8071
8113
  msgid "The certificate '%{subject}' is not yet valid, verify time is synchronized"
8072
8114
  msgstr ""
8073
8115
 
8074
- #: ../lib/puppet/ssl/ssl_provider.rb:233
8116
+ #: ../lib/puppet/ssl/ssl_provider.rb:252
8075
8117
  msgid "The certificate '%{subject}' has expired, verify time is synchronized"
8076
8118
  msgstr ""
8077
8119
 
8078
- #: ../lib/puppet/ssl/ssl_provider.rb:235
8120
+ #: ../lib/puppet/ssl/ssl_provider.rb:254
8079
8121
  msgid "The CRL issued by '%{issuer}' is not yet valid, verify time is synchronized"
8080
8122
  msgstr ""
8081
8123
 
8082
- #: ../lib/puppet/ssl/ssl_provider.rb:237
8124
+ #: ../lib/puppet/ssl/ssl_provider.rb:256
8083
8125
  msgid "The CRL issued by '%{issuer}' has expired, verify time is synchronized"
8084
8126
  msgstr ""
8085
8127
 
8086
- #: ../lib/puppet/ssl/ssl_provider.rb:239
8128
+ #: ../lib/puppet/ssl/ssl_provider.rb:258
8087
8129
  msgid "Invalid signature for certificate '%{subject}'"
8088
8130
  msgstr ""
8089
8131
 
8090
- #: ../lib/puppet/ssl/ssl_provider.rb:241
8132
+ #: ../lib/puppet/ssl/ssl_provider.rb:260
8091
8133
  msgid "Invalid signature for CRL issued by '%{issuer}'"
8092
8134
  msgstr ""
8093
8135
 
8094
- #: ../lib/puppet/ssl/ssl_provider.rb:243
8136
+ #: ../lib/puppet/ssl/ssl_provider.rb:262
8095
8137
  msgid "The issuer '%{issuer}' of certificate '%{subject}' is missing"
8096
8138
  msgstr ""
8097
8139
 
8098
- #: ../lib/puppet/ssl/ssl_provider.rb:246
8140
+ #: ../lib/puppet/ssl/ssl_provider.rb:265
8099
8141
  msgid "The CRL issued by '%{issuer}' is missing"
8100
8142
  msgstr ""
8101
8143
 
8102
- #: ../lib/puppet/ssl/ssl_provider.rb:248
8144
+ #: ../lib/puppet/ssl/ssl_provider.rb:267
8103
8145
  msgid "Certificate '%{subject}' is revoked"
8104
8146
  msgstr ""
8105
8147
 
8106
- #: ../lib/puppet/ssl/ssl_provider.rb:252
8148
+ #: ../lib/puppet/ssl/ssl_provider.rb:271
8107
8149
  msgid "Certificate '%{subject}' failed verification (%{err}): %{err_utf8}"
8108
8150
  msgstr ""
8109
8151
 
@@ -8454,77 +8496,89 @@ msgstr ""
8454
8496
  msgid "audit change: newly-recorded value %s"
8455
8497
  msgstr ""
8456
8498
 
8457
- #: ../lib/puppet/type.rb:515
8499
+ #: ../lib/puppet/trusted_external.rb:6
8500
+ msgid "Retrieving trusted external data from %{command}"
8501
+ msgstr ""
8502
+
8503
+ #: ../lib/puppet/trusted_external.rb:20
8504
+ msgid "Skipping non-executable file %{file}"
8505
+ msgstr ""
8506
+
8507
+ #: ../lib/puppet/trusted_external.rb:25
8508
+ msgid "There is more than one '%{basename}' script in %{dir}"
8509
+ msgstr ""
8510
+
8511
+ #: ../lib/puppet/type.rb:519
8458
8512
  msgid "Options must be a hash, not %{type}"
8459
8513
  msgstr ""
8460
8514
 
8461
- #: ../lib/puppet/type.rb:518
8515
+ #: ../lib/puppet/type.rb:522
8462
8516
  msgid "Class %{class_name} already has a property named %{property}"
8463
8517
  msgstr ""
8464
8518
 
8465
- #: ../lib/puppet/type.rb:605
8519
+ #: ../lib/puppet/type.rb:609
8466
8520
  msgid "Class %{class_name} has not defined parameters"
8467
8521
  msgstr ""
8468
8522
 
8469
- #: ../lib/puppet/type.rb:692
8523
+ #: ../lib/puppet/type.rb:696
8470
8524
  msgid "Parameter %{name} failed on %{ref}: %{detail}"
8471
8525
  msgstr ""
8472
8526
 
8473
- #: ../lib/puppet/type.rb:715
8527
+ #: ../lib/puppet/type.rb:719
8474
8528
  msgid "Undefined attribute '%{attribute}' in %{name}"
8475
8529
  msgstr ""
8476
8530
 
8477
8531
  #. TRANSLATORS 'is' is a variable name and should not be translated
8478
8532
  #. TRANSLATORS 'is' is a variable name and should not be translated
8479
- #: ../lib/puppet/type.rb:1058 ../lib/puppet/type.rb:1069
8533
+ #: ../lib/puppet/type.rb:1062 ../lib/puppet/type.rb:1073
8480
8534
  msgid "The 'is' value is not in the 'is' array for '%{name}'"
8481
8535
  msgstr ""
8482
8536
 
8483
- #: ../lib/puppet/type.rb:1200
8537
+ #: ../lib/puppet/type.rb:1204
8484
8538
  msgid "%{name} has no providers and has not overridden 'instances'"
8485
8539
  msgstr ""
8486
8540
 
8487
- #: ../lib/puppet/type.rb:1462
8541
+ #: ../lib/puppet/type.rb:1468
8488
8542
  msgid "Cannot add aliases without a catalog"
8489
8543
  msgstr ""
8490
8544
 
8491
- #: ../lib/puppet/type.rb:1542
8545
+ #: ../lib/puppet/type.rb:1548
8492
8546
  msgid "Could not find %{description} %{ref} for %{resource}"
8493
8547
  msgstr ""
8494
8548
 
8495
- #: ../lib/puppet/type.rb:1817
8549
+ #: ../lib/puppet/type.rb:1825
8496
8550
  msgid "Found multiple default providers for %{name}: %{provider_list}; using %{selected_provider}"
8497
8551
  msgstr ""
8498
8552
 
8499
- #: ../lib/puppet/type.rb:1904
8553
+ #: ../lib/puppet/type.rb:1912
8500
8554
  msgid "Could not find parent provider %{parent} of %{name}"
8501
8555
  msgstr ""
8502
8556
 
8503
- #: ../lib/puppet/type.rb:1978
8557
+ #: ../lib/puppet/type.rb:1986
8504
8558
  msgid "Invalid %{resource} provider '%{provider_class}'"
8505
8559
  msgstr ""
8506
8560
 
8507
- #: ../lib/puppet/type.rb:2063
8561
+ #: ../lib/puppet/type.rb:2071
8508
8562
  msgid "Could not find %{name} provider of %{provider}"
8509
8563
  msgstr ""
8510
8564
 
8511
- #: ../lib/puppet/type.rb:2181
8565
+ #: ../lib/puppet/type.rb:2189
8512
8566
  msgid "You cannot add relationships without a catalog"
8513
8567
  msgstr ""
8514
8568
 
8515
- #: ../lib/puppet/type.rb:2484
8569
+ #: ../lib/puppet/type.rb:2492
8516
8570
  msgid "Unable to mark '%{name}' as sensitive: %{name} is a parameter and not a property, and cannot be automatically redacted."
8517
8571
  msgstr ""
8518
8572
 
8519
- #: ../lib/puppet/type.rb:2487
8573
+ #: ../lib/puppet/type.rb:2495
8520
8574
  msgid "Unable to mark '%{name}' as sensitive: the property itself was not assigned a value."
8521
8575
  msgstr ""
8522
8576
 
8523
- #: ../lib/puppet/type.rb:2489
8577
+ #: ../lib/puppet/type.rb:2497
8524
8578
  msgid "Unable to mark '%{name}' as sensitive: the property itself is not defined on %{type}."
8525
8579
  msgstr ""
8526
8580
 
8527
- #: ../lib/puppet/type.rb:2547
8581
+ #: ../lib/puppet/type.rb:2555
8528
8582
  msgid "Could not set %{attribute} on %{class_name}: %{detail}"
8529
8583
  msgstr ""
8530
8584
 
@@ -8613,75 +8667,75 @@ msgstr ""
8613
8667
  msgid "Invalid recurselimit value %{value}"
8614
8668
  msgstr ""
8615
8669
 
8616
- #: ../lib/puppet/type/file.rb:414
8670
+ #: ../lib/puppet/type/file.rb:418
8617
8671
  msgid "You cannot specify more than one of %{creators}"
8618
8672
  msgstr ""
8619
8673
 
8620
- #: ../lib/puppet/type/file.rb:416
8674
+ #: ../lib/puppet/type/file.rb:420
8621
8675
  msgid "You cannot specify a remote recursion without a source"
8622
8676
  msgstr ""
8623
8677
 
8624
- #: ../lib/puppet/type/file.rb:418
8678
+ #: ../lib/puppet/type/file.rb:422
8625
8679
  msgid "You cannot specify source when using checksum 'none'"
8626
8680
  msgstr ""
8627
8681
 
8628
- #: ../lib/puppet/type/file.rb:421
8682
+ #: ../lib/puppet/type/file.rb:425
8629
8683
  msgid "You cannot specify content when using checksum '%{checksum_type}'"
8630
8684
  msgstr ""
8631
8685
 
8632
- #: ../lib/puppet/type/file.rb:424
8686
+ #: ../lib/puppet/type/file.rb:428
8633
8687
  msgid "Possible error: recurselimit is set but not recurse, no recursion will happen"
8634
8688
  msgstr ""
8635
8689
 
8636
- #: ../lib/puppet/type/file.rb:432
8690
+ #: ../lib/puppet/type/file.rb:436
8637
8691
  msgid "Checksum value '%{value}' is not a valid checksum type %{checksum}"
8638
8692
  msgstr ""
8639
8693
 
8640
- #: ../lib/puppet/type/file.rb:435
8694
+ #: ../lib/puppet/type/file.rb:439
8641
8695
  msgid "Checksum value is ignored unless content or source are specified"
8642
8696
  msgstr ""
8643
8697
 
8644
- #: ../lib/puppet/type/file.rb:473
8698
+ #: ../lib/puppet/type/file.rb:477
8645
8699
  msgid "Can not find filebucket for backups without a catalog"
8646
8700
  msgstr ""
8647
8701
 
8648
- #: ../lib/puppet/type/file.rb:478
8702
+ #: ../lib/puppet/type/file.rb:482
8649
8703
  msgid "Could not find filebucket %{backup} specified in backup"
8650
8704
  msgstr ""
8651
8705
 
8652
- #: ../lib/puppet/type/file.rb:776
8706
+ #: ../lib/puppet/type/file.rb:780
8653
8707
  msgid "Could not back up file of type %{current_type}"
8654
8708
  msgstr ""
8655
8709
 
8656
- #: ../lib/puppet/type/file.rb:791
8710
+ #: ../lib/puppet/type/file.rb:795
8657
8711
  msgid "Could not remove files of type %{current_type}"
8658
8712
  msgstr ""
8659
8713
 
8660
8714
  #. TRANSLATORS "source_permissions => ignore" should not be translated
8661
- #: ../lib/puppet/type/file.rb:802
8715
+ #: ../lib/puppet/type/file.rb:806
8662
8716
  msgid "Copying owner/mode/group from the source file on Windows is not supported; use source_permissions => ignore."
8663
8717
  msgstr ""
8664
8718
 
8665
8719
  #. TRANSLATORS "stat" is a program name and should not be translated
8666
- #: ../lib/puppet/type/file.rb:883 ../lib/puppet/type/tidy.rb:352
8720
+ #: ../lib/puppet/type/file.rb:887 ../lib/puppet/type/tidy.rb:352
8667
8721
  msgid "Could not stat; permission denied"
8668
8722
  msgstr ""
8669
8723
 
8670
- #: ../lib/puppet/type/file.rb:886
8724
+ #: ../lib/puppet/type/file.rb:890
8671
8725
  msgid "Could not stat; invalid pathname"
8672
8726
  msgstr ""
8673
8727
 
8674
- #: ../lib/puppet/type/file.rb:1014
8728
+ #: ../lib/puppet/type/file.rb:1018
8675
8729
  msgid "Not removing directory; use 'force' to override"
8676
8730
  msgstr ""
8677
8731
 
8678
8732
  #. TRANSLATORS refers to a file which could not be backed up
8679
- #: ../lib/puppet/type/file.rb:1039
8733
+ #: ../lib/puppet/type/file.rb:1043
8680
8734
  msgid "Could not back up; will not remove"
8681
8735
  msgstr ""
8682
8736
 
8683
- #: ../lib/puppet/type/file.rb:1053
8684
- msgid "File written to disk did not match checksum; discarding changes (%{content_checksum} vs %{newsum})"
8737
+ #: ../lib/puppet/type/file.rb:1058
8738
+ msgid "File written to disk did not match desired checksum; discarding changes (%{content_checksum} vs %{desired_checksum})"
8685
8739
  msgstr ""
8686
8740
 
8687
8741
  #: ../lib/puppet/type/file/checksum.rb:20
@@ -8722,7 +8776,7 @@ msgid "Not managing symlink mode"
8722
8776
  msgstr ""
8723
8777
 
8724
8778
  #. TRANSLATORS "source_permissions" is a parameter name and should not be translated
8725
- #: ../lib/puppet/type/file/source.rb:353
8779
+ #: ../lib/puppet/type/file/source.rb:373
8726
8780
  msgid "The `source_permissions` parameter is deprecated. Explicitly set `owner`, `group`, and `mode`."
8727
8781
  msgstr ""
8728
8782
 
@@ -8830,11 +8884,19 @@ msgstr ""
8830
8884
  msgid "%{value} is not a valid day of the week"
8831
8885
  msgstr ""
8832
8886
 
8833
- #: ../lib/puppet/type/service.rb:90
8887
+ #: ../lib/puppet/type/service.rb:96
8834
8888
  msgid "Setting enable to %{value} is only supported on Microsoft Windows."
8835
8889
  msgstr ""
8836
8890
 
8837
- #: ../lib/puppet/type/service.rb:247
8891
+ #: ../lib/puppet/type/service.rb:166
8892
+ msgid "The 'logonaccount' parameter is mandatory when setting 'logonpassword'."
8893
+ msgstr ""
8894
+
8895
+ #: ../lib/puppet/type/service.rb:167 ../lib/puppet/type/user.rb:271
8896
+ msgid "Passwords cannot include ':'"
8897
+ msgstr ""
8898
+
8899
+ #: ../lib/puppet/type/service.rb:304
8838
8900
  msgid "\"%{value}\" is not a positive integer: the timeout parameter must be specified as a positive integer"
8839
8901
  msgstr ""
8840
8902
 
@@ -8869,85 +8931,81 @@ msgstr ""
8869
8931
  msgid "File does not exist"
8870
8932
  msgstr ""
8871
8933
 
8872
- #: ../lib/puppet/type/user.rb:167
8934
+ #: ../lib/puppet/type/user.rb:182
8873
8935
  msgid "Could not find group(s) %{groups}"
8874
8936
  msgstr ""
8875
8937
 
8876
- #: ../lib/puppet/type/user.rb:256
8877
- msgid "Passwords cannot include ':'"
8878
- msgstr ""
8879
-
8880
- #: ../lib/puppet/type/user.rb:276
8938
+ #: ../lib/puppet/type/user.rb:291
8881
8939
  msgid "Password minimum age must be provided as a number."
8882
8940
  msgstr ""
8883
8941
 
8884
- #: ../lib/puppet/type/user.rb:295
8942
+ #: ../lib/puppet/type/user.rb:310
8885
8943
  msgid "Password maximum age must be provided as a number."
8886
8944
  msgstr ""
8887
8945
 
8888
- #: ../lib/puppet/type/user.rb:326
8946
+ #: ../lib/puppet/type/user.rb:341
8889
8947
  msgid "Group names must be provided, not GID numbers."
8890
8948
  msgstr ""
8891
8949
 
8892
- #: ../lib/puppet/type/user.rb:328
8950
+ #: ../lib/puppet/type/user.rb:343
8893
8951
  msgid "Group names must be provided as an array, not a comma-separated list."
8894
8952
  msgstr ""
8895
8953
 
8896
- #: ../lib/puppet/type/user.rb:329
8954
+ #: ../lib/puppet/type/user.rb:344
8897
8955
  msgid "Group names must not be empty. If you want to specify \"no groups\" pass an empty array"
8898
8956
  msgstr ""
8899
8957
 
8900
- #: ../lib/puppet/type/user.rb:422
8958
+ #: ../lib/puppet/type/user.rb:437
8901
8959
  msgid "User provider %{name} can not manage home directories"
8902
8960
  msgstr ""
8903
8961
 
8904
8962
  #. TRANSLATORS YYYY-MM-DD represents a date with a four-digit year, a two-digit month, and a two-digit day,
8905
8963
  #. TRANSLATORS separated by dashes.
8906
- #: ../lib/puppet/type/user.rb:439
8964
+ #: ../lib/puppet/type/user.rb:454
8907
8965
  msgid "Expiry dates must be YYYY-MM-DD or the string \"absent\""
8908
8966
  msgstr ""
8909
8967
 
8910
- #: ../lib/puppet/type/user.rb:506
8968
+ #: ../lib/puppet/type/user.rb:521
8911
8969
  msgid "Role names must be provided, not numbers"
8912
8970
  msgstr ""
8913
8971
 
8914
- #: ../lib/puppet/type/user.rb:508
8972
+ #: ../lib/puppet/type/user.rb:523
8915
8973
  msgid "Role names must be provided as an array, not a comma-separated list"
8916
8974
  msgstr ""
8917
8975
 
8918
- #: ../lib/puppet/type/user.rb:545
8976
+ #: ../lib/puppet/type/user.rb:560
8919
8977
  msgid "Auth names must be provided, not numbers"
8920
8978
  msgstr ""
8921
8979
 
8922
- #: ../lib/puppet/type/user.rb:547
8980
+ #: ../lib/puppet/type/user.rb:562
8923
8981
  msgid "Auth names must be provided as an array, not a comma-separated list"
8924
8982
  msgstr ""
8925
8983
 
8926
- #: ../lib/puppet/type/user.rb:571
8984
+ #: ../lib/puppet/type/user.rb:586
8927
8985
  msgid "Profile names must be provided, not numbers"
8928
8986
  msgstr ""
8929
8987
 
8930
- #: ../lib/puppet/type/user.rb:573
8988
+ #: ../lib/puppet/type/user.rb:588
8931
8989
  msgid "Profile names must be provided as an array, not a comma-separated list"
8932
8990
  msgstr ""
8933
8991
 
8934
- #: ../lib/puppet/type/user.rb:684
8992
+ #: ../lib/puppet/type/user.rb:699
8935
8993
  msgid "Ssh_authorized_key type is not available. Cannot purge SSH keys."
8936
8994
  msgstr ""
8937
8995
 
8938
- #: ../lib/puppet/type/user.rb:722
8996
+ #: ../lib/puppet/type/user.rb:737
8939
8997
  msgid "Each entry for purge_ssh_keys must be a string, not a %{klass}"
8940
8998
  msgstr ""
8941
8999
 
8942
- #: ../lib/puppet/type/user.rb:725
9000
+ #: ../lib/puppet/type/user.rb:740
8943
9001
  msgid "Paths to keyfiles must be absolute, not %{entry}"
8944
9002
  msgstr ""
8945
9003
 
8946
- #: ../lib/puppet/type/user.rb:729
9004
+ #: ../lib/puppet/type/user.rb:744
8947
9005
  msgid "purge_ssh_keys must be true, false, or an array of file names, not %{value}"
8948
9006
  msgstr ""
8949
9007
 
8950
- #: ../lib/puppet/type/user.rb:757
9008
+ #: ../lib/puppet/type/user.rb:772
8951
9009
  msgid "Class name must be provided."
8952
9010
  msgstr ""
8953
9011
 
@@ -8998,23 +9056,23 @@ msgstr ""
8998
9056
  msgid "Couldn't expand PATH containing a ~ character; ignoring PATH element '%{dir}'."
8999
9057
  msgstr ""
9000
9058
 
9001
- #: ../lib/puppet/util.rb:313
9059
+ #: ../lib/puppet/util.rb:318
9002
9060
  msgid "unknown platform %{platform} in absolute_path"
9003
9061
  msgstr ""
9004
9062
 
9005
- #: ../lib/puppet/util.rb:348
9063
+ #: ../lib/puppet/util.rb:353
9006
9064
  msgid "Failed to convert '%{path}' to URI: %{detail}"
9007
9065
  msgstr ""
9008
9066
 
9009
- #: ../lib/puppet/util.rb:448
9067
+ #: ../lib/puppet/util.rb:453
9010
9068
  msgid "path may not be nil"
9011
9069
  msgstr ""
9012
9070
 
9013
- #: ../lib/puppet/util.rb:596
9071
+ #: ../lib/puppet/util.rb:621
9014
9072
  msgid "replace_file requires a block"
9015
9073
  msgstr ""
9016
9074
 
9017
- #: ../lib/puppet/util.rb:600
9075
+ #: ../lib/puppet/util.rb:625
9018
9076
  msgid "replace_file default_mode: %{default_mode} is invalid"
9019
9077
  msgstr ""
9020
9078
 
@@ -9046,11 +9104,11 @@ msgstr ""
9046
9104
  msgid "Failed to abandon a child process contract"
9047
9105
  msgstr ""
9048
9106
 
9049
- #: ../lib/puppet/util/autoload.rb:75
9107
+ #: ../lib/puppet/util/autoload.rb:83
9050
9108
  msgid "Could not autoload %{name}: %{detail}"
9051
9109
  msgstr ""
9052
9110
 
9053
- #: ../lib/puppet/util/autoload.rb:182
9111
+ #: ../lib/puppet/util/autoload.rb:177
9054
9112
  msgid "Autoload paths cannot be fully qualified"
9055
9113
  msgstr ""
9056
9114
 
@@ -9078,15 +9136,15 @@ msgstr ""
9078
9136
  msgid "Filebucketed %{f} to %{filebucket} with sum %{sum}"
9079
9137
  msgstr ""
9080
9138
 
9081
- #: ../lib/puppet/util/character_encoding.rb:22
9139
+ #: ../lib/puppet/util/character_encoding.rb:23
9082
9140
  msgid "%{value} is already labeled as UTF-8 but this encoding is invalid. It cannot be transcoded by Puppet."
9083
9141
  msgstr ""
9084
9142
 
9085
- #: ../lib/puppet/util/character_encoding.rb:43
9143
+ #: ../lib/puppet/util/character_encoding.rb:45
9086
9144
  msgid "%{error}: %{value} cannot be transcoded by Puppet."
9087
9145
  msgstr ""
9088
9146
 
9089
- #: ../lib/puppet/util/character_encoding.rb:70
9147
+ #: ../lib/puppet/util/character_encoding.rb:73
9090
9148
  msgid "%{value} is not valid UTF-8 and result of overriding encoding would be invalid."
9091
9149
  msgstr ""
9092
9150
 
@@ -9285,9 +9343,9 @@ msgstr ""
9285
9343
  msgid "Dynamically-bound port lookup failed; using first entry from the `server_list` setting: %{port}"
9286
9344
  msgstr ""
9287
9345
 
9288
- #. TRANSLATORS 'masterport' is the name of a setting and should not be translated
9346
+ #. TRANSLATORS 'serverport' is the name of a setting and should not be translated
9289
9347
  #: ../lib/puppet/util/connection.rb:75
9290
- msgid "Dynamically-bound port lookup failed; falling back to `masterport` setting: %{port}"
9348
+ msgid "Dynamically-bound port lookup failed; falling back to `serverport` setting: %{port}"
9291
9349
  msgstr ""
9292
9350
 
9293
9351
  #: ../lib/puppet/util/connection.rb:80
@@ -9634,19 +9692,19 @@ msgstr ""
9634
9692
  msgid "Unable to write the file %{file_path}. %{error}"
9635
9693
  msgstr ""
9636
9694
 
9637
- #: ../lib/puppet/util/posix.rb:22
9695
+ #: ../lib/puppet/util/posix.rb:29
9638
9696
  msgid "Removing any duplicate group entries"
9639
9697
  msgstr ""
9640
9698
 
9641
- #: ../lib/puppet/util/posix.rb:35
9699
+ #: ../lib/puppet/util/posix.rb:75
9642
9700
  msgid "Did not get id from caller"
9643
9701
  msgstr ""
9644
9702
 
9645
- #: ../lib/puppet/util/posix.rb:39 ../lib/puppet/util/posix.rb:64
9703
+ #: ../lib/puppet/util/posix.rb:79 ../lib/puppet/util/posix.rb:104
9646
9704
  msgid "Tried to get %{field} field for silly id %{id}"
9647
9705
  msgstr ""
9648
9706
 
9649
- #: ../lib/puppet/util/posix.rb:92 ../lib/puppet/util/posix.rb:102 ../lib/puppet/util/posix.rb:112
9707
+ #: ../lib/puppet/util/posix.rb:132 ../lib/puppet/util/posix.rb:142 ../lib/puppet/util/posix.rb:152
9650
9708
  msgid "Can only handle users and groups"
9651
9709
  msgstr ""
9652
9710
 
@@ -9866,11 +9924,11 @@ msgstr ""
9866
9924
  msgid "Cannot create group if user '%{name}' exists."
9867
9925
  msgstr ""
9868
9926
 
9869
- #: ../lib/puppet/util/windows/api_types.rb:72
9927
+ #: ../lib/puppet/util/windows/api_types.rb:85
9870
9928
  msgid "Unable to read wide strings with %{null_terminator} terminal nulls"
9871
9929
  msgstr ""
9872
9930
 
9873
- #: ../lib/puppet/util/windows/api_types.rb:203
9931
+ #: ../lib/puppet/util/windows/api_types.rb:230
9874
9932
  msgid "Bad GUID format."
9875
9933
  msgstr ""
9876
9934
 
@@ -9925,16 +9983,20 @@ msgstr ""
9925
9983
  msgid "Failed to call GetLongPathName"
9926
9984
  msgstr ""
9927
9985
 
9928
- #: ../lib/puppet/util/windows/principal.rb:68 ../lib/puppet/util/windows/principal.rb:75
9986
+ #: ../lib/puppet/util/windows/principal.rb:67 ../lib/puppet/util/windows/principal.rb:74
9929
9987
  msgid "Failed to call LookupAccountNameW with account: %{account_name}"
9930
9988
  msgstr ""
9931
9989
 
9932
9990
  #. TRANSLATORS `lookup_account_sid` is a variable name and should not be translated
9933
- #: ../lib/puppet/util/windows/principal.rb:98
9991
+ #: ../lib/puppet/util/windows/principal.rb:97
9934
9992
  msgid "Byte array for lookup_account_sid must not be nil and must be at least 1 byte long"
9935
9993
  msgstr ""
9936
9994
 
9937
- #: ../lib/puppet/util/windows/principal.rb:120 ../lib/puppet/util/windows/principal.rb:127
9995
+ #: ../lib/puppet/util/windows/principal.rb:114
9996
+ msgid "Byte array for lookup_account_sid is invalid: %{sid_bytes}"
9997
+ msgstr ""
9998
+
9999
+ #: ../lib/puppet/util/windows/principal.rb:122 ../lib/puppet/util/windows/principal.rb:129
9938
10000
  msgid "Failed to call LookupAccountSidW with bytes: %{sid_bytes}"
9939
10001
  msgstr ""
9940
10002
 
@@ -9970,39 +10032,39 @@ msgstr ""
9970
10032
  msgid "Failed to open registry key '%{key}\\%{path}'"
9971
10033
  msgstr ""
9972
10034
 
9973
- #: ../lib/puppet/util/windows/registry.rb:130
10035
+ #: ../lib/puppet/util/windows/registry.rb:133
9974
10036
  msgid "Failed to enumerate %{key} registry keys at index %{index}"
9975
10037
  msgstr ""
9976
10038
 
9977
- #: ../lib/puppet/util/windows/registry.rb:161
10039
+ #: ../lib/puppet/util/windows/registry.rb:167
9978
10040
  msgid "Failed to enumerate %{key} registry values at index %{index}"
9979
10041
  msgstr ""
9980
10042
 
9981
- #: ../lib/puppet/util/windows/registry.rb:191
10043
+ #: ../lib/puppet/util/windows/registry.rb:197
9982
10044
  msgid "Failed to query registry %{key} for sizes"
9983
10045
  msgstr ""
9984
10046
 
9985
- #: ../lib/puppet/util/windows/registry.rb:227
10047
+ #: ../lib/puppet/util/windows/registry.rb:233
9986
10048
  msgid "Type mismatch (expect %{rtype} but %{type} present)"
9987
10049
  msgstr ""
9988
10050
 
9989
- #: ../lib/puppet/util/windows/registry.rb:249
10051
+ #: ../lib/puppet/util/windows/registry.rb:255
9990
10052
  msgid "Type %{type} is not supported."
9991
10053
  msgstr ""
9992
10054
 
9993
- #: ../lib/puppet/util/windows/registry.rb:254
10055
+ #: ../lib/puppet/util/windows/registry.rb:260
9994
10056
  msgid "A value in the registry key %{parent_key_name}%{key} is corrupt or invalid"
9995
10057
  msgstr ""
9996
10058
 
9997
- #: ../lib/puppet/util/windows/registry.rb:276
10059
+ #: ../lib/puppet/util/windows/registry.rb:282
9998
10060
  msgid "Failed to read registry value %{value} at %{key}"
9999
10061
  msgstr ""
10000
10062
 
10001
- #: ../lib/puppet/util/windows/registry.rb:294
10063
+ #: ../lib/puppet/util/windows/registry.rb:300
10002
10064
  msgid "Failed to delete registry value %{name} at %{key}"
10003
10065
  msgstr ""
10004
10066
 
10005
- #: ../lib/puppet/util/windows/registry.rb:309
10067
+ #: ../lib/puppet/util/windows/registry.rb:315
10006
10068
  msgid "Failed to delete registry key %{name} at %{key}"
10007
10069
  msgstr ""
10008
10070
 
@@ -10044,7 +10106,7 @@ msgstr ""
10044
10106
  msgid "An attempt to set mode %{mode} on item %{path} would result in the group, SYSTEM, to have less than Full Control rights. This attempt has been corrected to Full Control"
10045
10107
  msgstr ""
10046
10108
 
10047
- #: ../lib/puppet/util/windows/security.rb:433 ../lib/puppet/util/windows/security.rb:450 ../lib/puppet/util/windows/sid.rb:155 ../lib/puppet/util/windows/sid.rb:217 ../lib/puppet/util/windows/user.rb:43
10109
+ #: ../lib/puppet/util/windows/security.rb:433 ../lib/puppet/util/windows/security.rb:450 ../lib/puppet/util/windows/sid.rb:155 ../lib/puppet/util/windows/sid.rb:217 ../lib/puppet/util/windows/user.rb:59
10048
10110
  msgid "Invalid SID"
10049
10111
  msgstr ""
10050
10112
 
@@ -10120,87 +10182,83 @@ msgstr ""
10120
10182
  msgid "Unknown start type '%{start_type}' for '%{service_name}'"
10121
10183
  msgstr ""
10122
10184
 
10123
- #: ../lib/puppet/util/windows/service.rb:453
10124
- msgid "Unknown start type %{start_type}"
10125
- msgstr ""
10126
-
10127
- #: ../lib/puppet/util/windows/service.rb:474
10185
+ #: ../lib/puppet/util/windows/service.rb:487
10128
10186
  msgid "Failed to update service configuration"
10129
10187
  msgstr ""
10130
10188
 
10131
- #: ../lib/puppet/util/windows/service.rb:535
10189
+ #: ../lib/puppet/util/windows/service.rb:552
10132
10190
  msgid "Failed to fetch services"
10133
10191
  msgstr ""
10134
10192
 
10135
- #: ../lib/puppet/util/windows/service.rb:584
10193
+ #: ../lib/puppet/util/windows/service.rb:601
10136
10194
  msgid "Failed to open a handle to the service"
10137
10195
  msgstr ""
10138
10196
 
10139
- #: ../lib/puppet/util/windows/service.rb:601
10197
+ #: ../lib/puppet/util/windows/service.rb:618
10140
10198
  msgid "Failed to open a handle to the service control manager"
10141
10199
  msgstr ""
10142
10200
 
10143
- #: ../lib/puppet/util/windows/service.rb:624
10201
+ #: ../lib/puppet/util/windows/service.rb:641
10144
10202
  msgid "The service is already in the %{final_state} state. No further work needs to be done."
10145
10203
  msgstr ""
10146
10204
 
10147
- #: ../lib/puppet/util/windows/service.rb:636
10205
+ #: ../lib/puppet/util/windows/service.rb:653
10148
10206
  msgid "The service must be in one of the %{valid_initial_states} states to perform this transition. It is currently in the %{current_state} state."
10149
10207
  msgstr ""
10150
10208
 
10151
- #: ../lib/puppet/util/windows/service.rb:647
10209
+ #: ../lib/puppet/util/windows/service.rb:664
10152
10210
  msgid "There is already a pending transition to the %{final_state} state for the %{service_name} service."
10153
10211
  msgstr ""
10154
10212
 
10155
- #: ../lib/puppet/util/windows/service.rb:663
10213
+ #: ../lib/puppet/util/windows/service.rb:680
10156
10214
  msgid "The service is in the %{pending_state} state, which is an unsafe pending state."
10157
10215
  msgstr ""
10158
10216
 
10159
- #: ../lib/puppet/util/windows/service.rb:668
10217
+ #: ../lib/puppet/util/windows/service.rb:685
10160
10218
  msgid "Transitioning the %{service_name} service from %{initial_state} to %{final_state}"
10161
10219
  msgstr ""
10162
10220
 
10163
- #: ../lib/puppet/util/windows/service.rb:672
10221
+ #: ../lib/puppet/util/windows/service.rb:689
10164
10222
  msgid "Waiting for the transition to finish"
10165
10223
  msgstr ""
10166
10224
 
10167
- #: ../lib/puppet/util/windows/service.rb:677
10225
+ #: ../lib/puppet/util/windows/service.rb:694
10168
10226
  msgid "Failed to transition the %{service_name} service to the %{final_state} state. Detail: %{detail}"
10169
10227
  msgstr ""
10170
10228
 
10171
- #: ../lib/puppet/util/windows/service.rb:716 ../lib/puppet/util/windows/service.rb:752
10229
+ #: ../lib/puppet/util/windows/service.rb:733 ../lib/puppet/util/windows/service.rb:769
10172
10230
  msgid "Service query failed"
10173
10231
  msgstr ""
10174
10232
 
10175
- #: ../lib/puppet/util/windows/service.rb:795
10233
+ #: ../lib/puppet/util/windows/service.rb:812
10176
10234
  msgid "Service query for %{parameter_name} failed"
10177
10235
  msgstr ""
10178
10236
 
10179
- #: ../lib/puppet/util/windows/service.rb:818
10237
+ #: ../lib/puppet/util/windows/service.rb:835
10180
10238
  msgid "Failed to update service %{change} configuration"
10181
10239
  msgstr ""
10182
10240
 
10183
- #: ../lib/puppet/util/windows/service.rb:845
10241
+ #: ../lib/puppet/util/windows/service.rb:862
10184
10242
  msgid "Failed to send the %{control_signal} signal to the service. Its current state is %{current_state}. Reason for failure:"
10185
10243
  msgstr ""
10186
10244
 
10187
- #: ../lib/puppet/util/windows/service.rb:880
10245
+ #: ../lib/puppet/util/windows/service.rb:897
10188
10246
  msgid "The service transitioned to the %{pending_state} state."
10189
10247
  msgstr ""
10190
10248
 
10191
- #: ../lib/puppet/util/windows/service.rb:894
10249
+ #: ../lib/puppet/util/windows/service.rb:911
10192
10250
  msgid "Timed out while waiting for the service to transition from %{initial_state} to %{final_state} OR from %{initial_state} to %{pending_state} to %{final_state}. The service's current state is %{current_state}."
10193
10251
  msgstr ""
10194
10252
 
10195
- #: ../lib/puppet/util/windows/service.rb:909
10253
+ #: ../lib/puppet/util/windows/service.rb:926
10196
10254
  msgid "Waiting for the pending transition to the %{final_state} state to finish."
10197
10255
  msgstr ""
10198
10256
 
10199
- #: ../lib/puppet/util/windows/service.rb:923
10257
+ #: ../lib/puppet/util/windows/service.rb:940
10200
10258
  msgid "Unexpected transition to the %{current_state} state while waiting for the pending transition from %{pending_state} to %{final_state} to finish."
10201
10259
  msgstr ""
10202
10260
 
10203
- #: ../lib/puppet/util/windows/service.rb:937
10261
+ #: ../lib/puppet/util/windows/service.rb:954
10204
10262
  msgid "Timed out while waiting for the pending transition from %{pending_state} to %{final_state} to finish. The current state is %{current_state}."
10205
10263
  msgstr ""
10206
10264
 
@@ -10220,23 +10278,23 @@ msgstr ""
10220
10278
  msgid "Failed to convert string SID: %{string_sid}"
10221
10279
  msgstr ""
10222
10280
 
10223
- #: ../lib/puppet/util/windows/user.rb:38
10281
+ #: ../lib/puppet/util/windows/user.rb:54
10224
10282
  msgid "Failed to create administrators SID"
10225
10283
  msgstr ""
10226
10284
 
10227
- #: ../lib/puppet/util/windows/user.rb:48
10285
+ #: ../lib/puppet/util/windows/user.rb:64
10228
10286
  msgid "Failed to check membership"
10229
10287
  msgstr ""
10230
10288
 
10231
- #: ../lib/puppet/util/windows/user.rb:88
10289
+ #: ../lib/puppet/util/windows/user.rb:104
10232
10290
  msgid "Failed to logon user %{name}"
10233
10291
  msgstr ""
10234
10292
 
10235
- #: ../lib/puppet/util/windows/user.rb:120
10293
+ #: ../lib/puppet/util/windows/user.rb:135
10236
10294
  msgid "Failed to load user profile %{user}"
10237
10295
  msgstr ""
10238
10296
 
10239
- #: ../lib/puppet/util/windows/user.rb:126
10297
+ #: ../lib/puppet/util/windows/user.rb:141
10240
10298
  msgid "Failed to unload user profile %{user}"
10241
10299
  msgstr ""
10242
10300