puppet 5.5.16 → 5.5.21

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 (359) hide show
  1. checksums.yaml +4 -4
  2. data/CODEOWNERS +10 -10
  3. data/Gemfile +2 -3
  4. data/Gemfile.lock +57 -52
  5. data/ext/build_defaults.yaml +1 -0
  6. data/ext/cert_inspector +3 -3
  7. data/ext/project_data.yaml +2 -2
  8. data/ext/puppet-test +2 -2
  9. data/ext/regexp_nodes/regexp_nodes.rb +4 -4
  10. data/ext/windows/service/daemon.rb +54 -8
  11. data/install.rb +6 -24
  12. data/lib/puppet.rb +5 -2
  13. data/lib/puppet/agent.rb +5 -13
  14. data/lib/puppet/application.rb +1 -1
  15. data/lib/puppet/application/agent.rb +15 -1
  16. data/lib/puppet/application/apply.rb +2 -2
  17. data/lib/puppet/application/describe.rb +3 -9
  18. data/lib/puppet/application/device.rb +4 -4
  19. data/lib/puppet/application/doc.rb +1 -1
  20. data/lib/puppet/application/filebucket.rb +13 -0
  21. data/lib/puppet/application/lookup.rb +1 -1
  22. data/lib/puppet/application/resource.rb +4 -4
  23. data/lib/puppet/application/script.rb +2 -2
  24. data/lib/puppet/configurer.rb +86 -28
  25. data/lib/puppet/configurer/downloader.rb +2 -6
  26. data/lib/puppet/daemon.rb +1 -1
  27. data/lib/puppet/defaults.rb +82 -38
  28. data/lib/puppet/error.rb +9 -1
  29. data/lib/puppet/external/nagios/base.rb +1 -1
  30. data/lib/puppet/face/ca.rb +1 -1
  31. data/lib/puppet/face/config.rb +10 -48
  32. data/lib/puppet/face/facts.rb +1 -1
  33. data/lib/puppet/face/module/list.rb +5 -5
  34. data/lib/puppet/face/module/search.rb +1 -1
  35. data/lib/puppet/face/module/uninstall.rb +1 -1
  36. data/lib/puppet/face/module/upgrade.rb +1 -1
  37. data/lib/puppet/face/plugin.rb +9 -2
  38. data/lib/puppet/file_serving/http_metadata.rb +1 -1
  39. data/lib/puppet/file_system.rb +0 -8
  40. data/lib/puppet/file_system/memory_file.rb +1 -1
  41. data/lib/puppet/file_system/posix.rb +3 -2
  42. data/lib/puppet/file_system/uniquefile.rb +4 -0
  43. data/lib/puppet/forge.rb +3 -3
  44. data/lib/puppet/functions/epp.rb +4 -4
  45. data/lib/puppet/functions/inline_epp.rb +5 -5
  46. data/lib/puppet/functions/reduce.rb +2 -4
  47. data/lib/puppet/gettext/module_translations.rb +1 -1
  48. data/lib/puppet/graph/rb_tree_map.rb +2 -2
  49. data/lib/puppet/graph/simple_graph.rb +6 -5
  50. data/lib/puppet/indirector/catalog/compiler.rb +8 -0
  51. data/lib/puppet/indirector/file_bucket_file/file.rb +1 -1
  52. data/lib/puppet/indirector/hiera.rb +2 -0
  53. data/lib/puppet/indirector/resource/ral.rb +1 -3
  54. data/lib/puppet/indirector/resource/validator.rb +1 -1
  55. data/lib/puppet/interface.rb +2 -1
  56. data/lib/puppet/loaders.rb +0 -1
  57. data/lib/puppet/metatype/manager.rb +1 -1
  58. data/lib/puppet/module.rb +1 -1
  59. data/lib/puppet/module_tool/applications/builder.rb +1 -1
  60. data/lib/puppet/module_tool/applications/installer.rb +1 -1
  61. data/lib/puppet/module_tool/applications/uninstaller.rb +3 -3
  62. data/lib/puppet/module_tool/metadata.rb +1 -1
  63. data/lib/puppet/module_tool/shared_behaviors.rb +4 -4
  64. data/lib/puppet/module_tool/tar/mini.rb +12 -2
  65. data/lib/puppet/network/http/api/indirected_routes.rb +13 -12
  66. data/lib/puppet/network/http/api/master/v3/environment.rb +3 -0
  67. data/lib/puppet/network/http/connection.rb +14 -12
  68. data/lib/puppet/network/http/factory.rb +1 -11
  69. data/lib/puppet/network/http/pool.rb +7 -1
  70. data/lib/puppet/network/http/rack/rest.rb +2 -2
  71. data/lib/puppet/network/http/site.rb +1 -1
  72. data/lib/puppet/network/resolver.rb +2 -2
  73. data/lib/puppet/node/environment.rb +4 -2
  74. data/lib/puppet/parameter.rb +8 -0
  75. data/lib/puppet/parser/ast.rb +1 -1
  76. data/lib/puppet/parser/ast/resourceparam.rb +1 -1
  77. data/lib/puppet/parser/compiler/catalog_validator/env_relationship_validator.rb +2 -0
  78. data/lib/puppet/parser/compiler/catalog_validator/site_validator.rb +2 -0
  79. data/lib/puppet/parser/environment_compiler.rb +3 -0
  80. data/lib/puppet/parser/functions.rb +1 -1
  81. data/lib/puppet/parser/functions/epp.rb +3 -3
  82. data/lib/puppet/parser/functions/inline_epp.rb +5 -5
  83. data/lib/puppet/parser/resource.rb +3 -2
  84. data/lib/puppet/parser/resource/param.rb +6 -0
  85. data/lib/puppet/pops/evaluator/access_operator.rb +2 -2
  86. data/lib/puppet/pops/evaluator/collectors/catalog_collector.rb +1 -1
  87. data/lib/puppet/pops/evaluator/collectors/exported_collector.rb +1 -1
  88. data/lib/puppet/pops/evaluator/evaluator_impl.rb +1 -1
  89. data/lib/puppet/pops/evaluator/external_syntax_support.rb +3 -2
  90. data/lib/puppet/pops/evaluator/runtime3_support.rb +4 -4
  91. data/lib/puppet/pops/issues.rb +5 -0
  92. data/lib/puppet/pops/loaders.rb +1 -1
  93. data/lib/puppet/pops/lookup/hiera_config.rb +1 -0
  94. data/lib/puppet/pops/lookup/sub_lookup.rb +1 -1
  95. data/lib/puppet/pops/merge_strategy.rb +22 -18
  96. data/lib/puppet/pops/parser/heredoc_support.rb +1 -1
  97. data/lib/puppet/pops/parser/interpolation_support.rb +4 -4
  98. data/lib/puppet/pops/parser/locator.rb +1 -1
  99. data/lib/puppet/pops/parser/pn_parser.rb +17 -16
  100. data/lib/puppet/pops/puppet_stack.rb +51 -48
  101. data/lib/puppet/pops/resource/resource_type_impl.rb +2 -0
  102. data/lib/puppet/pops/types/p_sensitive_type.rb +1 -1
  103. data/lib/puppet/pops/types/string_converter.rb +10 -10
  104. data/lib/puppet/pops/types/type_calculator.rb +24 -0
  105. data/lib/puppet/pops/types/types.rb +3 -3
  106. data/lib/puppet/pops/validation/checker4_0.rb +10 -0
  107. data/lib/puppet/pops/validation/validator_factory_4_0.rb +1 -0
  108. data/lib/puppet/property.rb +1 -1
  109. data/lib/puppet/property/ensure.rb +1 -1
  110. data/lib/puppet/provider/augeas/augeas.rb +1 -1
  111. data/lib/puppet/provider/cron/crontab.rb +1 -1
  112. data/lib/puppet/provider/exec.rb +6 -2
  113. data/lib/puppet/provider/file/posix.rb +5 -0
  114. data/lib/puppet/provider/group/groupadd.rb +19 -19
  115. data/lib/puppet/provider/group/windows_adsi.rb +3 -3
  116. data/lib/puppet/provider/mailalias/aliases.rb +1 -1
  117. data/lib/puppet/provider/mount.rb +1 -1
  118. data/lib/puppet/provider/mount/parsed.rb +8 -8
  119. data/lib/puppet/provider/nameservice.rb +10 -3
  120. data/lib/puppet/provider/nameservice/directoryservice.rb +1 -1
  121. data/lib/puppet/provider/nameservice/pw.rb +2 -2
  122. data/lib/puppet/provider/package/aix.rb +17 -2
  123. data/lib/puppet/provider/package/apt.rb +14 -3
  124. data/lib/puppet/provider/package/dnf.rb +1 -1
  125. data/lib/puppet/provider/package/dnfmodule.rb +141 -0
  126. data/lib/puppet/provider/package/dpkg.rb +16 -18
  127. data/lib/puppet/provider/package/fink.rb +20 -3
  128. data/lib/puppet/provider/package/openbsd.rb +14 -2
  129. data/lib/puppet/provider/package/pip.rb +37 -10
  130. data/lib/puppet/provider/package/pkg.rb +18 -5
  131. data/lib/puppet/provider/package/pkgdmg.rb +1 -1
  132. data/lib/puppet/provider/package/pkgng.rb +16 -4
  133. data/lib/puppet/provider/package/portage.rb +4 -4
  134. data/lib/puppet/provider/package/rpm.rb +57 -19
  135. data/lib/puppet/provider/package/windows/package.rb +1 -1
  136. data/lib/puppet/provider/package/yum.rb +35 -24
  137. data/lib/puppet/provider/package/zypper.rb +1 -0
  138. data/lib/puppet/provider/package_targetable.rb +5 -4
  139. data/lib/puppet/provider/parsedfile.rb +1 -1
  140. data/lib/puppet/provider/scheduled_task/win32_taskscheduler.rb +3 -3
  141. data/lib/puppet/provider/selmodule/semodule.rb +43 -26
  142. data/lib/puppet/provider/service/daemontools.rb +9 -9
  143. data/lib/puppet/provider/service/launchd.rb +20 -5
  144. data/lib/puppet/provider/service/openbsd.rb +1 -1
  145. data/lib/puppet/provider/service/rcng.rb +2 -2
  146. data/lib/puppet/provider/service/runit.rb +2 -8
  147. data/lib/puppet/provider/service/systemd.rb +35 -22
  148. data/lib/puppet/provider/service/windows.rb +8 -0
  149. data/lib/puppet/provider/user/directoryservice.rb +31 -6
  150. data/lib/puppet/provider/user/hpux.rb +1 -1
  151. data/lib/puppet/provider/user/pw.rb +12 -3
  152. data/lib/puppet/provider/user/user_role_add.rb +5 -1
  153. data/lib/puppet/provider/user/useradd.rb +62 -27
  154. data/lib/puppet/provider/user/windows_adsi.rb +4 -5
  155. data/lib/puppet/provider/yumrepo/inifile.rb +2 -2
  156. data/lib/puppet/reference/indirection.rb +2 -2
  157. data/lib/puppet/reference/metaparameter.rb +1 -3
  158. data/lib/puppet/reference/providers.rb +1 -1
  159. data/lib/puppet/reference/type.rb +3 -9
  160. data/lib/puppet/reports.rb +1 -1
  161. data/lib/puppet/resource.rb +18 -1
  162. data/lib/puppet/resource/catalog.rb +1 -1
  163. data/lib/puppet/resource/type.rb +8 -0
  164. data/lib/puppet/settings.rb +43 -3
  165. data/lib/puppet/settings/environment_conf.rb +1 -0
  166. data/lib/puppet/ssl/certificate.rb +2 -1
  167. data/lib/puppet/ssl/certificate_authority.rb +6 -5
  168. data/lib/puppet/ssl/certificate_authority/interface.rb +1 -1
  169. data/lib/puppet/ssl/certificate_factory.rb +2 -2
  170. data/lib/puppet/ssl/host.rb +3 -3
  171. data/lib/puppet/ssl/oids.rb +1 -1
  172. data/lib/puppet/test/test_helper.rb +15 -10
  173. data/lib/puppet/transaction/report.rb +1 -1
  174. data/lib/puppet/transaction/resource_harness.rb +1 -1
  175. data/lib/puppet/type.rb +15 -4
  176. data/lib/puppet/type/cron.rb +1 -1
  177. data/lib/puppet/type/exec.rb +21 -9
  178. data/lib/puppet/type/file.rb +14 -2
  179. data/lib/puppet/type/file/data_sync.rb +5 -1
  180. data/lib/puppet/type/group.rb +4 -2
  181. data/lib/puppet/type/interface.rb +1 -1
  182. data/lib/puppet/type/notify.rb +3 -2
  183. data/lib/puppet/type/package.rb +107 -8
  184. data/lib/puppet/type/schedule.rb +1 -1
  185. data/lib/puppet/type/selboolean.rb +17 -3
  186. data/lib/puppet/type/service.rb +9 -10
  187. data/lib/puppet/type/user.rb +6 -24
  188. data/lib/puppet/type/yumrepo.rb +3 -7
  189. data/lib/puppet/util.rb +47 -25
  190. data/lib/puppet/util/command_line/trollop.rb +1 -1
  191. data/lib/puppet/util/execution.rb +4 -3
  192. data/lib/puppet/util/http_proxy.rb +24 -16
  193. data/lib/puppet/util/instance_loader.rb +1 -1
  194. data/lib/puppet/util/log.rb +1 -1
  195. data/lib/puppet/util/log/destinations.rb +3 -12
  196. data/lib/puppet/util/logging.rb +30 -18
  197. data/lib/puppet/util/metric.rb +2 -2
  198. data/lib/puppet/util/monkey_patches.rb +1 -1
  199. data/lib/puppet/util/nagios_maker.rb +2 -2
  200. data/lib/puppet/util/network_device/cisco/device.rb +1 -1
  201. data/lib/puppet/util/network_device/cisco/interface.rb +2 -2
  202. data/lib/puppet/util/network_device/transport/ssh.rb +1 -1
  203. data/lib/puppet/util/pidlock.rb +12 -6
  204. data/lib/puppet/util/plist.rb +6 -0
  205. data/lib/puppet/util/provider_features.rb +2 -4
  206. data/lib/puppet/util/rdoc.rb +1 -1
  207. data/lib/puppet/util/reference.rb +1 -1
  208. data/lib/puppet/util/resource_template.rb +1 -1
  209. data/lib/puppet/util/selinux.rb +8 -2
  210. data/lib/puppet/util/windows/adsi.rb +60 -30
  211. data/lib/puppet/util/windows/api_types.rb +45 -32
  212. data/lib/puppet/util/windows/eventlog.rb +1 -6
  213. data/lib/puppet/util/windows/principal.rb +8 -6
  214. data/lib/puppet/util/windows/process.rb +16 -15
  215. data/lib/puppet/util/windows/registry.rb +17 -15
  216. data/lib/puppet/util/windows/security.rb +3 -0
  217. data/lib/puppet/util/windows/service.rb +149 -4
  218. data/lib/puppet/util/windows/sid.rb +4 -3
  219. data/lib/puppet/vendor.rb +1 -1
  220. data/lib/puppet/version.rb +1 -1
  221. data/lib/puppet_pal.rb +2 -2
  222. data/locales/puppet.pot +479 -443
  223. data/man/man5/puppet.conf.5 +38 -8
  224. data/man/man8/puppet-agent.8 +2 -2
  225. data/man/man8/puppet-apply.8 +1 -1
  226. data/man/man8/puppet-ca.8 +1 -1
  227. data/man/man8/puppet-catalog.8 +1 -1
  228. data/man/man8/puppet-cert.8 +1 -1
  229. data/man/man8/puppet-certificate.8 +1 -1
  230. data/man/man8/puppet-certificate_request.8 +1 -1
  231. data/man/man8/puppet-certificate_revocation_list.8 +1 -1
  232. data/man/man8/puppet-config.8 +1 -1
  233. data/man/man8/puppet-describe.8 +1 -1
  234. data/man/man8/puppet-device.8 +1 -1
  235. data/man/man8/puppet-doc.8 +1 -1
  236. data/man/man8/puppet-epp.8 +1 -1
  237. data/man/man8/puppet-facts.8 +1 -1
  238. data/man/man8/puppet-filebucket.8 +16 -1
  239. data/man/man8/puppet-generate.8 +1 -1
  240. data/man/man8/puppet-help.8 +1 -1
  241. data/man/man8/puppet-key.8 +1 -1
  242. data/man/man8/puppet-lookup.8 +1 -1
  243. data/man/man8/puppet-man.8 +1 -1
  244. data/man/man8/puppet-master.8 +1 -1
  245. data/man/man8/puppet-module.8 +1 -1
  246. data/man/man8/puppet-node.8 +1 -1
  247. data/man/man8/puppet-parser.8 +1 -1
  248. data/man/man8/puppet-plugin.8 +1 -1
  249. data/man/man8/puppet-report.8 +1 -1
  250. data/man/man8/puppet-resource.8 +1 -1
  251. data/man/man8/puppet-script.8 +1 -1
  252. data/man/man8/puppet-status.8 +1 -1
  253. data/man/man8/puppet.8 +2 -2
  254. data/spec/fixtures/integration/provider/mailalias/aliases/test1 +1 -0
  255. data/spec/fixtures/unit/provider/package/dnfmodule/dnf-module-list.txt +19 -0
  256. data/spec/fixtures/unit/provider/package/pkgng/pkg.version +2 -0
  257. data/spec/fixtures/unit/provider/package/yum/yum-check-update-subscription-manager.txt +9 -0
  258. data/spec/fixtures/unit/provider/service/systemd/list_unit_files_services +9 -0
  259. data/spec/integration/configurer_spec.rb +52 -0
  260. data/spec/integration/defaults_spec.rb +1 -2
  261. data/spec/integration/indirector/facts/facter_spec.rb +4 -0
  262. data/spec/integration/parser/compiler_spec.rb +11 -0
  263. data/spec/integration/provider/service/systemd_spec.rb +8 -5
  264. data/spec/integration/type/file_spec.rb +28 -0
  265. data/spec/integration/type/notify_spec.rb +46 -0
  266. data/spec/integration/util/execution_spec.rb +27 -0
  267. data/spec/integration/util/windows/adsi_spec.rb +6 -1
  268. data/spec/integration/util/windows/registry_spec.rb +7 -7
  269. data/spec/unit/agent_spec.rb +34 -26
  270. data/spec/unit/application/agent_spec.rb +18 -0
  271. data/spec/unit/application/apply_spec.rb +2 -12
  272. data/spec/unit/application/device_spec.rb +1 -1
  273. data/spec/unit/configurer/fact_handler_spec.rb +0 -4
  274. data/spec/unit/configurer_spec.rb +377 -397
  275. data/spec/unit/daemon_spec.rb +0 -1
  276. data/spec/unit/face/facts_spec.rb +9 -0
  277. data/spec/unit/face/plugin_spec.rb +8 -0
  278. data/spec/unit/file_system/uniquefile_spec.rb +11 -0
  279. data/spec/unit/forge/forge_spec.rb +1 -3
  280. data/spec/unit/forge/repository_spec.rb +1 -3
  281. data/spec/unit/indirector/catalog/compiler_spec.rb +45 -26
  282. data/spec/unit/indirector/resource/ral_spec.rb +4 -4
  283. data/spec/unit/module_tool/tar/mini_spec.rb +1 -1
  284. data/spec/unit/network/http/api/indirected_routes_spec.rb +28 -11
  285. data/spec/unit/network/http/connection_spec.rb +43 -1
  286. data/spec/unit/network/http/factory_spec.rb +27 -5
  287. data/spec/unit/network/http/pool_spec.rb +32 -0
  288. data/spec/unit/node_spec.rb +7 -4
  289. data/spec/unit/parser/environment_compiler_spec.rb +7 -0
  290. data/spec/unit/pops/evaluator/evaluating_parser_spec.rb +8 -3
  291. data/spec/unit/pops/validator/validator_spec.rb +7 -0
  292. data/spec/unit/provider/exec_spec.rb +209 -0
  293. data/spec/unit/provider/group/groupadd_spec.rb +30 -1
  294. data/spec/unit/provider/group/windows_adsi_spec.rb +43 -10
  295. data/spec/unit/provider/package/aix_spec.rb +29 -0
  296. data/spec/unit/provider/package/apt_spec.rb +13 -2
  297. data/spec/unit/provider/package/aptitude_spec.rb +1 -0
  298. data/spec/unit/provider/package/aptrpm_spec.rb +1 -1
  299. data/spec/unit/provider/package/dnf_spec.rb +7 -0
  300. data/spec/unit/provider/package/dnfmodule_spec.rb +247 -0
  301. data/spec/unit/provider/package/dpkg_spec.rb +35 -7
  302. data/spec/unit/provider/package/openbsd_spec.rb +17 -0
  303. data/spec/unit/provider/package/pip_spec.rb +93 -22
  304. data/spec/unit/provider/package/pkg_spec.rb +13 -1
  305. data/spec/unit/provider/package/pkgdmg_spec.rb +1 -1
  306. data/spec/unit/provider/package/pkgng_spec.rb +36 -0
  307. data/spec/unit/provider/package/portage_spec.rb +4 -4
  308. data/spec/unit/provider/package/rpm_spec.rb +150 -16
  309. data/spec/unit/provider/package/yum_spec.rb +66 -0
  310. data/spec/unit/provider/package/zypper_spec.rb +13 -0
  311. data/spec/unit/provider/package_targetable_spec.rb +60 -0
  312. data/spec/unit/provider/selmodule_spec.rb +118 -47
  313. data/spec/unit/provider/service/daemontools_spec.rb +24 -0
  314. data/spec/unit/provider/service/launchd_spec.rb +28 -0
  315. data/spec/unit/provider/service/runit_spec.rb +24 -0
  316. data/spec/unit/provider/service/systemd_spec.rb +109 -36
  317. data/spec/unit/provider/service/windows_spec.rb +20 -0
  318. data/spec/unit/provider/user/directoryservice_spec.rb +41 -0
  319. data/spec/unit/provider/user/hpux_spec.rb +2 -2
  320. data/spec/unit/provider/user/openbsd_spec.rb +1 -0
  321. data/spec/unit/provider/user/pw_spec.rb +37 -0
  322. data/spec/unit/provider/user/useradd_spec.rb +122 -15
  323. data/spec/unit/provider/user/windows_adsi_spec.rb +3 -3
  324. data/spec/unit/puppet_pal_2pec.rb +3 -0
  325. data/spec/unit/resource_spec.rb +26 -1
  326. data/spec/unit/ssl/certificate_authority_spec.rb +2 -3
  327. data/spec/unit/ssl/certificate_spec.rb +7 -0
  328. data/spec/unit/test/test_helper_spec.rb +17 -0
  329. data/spec/unit/transaction_spec.rb +18 -0
  330. data/spec/unit/type/exec_spec.rb +15 -12
  331. data/spec/unit/type/file/content_spec.rb +9 -3
  332. data/spec/unit/type/file/source_spec.rb +4 -4
  333. data/spec/unit/type/file_spec.rb +9 -4
  334. data/spec/unit/type/package_spec.rb +8 -0
  335. data/spec/unit/type/schedule_spec.rb +3 -1
  336. data/spec/unit/type/selboolean_spec.rb +4 -6
  337. data/spec/unit/type/service_spec.rb +25 -8
  338. data/spec/unit/type/user_spec.rb +32 -26
  339. data/spec/unit/type/yumrepo_spec.rb +30 -0
  340. data/spec/unit/type_spec.rb +40 -0
  341. data/spec/unit/util/execution_spec.rb +16 -0
  342. data/spec/unit/util/http_proxy_spec.rb +121 -1
  343. data/spec/unit/util/log/destinations_spec.rb +2 -26
  344. data/spec/unit/util/log_spec.rb +0 -112
  345. data/spec/unit/util/logging_spec.rb +200 -0
  346. data/spec/unit/util/pidlock_spec.rb +67 -40
  347. data/spec/unit/util/plist_spec.rb +20 -0
  348. data/spec/unit/util/windows/adsi_spec.rb +55 -4
  349. data/spec/unit/util/windows/api_types_spec.rb +104 -40
  350. data/spec/unit/util/windows/service_spec.rb +9 -0
  351. data/spec/unit/util/windows/sid_spec.rb +2 -2
  352. data/tasks/manpages.rake +1 -0
  353. metadata +16 -11
  354. data/ext/windows/eventlog/Rakefile +0 -32
  355. data/ext/windows/eventlog/puppetres.dll +0 -0
  356. data/ext/windows/eventlog/puppetres.mc +0 -18
  357. data/lib/puppet/pops/loader/null_loader.rb +0 -60
  358. data/locales/ja/puppet.po +0 -12114
  359. data/spec/integration/test/test_helper_spec.rb +0 -31
@@ -45,7 +45,7 @@ module Puppet
45
45
  #
46
46
  def load_vendored
47
47
  Dir.entries(vendor_dir).each do |entry|
48
- if entry.match(/load_(\w+?)\.rb$/)
48
+ if entry =~ /load_(\w+?)\.rb$/
49
49
  load_entry entry
50
50
  end
51
51
  end
@@ -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 = '5.5.16'
9
+ PUPPETVERSION = '5.5.21'
10
10
 
11
11
  ##
12
12
  # version is a public API method intended to always provide a fast and
@@ -828,8 +828,8 @@ module Pal
828
828
  end
829
829
  end
830
830
 
831
- rescue Puppet::ParseErrorWithIssue, Puppet::Error
832
- # already logged and handled by the compiler for these two cases
831
+ rescue Puppet::Error
832
+ # already logged and handled by the compiler, including Puppet::ParseErrorWithIssue
833
833
  raise
834
834
 
835
835
  rescue => detail
@@ -1,16 +1,16 @@
1
1
  # SOME DESCRIPTIVE TITLE.
2
- # Copyright (C) 2019 Puppet, Inc.
2
+ # Copyright (C) 2020 Puppet, Inc.
3
3
  # This file is distributed under the same license as the Puppet automation framework package.
4
- # FIRST AUTHOR <EMAIL@ADDRESS>, 2019.
4
+ # FIRST AUTHOR <EMAIL@ADDRESS>, 2020.
5
5
  #
6
6
  #, fuzzy
7
7
  msgid ""
8
8
  msgstr ""
9
- "Project-Id-Version: Puppet automation framework 5.5.14-76-g2064e7d\n"
9
+ "Project-Id-Version: Puppet automation framework 5.5.20-62-g352a8c16bd\n"
10
10
  "\n"
11
11
  "Report-Msgid-Bugs-To: https://tickets.puppetlabs.com\n"
12
- "POT-Creation-Date: 2019-06-17 20:46+0000\n"
13
- "PO-Revision-Date: 2019-06-17 20:46+0000\n"
12
+ "POT-Creation-Date: 2020-06-19 16:16+0000\n"
13
+ "PO-Revision-Date: 2020-06-19 16:16+0000\n"
14
14
  "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
15
15
  "Language-Team: LANGUAGE <LL@li.org>\n"
16
16
  "Language: \n"
@@ -44,19 +44,19 @@ msgstr ""
44
44
  msgid "Please supply a parameter to perform a Hiera lookup"
45
45
  msgstr ""
46
46
 
47
- #: ../lib/hiera_puppet.rb:74 ../lib/puppet/indirector/hiera.rb:79
47
+ #: ../lib/hiera_puppet.rb:74 ../lib/puppet/indirector/hiera.rb:81
48
48
  msgid "Config file %{hiera_config} not found, using Hiera defaults"
49
49
  msgstr ""
50
50
 
51
- #: ../lib/puppet.rb:130
51
+ #: ../lib/puppet.rb:133
52
52
  msgid "Support for ruby version %{version} is deprecated and will be removed in a future release. See https://puppet.com/docs/puppet/latest/system_requirements.html for a list of supported ruby versions."
53
53
  msgstr ""
54
54
 
55
- #: ../lib/puppet.rb:177
55
+ #: ../lib/puppet.rb:180
56
56
  msgid "Creating %{name} via Puppet.newtype is deprecated and will be removed in a future release. Use Puppet::Type.newtype instead."
57
57
  msgstr ""
58
58
 
59
- #: ../lib/puppet.rb:196
59
+ #: ../lib/puppet.rb:199
60
60
  msgid "The environmentpath setting cannot be empty or nil."
61
61
  msgstr ""
62
62
 
@@ -86,7 +86,7 @@ msgstr ""
86
86
  msgid "puppet agent: applying configuration"
87
87
  msgstr ""
88
88
 
89
- #: ../lib/puppet/agent.rb:127
89
+ #: ../lib/puppet/agent.rb:119
90
90
  msgid "Could not create instance of %{client_class}: %{detail}"
91
91
  msgstr ""
92
92
 
@@ -176,19 +176,19 @@ msgstr ""
176
176
  msgid "The puppet agent daemon"
177
177
  msgstr ""
178
178
 
179
- #: ../lib/puppet/application/agent.rb:360
179
+ #: ../lib/puppet/application/agent.rb:374
180
180
  msgid "Fingerprint asked but no certificate nor certificate request have yet been issued"
181
181
  msgstr ""
182
182
 
183
- #: ../lib/puppet/application/agent.rb:365
183
+ #: ../lib/puppet/application/agent.rb:379
184
184
  msgid "Could not get fingerprint for digest '%{digest}'"
185
185
  msgstr ""
186
186
 
187
- #: ../lib/puppet/application/agent.rb:389
187
+ #: ../lib/puppet/application/agent.rb:403
188
188
  msgid "Starting Puppet client version %{version}"
189
189
  msgstr ""
190
190
 
191
- #: ../lib/puppet/application/agent.rb:405
191
+ #: ../lib/puppet/application/agent.rb:419
192
192
  msgid "The puppet agent command does not take parameters"
193
193
  msgstr ""
194
194
 
@@ -241,7 +241,7 @@ msgstr ""
241
241
  msgid "You must specify the hosts to apply to; valid values are an array or the symbol :all"
242
242
  msgstr ""
243
243
 
244
- #: ../lib/puppet/application/describe.rb:181
244
+ #: ../lib/puppet/application/describe.rb:175
245
245
  msgid "Display help about resource types"
246
246
  msgstr ""
247
247
 
@@ -355,38 +355,38 @@ msgstr ""
355
355
  msgid "Store and retrieve files in a filebucket"
356
356
  msgstr ""
357
357
 
358
- #: ../lib/puppet/application/filebucket.rb:208
358
+ #: ../lib/puppet/application/filebucket.rb:221
359
359
  msgid "You must specify a file to back up"
360
360
  msgstr ""
361
361
 
362
- #: ../lib/puppet/application/filebucket.rb:212
362
+ #: ../lib/puppet/application/filebucket.rb:225
363
363
  msgid "%{file}: no such file"
364
364
  msgstr ""
365
365
 
366
- #: ../lib/puppet/application/filebucket.rb:216
366
+ #: ../lib/puppet/application/filebucket.rb:229
367
367
  msgid "%{file}: cannot read file"
368
368
  msgstr ""
369
369
 
370
- #: ../lib/puppet/application/filebucket.rb:238 ../lib/puppet/application/filebucket.rb:261
370
+ #: ../lib/puppet/application/filebucket.rb:251 ../lib/puppet/application/filebucket.rb:274
371
371
  msgid "Need exactly two arguments: filebucket diff <file_a> <file_b>"
372
372
  msgstr ""
373
373
 
374
- #: ../lib/puppet/application/filebucket.rb:258
374
+ #: ../lib/puppet/application/filebucket.rb:271
375
375
  msgid "Comparing %{checksum_a} %{checksum_b} %{file_a} %{file_b}"
376
376
  msgstr ""
377
377
 
378
- #: ../lib/puppet/application/filebucket.rb:272
378
+ #: ../lib/puppet/application/filebucket.rb:285
379
379
  msgid "Cancelling"
380
380
  msgstr ""
381
381
 
382
382
  #. TRANSLATORS 'server_list' is the name of a setting and should not be translated
383
- #: ../lib/puppet/application/filebucket.rb:293
383
+ #: ../lib/puppet/application/filebucket.rb:306
384
384
  msgid "Selected server from first entry of the `server_list` setting: %{server}:%{port}"
385
385
  msgstr ""
386
386
 
387
387
  #. TRANSLATORS 'server' is the name of a setting and should not be translated
388
388
  #. TRANSLATORS 'server' is the name of a setting and should not be translated
389
- #: ../lib/puppet/application/filebucket.rb:300 ../lib/puppet/indirector/request.rb:209
389
+ #: ../lib/puppet/application/filebucket.rb:313 ../lib/puppet/indirector/request.rb:209
390
390
  msgid "Selected server from the `server` setting: %{server}"
391
391
  msgstr ""
392
392
 
@@ -520,85 +520,93 @@ msgstr ""
520
520
  msgid "Not using cached catalog because its environment '%{catalog_env}' does not match '%{local_env}'"
521
521
  msgstr ""
522
522
 
523
- #: ../lib/puppet/configurer.rb:96 ../lib/puppet/configurer.rb:173
523
+ #: ../lib/puppet/configurer.rb:96 ../lib/puppet/configurer.rb:171
524
524
  msgid "Using cached catalog from environment '%{catalog_env}'"
525
525
  msgstr ""
526
526
 
527
- #: ../lib/puppet/configurer.rb:166
527
+ #: ../lib/puppet/configurer.rb:164
528
528
  msgid "Could not retrieve catalog; skipping run"
529
529
  msgstr ""
530
530
 
531
- #: ../lib/puppet/configurer.rb:184
531
+ #: ../lib/puppet/configurer.rb:180
532
532
  msgid "Applied catalog in %{seconds} seconds"
533
533
  msgstr ""
534
534
 
535
- #: ../lib/puppet/configurer.rb:224
535
+ #: ../lib/puppet/configurer.rb:220
536
536
  msgid "Could not select a functional puppet master from server_list: '%{server_list}'"
537
537
  msgstr ""
538
538
 
539
539
  #. TRANSLATORS 'server_list' is the name of a setting and should not be translated
540
- #: ../lib/puppet/configurer.rb:227
540
+ #: ../lib/puppet/configurer.rb:223
541
541
  msgid "Selected puppet server from the `server_list` setting: %{server}:%{port}"
542
542
  msgstr ""
543
543
 
544
- #: ../lib/puppet/configurer.rb:259
544
+ #: ../lib/puppet/configurer.rb:254
545
545
  msgid "Local environment: '%{local_env}' doesn't match the environment of the cached catalog '%{catalog_env}', switching agent to '%{catalog_env}'."
546
546
  msgstr ""
547
547
 
548
- #: ../lib/puppet/configurer.rb:304
548
+ #: ../lib/puppet/configurer.rb:299
549
549
  msgid "Local environment: '%{local_env}' doesn't match server specified node environment '%{node_env}', switching agent to '%{node_env}'."
550
550
  msgstr ""
551
551
 
552
- #: ../lib/puppet/configurer.rb:309
552
+ #: ../lib/puppet/configurer.rb:304
553
553
  msgid "Using configured environment '%{env}'"
554
554
  msgstr ""
555
555
 
556
- #: ../lib/puppet/configurer.rb:313
556
+ #: ../lib/puppet/configurer.rb:308
557
557
  msgid "Unable to fetch my node definition, but the agent run will continue:"
558
558
  msgstr ""
559
559
 
560
- #: ../lib/puppet/configurer.rb:337
560
+ #: ../lib/puppet/configurer.rb:332
561
561
  msgid "Not using catalog because its environment '%{catalog_env}' does not match agent specified environment '%{local_env}' and strict_environment_mode is set"
562
562
  msgstr ""
563
563
 
564
- #: ../lib/puppet/configurer.rb:348
564
+ #: ../lib/puppet/configurer.rb:343
565
565
  msgid "Catalog environment didn't stabilize after %{tries} fetches, aborting run"
566
566
  msgstr ""
567
567
 
568
- #: ../lib/puppet/configurer.rb:350
568
+ #: ../lib/puppet/configurer.rb:345
569
569
  msgid "Local environment: '%{local_env}' doesn't match server specified environment '%{catalog_env}', restarting agent run with environment '%{catalog_env}'"
570
570
  msgstr ""
571
571
 
572
- #: ../lib/puppet/configurer.rb:369
572
+ #: ../lib/puppet/configurer.rb:385
573
573
  msgid "Failed to apply catalog: %{detail}"
574
574
  msgstr ""
575
575
 
576
- #: ../lib/puppet/configurer.rb:392
576
+ #: ../lib/puppet/configurer.rb:417
577
577
  msgid "Puppet server %{host}:%{port} is unavailable: %{code} %{reason}"
578
578
  msgstr ""
579
579
 
580
580
  #. TRANSLATORS 'server_list' is the name of a setting and should not be translated
581
- #: ../lib/puppet/configurer.rb:396
581
+ #: ../lib/puppet/configurer.rb:421
582
582
  msgid "Unable to connect to server from server_list setting: %{detail}"
583
583
  msgstr ""
584
584
 
585
- #: ../lib/puppet/configurer.rb:408 ../lib/puppet/face/report.rb:47
585
+ #: ../lib/puppet/configurer.rb:433 ../lib/puppet/face/report.rb:47
586
586
  msgid "Could not send report: %{detail}"
587
587
  msgstr ""
588
588
 
589
- #: ../lib/puppet/configurer.rb:417
589
+ #: ../lib/puppet/configurer.rb:442
590
590
  msgid "Could not save last run local report: %{detail}"
591
591
  msgstr ""
592
592
 
593
- #: ../lib/puppet/configurer.rb:429
593
+ #: ../lib/puppet/configurer.rb:462
594
+ msgid "Uploading facts for %{node} to %{server}"
595
+ msgstr ""
596
+
597
+ #: ../lib/puppet/configurer.rb:473
598
+ msgid "Failed to submit facts: %{detail}"
599
+ msgstr ""
600
+
601
+ #: ../lib/puppet/configurer.rb:488
594
602
  msgid "Could not run command from %{setting}: %{detail}"
595
603
  msgstr ""
596
604
 
597
- #: ../lib/puppet/configurer.rb:447
605
+ #: ../lib/puppet/configurer.rb:506
598
606
  msgid "Could not retrieve catalog from cache: %{detail}"
599
607
  msgstr ""
600
608
 
601
- #: ../lib/puppet/configurer.rb:467
609
+ #: ../lib/puppet/configurer.rb:526
602
610
  msgid "Could not retrieve catalog from remote server: %{detail}"
603
611
  msgstr ""
604
612
 
@@ -662,63 +670,63 @@ msgstr ""
662
670
  msgid "a data type can only have one implementation"
663
671
  msgstr ""
664
672
 
665
- #: ../lib/puppet/defaults.rb:126
673
+ #: ../lib/puppet/defaults.rb:130
666
674
  msgid "Cannot disable unrecognized warning types %{invalid}."
667
675
  msgstr ""
668
676
 
669
- #: ../lib/puppet/defaults.rb:127
677
+ #: ../lib/puppet/defaults.rb:131
670
678
  msgid "Valid values are %{values}."
671
679
  msgstr ""
672
680
 
673
681
  #. TRANSLATORS 'data_binding_terminus' is a setting and should not be translated
674
- #: ../lib/puppet/defaults.rb:473
682
+ #: ../lib/puppet/defaults.rb:484
675
683
  msgid "Setting 'data_binding_terminus' is deprecated."
676
684
  msgstr ""
677
685
 
678
686
  #. TRANSLATORS 'hiera' should not be translated
679
- #: ../lib/puppet/defaults.rb:475
687
+ #: ../lib/puppet/defaults.rb:486
680
688
  msgid "Convert custom terminus to hiera 5 API."
681
689
  msgstr ""
682
690
 
683
691
  #. TRANSLATORS 'environment_data_provider' is a setting and should not be translated
684
- #: ../lib/puppet/defaults.rb:629
692
+ #: ../lib/puppet/defaults.rb:645
685
693
  msgid "Setting 'environment_data_provider' is deprecated."
686
694
  msgstr ""
687
695
 
688
- #: ../lib/puppet/defaults.rb:731
696
+ #: ../lib/puppet/defaults.rb:747
689
697
  msgid "Certificate names must be lower case"
690
698
  msgstr ""
691
699
 
692
- #: ../lib/puppet/defaults.rb:972 ../lib/puppet/settings/enum_setting.rb:13 ../lib/puppet/settings/symbolic_enum_setting.rb:14
700
+ #: ../lib/puppet/defaults.rb:992 ../lib/puppet/settings/enum_setting.rb:13 ../lib/puppet/settings/symbolic_enum_setting.rb:14
693
701
  msgid "Invalid value '%{value}' for parameter %{name}. Allowed values are '%{allowed_values}'"
694
702
  msgstr ""
695
703
 
696
- #: ../lib/puppet/defaults.rb:1043
704
+ #: ../lib/puppet/defaults.rb:1063
697
705
  msgid "The 'caprivatedir' setting is deprecated and will be removed in Puppet 6."
698
706
  msgstr ""
699
707
 
700
- #: ../lib/puppet/defaults.rb:1070
708
+ #: ../lib/puppet/defaults.rb:1090
701
709
  msgid "The 'capass' setting is deprecated and will be removed in Puppet 6."
702
710
  msgstr ""
703
711
 
704
- #: ../lib/puppet/defaults.rb:1310
712
+ #: ../lib/puppet/defaults.rb:1340
705
713
  msgid "The 'ca' setting is deprecated and will be removed in Puppet 6."
706
714
  msgstr ""
707
715
 
708
- #: ../lib/puppet/defaults.rb:1810 ../lib/puppet/settings.rb:1172
716
+ #: ../lib/puppet/defaults.rb:1854 ../lib/puppet/settings.rb:1212
709
717
  msgid "Setting %{name} is deprecated."
710
718
  msgstr ""
711
719
 
712
720
  #. TRANSLATORS 'pluginsync' is a setting and should not be translated
713
- #: ../lib/puppet/defaults.rb:1861
721
+ #: ../lib/puppet/defaults.rb:1905
714
722
  msgid "Setting 'pluginsync' is deprecated."
715
723
  msgstr ""
716
724
 
717
- #: ../lib/puppet/error.rb:69
725
+ #: ../lib/puppet/error.rb:77
718
726
  msgid "Could not parse for environment %{environment}: %{message}"
719
727
  msgstr ""
720
728
 
721
- #: ../lib/puppet/error.rb:70 ../lib/puppet/parser/compiler.rb:41
729
+ #: ../lib/puppet/error.rb:78 ../lib/puppet/parser/compiler.rb:41
722
730
  msgid "%{message} on node %{node}"
723
731
  msgstr ""
724
732
 
@@ -939,41 +947,37 @@ msgstr ""
939
947
  msgid "all | <setting> [<setting> ...]"
940
948
  msgstr ""
941
949
 
942
- #: ../lib/puppet/face/config.rb:83
943
- msgid "New environment loaders generated from the requested section."
944
- msgstr ""
945
-
946
- #: ../lib/puppet/face/config.rb:137
950
+ #: ../lib/puppet/face/config.rb:99
947
951
  msgid "No section specified; defaulting to '%{section_name}'."
948
952
  msgstr ""
949
953
 
950
954
  #. TRANSLATORS '--section' is a command line option and should not be translated
951
- #: ../lib/puppet/face/config.rb:140
955
+ #: ../lib/puppet/face/config.rb:102
952
956
  msgid "Set the config section by using the `--section` flag."
953
957
  msgstr ""
954
958
 
955
959
  #. TRANSLATORS `puppet config --section user print foo` is a command line example and should not be translated
956
- #: ../lib/puppet/face/config.rb:142
960
+ #: ../lib/puppet/face/config.rb:104
957
961
  msgid "For example, `puppet config --section user print foo`."
958
962
  msgstr ""
959
963
 
960
- #: ../lib/puppet/face/config.rb:143
964
+ #: ../lib/puppet/face/config.rb:105
961
965
  msgid "For more information, see https://puppet.com/docs/puppet/latest/configuration.html"
962
966
  msgstr ""
963
967
 
964
- #: ../lib/puppet/face/config.rb:150
968
+ #: ../lib/puppet/face/config.rb:112
965
969
  msgid "Resolving settings from section '%{section_name}' in environment '%{environment_name}'"
966
970
  msgstr ""
967
971
 
968
- #: ../lib/puppet/face/config.rb:155
972
+ #: ../lib/puppet/face/config.rb:117
969
973
  msgid "Set Puppet's settings."
970
974
  msgstr ""
971
975
 
972
- #: ../lib/puppet/face/config.rb:156
976
+ #: ../lib/puppet/face/config.rb:118
973
977
  msgid "[setting_name] [setting_value]"
974
978
  msgstr ""
975
979
 
976
- #: ../lib/puppet/face/config.rb:184
980
+ #: ../lib/puppet/face/config.rb:146
977
981
  msgid ""
978
982
  "The environment should be set in either the `[user]`, `[agent]`, or `[master]`\n"
979
983
  "section. Variables set in the `[agent]` section are used when running\n"
@@ -985,25 +989,25 @@ msgid ""
985
989
  "https://puppet.com/docs/puppet/latest/configuration.html#environment\n"
986
990
  msgstr ""
987
991
 
988
- #: ../lib/puppet/face/config.rb:212
992
+ #: ../lib/puppet/face/config.rb:174
989
993
  msgid "Delete a Puppet setting."
990
994
  msgstr ""
991
995
 
992
- #: ../lib/puppet/face/config.rb:213
996
+ #: ../lib/puppet/face/config.rb:175
993
997
  msgid "<setting>"
994
998
  msgstr ""
995
999
 
996
1000
  #. TRANSLATORS 'main' is a specific section name and should not be translated
997
- #: ../lib/puppet/face/config.rb:250
1001
+ #: ../lib/puppet/face/config.rb:212
998
1002
  msgid "Deleted setting from '%{section_name}': '%{setting_string}'"
999
1003
  msgstr ""
1000
1004
 
1001
- #: ../lib/puppet/face/config.rb:253
1005
+ #: ../lib/puppet/face/config.rb:215
1002
1006
  msgid "No setting found in configuration file for section '%{section_name}' setting name '%{name}'"
1003
1007
  msgstr ""
1004
1008
 
1005
1009
  #. TRANSLATORS the 'puppet.conf' is a specific file and should not be translated
1006
- #: ../lib/puppet/face/config.rb:260
1010
+ #: ../lib/puppet/face/config.rb:222
1007
1011
  msgid "The puppet.conf file does not exist %{puppet_conf}"
1008
1012
  msgstr ""
1009
1013
 
@@ -1725,11 +1729,11 @@ msgid ""
1725
1729
  " the files downloaded, which will be empty if none were retrieved.\n"
1726
1730
  msgstr ""
1727
1731
 
1728
- #: ../lib/puppet/face/plugin.rb:50
1732
+ #: ../lib/puppet/face/plugin.rb:57
1729
1733
  msgid "No plugins downloaded."
1730
1734
  msgstr ""
1731
1735
 
1732
- #: ../lib/puppet/face/plugin.rb:52
1736
+ #: ../lib/puppet/face/plugin.rb:59
1733
1737
  msgid "Downloaded these plugins: %{plugins}"
1734
1738
  msgstr ""
1735
1739
 
@@ -2360,11 +2364,11 @@ msgid "Got an event from invalid vertex %{source}"
2360
2364
  msgstr ""
2361
2365
 
2362
2366
  #. TRANSLATORS "negative or zero" refers to the count of paths
2363
- #: ../lib/puppet/graph/simple_graph.rb:199
2367
+ #: ../lib/puppet/graph/simple_graph.rb:200
2364
2368
  msgid "negative or zero max_paths"
2365
2369
  msgstr ""
2366
2370
 
2367
- #: ../lib/puppet/graph/simple_graph.rb:231
2371
+ #: ../lib/puppet/graph/simple_graph.rb:232
2368
2372
  msgid ""
2369
2373
  "Found %{num} dependency cycle:\n"
2370
2374
  msgid_plural ""
@@ -2372,12 +2376,12 @@ msgid_plural ""
2372
2376
  msgstr[0] ""
2373
2377
  msgstr[1] ""
2374
2378
 
2375
- #: ../lib/puppet/graph/simple_graph.rb:240
2379
+ #: ../lib/puppet/graph/simple_graph.rb:241
2376
2380
  msgid "Cycle graph written to %{filename}."
2377
2381
  msgstr ""
2378
2382
 
2379
2383
  #. TRANSLATORS '--graph' refers to a command line option and OmniGraffle and GraphViz are program names and should not be translated
2380
- #: ../lib/puppet/graph/simple_graph.rb:243
2384
+ #: ../lib/puppet/graph/simple_graph.rb:244
2381
2385
  msgid "Try the '--graph' option and opening the resulting '.dot' file in OmniGraffle or GraphViz"
2382
2386
  msgstr ""
2383
2387
 
@@ -2510,7 +2514,7 @@ msgstr ""
2510
2514
  msgid "Could not find node '%{name}'; cannot compile"
2511
2515
  msgstr ""
2512
2516
 
2513
- #: ../lib/puppet/indirector/catalog/compiler.rb:403
2517
+ #: ../lib/puppet/indirector/catalog/compiler.rb:411
2514
2518
  msgid "Could not retrieve fact %{fact}"
2515
2519
  msgstr ""
2516
2520
 
@@ -2967,7 +2971,7 @@ msgstr ""
2967
2971
  msgid "Could not understand URL %{key}: %{detail}"
2968
2972
  msgstr ""
2969
2973
 
2970
- #: ../lib/puppet/indirector/resource/ral.rb:61
2974
+ #: ../lib/puppet/indirector/resource/ral.rb:59
2971
2975
  msgid "Could not find type %{request_type}"
2972
2976
  msgstr ""
2973
2977
 
@@ -4040,45 +4044,45 @@ msgstr ""
4040
4044
  msgid "No request key specified in %{uri}"
4041
4045
  msgstr ""
4042
4046
 
4043
- #: ../lib/puppet/network/http/api/indirected_routes.rb:122
4047
+ #: ../lib/puppet/network/http/api/indirected_routes.rb:133
4044
4048
  msgid "Could not find %{value0} %{key}"
4045
4049
  msgstr ""
4046
4050
 
4047
- #: ../lib/puppet/network/http/api/indirected_routes.rb:129
4051
+ #: ../lib/puppet/network/http/api/indirected_routes.rb:140
4048
4052
  msgid "Rendered result in %{format}"
4049
4053
  msgstr ""
4050
4054
 
4051
- #: ../lib/puppet/network/http/api/indirected_routes.rb:135
4055
+ #: ../lib/puppet/network/http/api/indirected_routes.rb:146
4052
4056
  msgid "Sent response"
4053
4057
  msgstr ""
4054
4058
 
4055
- #: ../lib/puppet/network/http/api/indirected_routes.rb:143
4059
+ #: ../lib/puppet/network/http/api/indirected_routes.rb:154
4056
4060
  msgid "Could not find %{indirection} %{key}"
4057
4061
  msgstr ""
4058
4062
 
4059
- #: ../lib/puppet/network/http/api/indirected_routes.rb:155
4063
+ #: ../lib/puppet/network/http/api/indirected_routes.rb:166
4060
4064
  msgid "Could not find instances in %{indirection} with '%{key}'"
4061
4065
  msgstr ""
4062
4066
 
4063
- #: ../lib/puppet/network/http/api/indirected_routes.rb:202 ../lib/puppet/network/http/request.rb:60
4067
+ #: ../lib/puppet/network/http/api/indirected_routes.rb:213 ../lib/puppet/network/http/request.rb:60
4064
4068
  msgid "No supported formats are acceptable (Accept: %{accepted_formats})"
4065
4069
  msgstr ""
4066
4070
 
4067
- #: ../lib/puppet/network/http/api/indirected_routes.rb:227
4071
+ #: ../lib/puppet/network/http/api/indirected_routes.rb:238
4068
4072
  msgid "The request body is invalid: %{message}"
4069
4073
  msgstr ""
4070
4074
 
4071
4075
  #. TRANSLATORS "mime-type" is a keyword and should not be translated
4072
4076
  #. TRANSLATORS "mime-type" is a keyword and should not be translated
4073
- #: ../lib/puppet/network/http/api/indirected_routes.rb:233 ../lib/puppet/network/http/request.rb:31
4077
+ #: ../lib/puppet/network/http/api/indirected_routes.rb:244 ../lib/puppet/network/http/request.rb:31
4074
4078
  msgid "Client sent a mime-type (%{header}) that doesn't correspond to a format we support"
4075
4079
  msgstr ""
4076
4080
 
4077
- #: ../lib/puppet/network/http/api/indirected_routes.rb:239
4081
+ #: ../lib/puppet/network/http/api/indirected_routes.rb:250
4078
4082
  msgid "No support for http method %{http_method}"
4079
4083
  msgstr ""
4080
4084
 
4081
- #: ../lib/puppet/network/http/api/indirected_routes.rb:243
4085
+ #: ../lib/puppet/network/http/api/indirected_routes.rb:254
4082
4086
  msgid "No support for plurality %{indirection} for %{http_method} operations"
4083
4087
  msgstr ""
4084
4088
 
@@ -4086,19 +4090,19 @@ msgstr ""
4086
4090
  msgid "Not a valid indirection type"
4087
4091
  msgstr ""
4088
4092
 
4089
- #: ../lib/puppet/network/http/api/master/v3/environment.rb:11
4093
+ #: ../lib/puppet/network/http/api/master/v3/environment.rb:14
4090
4094
  msgid "%{env_name} is not a known environment"
4091
4095
  msgstr ""
4092
4096
 
4093
- #: ../lib/puppet/network/http/api/master/v3/environment.rb:40
4097
+ #: ../lib/puppet/network/http/api/master/v3/environment.rb:43
4094
4098
  msgid "Application %{application} assigns nodes to non-existent components: %{component_list}"
4095
4099
  msgstr ""
4096
4100
 
4097
- #: ../lib/puppet/network/http/api/master/v3/environment.rb:46
4101
+ #: ../lib/puppet/network/http/api/master/v3/environment.rb:49
4098
4102
  msgid "Application %{application} has components without assigned nodes: %{component_list}"
4099
4103
  msgstr ""
4100
4104
 
4101
- #: ../lib/puppet/network/http/api/master/v3/environment.rb:55
4105
+ #: ../lib/puppet/network/http/api/master/v3/environment.rb:58
4102
4106
  msgid "Application %{app} assigns multiple nodes to component %{comp}"
4103
4107
  msgstr ""
4104
4108
 
@@ -4110,45 +4114,45 @@ msgstr ""
4110
4114
  msgid "Unrecognized option(s): %{opts}"
4111
4115
  msgstr ""
4112
4116
 
4113
- #: ../lib/puppet/network/http/connection.rb:210
4117
+ #: ../lib/puppet/network/http/connection.rb:214
4114
4118
  msgid "Too many HTTP redirections for %{host}:%{port}"
4115
4119
  msgstr ""
4116
4120
 
4117
4121
  #. TRANSLATORS: Used in the phrase:
4118
4122
  #. "Received a response from the remote server."
4119
- #: ../lib/puppet/network/http/connection.rb:241
4123
+ #: ../lib/puppet/network/http/connection.rb:245
4120
4124
  msgid "the remote server"
4121
4125
  msgstr ""
4122
4126
 
4123
- #: ../lib/puppet/network/http/connection.rb:245
4127
+ #: ../lib/puppet/network/http/connection.rb:249
4124
4128
  msgid "Received a %{status_code} response from %{server_hostname}, but the Retry-After header value of \"%{retry_after}\" could not be converted to an integer or RFC 2822 date."
4125
4129
  msgstr ""
4126
4130
 
4127
- #: ../lib/puppet/network/http/connection.rb:256
4131
+ #: ../lib/puppet/network/http/connection.rb:260
4128
4132
  msgid "Received a %{status_code} response from %{server_hostname}. Sleeping for %{retry_sleep} seconds before retrying the request."
4129
4133
  msgstr ""
4130
4134
 
4131
- #: ../lib/puppet/network/http/connection.rb:318
4135
+ #: ../lib/puppet/network/http/connection.rb:321
4132
4136
  msgid "request %{uri} interrupted after %{elapsed} seconds"
4133
4137
  msgstr ""
4134
4138
 
4135
- #: ../lib/puppet/network/http/connection.rb:320
4139
+ #: ../lib/puppet/network/http/connection.rb:323
4136
4140
  msgid "request %{uri} timed out after %{elapsed} seconds"
4137
4141
  msgstr ""
4138
4142
 
4139
- #: ../lib/puppet/network/http/connection.rb:322
4143
+ #: ../lib/puppet/network/http/connection.rb:325
4140
4144
  msgid "request %{uri} failed: %{msg}"
4141
4145
  msgstr ""
4142
4146
 
4143
- #: ../lib/puppet/network/http/connection.rb:348 ../lib/puppet/ssl/validator/default_validator.rb:101
4147
+ #: ../lib/puppet/network/http/connection.rb:350 ../lib/puppet/ssl/validator/default_validator.rb:101
4144
4148
  msgid "expected one of %{certnames}"
4145
4149
  msgstr ""
4146
4150
 
4147
- #: ../lib/puppet/network/http/connection.rb:350 ../lib/puppet/ssl/validator/default_validator.rb:103
4151
+ #: ../lib/puppet/network/http/connection.rb:352 ../lib/puppet/ssl/validator/default_validator.rb:103
4148
4152
  msgid "expected %{certname}"
4149
4153
  msgstr ""
4150
4154
 
4151
- #: ../lib/puppet/network/http/connection.rb:353 ../lib/puppet/ssl/validator/default_validator.rb:106
4155
+ #: ../lib/puppet/network/http/connection.rb:355 ../lib/puppet/ssl/validator/default_validator.rb:106
4152
4156
  msgid "Server hostname '%{host}' did not match server certificate; %{expected_certnames}"
4153
4157
  msgstr ""
4154
4158
 
@@ -4196,7 +4200,7 @@ msgstr ""
4196
4200
  msgid "Could not resolve %{ip}: %{detail}"
4197
4201
  msgstr ""
4198
4202
 
4199
- #: ../lib/puppet/network/http/pool.rb:65
4203
+ #: ../lib/puppet/network/http/pool.rb:68
4200
4204
  msgid "Failed to close connection for %{site}: %{detail}"
4201
4205
  msgstr ""
4202
4206
 
@@ -4304,19 +4308,19 @@ msgstr ""
4304
4308
  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."
4305
4309
  msgstr ""
4306
4310
 
4307
- #: ../lib/puppet/node/environment.rb:570 ../lib/puppet/pops/loaders.rb:298
4311
+ #: ../lib/puppet/node/environment.rb:572 ../lib/puppet/pops/loaders.rb:298
4308
4312
  msgid "Could not parse for environment %{env}: %{detail}"
4309
4313
  msgstr ""
4310
4314
 
4311
- #: ../lib/puppet/parameter.rb:341
4315
+ #: ../lib/puppet/parameter.rb:349
4312
4316
  msgid "No resource set for %{name}"
4313
4317
  msgstr ""
4314
4318
 
4315
- #: ../lib/puppet/parameter.rb:428
4319
+ #: ../lib/puppet/parameter.rb:436
4316
4320
  msgid "Munging failed for value %{value} in class %{class_name}: %{detail}"
4317
4321
  msgstr ""
4318
4322
 
4319
- #: ../lib/puppet/parameter.rb:462
4323
+ #: ../lib/puppet/parameter.rb:470
4320
4324
  msgid "Validate method failed for class %{class_name}: %{detail}"
4321
4325
  msgstr ""
4322
4326
 
@@ -4394,7 +4398,7 @@ msgid "For more information, see https://puppet.com/docs/puppet/latest/environme
4394
4398
  msgstr ""
4395
4399
 
4396
4400
  #. TRANSLATORS "stage" is a keyword in Puppet and should not be translated
4397
- #: ../lib/puppet/parser/compiler.rb:98 ../lib/puppet/parser/environment_compiler.rb:134
4401
+ #: ../lib/puppet/parser/compiler.rb:98 ../lib/puppet/parser/environment_compiler.rb:137
4398
4402
  msgid "Only classes can set 'stage'; normal resources like %{resource} cannot change run stage"
4399
4403
  msgstr ""
4400
4404
 
@@ -4529,11 +4533,11 @@ msgstr ""
4529
4533
  msgid "For initializing compiler"
4530
4534
  msgstr ""
4531
4535
 
4532
- #: ../lib/puppet/parser/compiler/catalog_validator/env_relationship_validator.rb:17
4536
+ #: ../lib/puppet/parser/compiler/catalog_validator/env_relationship_validator.rb:19
4533
4537
  msgid "Capability '%{cap}' referenced by '%{param}' is never exported"
4534
4538
  msgstr ""
4535
4539
 
4536
- #: ../lib/puppet/parser/compiler/catalog_validator/env_relationship_validator.rb:56
4540
+ #: ../lib/puppet/parser/compiler/catalog_validator/env_relationship_validator.rb:58
4537
4541
  msgid "'%{value}' is exported by both '%{hash}' and '%{resource}'"
4538
4542
  msgstr ""
4539
4543
 
@@ -4545,55 +4549,55 @@ msgstr ""
4545
4549
  msgid "Could not find resource '%{res}' in parameter '%{param}'"
4546
4550
  msgstr ""
4547
4551
 
4548
- #: ../lib/puppet/parser/compiler/catalog_validator/site_validator.rb:14
4552
+ #: ../lib/puppet/parser/compiler/catalog_validator/site_validator.rb:16
4549
4553
  msgid "Only application components can appear inside a site - %{res} is not allowed"
4550
4554
  msgstr ""
4551
4555
 
4552
- #: ../lib/puppet/parser/environment_compiler.rb:12
4556
+ #: ../lib/puppet/parser/environment_compiler.rb:13
4553
4557
  msgid "%{detail} in environment %{env}"
4554
4558
  msgstr ""
4555
4559
 
4556
- #: ../lib/puppet/parser/environment_compiler.rb:59
4560
+ #: ../lib/puppet/parser/environment_compiler.rb:62
4557
4561
  msgid "For compiling environment catalog %{env}"
4558
4562
  msgstr ""
4559
4563
 
4560
- #: ../lib/puppet/parser/environment_compiler.rb:62
4564
+ #: ../lib/puppet/parser/environment_compiler.rb:65
4561
4565
  msgid "Env Compile: Created settings scope"
4562
4566
  msgstr ""
4563
4567
 
4564
- #: ../lib/puppet/parser/environment_compiler.rb:64
4568
+ #: ../lib/puppet/parser/environment_compiler.rb:67
4565
4569
  msgid "Env Compile: Evaluated main"
4566
4570
  msgstr ""
4567
4571
 
4568
- #: ../lib/puppet/parser/environment_compiler.rb:66
4572
+ #: ../lib/puppet/parser/environment_compiler.rb:69
4569
4573
  msgid "Env Compile: Evaluated site"
4570
4574
  msgstr ""
4571
4575
 
4572
- #: ../lib/puppet/parser/environment_compiler.rb:68
4576
+ #: ../lib/puppet/parser/environment_compiler.rb:71
4573
4577
  msgid "Env Compile: Evaluated application instances"
4574
4578
  msgstr ""
4575
4579
 
4576
- #: ../lib/puppet/parser/environment_compiler.rb:70
4580
+ #: ../lib/puppet/parser/environment_compiler.rb:73
4577
4581
  msgid "Env Compile: Prune"
4578
4582
  msgstr ""
4579
4583
 
4580
- #: ../lib/puppet/parser/environment_compiler.rb:72
4584
+ #: ../lib/puppet/parser/environment_compiler.rb:75
4581
4585
  msgid "Env Compile: Validate Catalog pre-finish"
4582
4586
  msgstr ""
4583
4587
 
4584
- #: ../lib/puppet/parser/environment_compiler.rb:76
4588
+ #: ../lib/puppet/parser/environment_compiler.rb:79
4585
4589
  msgid "Env Compile: Finished catalog"
4586
4590
  msgstr ""
4587
4591
 
4588
- #: ../lib/puppet/parser/environment_compiler.rb:80
4592
+ #: ../lib/puppet/parser/environment_compiler.rb:83
4589
4593
  msgid "Env Compile: Validate Catalog final"
4590
4594
  msgstr ""
4591
4595
 
4592
- #: ../lib/puppet/parser/environment_compiler.rb:156
4596
+ #: ../lib/puppet/parser/environment_compiler.rb:159
4593
4597
  msgid "Environment Compiler: Could not find a site definition to evaluate"
4594
4598
  msgstr ""
4595
4599
 
4596
- #: ../lib/puppet/parser/environment_compiler.rb:162
4600
+ #: ../lib/puppet/parser/environment_compiler.rb:165
4597
4601
  msgid "Evaluated application %{resource}"
4598
4602
  msgstr ""
4599
4603
 
@@ -4751,23 +4755,23 @@ msgstr ""
4751
4755
  msgid "Attempt to reassign attribute '%{name}' in '%{resource}' caused by multiple consumed mappings to the same attribute"
4752
4756
  msgstr ""
4753
4757
 
4754
- #: ../lib/puppet/parser/resource.rb:362
4758
+ #: ../lib/puppet/parser/resource.rb:363
4755
4759
  msgid "Parameter '%{name}' is already set on %{resource}; cannot redefine"
4756
4760
  msgstr ""
4757
4761
 
4758
- #: ../lib/puppet/parser/resource.rb:365
4762
+ #: ../lib/puppet/parser/resource.rb:366
4759
4763
  msgid "Parameter '%{name}' is already set on %{resource} at %{error_location}; cannot redefine"
4760
4764
  msgstr ""
4761
4765
 
4762
- #: ../lib/puppet/parser/resource.rb:370
4766
+ #: ../lib/puppet/parser/resource.rb:371
4763
4767
  msgid "Parameter '%{name}' is already set on %{resource} by %{source}; cannot redefine"
4764
4768
  msgstr ""
4765
4769
 
4766
- #: ../lib/puppet/parser/resource.rb:373
4770
+ #: ../lib/puppet/parser/resource.rb:374
4767
4771
  msgid "Parameter '%{name}' is already set on %{resource} by %{source} at %{error_location}; cannot redefine"
4768
4772
  msgstr ""
4769
4773
 
4770
- #: ../lib/puppet/parser/resource.rb:412
4774
+ #: ../lib/puppet/parser/resource.rb:413
4771
4775
  msgid "Duplicate parameter '%{param}' for on %{resource}"
4772
4776
  msgstr ""
4773
4777
 
@@ -5789,6 +5793,10 @@ msgstr ""
5789
5793
  msgid "Failed to load: %{type_name}"
5790
5794
  msgstr ""
5791
5795
 
5796
+ #: ../lib/puppet/pops/issues.rb:918
5797
+ msgid "Use of the application-orchestration %{expr} is deprecated. See https://puppet.com/docs/puppet/5.5/deprecated_language.html"
5798
+ msgstr ""
5799
+
5792
5800
  #: ../lib/puppet/pops/label_provider.rb:76
5793
5801
  msgid "<%{string}> does not appear to contain a word"
5794
5802
  msgstr ""
@@ -5982,11 +5990,11 @@ msgstr ""
5982
5990
  msgid "Hiera configuration recreated due to change of scope variables used in interpolation expressions"
5983
5991
  msgstr ""
5984
5992
 
5985
- #: ../lib/puppet/pops/lookup/hiera_config.rb:427
5993
+ #: ../lib/puppet/pops/lookup/hiera_config.rb:428
5986
5994
  msgid "%{config_path}: Use of 'hiera.yaml' version 3 is deprecated. It should be converted to version 5"
5987
5995
  msgstr ""
5988
5996
 
5989
- #: ../lib/puppet/pops/lookup/hiera_config.rb:527
5997
+ #: ../lib/puppet/pops/lookup/hiera_config.rb:528
5990
5998
  msgid "%{config_path}: Use of 'hiera.yaml' version 4 is deprecated. It should be converted to version 5"
5991
5999
  msgstr ""
5992
6000
 
@@ -6122,43 +6130,43 @@ msgstr ""
6122
6130
  msgid "illegal comma separated argument list"
6123
6131
  msgstr ""
6124
6132
 
6125
- #: ../lib/puppet/pops/parser/pn_parser.rb:64
6133
+ #: ../lib/puppet/pops/parser/pn_parser.rb:81
6126
6134
  msgid "unexpected end of input"
6127
6135
  msgstr ""
6128
6136
 
6129
- #: ../lib/puppet/pops/parser/pn_parser.rb:66
6137
+ #: ../lib/puppet/pops/parser/pn_parser.rb:83
6130
6138
  msgid "unexpected %{value}"
6131
6139
  msgstr ""
6132
6140
 
6133
- #: ../lib/puppet/pops/parser/pn_parser.rb:103
6141
+ #: ../lib/puppet/pops/parser/pn_parser.rb:120
6134
6142
  msgid "map key expected"
6135
6143
  msgstr ""
6136
6144
 
6137
- #: ../lib/puppet/pops/parser/pn_parser.rb:114
6145
+ #: ../lib/puppet/pops/parser/pn_parser.rb:131
6138
6146
  msgid "expected identifier to follow '('"
6139
6147
  msgstr ""
6140
6148
 
6141
- #: ../lib/puppet/pops/parser/pn_parser.rb:125
6149
+ #: ../lib/puppet/pops/parser/pn_parser.rb:142
6142
6150
  msgid "missing '%{token}' to end list"
6143
6151
  msgstr ""
6144
6152
 
6145
- #: ../lib/puppet/pops/parser/pn_parser.rb:186
6153
+ #: ../lib/puppet/pops/parser/pn_parser.rb:187
6146
6154
  msgid "expected identifier after ':'"
6147
6155
  msgstr ""
6148
6156
 
6149
- #: ../lib/puppet/pops/parser/pn_parser.rb:225
6157
+ #: ../lib/puppet/pops/parser/pn_parser.rb:226
6150
6158
  msgid "unterminated quote"
6151
6159
  msgstr ""
6152
6160
 
6153
- #: ../lib/puppet/pops/parser/pn_parser.rb:251
6161
+ #: ../lib/puppet/pops/parser/pn_parser.rb:252
6154
6162
  msgid "malformed octal quote"
6155
6163
  msgstr ""
6156
6164
 
6157
- #: ../lib/puppet/pops/parser/pn_parser.rb:266 ../lib/puppet/pops/parser/pn_parser.rb:271 ../lib/puppet/pops/parser/pn_parser.rb:275
6165
+ #: ../lib/puppet/pops/parser/pn_parser.rb:267 ../lib/puppet/pops/parser/pn_parser.rb:272 ../lib/puppet/pops/parser/pn_parser.rb:276
6158
6166
  msgid "digit expected"
6159
6167
  msgstr ""
6160
6168
 
6161
- #: ../lib/puppet/pops/resource/resource_type_impl.rb:167 ../lib/puppet/type.rb:428
6169
+ #: ../lib/puppet/pops/resource/resource_type_impl.rb:167 ../lib/puppet/type.rb:432
6162
6170
  msgid "you must specify title patterns when there are two or more key attributes"
6163
6171
  msgstr ""
6164
6172
 
@@ -6396,7 +6404,7 @@ msgstr ""
6396
6404
  msgid "Options 'include_containers' and 'include_values' cannot both be false"
6397
6405
  msgstr ""
6398
6406
 
6399
- #: ../lib/puppet/pops/types/type_calculator.rb:167
6407
+ #: ../lib/puppet/pops/types/type_calculator.rb:191
6400
6408
  msgid "TypeCalculator.enumerable is deprecated. Use iterable"
6401
6409
  msgstr ""
6402
6410
 
@@ -6607,11 +6615,11 @@ msgstr ""
6607
6615
  msgid "aix.object_info(): Could not find %{resource}[%{name}]"
6608
6616
  msgstr ""
6609
6617
 
6610
- #: ../lib/puppet/provider/aix_object.rb:469 ../lib/puppet/provider/nameservice.rb:180 ../lib/puppet/provider/nameservice/directoryservice.rb:421
6618
+ #: ../lib/puppet/provider/aix_object.rb:469 ../lib/puppet/provider/nameservice.rb:181 ../lib/puppet/provider/nameservice/directoryservice.rb:421
6611
6619
  msgid "Could not create %{resource} %{name}: %{detail}"
6612
6620
  msgstr ""
6613
6621
 
6614
- #: ../lib/puppet/provider/aix_object.rb:481 ../lib/puppet/provider/nameservice.rb:194
6622
+ #: ../lib/puppet/provider/aix_object.rb:481 ../lib/puppet/provider/nameservice.rb:195
6615
6623
  msgid "Could not delete %{resource} %{name}: %{detail}"
6616
6624
  msgstr ""
6617
6625
 
@@ -6711,8 +6719,8 @@ msgstr ""
6711
6719
  msgid "Overriding environment setting '%{var}' with '%{value}'"
6712
6720
  msgstr ""
6713
6721
 
6714
- #: ../lib/puppet/provider/exec.rb:91
6715
- msgid "'%{command}' is not qualified and no path was specified. Please qualify the command or specify a path."
6722
+ #: ../lib/puppet/provider/exec.rb:95
6723
+ msgid "'%{exe}' is not qualified and no path was specified. Please qualify the command or specify a path."
6716
6724
  msgstr ""
6717
6725
 
6718
6726
  #: ../lib/puppet/provider/exec/posix.rb:21 ../lib/puppet/provider/exec/posix.rb:38 ../lib/puppet/provider/exec/windows.rb:40 ../lib/puppet/provider/exec/windows.rb:53
@@ -6727,23 +6735,23 @@ msgstr ""
6727
6735
  msgid "'%{exe}' is not executable"
6728
6736
  msgstr ""
6729
6737
 
6730
- #: ../lib/puppet/provider/file/posix.rb:66
6738
+ #: ../lib/puppet/provider/file/posix.rb:71
6731
6739
  msgid "Apparently using negative UID (%{currentvalue}) on a platform that does not consistently handle them"
6732
6740
  msgstr ""
6733
6741
 
6734
- #: ../lib/puppet/provider/file/posix.rb:84 ../lib/puppet/provider/file/windows.rb:46
6742
+ #: ../lib/puppet/provider/file/posix.rb:89 ../lib/puppet/provider/file/windows.rb:46
6735
6743
  msgid "Failed to set owner to '%{should}': %{detail}"
6736
6744
  msgstr ""
6737
6745
 
6738
- #: ../lib/puppet/provider/file/posix.rb:97
6746
+ #: ../lib/puppet/provider/file/posix.rb:102
6739
6747
  msgid "Apparently using negative GID (%{currentvalue}) on a platform that does not consistently handle them"
6740
6748
  msgstr ""
6741
6749
 
6742
- #: ../lib/puppet/provider/file/posix.rb:115 ../lib/puppet/provider/file/windows.rb:59
6750
+ #: ../lib/puppet/provider/file/posix.rb:120 ../lib/puppet/provider/file/windows.rb:59
6743
6751
  msgid "Failed to set group to '%{should}': %{detail}"
6744
6752
  msgstr ""
6745
6753
 
6746
- #: ../lib/puppet/provider/file/posix.rb:131 ../lib/puppet/provider/file/windows.rb:78
6754
+ #: ../lib/puppet/provider/file/posix.rb:136 ../lib/puppet/provider/file/windows.rb:78
6747
6755
  msgid "failed to set mode %{mode} on %{path}: %{message}"
6748
6756
  msgstr ""
6749
6757
 
@@ -6764,7 +6772,7 @@ msgstr ""
6764
6772
  msgid "GID must be an integer"
6765
6773
  msgstr ""
6766
6774
 
6767
- #: ../lib/puppet/provider/group/groupadd.rb:60
6775
+ #: ../lib/puppet/provider/group/groupadd.rb:44
6768
6776
  msgid "GID %{resource} already exists, use allowdupe to force group creation"
6769
6777
  msgstr ""
6770
6778
 
@@ -6896,15 +6904,15 @@ msgstr ""
6896
6904
  msgid "already exists"
6897
6905
  msgstr ""
6898
6906
 
6899
- #: ../lib/puppet/provider/nameservice.rb:186
6907
+ #: ../lib/puppet/provider/nameservice.rb:187
6900
6908
  msgid "already absent"
6901
6909
  msgstr ""
6902
6910
 
6903
- #: ../lib/puppet/provider/nameservice.rb:278
6911
+ #: ../lib/puppet/provider/nameservice.rb:279
6904
6912
  msgid "Nameservice command must be an array"
6905
6913
  msgstr ""
6906
6914
 
6907
- #: ../lib/puppet/provider/nameservice.rb:282 ../lib/puppet/provider/nameservice/directoryservice.rb:337 ../lib/puppet/provider/nameservice/directoryservice.rb:366
6915
+ #: ../lib/puppet/provider/nameservice.rb:284 ../lib/puppet/provider/nameservice/directoryservice.rb:337 ../lib/puppet/provider/nameservice/directoryservice.rb:366
6908
6916
  msgid "Could not set %{param} on %{resource}[%{name}]: %{detail}"
6909
6917
  msgstr ""
6910
6918
 
@@ -6946,27 +6954,31 @@ msgstr ""
6946
6954
  msgid "Could not perform network device prefetch: %{detail}"
6947
6955
  msgstr ""
6948
6956
 
6949
- #: ../lib/puppet/provider/package/aix.rb:37
6957
+ #: ../lib/puppet/provider/package/aix.rb:46
6950
6958
  msgid "The aix provider can only be used by root"
6951
6959
  msgstr ""
6952
6960
 
6953
- #: ../lib/puppet/provider/package/aix.rb:79 ../lib/puppet/provider/package/nim.rb:53
6961
+ #: ../lib/puppet/provider/package/aix.rb:88 ../lib/puppet/provider/package/nim.rb:53
6954
6962
  msgid "Failed to uninstall package '%{name}'"
6955
6963
  msgstr ""
6956
6964
 
6957
- #: ../lib/puppet/provider/package/aix.rb:85
6965
+ #: ../lib/puppet/provider/package/aix.rb:94
6958
6966
  msgid "A directory is required which will be used to find packages"
6959
6967
  msgstr ""
6960
6968
 
6961
- #: ../lib/puppet/provider/package/aix.rb:97
6969
+ #: ../lib/puppet/provider/package/aix.rb:106
6962
6970
  msgid "aix package provider is unable to downgrade packages"
6963
6971
  msgstr ""
6964
6972
 
6965
- #: ../lib/puppet/provider/package/aix.rb:116
6973
+ #: ../lib/puppet/provider/package/aix.rb:111
6974
+ msgid "Package '%{name}' is in a %{status} state and requires manual intervention"
6975
+ msgstr ""
6976
+
6977
+ #: ../lib/puppet/provider/package/aix.rb:131
6966
6978
  msgid "Could not list installed Packages: %{detail}"
6967
6979
  msgstr ""
6968
6980
 
6969
- #: ../lib/puppet/provider/package/aix.rb:139 ../lib/puppet/provider/package/yum.rb:248
6981
+ #: ../lib/puppet/provider/package/aix.rb:154 ../lib/puppet/provider/package/yum.rb:255
6970
6982
  msgid "Tried to get latest on a missing package"
6971
6983
  msgstr ""
6972
6984
 
@@ -6986,19 +6998,19 @@ msgstr ""
6986
6998
  msgid "/etc/apt/sources.list contains a cdrom source; not installing. Use 'allowcdrom' to override this failure."
6987
6999
  msgstr ""
6988
7000
 
6989
- #: ../lib/puppet/provider/package/apt.rb:83 ../lib/puppet/provider/package/fink.rb:50
7001
+ #: ../lib/puppet/provider/package/apt.rb:88 ../lib/puppet/provider/package/fink.rb:55
6990
7002
  msgid "Could not find latest version"
6991
7003
  msgstr ""
6992
7004
 
6993
- #: ../lib/puppet/provider/package/apt.rb:93 ../lib/puppet/provider/package/fink.rb:60
7005
+ #: ../lib/puppet/provider/package/apt.rb:98 ../lib/puppet/provider/package/fink.rb:65
6994
7006
  msgid "Preseeding %{response} to debconf-set-selections"
6995
7007
  msgstr ""
6996
7008
 
6997
- #: ../lib/puppet/provider/package/apt.rb:97 ../lib/puppet/provider/package/fink.rb:64
7009
+ #: ../lib/puppet/provider/package/apt.rb:102 ../lib/puppet/provider/package/fink.rb:69
6998
7010
  msgid "No responsefile specified or non existent, not preseeding anything"
6999
7011
  msgstr ""
7000
7012
 
7001
- #: ../lib/puppet/provider/package/aptitude.rb:21 ../lib/puppet/provider/package/ports.rb:20 ../lib/puppet/provider/package/portupgrade.rb:93 ../lib/puppet/provider/package/portupgrade.rb:151 ../lib/puppet/provider/package/rug.rb:28 ../lib/puppet/provider/package/up2date.rb:17 ../lib/puppet/provider/package/yum.rb:229 ../lib/puppet/provider/package/zypper.rb:109
7013
+ #: ../lib/puppet/provider/package/aptitude.rb:21 ../lib/puppet/provider/package/ports.rb:20 ../lib/puppet/provider/package/portupgrade.rb:93 ../lib/puppet/provider/package/portupgrade.rb:151 ../lib/puppet/provider/package/rug.rb:28 ../lib/puppet/provider/package/up2date.rb:17 ../lib/puppet/provider/package/yum.rb:235 ../lib/puppet/provider/package/zypper.rb:110
7002
7014
  msgid "Could not find package %{name}"
7003
7015
  msgstr ""
7004
7016
 
@@ -7026,11 +7038,15 @@ msgstr ""
7026
7038
  msgid "Cannot match %{line}"
7027
7039
  msgstr ""
7028
7040
 
7041
+ #: ../lib/puppet/provider/package/dnfmodule.rb:30
7042
+ msgid "Modules are not supported on DNF versions lower than 3.0.1"
7043
+ msgstr ""
7044
+
7029
7045
  #: ../lib/puppet/provider/package/dpkg.rb:82
7030
7046
  msgid "You cannot install dpkg packages without a source"
7031
7047
  msgstr ""
7032
7048
 
7033
- #: ../lib/puppet/provider/package/dpkg.rb:107
7049
+ #: ../lib/puppet/provider/package/dpkg.rb:110
7034
7050
  msgid "source doesn't contain named package, but %{name}"
7035
7051
  msgstr ""
7036
7052
 
@@ -7116,19 +7132,19 @@ msgid ""
7116
7132
  "'%{line}'"
7117
7133
  msgstr ""
7118
7134
 
7119
- #: ../lib/puppet/provider/package/openbsd.rb:49 ../lib/puppet/provider/package/opkg.rb:25
7135
+ #: ../lib/puppet/provider/package/openbsd.rb:50 ../lib/puppet/provider/package/opkg.rb:25
7120
7136
  msgid "Failed to match line %{line}"
7121
7137
  msgstr ""
7122
7138
 
7123
- #: ../lib/puppet/provider/package/openbsd.rb:136
7139
+ #: ../lib/puppet/provider/package/openbsd.rb:137
7124
7140
  msgid "No valid installpath found in /etc/pkg.conf and no source was set"
7125
7141
  msgstr ""
7126
7142
 
7127
- #: ../lib/puppet/provider/package/openbsd.rb:140
7143
+ #: ../lib/puppet/provider/package/openbsd.rb:141
7128
7144
  msgid "You must specify a package source or configure an installpath in /etc/pkg.conf"
7129
7145
  msgstr ""
7130
7146
 
7131
- #: ../lib/puppet/provider/package/openbsd.rb:212
7147
+ #: ../lib/puppet/provider/package/openbsd.rb:213
7132
7148
  msgid "%{version} is not available for this package"
7133
7149
  msgstr ""
7134
7150
 
@@ -7168,6 +7184,10 @@ msgstr ""
7168
7184
  msgid "Refusing to install package group %{resource_name}, because allow_virtual is false."
7169
7185
  msgstr ""
7170
7186
 
7187
+ #: ../lib/puppet/provider/package/pip.rb:55
7188
+ msgid "Cannot resolve pip version"
7189
+ msgstr ""
7190
+
7171
7191
  #: ../lib/puppet/provider/package/pkg.rb:46 ../lib/puppet/provider/package/pkg.rb:56
7172
7192
  msgid "Unknown format %{resource_name}: %{full_flags}[%{bad_flag}]"
7173
7193
  msgstr ""
@@ -7180,27 +7200,27 @@ msgstr ""
7180
7200
  msgid "Unknown line format %{resource_name}: %{parse_line}"
7181
7201
  msgstr ""
7182
7202
 
7183
- #: ../lib/puppet/provider/package/pkg.rb:116
7203
+ #: ../lib/puppet/provider/package/pkg.rb:120
7184
7204
  msgid "Unable to unfreeze %{package}"
7185
7205
  msgstr ""
7186
7206
 
7187
- #: ../lib/puppet/provider/package/pkg.rb:151
7207
+ #: ../lib/puppet/provider/package/pkg.rb:155
7188
7208
  msgid "Implicit version %{should} has %{n} possible matches"
7189
7209
  msgstr ""
7190
7210
 
7191
- #: ../lib/puppet/provider/package/pkg.rb:161
7211
+ #: ../lib/puppet/provider/package/pkg.rb:165
7192
7212
  msgid "Selecting version '%{version}' for implicit '%{should}'"
7193
7213
  msgstr ""
7194
7214
 
7195
- #: ../lib/puppet/provider/package/pkg.rb:166
7215
+ #: ../lib/puppet/provider/package/pkg.rb:170
7196
7216
  msgid "No version of %{name} matching %{should} is installable, even though the package is currently installed"
7197
7217
  msgstr ""
7198
7218
 
7199
- #: ../lib/puppet/provider/package/pkg.rb:185
7219
+ #: ../lib/puppet/provider/package/pkg.rb:189
7200
7220
  msgid "pkg warning: %{warnings}"
7201
7221
  msgstr ""
7202
7222
 
7203
- #: ../lib/puppet/provider/package/pkg.rb:221 ../lib/puppet/provider/package/pkg.rb:241
7223
+ #: ../lib/puppet/provider/package/pkg.rb:228 ../lib/puppet/provider/package/pkg.rb:254
7204
7224
  msgid "Unable to update %{package}"
7205
7225
  msgstr ""
7206
7226
 
@@ -7260,11 +7280,11 @@ msgstr ""
7260
7280
  msgid "portversion.latest() - fatal error with portversion: %{output}"
7261
7281
  msgstr ""
7262
7282
 
7263
- #: ../lib/puppet/provider/package/rpm.rb:91
7283
+ #: ../lib/puppet/provider/package/rpm.rb:90
7264
7284
  msgid "Failed to list packages"
7265
7285
  msgstr ""
7266
7286
 
7267
- #: ../lib/puppet/provider/package/rpm.rb:131 ../lib/puppet/provider/package/rpm.rb:143
7287
+ #: ../lib/puppet/provider/package/rpm.rb:128 ../lib/puppet/provider/package/rpm.rb:140
7268
7288
  msgid "RPMs must specify a package source"
7269
7289
  msgstr ""
7270
7290
 
@@ -7309,31 +7329,31 @@ msgstr ""
7309
7329
  msgid "Don't know how to install '%{source}'"
7310
7330
  msgstr ""
7311
7331
 
7312
- #: ../lib/puppet/provider/package/yum.rb:29
7332
+ #: ../lib/puppet/provider/package/yum.rb:31
7313
7333
  msgid "The yum provider can only be used as root"
7314
7334
  msgstr ""
7315
7335
 
7316
- #: ../lib/puppet/provider/package/yum.rb:83
7336
+ #: ../lib/puppet/provider/package/yum.rb:85
7317
7337
  msgid "Could not check for updates, '%{cmd} check-update' exited with %{status}"
7318
7338
  msgstr ""
7319
7339
 
7320
- #: ../lib/puppet/provider/package/yum.rb:117
7340
+ #: ../lib/puppet/provider/package/yum.rb:120
7321
7341
  msgid "Failed to parse package name and architecture from '%{pkgname}'"
7322
7342
  msgstr ""
7323
7343
 
7324
- #: ../lib/puppet/provider/package/yum.rb:223
7344
+ #: ../lib/puppet/provider/package/yum.rb:229
7325
7345
  msgid "Could not find package %{wanted}"
7326
7346
  msgstr ""
7327
7347
 
7328
- #: ../lib/puppet/provider/package/yum.rb:234
7348
+ #: ../lib/puppet/provider/package/yum.rb:240
7329
7349
  msgid "Failed to update to version %{should}, got version %{version} instead"
7330
7350
  msgstr ""
7331
7351
 
7332
- #: ../lib/puppet/provider/package_targetable.rb:53
7352
+ #: ../lib/puppet/provider/package_targetable.rb:56
7333
7353
  msgid "Provider %{name} package command is not functional on this host"
7334
7354
  msgstr ""
7335
7355
 
7336
- #: ../lib/puppet/provider/package_targetable.rb:56
7356
+ #: ../lib/puppet/provider/package_targetable.rb:59
7337
7357
  msgid "Provider %{name} package command '%{cmd}' does not exist on this host"
7338
7358
  msgstr ""
7339
7359
 
@@ -7361,7 +7381,7 @@ msgstr ""
7361
7381
  msgid "Somehow got told to prefetch with no resource set"
7362
7382
  msgstr ""
7363
7383
 
7364
- #: ../lib/puppet/provider/selmodule/semodule.rb:136
7384
+ #: ../lib/puppet/provider/selmodule/semodule.rb:150
7365
7385
  msgid "Could not list policy modules: \"%{selmodule_command}\" failed with \"%{selmod_output}\""
7366
7386
  msgstr ""
7367
7387
 
@@ -7387,7 +7407,7 @@ msgid "Overrides file could not be read, trying again."
7387
7407
  msgstr ""
7388
7408
 
7389
7409
  #. TRANSLATORS 'runsvdir' is a linux service name and should not be translated
7390
- #: ../lib/puppet/provider/service/runit.rb:93
7410
+ #: ../lib/puppet/provider/service/runit.rb:87
7391
7411
  msgid "Waiting 5 seconds for runsvdir to discover service %{service}"
7392
7412
  msgstr ""
7393
7413
 
@@ -7415,19 +7435,23 @@ msgstr ""
7415
7435
  msgid "Cannot enable %{resource_name} for manual start, error was: %{detail}"
7416
7436
  msgstr ""
7417
7437
 
7418
- #: ../lib/puppet/provider/service/windows.rb:52
7438
+ #: ../lib/puppet/provider/service/windows.rb:40
7439
+ msgid "Cannot enable %{resource_name} for delayed start, error was: %{detail}"
7440
+ msgstr ""
7441
+
7442
+ #: ../lib/puppet/provider/service/windows.rb:60
7419
7443
  msgid "Unknown start type: %{start_type}"
7420
7444
  msgstr ""
7421
7445
 
7422
- #: ../lib/puppet/provider/service/windows.rb:55
7446
+ #: ../lib/puppet/provider/service/windows.rb:63
7423
7447
  msgid "Cannot get start type %{resource_name}, error was: %{detail}"
7424
7448
  msgstr ""
7425
7449
 
7426
- #: ../lib/puppet/provider/service/windows.rb:69
7450
+ #: ../lib/puppet/provider/service/windows.rb:77
7427
7451
  msgid "Will not start disabled service %{resource_name} without managing enable. Specify 'enable => false' to override."
7428
7452
  msgstr ""
7429
7453
 
7430
- #: ../lib/puppet/provider/service/windows.rb:101
7454
+ #: ../lib/puppet/provider/service/windows.rb:109
7431
7455
  msgid "Unknown service state '%{current_state}' for service '%{resource_name}'"
7432
7456
  msgstr ""
7433
7457
 
@@ -7450,15 +7474,15 @@ msgid "ruby-shadow doesn't support %{method}"
7450
7474
  msgstr ""
7451
7475
 
7452
7476
  #: ../lib/puppet/provider/user/windows_adsi.rb:128
7453
- msgid "The user account '%s' is disabled; puppet will not reset the password"
7477
+ msgid "The user account '%s' is disabled; The password will still be changed"
7454
7478
  msgstr ""
7455
7479
 
7456
7480
  #: ../lib/puppet/provider/user/windows_adsi.rb:130
7457
- msgid "The user account '%s' is locked out; puppet will not reset the password"
7481
+ msgid "The user account '%s' is locked out; The password will still be changed"
7458
7482
  msgstr ""
7459
7483
 
7460
7484
  #: ../lib/puppet/provider/user/windows_adsi.rb:132
7461
- msgid "The user account '%s' is expired; puppet will not reset the password"
7485
+ msgid "The user account '%s' is expired; The password will still be changed"
7462
7486
  msgstr ""
7463
7487
 
7464
7488
  #: ../lib/puppet/provider/yumrepo/inifile.rb:185
@@ -7477,7 +7501,7 @@ msgstr ""
7477
7501
  msgid "Could not build docs for indirector %{name}, terminus %{terminus}: could not locate terminus."
7478
7502
  msgstr ""
7479
7503
 
7480
- #: ../lib/puppet/reference/metaparameter.rb:30
7504
+ #: ../lib/puppet/reference/metaparameter.rb:28
7481
7505
  msgid "incorrect metaparams: %{detail}"
7482
7506
  msgstr ""
7483
7507
 
@@ -7511,11 +7535,11 @@ msgid ""
7511
7535
  " - Missing features %{values}\n"
7512
7536
  msgstr ""
7513
7537
 
7514
- #: ../lib/puppet/reference/type.rb:80
7538
+ #: ../lib/puppet/reference/type.rb:76
7515
7539
  msgid "Could not retrieve property %{sname} on type %{type_name}"
7516
7540
  msgstr ""
7517
7541
 
7518
- #: ../lib/puppet/reference/type.rb:83
7542
+ #: ../lib/puppet/reference/type.rb:79
7519
7543
  msgid "No docs for %{type}[%{sname}]"
7520
7544
  msgstr ""
7521
7545
 
@@ -7557,35 +7581,35 @@ msgstr ""
7557
7581
  msgid "Invalid resource type %{type}"
7558
7582
  msgstr ""
7559
7583
 
7560
- #: ../lib/puppet/resource.rb:482
7584
+ #: ../lib/puppet/resource.rb:499
7561
7585
  msgid "The method Puppet::Resource.set_default_parameters is deprecated and will be removed in the next major release of Puppet."
7562
7586
  msgstr ""
7563
7587
 
7564
- #: ../lib/puppet/resource.rb:487
7588
+ #: ../lib/puppet/resource.rb:504
7565
7589
  msgid "Cannot evaluate default parameters for %{resource} - not a parser resource"
7566
7590
  msgstr ""
7567
7591
 
7568
- #: ../lib/puppet/resource.rb:527
7592
+ #: ../lib/puppet/resource.rb:544
7569
7593
  msgid "The method Puppet::Resource.validate_complete is deprecated and will be removed in the next major release of Puppet."
7570
7594
  msgstr ""
7571
7595
 
7572
- #: ../lib/puppet/resource.rb:533
7596
+ #: ../lib/puppet/resource.rb:550
7573
7597
  msgid "Must pass %{param} to %{resource}"
7574
7598
  msgstr ""
7575
7599
 
7576
- #: ../lib/puppet/resource.rb:544
7600
+ #: ../lib/puppet/resource.rb:561
7577
7601
  msgid "Expected parameter '%{name}' of '%{value0}' to have type %{value1}, got %{value2}"
7578
7602
  msgstr ""
7579
7603
 
7580
- #: ../lib/puppet/resource.rb:550
7604
+ #: ../lib/puppet/resource.rb:567
7581
7605
  msgid "no parameter named '%{name}'"
7582
7606
  msgstr ""
7583
7607
 
7584
- #: ../lib/puppet/resource.rb:592
7608
+ #: ../lib/puppet/resource.rb:609
7585
7609
  msgid "No title provided and %{type} is not a valid resource reference"
7586
7610
  msgstr ""
7587
7611
 
7588
- #: ../lib/puppet/resource.rb:665
7612
+ #: ../lib/puppet/resource.rb:682
7589
7613
  msgid "No set of title patterns matched the title \"%{title}\"."
7590
7614
  msgstr ""
7591
7615
 
@@ -7679,67 +7703,67 @@ msgstr ""
7679
7703
  msgid "Could not evaluate: %{detail}"
7680
7704
  msgstr ""
7681
7705
 
7682
- #: ../lib/puppet/resource/type.rb:78
7706
+ #: ../lib/puppet/resource/type.rb:81
7683
7707
  msgid "Invalid export in %{reference}: %{ex} is not a resource"
7684
7708
  msgstr ""
7685
7709
 
7686
- #: ../lib/puppet/resource/type.rb:79
7710
+ #: ../lib/puppet/resource/type.rb:82
7687
7711
  msgid "Invalid export in %{reference}: %{ex} is not a capability resource"
7688
7712
  msgstr ""
7689
7713
 
7690
- #: ../lib/puppet/resource/type.rb:83
7714
+ #: ../lib/puppet/resource/type.rb:86
7691
7715
  msgid "Resource type %{res_type} does not produce %{ex_type}"
7692
7716
  msgstr ""
7693
7717
 
7694
- #: ../lib/puppet/resource/type.rb:143
7718
+ #: ../lib/puppet/resource/type.rb:146
7695
7719
  msgid "Invalid resource supertype '%{type}'"
7696
7720
  msgstr ""
7697
7721
 
7698
- #: ../lib/puppet/resource/type.rb:190
7722
+ #: ../lib/puppet/resource/type.rb:197
7699
7723
  msgid "%{name} is not a class; cannot add code to it"
7700
7724
  msgstr ""
7701
7725
 
7702
- #: ../lib/puppet/resource/type.rb:191
7726
+ #: ../lib/puppet/resource/type.rb:198
7703
7727
  msgid "%{name} is not a class; cannot add code from it"
7704
7728
  msgstr ""
7705
7729
 
7706
- #: ../lib/puppet/resource/type.rb:195
7730
+ #: ../lib/puppet/resource/type.rb:202
7707
7731
  msgid "Cannot have code outside of a class/node/define because 'freeze_main' is enabled"
7708
7732
  msgstr ""
7709
7733
 
7710
- #: ../lib/puppet/resource/type.rb:199
7734
+ #: ../lib/puppet/resource/type.rb:206
7711
7735
  msgid "Cannot merge classes with different parent classes (%{name} => %{parent} vs. %{other_name} => %{other_parent})"
7712
7736
  msgstr ""
7713
7737
 
7714
- #: ../lib/puppet/resource/type.rb:230
7738
+ #: ../lib/puppet/resource/type.rb:237
7715
7739
  msgid "Cannot create resources for defined resource types"
7716
7740
  msgstr ""
7717
7741
 
7718
- #: ../lib/puppet/resource/type.rb:284
7742
+ #: ../lib/puppet/resource/type.rb:292
7719
7743
  msgid "The method Puppet::Resource::Type.assign_parameter_values is deprecated and will be removed in the next major release of Puppet."
7720
7744
  msgstr ""
7721
7745
 
7722
- #: ../lib/puppet/resource/type.rb:300
7746
+ #: ../lib/puppet/resource/type.rb:308
7723
7747
  msgid "Could not find parent resource type '%{parent}' of type %{parent_type} in %{env}"
7724
7748
  msgstr ""
7725
7749
 
7726
- #: ../lib/puppet/resource/type.rb:427
7750
+ #: ../lib/puppet/resource/type.rb:435
7727
7751
  msgid "Parameter '%{name}' is given a type, but is not a valid parameter."
7728
7752
  msgstr ""
7729
7753
 
7730
- #: ../lib/puppet/resource/type.rb:430
7754
+ #: ../lib/puppet/resource/type.rb:438
7731
7755
  msgid "Parameter '%{name}' is given a type that is not a Puppet Type, got %{class_name}"
7732
7756
  msgstr ""
7733
7757
 
7734
- #: ../lib/puppet/resource/type.rb:470
7758
+ #: ../lib/puppet/resource/type.rb:478
7735
7759
  msgid "Could not find scope for %{class_name}"
7736
7760
  msgstr ""
7737
7761
 
7738
- #: ../lib/puppet/resource/type.rb:491
7762
+ #: ../lib/puppet/resource/type.rb:499
7739
7763
  msgid "%{param} is a metaparam; this value will inherit to all contained resources in the %{name} definition"
7740
7764
  msgstr ""
7741
7765
 
7742
- #: ../lib/puppet/resource/type.rb:493
7766
+ #: ../lib/puppet/resource/type.rb:501
7743
7767
  msgid "%{param} is a metaparameter; please choose another parameter name in the %{name} definition"
7744
7768
  msgstr ""
7745
7769
 
@@ -7795,61 +7819,65 @@ msgstr ""
7795
7819
  msgid "Not attempting to load %{type} %{fqname} as this object was missing during a prior compilation"
7796
7820
  msgstr ""
7797
7821
 
7798
- #: ../lib/puppet/settings.rb:259
7822
+ #: ../lib/puppet/settings.rb:97
7823
+ msgid "New environment loaders generated from the requested section."
7824
+ msgstr ""
7825
+
7826
+ #: ../lib/puppet/settings.rb:299
7799
7827
  msgid "Attempting to initialize global default settings more than once!"
7800
7828
  msgstr ""
7801
7829
 
7802
- #: ../lib/puppet/settings.rb:457
7830
+ #: ../lib/puppet/settings.rb:497
7803
7831
  msgid "Using --configprint is deprecated. Use 'puppet config <subcommand>' instead."
7804
7832
  msgstr ""
7805
7833
 
7806
- #: ../lib/puppet/settings.rb:599
7834
+ #: ../lib/puppet/settings.rb:639
7807
7835
  msgid "Could not load %{file}: %{detail}"
7808
7836
  msgstr ""
7809
7837
 
7810
- #: ../lib/puppet/settings.rb:700
7838
+ #: ../lib/puppet/settings.rb:740
7811
7839
  msgid "Invalid setting type '%{type}'"
7812
7840
  msgstr ""
7813
7841
 
7814
- #: ../lib/puppet/settings.rb:844
7842
+ #: ../lib/puppet/settings.rb:884
7815
7843
  msgid "Unknown searchpath case: %{source_type} for the %{source} settings path element."
7816
7844
  msgstr ""
7817
7845
 
7818
- #: ../lib/puppet/settings.rb:906
7846
+ #: ../lib/puppet/settings.rb:946
7819
7847
  msgid "setting definition for '%{name}' is not a hash!"
7820
7848
  msgstr ""
7821
7849
 
7822
- #: ../lib/puppet/settings.rb:911
7850
+ #: ../lib/puppet/settings.rb:951
7823
7851
  msgid "Setting %{name} is already defined"
7824
7852
  msgstr ""
7825
7853
 
7826
- #: ../lib/puppet/settings.rb:915
7854
+ #: ../lib/puppet/settings.rb:955
7827
7855
  msgid "Setting %{name} is already using short name '%{short}'"
7828
7856
  msgstr ""
7829
7857
 
7830
7858
  #. TRANSLATORS 'puppet.conf' is a file name and should not be translated
7831
- #: ../lib/puppet/settings.rb:1177
7859
+ #: ../lib/puppet/settings.rb:1217
7832
7860
  msgid "Setting %{name} is deprecated in puppet.conf."
7833
7861
  msgstr ""
7834
7862
 
7835
- #: ../lib/puppet/settings.rb:1344
7863
+ #: ../lib/puppet/settings.rb:1384
7836
7864
  msgid "Error converting value for param '%{name}': %{detail}"
7837
7865
  msgstr ""
7838
7866
 
7839
- #: ../lib/puppet/settings.rb:1368
7867
+ #: ../lib/puppet/settings.rb:1408
7840
7868
  msgid "Could not find value for %{expression}"
7841
7869
  msgstr ""
7842
7870
 
7843
7871
  #. TRANSLATORS '$environment' is a Puppet specific variable and should not be translated
7844
- #: ../lib/puppet/settings.rb:1378
7872
+ #: ../lib/puppet/settings.rb:1418
7845
7873
  msgid "You cannot interpolate $environment within '%{setting_name}' when using directory environments."
7846
7874
  msgstr ""
7847
7875
 
7848
- #: ../lib/puppet/settings.rb:1379
7876
+ #: ../lib/puppet/settings.rb:1419
7849
7877
  msgid "Its value will remain %{value}."
7850
7878
  msgstr ""
7851
7879
 
7852
- #: ../lib/puppet/settings.rb:1410
7880
+ #: ../lib/puppet/settings.rb:1450
7853
7881
  msgid "Attempt to assign a value to unknown setting %{name}"
7854
7882
  msgstr ""
7855
7883
 
@@ -8087,11 +8115,11 @@ msgstr ""
8087
8115
  msgid "Puppet::SSL::CertificateAuthority#certificate_is_alive? is deprecated. Please use Puppet::SSL::CertificateAuthority#verify or the certificate status API to query certificate information. See https://puppet.com/docs/puppet/latest/http_api/http_certificate_status.html"
8088
8116
  msgstr ""
8089
8117
 
8090
- #: ../lib/puppet/ssl/certificate_authority.rb:497
8118
+ #: ../lib/puppet/ssl/certificate_authority.rb:498
8091
8119
  msgid "Could not find a certificate for %{name}"
8092
8120
  msgstr ""
8093
8121
 
8094
- #: ../lib/puppet/ssl/certificate_authority.rb:506
8122
+ #: ../lib/puppet/ssl/certificate_authority.rb:507
8095
8123
  msgid "Could not find a certificate or csr for %{name}"
8096
8124
  msgstr ""
8097
8125
 
@@ -8519,77 +8547,77 @@ msgstr ""
8519
8547
  msgid "audit change: newly-recorded value %s"
8520
8548
  msgstr ""
8521
8549
 
8522
- #: ../lib/puppet/type.rb:503
8550
+ #: ../lib/puppet/type.rb:507
8523
8551
  msgid "Options must be a hash, not %{type}"
8524
8552
  msgstr ""
8525
8553
 
8526
- #: ../lib/puppet/type.rb:506
8554
+ #: ../lib/puppet/type.rb:510
8527
8555
  msgid "Class %{class_name} already has a property named %{property}"
8528
8556
  msgstr ""
8529
8557
 
8530
- #: ../lib/puppet/type.rb:592
8558
+ #: ../lib/puppet/type.rb:596
8531
8559
  msgid "Class %{class_name} has not defined parameters"
8532
8560
  msgstr ""
8533
8561
 
8534
- #: ../lib/puppet/type.rb:676
8562
+ #: ../lib/puppet/type.rb:680
8535
8563
  msgid "Parameter %{name} failed on %{ref}: %{detail}"
8536
8564
  msgstr ""
8537
8565
 
8538
- #: ../lib/puppet/type.rb:699
8566
+ #: ../lib/puppet/type.rb:703
8539
8567
  msgid "Undefined attribute '%{attribute}' in %{name}"
8540
8568
  msgstr ""
8541
8569
 
8542
8570
  #. TRANSLATORS 'is' is a variable name and should not be translated
8543
8571
  #. TRANSLATORS 'is' is a variable name and should not be translated
8544
- #: ../lib/puppet/type.rb:1022 ../lib/puppet/type.rb:1033
8572
+ #: ../lib/puppet/type.rb:1026 ../lib/puppet/type.rb:1037
8545
8573
  msgid "The 'is' value is not in the 'is' array for '%{name}'"
8546
8574
  msgstr ""
8547
8575
 
8548
- #: ../lib/puppet/type.rb:1159
8576
+ #: ../lib/puppet/type.rb:1163
8549
8577
  msgid "%{name} has no providers and has not overridden 'instances'"
8550
8578
  msgstr ""
8551
8579
 
8552
- #: ../lib/puppet/type.rb:1418
8580
+ #: ../lib/puppet/type.rb:1422
8553
8581
  msgid "Cannot add aliases without a catalog"
8554
8582
  msgstr ""
8555
8583
 
8556
- #: ../lib/puppet/type.rb:1497
8584
+ #: ../lib/puppet/type.rb:1501
8557
8585
  msgid "Could not find %{description} %{ref} for %{resource}"
8558
8586
  msgstr ""
8559
8587
 
8560
- #: ../lib/puppet/type.rb:1770
8588
+ #: ../lib/puppet/type.rb:1776
8561
8589
  msgid "Found multiple default providers for %{name}: %{provider_list}; using %{selected_provider}"
8562
8590
  msgstr ""
8563
8591
 
8564
- #: ../lib/puppet/type.rb:1855
8592
+ #: ../lib/puppet/type.rb:1861
8565
8593
  msgid "Could not find parent provider %{parent} of %{name}"
8566
8594
  msgstr ""
8567
8595
 
8568
- #: ../lib/puppet/type.rb:1931
8596
+ #: ../lib/puppet/type.rb:1935
8569
8597
  msgid "Invalid %{resource} provider '%{provider_class}'"
8570
8598
  msgstr ""
8571
8599
 
8572
- #: ../lib/puppet/type.rb:2014
8600
+ #: ../lib/puppet/type.rb:2018
8573
8601
  msgid "Could not find %{name} provider of %{provider}"
8574
8602
  msgstr ""
8575
8603
 
8576
- #: ../lib/puppet/type.rb:2131
8604
+ #: ../lib/puppet/type.rb:2135
8577
8605
  msgid "You cannot add relationships without a catalog"
8578
8606
  msgstr ""
8579
8607
 
8580
- #: ../lib/puppet/type.rb:2438
8608
+ #: ../lib/puppet/type.rb:2442
8581
8609
  msgid "Unable to mark '%{name}' as sensitive: %{name} is a parameter and not a property, and cannot be automatically redacted."
8582
8610
  msgstr ""
8583
8611
 
8584
- #: ../lib/puppet/type.rb:2441
8612
+ #: ../lib/puppet/type.rb:2445
8585
8613
  msgid "Unable to mark '%{name}' as sensitive: the property itself was not assigned a value."
8586
8614
  msgstr ""
8587
8615
 
8588
- #: ../lib/puppet/type.rb:2443
8616
+ #: ../lib/puppet/type.rb:2447
8589
8617
  msgid "Unable to mark '%{name}' as sensitive: the property itself is not defined on %{type}."
8590
8618
  msgstr ""
8591
8619
 
8592
- #: ../lib/puppet/type.rb:2494
8620
+ #: ../lib/puppet/type.rb:2505
8593
8621
  msgid "Could not set %{attribute} on %{class_name}: %{detail}"
8594
8622
  msgstr ""
8595
8623
 
@@ -8621,59 +8649,59 @@ msgstr ""
8621
8649
  msgid "Command exceeded timeout"
8622
8650
  msgstr ""
8623
8651
 
8624
- #: ../lib/puppet/type/exec.rb:162
8652
+ #: ../lib/puppet/type/exec.rb:166
8625
8653
  msgid "[command redacted] returned %{status} instead of one of [%{expected}]"
8626
8654
  msgstr ""
8627
8655
 
8628
- #: ../lib/puppet/type/exec.rb:164
8656
+ #: ../lib/puppet/type/exec.rb:168
8629
8657
  msgid "'%{cmd}' returned %{status} instead of one of [%{expected}]"
8630
8658
  msgstr ""
8631
8659
 
8632
- #: ../lib/puppet/type/exec.rb:182
8660
+ #: ../lib/puppet/type/exec.rb:186
8633
8661
  msgid "Command must be a String, got value of class %{klass}"
8634
8662
  msgstr ""
8635
8663
 
8636
- #: ../lib/puppet/type/exec.rb:214
8664
+ #: ../lib/puppet/type/exec.rb:218
8637
8665
  msgid "Unable to execute commands as other users on Windows"
8638
8666
  msgstr ""
8639
8667
 
8640
- #: ../lib/puppet/type/exec.rb:216
8668
+ #: ../lib/puppet/type/exec.rb:220
8641
8669
  msgid "Only root can execute commands as other users"
8642
8670
  msgstr ""
8643
8671
 
8644
- #: ../lib/puppet/type/exec.rb:272
8672
+ #: ../lib/puppet/type/exec.rb:276
8645
8673
  msgid "Invalid environment setting '%{value}'"
8646
8674
  msgstr ""
8647
8675
 
8648
- #: ../lib/puppet/type/exec.rb:285
8676
+ #: ../lib/puppet/type/exec.rb:289
8649
8677
  msgid "The umask specification is invalid: %{value}"
8650
8678
  msgstr ""
8651
8679
 
8652
- #: ../lib/puppet/type/exec.rb:301
8680
+ #: ../lib/puppet/type/exec.rb:305
8653
8681
  msgid "The timeout must be a number."
8654
8682
  msgstr ""
8655
8683
 
8656
- #: ../lib/puppet/type/exec.rb:318
8684
+ #: ../lib/puppet/type/exec.rb:322
8657
8685
  msgid "Tries must be an integer"
8658
8686
  msgstr ""
8659
8687
 
8660
- #: ../lib/puppet/type/exec.rb:322
8688
+ #: ../lib/puppet/type/exec.rb:326
8661
8689
  msgid "Tries must be an integer >= 1"
8662
8690
  msgstr ""
8663
8691
 
8664
- #: ../lib/puppet/type/exec.rb:335
8692
+ #: ../lib/puppet/type/exec.rb:339
8665
8693
  msgid "try_sleep must be a number"
8666
8694
  msgstr ""
8667
8695
 
8668
- #: ../lib/puppet/type/exec.rb:339
8696
+ #: ../lib/puppet/type/exec.rb:343
8669
8697
  msgid "try_sleep cannot be a negative number"
8670
8698
  msgstr ""
8671
8699
 
8672
- #: ../lib/puppet/type/exec.rb:454 ../lib/puppet/type/exec.rb:506
8700
+ #: ../lib/puppet/type/exec.rb:458 ../lib/puppet/type/exec.rb:514
8673
8701
  msgid "Check %{value} exceeded timeout"
8674
8702
  msgstr ""
8675
8703
 
8676
- #: ../lib/puppet/type/exec.rb:589
8704
+ #: ../lib/puppet/type/exec.rb:601
8677
8705
  msgid "'%{cmd}' won't be executed because of failed check '%{check}'"
8678
8706
  msgstr ""
8679
8707
 
@@ -8681,82 +8709,82 @@ msgstr ""
8681
8709
  msgid "File paths must be fully qualified, not '%{path}'"
8682
8710
  msgstr ""
8683
8711
 
8684
- #: ../lib/puppet/type/file.rb:124
8712
+ #: ../lib/puppet/type/file.rb:137
8685
8713
  msgid "Invalid backup type %{value}"
8686
8714
  msgstr ""
8687
8715
 
8688
- #: ../lib/puppet/type/file.rb:168 ../lib/puppet/type/tidy.rb:48
8716
+ #: ../lib/puppet/type/file.rb:181 ../lib/puppet/type/tidy.rb:48
8689
8717
  msgid "Invalid recurse value %{value}"
8690
8718
  msgstr ""
8691
8719
 
8692
- #: ../lib/puppet/type/file.rb:200
8720
+ #: ../lib/puppet/type/file.rb:213
8693
8721
  msgid "Invalid recurselimit value %{value}"
8694
8722
  msgstr ""
8695
8723
 
8696
- #: ../lib/puppet/type/file.rb:370
8724
+ #: ../lib/puppet/type/file.rb:383
8697
8725
  msgid "You cannot specify more than one of %{creators}"
8698
8726
  msgstr ""
8699
8727
 
8700
- #: ../lib/puppet/type/file.rb:372
8728
+ #: ../lib/puppet/type/file.rb:385
8701
8729
  msgid "You cannot specify a remote recursion without a source"
8702
8730
  msgstr ""
8703
8731
 
8704
- #: ../lib/puppet/type/file.rb:374
8732
+ #: ../lib/puppet/type/file.rb:387
8705
8733
  msgid "You cannot specify source when using checksum 'none'"
8706
8734
  msgstr ""
8707
8735
 
8708
- #: ../lib/puppet/type/file.rb:377
8736
+ #: ../lib/puppet/type/file.rb:390
8709
8737
  msgid "You cannot specify content when using checksum '%{checksum_type}'"
8710
8738
  msgstr ""
8711
8739
 
8712
- #: ../lib/puppet/type/file.rb:380
8740
+ #: ../lib/puppet/type/file.rb:393
8713
8741
  msgid "Possible error: recurselimit is set but not recurse, no recursion will happen"
8714
8742
  msgstr ""
8715
8743
 
8716
- #: ../lib/puppet/type/file.rb:388
8744
+ #: ../lib/puppet/type/file.rb:401
8717
8745
  msgid "Checksum value '%{value}' is not a valid checksum type %{checksum}"
8718
8746
  msgstr ""
8719
8747
 
8720
- #: ../lib/puppet/type/file.rb:391
8748
+ #: ../lib/puppet/type/file.rb:404
8721
8749
  msgid "Checksum value is ignored unless content or source are specified"
8722
8750
  msgstr ""
8723
8751
 
8724
- #: ../lib/puppet/type/file.rb:429
8752
+ #: ../lib/puppet/type/file.rb:442
8725
8753
  msgid "Can not find filebucket for backups without a catalog"
8726
8754
  msgstr ""
8727
8755
 
8728
- #: ../lib/puppet/type/file.rb:433
8756
+ #: ../lib/puppet/type/file.rb:446
8729
8757
  msgid "Could not find filebucket %{backup} specified in backup"
8730
8758
  msgstr ""
8731
8759
 
8732
- #: ../lib/puppet/type/file.rb:729
8760
+ #: ../lib/puppet/type/file.rb:741
8733
8761
  msgid "Could not back up file of type %{current_type}"
8734
8762
  msgstr ""
8735
8763
 
8736
- #: ../lib/puppet/type/file.rb:744
8764
+ #: ../lib/puppet/type/file.rb:756
8737
8765
  msgid "Could not remove files of type %{current_type}"
8738
8766
  msgstr ""
8739
8767
 
8740
8768
  #. TRANSLATORS "source_permissions => ignore" should not be translated
8741
- #: ../lib/puppet/type/file.rb:755
8769
+ #: ../lib/puppet/type/file.rb:767
8742
8770
  msgid "Copying owner/mode/group from the source file on Windows is not supported; use source_permissions => ignore."
8743
8771
  msgstr ""
8744
8772
 
8745
8773
  #. TRANSLATORS "stat" is a program name and should not be translated
8746
- #: ../lib/puppet/type/file.rb:836 ../lib/puppet/type/k5login.rb:97 ../lib/puppet/type/tidy.rb:345
8774
+ #: ../lib/puppet/type/file.rb:848 ../lib/puppet/type/k5login.rb:97 ../lib/puppet/type/tidy.rb:345
8747
8775
  msgid "Could not stat; permission denied"
8748
8776
  msgstr ""
8749
8777
 
8750
- #: ../lib/puppet/type/file.rb:961
8778
+ #: ../lib/puppet/type/file.rb:973
8751
8779
  msgid "Not removing directory; use 'force' to override"
8752
8780
  msgstr ""
8753
8781
 
8754
8782
  #. TRANSLATORS refers to a file which could not be backed up
8755
- #: ../lib/puppet/type/file.rb:986
8783
+ #: ../lib/puppet/type/file.rb:998
8756
8784
  msgid "Could not back up; will not remove"
8757
8785
  msgstr ""
8758
8786
 
8759
- #: ../lib/puppet/type/file.rb:1000
8787
+ #: ../lib/puppet/type/file.rb:1012
8760
8788
  msgid "File written to disk did not match checksum; discarding changes (%{content_checksum} vs %{newsum})"
8761
8789
  msgstr ""
8762
8790
 
@@ -8910,18 +8938,38 @@ msgstr ""
8910
8938
  msgid "name must not contain whitespace: %{value}"
8911
8939
  msgstr ""
8912
8940
 
8913
- #: ../lib/puppet/type/package.rb:116 ../lib/puppet/type/package.rb:130
8941
+ #: ../lib/puppet/type/package.rb:125 ../lib/puppet/type/package.rb:139
8914
8942
  msgid "Could not update: %{detail}"
8915
8943
  msgstr ""
8916
8944
 
8917
- #: ../lib/puppet/type/package.rb:165
8945
+ #: ../lib/puppet/type/package.rb:174
8918
8946
  msgid "Could not get latest version: %{detail}"
8919
8947
  msgstr ""
8920
8948
 
8921
- #: ../lib/puppet/type/package.rb:265
8949
+ #: ../lib/puppet/type/package.rb:274
8922
8950
  msgid "Name must be a String not %{klass}"
8923
8951
  msgstr ""
8924
8952
 
8953
+ #: ../lib/puppet/type/package.rb:416
8954
+ msgid "Cannot have both `ensure => disabled` and `flavor`"
8955
+ msgstr ""
8956
+
8957
+ #: ../lib/puppet/type/package.rb:515
8958
+ msgid "Cannot have both `enable_only => true` and `flavor`"
8959
+ msgstr ""
8960
+
8961
+ #: ../lib/puppet/type/package.rb:518
8962
+ msgid "Cannot have both `ensure => disabled` and `enable_only => true`"
8963
+ msgstr ""
8964
+
8965
+ #: ../lib/puppet/type/package.rb:670
8966
+ msgid "Invalid hold value %{value}. %{doc}"
8967
+ msgstr ""
8968
+
8969
+ #: ../lib/puppet/type/package.rb:700
8970
+ msgid "You cannot use \"mark\" property while \"ensure\" is one of [\"absent\", \"purged\", \"held\"]"
8971
+ msgstr ""
8972
+
8925
8973
  #: ../lib/puppet/type/resources.rb:15
8926
8974
  msgid "Could not find resource type '%{name}'"
8927
8975
  msgstr ""
@@ -8986,8 +9034,12 @@ msgstr ""
8986
9034
  msgid "Must be specified using an absolute path."
8987
9035
  msgstr ""
8988
9036
 
8989
- #: ../lib/puppet/type/service.rb:89
8990
- msgid "Setting enable to manual is only supported on Microsoft Windows."
9037
+ #: ../lib/puppet/type/selboolean.rb:26
9038
+ msgid "Invalid value %{value}. %{doc}"
9039
+ msgstr ""
9040
+
9041
+ #: ../lib/puppet/type/service.rb:88
9042
+ msgid "Setting enable to %{value} is only supported on Microsoft Windows."
8991
9043
  msgstr ""
8992
9044
 
8993
9045
  #: ../lib/puppet/type/ssh_authorized_key.rb:74
@@ -9057,101 +9109,77 @@ msgstr ""
9057
9109
  msgid "Passwords cannot include ':'"
9058
9110
  msgstr ""
9059
9111
 
9060
- #: ../lib/puppet/type/user.rb:260
9061
- msgid "created password"
9062
- msgstr ""
9063
-
9064
- #: ../lib/puppet/type/user.rb:262
9065
- msgid "changed password"
9066
- msgstr ""
9067
-
9068
- #: ../lib/puppet/type/user.rb:267
9069
- msgid "[old password hash redacted]"
9070
- msgstr ""
9071
-
9072
- #: ../lib/puppet/type/user.rb:270
9073
- msgid "[new password hash redacted]"
9074
- msgstr ""
9075
-
9076
- #: ../lib/puppet/type/user.rb:289
9112
+ #: ../lib/puppet/type/user.rb:275
9077
9113
  msgid "Password minimum age must be provided as a number."
9078
9114
  msgstr ""
9079
9115
 
9080
- #: ../lib/puppet/type/user.rb:308
9116
+ #: ../lib/puppet/type/user.rb:294
9081
9117
  msgid "Password maximum age must be provided as a number."
9082
9118
  msgstr ""
9083
9119
 
9084
- #: ../lib/puppet/type/user.rb:339
9120
+ #: ../lib/puppet/type/user.rb:325
9085
9121
  msgid "Group names must be provided, not GID numbers."
9086
9122
  msgstr ""
9087
9123
 
9088
- #: ../lib/puppet/type/user.rb:341
9124
+ #: ../lib/puppet/type/user.rb:327
9089
9125
  msgid "Group names must be provided as an array, not a comma-separated list."
9090
9126
  msgstr ""
9091
9127
 
9092
- #: ../lib/puppet/type/user.rb:342
9128
+ #: ../lib/puppet/type/user.rb:328
9093
9129
  msgid "Group names must not be empty. If you want to specify \"no groups\" pass an empty array"
9094
9130
  msgstr ""
9095
9131
 
9096
- #: ../lib/puppet/type/user.rb:435
9132
+ #: ../lib/puppet/type/user.rb:421
9097
9133
  msgid "User provider %{name} can not manage home directories"
9098
9134
  msgstr ""
9099
9135
 
9100
9136
  #. TRANSLATORS YYYY-MM-DD represents a date with a four-digit year, a two-digit month, and a two-digit day,
9101
9137
  #. TRANSLATORS separated by dashes.
9102
- #: ../lib/puppet/type/user.rb:452
9138
+ #: ../lib/puppet/type/user.rb:438
9103
9139
  msgid "Expiry dates must be YYYY-MM-DD or the string \"absent\""
9104
9140
  msgstr ""
9105
9141
 
9106
- #: ../lib/puppet/type/user.rb:529
9142
+ #: ../lib/puppet/type/user.rb:515
9107
9143
  msgid "Role names must be provided, not numbers"
9108
9144
  msgstr ""
9109
9145
 
9110
- #: ../lib/puppet/type/user.rb:531
9146
+ #: ../lib/puppet/type/user.rb:517
9111
9147
  msgid "Role names must be provided as an array, not a comma-separated list"
9112
9148
  msgstr ""
9113
9149
 
9114
- #: ../lib/puppet/type/user.rb:566
9150
+ #: ../lib/puppet/type/user.rb:552
9115
9151
  msgid "Auth names must be provided, not numbers"
9116
9152
  msgstr ""
9117
9153
 
9118
- #: ../lib/puppet/type/user.rb:568
9154
+ #: ../lib/puppet/type/user.rb:554
9119
9155
  msgid "Auth names must be provided as an array, not a comma-separated list"
9120
9156
  msgstr ""
9121
9157
 
9122
- #: ../lib/puppet/type/user.rb:592
9158
+ #: ../lib/puppet/type/user.rb:578
9123
9159
  msgid "Profile names must be provided, not numbers"
9124
9160
  msgstr ""
9125
9161
 
9126
- #: ../lib/puppet/type/user.rb:594
9162
+ #: ../lib/puppet/type/user.rb:580
9127
9163
  msgid "Profile names must be provided as an array, not a comma-separated list"
9128
9164
  msgstr ""
9129
9165
 
9130
- #: ../lib/puppet/type/user.rb:717
9166
+ #: ../lib/puppet/type/user.rb:705
9131
9167
  msgid "Each entry for purge_ssh_keys must be a string, not a %{klass}"
9132
9168
  msgstr ""
9133
9169
 
9134
- #: ../lib/puppet/type/user.rb:720
9170
+ #: ../lib/puppet/type/user.rb:708
9135
9171
  msgid "Paths to keyfiles must be absolute, not %{entry}"
9136
9172
  msgstr ""
9137
9173
 
9138
- #: ../lib/puppet/type/user.rb:724
9174
+ #: ../lib/puppet/type/user.rb:712
9139
9175
  msgid "purge_ssh_keys must be true, false, or an array of file names, not %{value}"
9140
9176
  msgstr ""
9141
9177
 
9142
- #: ../lib/puppet/type/user.rb:736
9143
- msgid "purge_ssh_keys can only be true for users with a defined home directory"
9144
- msgstr ""
9145
-
9146
- #: ../lib/puppet/type/user.rb:743
9147
- msgid "purge_ssh_keys value '%{value}' meta character ~ or %{home_placeholder} only allowed for users with a defined home directory"
9148
- msgstr ""
9149
-
9150
- #: ../lib/puppet/type/user.rb:757
9178
+ #: ../lib/puppet/type/user.rb:739
9151
9179
  msgid "Class name must be provided."
9152
9180
  msgstr ""
9153
9181
 
9154
- #: ../lib/puppet/type/yumrepo.rb:65 ../lib/puppet/type/yumrepo.rb:82 ../lib/puppet/type/yumrepo.rb:138 ../lib/puppet/type/yumrepo.rb:162 ../lib/puppet/type/yumrepo.rb:185 ../lib/puppet/type/yumrepo.rb:309 ../lib/puppet/type/yumrepo.rb:375
9182
+ #: ../lib/puppet/type/yumrepo.rb:65 ../lib/puppet/type/yumrepo.rb:82 ../lib/puppet/type/yumrepo.rb:138 ../lib/puppet/type/yumrepo.rb:162 ../lib/puppet/type/yumrepo.rb:185 ../lib/puppet/type/yumrepo.rb:309 ../lib/puppet/type/yumrepo.rb:377
9155
9183
  msgid "Must be a valid URL"
9156
9184
  msgstr ""
9157
9185
 
@@ -9258,11 +9286,11 @@ msgstr ""
9258
9286
  msgid "path may not be nil"
9259
9287
  msgstr ""
9260
9288
 
9261
- #: ../lib/puppet/util.rb:568
9289
+ #: ../lib/puppet/util.rb:591
9262
9290
  msgid "replace_file requires a block"
9263
9291
  msgstr ""
9264
9292
 
9265
- #: ../lib/puppet/util.rb:572
9293
+ #: ../lib/puppet/util.rb:595
9266
9294
  msgid "replace_file default_mode: %{default_mode} is invalid"
9267
9295
  msgstr ""
9268
9296
 
@@ -9543,23 +9571,23 @@ msgstr ""
9543
9571
  msgid "%{klass} failed with error %{error_type}: %{detail}"
9544
9572
  msgstr ""
9545
9573
 
9546
- #: ../lib/puppet/util/execution.rb:195
9574
+ #: ../lib/puppet/util/execution.rb:196
9547
9575
  msgid "Working directory %{cwd} does not exist!"
9548
9576
  msgstr ""
9549
9577
 
9550
- #: ../lib/puppet/util/execution.rb:285
9578
+ #: ../lib/puppet/util/execution.rb:286
9551
9579
  msgid "Could not get output"
9552
9580
  msgstr ""
9553
9581
 
9554
- #: ../lib/puppet/util/execution.rb:294
9582
+ #: ../lib/puppet/util/execution.rb:295
9555
9583
  msgid "Execution of '%{str}' returned %{exit_status}: %{output}"
9556
9584
  msgstr ""
9557
9585
 
9558
- #: ../lib/puppet/util/execution.rb:371
9586
+ #: ../lib/puppet/util/execution.rb:372
9559
9587
  msgid "Could not execute posix command: %{detail}"
9560
9588
  msgstr ""
9561
9589
 
9562
- #: ../lib/puppet/util/execution.rb:419
9590
+ #: ../lib/puppet/util/execution.rb:420
9563
9591
  msgid "Waiting for output; will sleep %{time_to_sleep} seconds"
9564
9592
  msgstr ""
9565
9593
 
@@ -9667,7 +9695,7 @@ msgstr ""
9667
9695
  msgid "Could not write crontab for %{path}: %{detail}"
9668
9696
  msgstr ""
9669
9697
 
9670
- #: ../lib/puppet/util/http_proxy.rb:206
9698
+ #: ../lib/puppet/util/http_proxy.rb:214
9671
9699
  msgid "Too many HTTP redirections for %{uri}"
9672
9700
  msgstr ""
9673
9701
 
@@ -9786,24 +9814,20 @@ msgstr ""
9786
9814
  msgid "Creating log directory %{dir}"
9787
9815
  msgstr ""
9788
9816
 
9789
- #: ../lib/puppet/util/log/destinations.rb:101
9790
- msgid "Unable to set ownership to %{user}:%{group} for log file: %{path}"
9791
- msgstr ""
9792
-
9793
- #: ../lib/puppet/util/logging.rb:82 ../lib/puppet/util/logging.rb:105
9817
+ #: ../lib/puppet/util/logging.rb:80 ../lib/puppet/util/logging.rb:104
9794
9818
  msgid "Wrapped exception:"
9795
9819
  msgstr ""
9796
9820
 
9797
9821
  #. TRANSLATORS the literals ":file", ":line", and ":key" should not be translated
9798
- #: ../lib/puppet/util/logging.rb:149
9822
+ #: ../lib/puppet/util/logging.rb:161
9799
9823
  msgid "Need either :file and :line, or :key"
9800
9824
  msgstr ""
9801
9825
 
9802
- #: ../lib/puppet/util/logging.rb:179
9826
+ #: ../lib/puppet/util/logging.rb:191
9803
9827
  msgid "(file & line not available)"
9804
9828
  msgstr ""
9805
9829
 
9806
- #: ../lib/puppet/util/logging.rb:281
9830
+ #: ../lib/puppet/util/logging.rb:293
9807
9831
  msgid "(location: %{location})"
9808
9832
  msgstr ""
9809
9833
 
@@ -9901,7 +9925,7 @@ msgstr ""
9901
9925
  msgid "Details: %{detail}"
9902
9926
  msgstr ""
9903
9927
 
9904
- #: ../lib/puppet/util/plist.rb:145
9928
+ #: ../lib/puppet/util/plist.rb:151
9905
9929
  msgid "Unable to write the file %{file_path}. %{error}"
9906
9930
  msgstr ""
9907
9931
 
@@ -9977,31 +10001,31 @@ msgstr ""
9977
10001
  msgid "Caught exception %{klass}:%{error} retrying"
9978
10002
  msgstr ""
9979
10003
 
9980
- #: ../lib/puppet/util/selinux.rb:67
10004
+ #: ../lib/puppet/util/selinux.rb:71
9981
10005
  msgid "Invalid context to parse: %{context}"
9982
10006
  msgstr ""
9983
10007
 
9984
- #: ../lib/puppet/util/selinux.rb:79
10008
+ #: ../lib/puppet/util/selinux.rb:83
9985
10009
  msgid "Invalid SELinux parameter type"
9986
10010
  msgstr ""
9987
10011
 
9988
- #: ../lib/puppet/util/selinux.rb:100
10012
+ #: ../lib/puppet/util/selinux.rb:104
9989
10013
  msgid "Can't set SELinux context on file unless the file already has some kind of context"
9990
10014
  msgstr ""
9991
10015
 
9992
- #: ../lib/puppet/util/selinux.rb:114
10016
+ #: ../lib/puppet/util/selinux.rb:118
9993
10017
  msgid "set_selinux_context component must be one of :seluser, :selrole, :seltype, or :selrange"
9994
10018
  msgstr ""
9995
10019
 
9996
- #: ../lib/puppet/util/selinux.rb:125
10020
+ #: ../lib/puppet/util/selinux.rb:129
9997
10021
  msgid "Failed to set SELinux context %{context} on %{file}"
9998
10022
  msgstr ""
9999
10023
 
10000
- #: ../lib/puppet/util/selinux.rb:176
10024
+ #: ../lib/puppet/util/selinux.rb:180
10001
10025
  msgid "Could not open SELinux category translation file %{path}."
10002
10026
  msgstr ""
10003
10027
 
10004
- #: ../lib/puppet/util/selinux.rb:243
10028
+ #: ../lib/puppet/util/selinux.rb:249
10005
10029
  msgid "got a relative path in SELinux find_fs: %{path}"
10006
10030
  msgstr ""
10007
10031
 
@@ -10085,63 +10109,63 @@ msgstr ""
10085
10109
  msgid "Invalid tag '%{name}'"
10086
10110
  msgstr ""
10087
10111
 
10088
- #: ../lib/puppet/util/windows/adsi.rb:19
10112
+ #: ../lib/puppet/util/windows/adsi.rb:36
10089
10113
  msgid "ADSI connection error: %{e}"
10090
10114
  msgstr ""
10091
10115
 
10092
- #: ../lib/puppet/util/windows/adsi.rb:42
10116
+ #: ../lib/puppet/util/windows/adsi.rb:59
10093
10117
  msgid "Failed to get computer name"
10094
10118
  msgstr ""
10095
10119
 
10096
- #: ../lib/puppet/util/windows/adsi.rb:80
10120
+ #: ../lib/puppet/util/windows/adsi.rb:97
10097
10121
  msgid "Must use a valid SID::Principal"
10098
10122
  msgstr ""
10099
10123
 
10100
- #: ../lib/puppet/util/windows/adsi.rb:137
10124
+ #: ../lib/puppet/util/windows/adsi.rb:162
10101
10125
  msgid "Value must be in DOMAIN\\%{object_class} style syntax"
10102
10126
  msgstr ""
10103
10127
 
10104
- #: ../lib/puppet/util/windows/adsi.rb:163
10128
+ #: ../lib/puppet/util/windows/adsi.rb:188
10105
10129
  msgid "Could not resolve name: %{name}"
10106
10130
  msgstr ""
10107
10131
 
10108
- #: ../lib/puppet/util/windows/adsi.rb:200
10132
+ #: ../lib/puppet/util/windows/adsi.rb:230
10109
10133
  msgid "Subclass must implement class-level method 'list_all'!"
10110
10134
  msgstr ""
10111
10135
 
10112
- #: ../lib/puppet/util/windows/adsi.rb:254
10136
+ #: ../lib/puppet/util/windows/adsi.rb:284
10113
10137
  msgid "Puppet is not able to create/delete domain %{object_class} objects with the %{object_class} resource."
10114
10138
  msgstr ""
10115
10139
 
10116
- #: ../lib/puppet/util/windows/adsi.rb:258
10140
+ #: ../lib/puppet/util/windows/adsi.rb:288
10117
10141
  msgid "%{object_class} update failed: %{error}"
10118
10142
  msgstr ""
10119
10143
 
10120
- #: ../lib/puppet/util/windows/adsi.rb:284
10144
+ #: ../lib/puppet/util/windows/adsi.rb:314
10121
10145
  msgid "Cannot create user if group '%{name}' exists."
10122
10146
  msgstr ""
10123
10147
 
10124
- #: ../lib/puppet/util/windows/adsi.rb:425
10148
+ #: ../lib/puppet/util/windows/adsi.rb:455
10125
10149
  msgid "Unrecognized ADS UserFlags: %{unrecognized_flags}"
10126
10150
  msgstr ""
10127
10151
 
10128
- #: ../lib/puppet/util/windows/adsi.rb:469
10152
+ #: ../lib/puppet/util/windows/adsi.rb:499
10129
10153
  msgid "Failed to get user name"
10130
10154
  msgstr ""
10131
10155
 
10132
- #: ../lib/puppet/util/windows/adsi.rb:506
10156
+ #: ../lib/puppet/util/windows/adsi.rb:536
10133
10157
  msgid "Cannot delete user profile for '%{sid}' prior to Vista SP1"
10134
10158
  msgstr ""
10135
10159
 
10136
- #: ../lib/puppet/util/windows/adsi.rb:524
10160
+ #: ../lib/puppet/util/windows/adsi.rb:554
10137
10161
  msgid "Cannot create group if user '%{name}' exists."
10138
10162
  msgstr ""
10139
10163
 
10140
- #: ../lib/puppet/util/windows/api_types.rb:72
10164
+ #: ../lib/puppet/util/windows/api_types.rb:79
10141
10165
  msgid "Unable to read wide strings with %{null_terminator} terminal nulls"
10142
10166
  msgstr ""
10143
10167
 
10144
- #: ../lib/puppet/util/windows/api_types.rb:203
10168
+ #: ../lib/puppet/util/windows/api_types.rb:210
10145
10169
  msgid "Bad GUID format."
10146
10170
  msgstr ""
10147
10171
 
@@ -10196,16 +10220,20 @@ msgstr ""
10196
10220
  msgid "Failed to call GetLongPathName"
10197
10221
  msgstr ""
10198
10222
 
10199
- #: ../lib/puppet/util/windows/principal.rb:68 ../lib/puppet/util/windows/principal.rb:75
10223
+ #: ../lib/puppet/util/windows/principal.rb:69 ../lib/puppet/util/windows/principal.rb:76
10200
10224
  msgid "Failed to call LookupAccountNameW with account: %{account_name}"
10201
10225
  msgstr ""
10202
10226
 
10203
10227
  #. TRANSLATORS `lookup_account_sid` is a variable name and should not be translated
10204
- #: ../lib/puppet/util/windows/principal.rb:98
10228
+ #: ../lib/puppet/util/windows/principal.rb:99
10205
10229
  msgid "Byte array for lookup_account_sid must not be nil and must be at least 1 byte long"
10206
10230
  msgstr ""
10207
10231
 
10208
- #: ../lib/puppet/util/windows/principal.rb:120 ../lib/puppet/util/windows/principal.rb:127
10232
+ #: ../lib/puppet/util/windows/principal.rb:118
10233
+ msgid "Byte array for lookup_account_sid is invalid: %{sid_bytes}"
10234
+ msgstr ""
10235
+
10236
+ #: ../lib/puppet/util/windows/principal.rb:126 ../lib/puppet/util/windows/principal.rb:133
10209
10237
  msgid "Failed to call LookupAccountSidW with bytes: %{sid_bytes}"
10210
10238
  msgstr ""
10211
10239
 
@@ -10213,23 +10241,23 @@ msgstr ""
10213
10241
  msgid "Failed to get child process exit code"
10214
10242
  msgstr ""
10215
10243
 
10216
- #: ../lib/puppet/util/windows/process.rb:287
10244
+ #: ../lib/puppet/util/windows/process.rb:288
10217
10245
  msgid "GetVersionEx failed"
10218
10246
  msgstr ""
10219
10247
 
10220
- #: ../lib/puppet/util/windows/process.rb:316
10248
+ #: ../lib/puppet/util/windows/process.rb:317
10221
10249
  msgid "Discarding environment variable %{string} which contains invalid bytes"
10222
10250
  msgstr ""
10223
10251
 
10224
- #: ../lib/puppet/util/windows/process.rb:332
10252
+ #: ../lib/puppet/util/windows/process.rb:333
10225
10253
  msgid "environment variable name must not be nil or empty"
10226
10254
  msgstr ""
10227
10255
 
10228
- #: ../lib/puppet/util/windows/process.rb:337
10256
+ #: ../lib/puppet/util/windows/process.rb:338
10229
10257
  msgid "Failed to remove environment variable: %{name}"
10230
10258
  msgstr ""
10231
10259
 
10232
- #: ../lib/puppet/util/windows/process.rb:342
10260
+ #: ../lib/puppet/util/windows/process.rb:343
10233
10261
  msgid "Failed to set environment variable: %{name}"
10234
10262
  msgstr ""
10235
10263
 
@@ -10241,39 +10269,39 @@ msgstr ""
10241
10269
  msgid "Failed to open registry key '%{key}\\%{path}'"
10242
10270
  msgstr ""
10243
10271
 
10244
- #: ../lib/puppet/util/windows/registry.rb:128
10272
+ #: ../lib/puppet/util/windows/registry.rb:130
10245
10273
  msgid "Failed to enumerate %{key} registry keys at index %{index}"
10246
10274
  msgstr ""
10247
10275
 
10248
- #: ../lib/puppet/util/windows/registry.rb:159
10276
+ #: ../lib/puppet/util/windows/registry.rb:161
10249
10277
  msgid "Failed to enumerate %{key} registry values at index %{index}"
10250
10278
  msgstr ""
10251
10279
 
10252
- #: ../lib/puppet/util/windows/registry.rb:189
10280
+ #: ../lib/puppet/util/windows/registry.rb:191
10253
10281
  msgid "Failed to query registry %{key} for sizes"
10254
10282
  msgstr ""
10255
10283
 
10256
- #: ../lib/puppet/util/windows/registry.rb:225
10284
+ #: ../lib/puppet/util/windows/registry.rb:227
10257
10285
  msgid "Type mismatch (expect %{rtype} but %{type} present)"
10258
10286
  msgstr ""
10259
10287
 
10260
- #: ../lib/puppet/util/windows/registry.rb:247
10288
+ #: ../lib/puppet/util/windows/registry.rb:249
10261
10289
  msgid "Type %{type} is not supported."
10262
10290
  msgstr ""
10263
10291
 
10264
- #: ../lib/puppet/util/windows/registry.rb:252
10292
+ #: ../lib/puppet/util/windows/registry.rb:254
10265
10293
  msgid "A value in the registry key %{parent_key_name}%{key} is corrupt or invalid"
10266
10294
  msgstr ""
10267
10295
 
10268
- #: ../lib/puppet/util/windows/registry.rb:274
10296
+ #: ../lib/puppet/util/windows/registry.rb:276
10269
10297
  msgid "Failed to read registry value %{value} at %{key}"
10270
10298
  msgstr ""
10271
10299
 
10272
- #: ../lib/puppet/util/windows/registry.rb:292
10300
+ #: ../lib/puppet/util/windows/registry.rb:294
10273
10301
  msgid "Failed to delete registry value %{name} at %{key}"
10274
10302
  msgstr ""
10275
10303
 
10276
- #: ../lib/puppet/util/windows/registry.rb:307
10304
+ #: ../lib/puppet/util/windows/registry.rb:309
10277
10305
  msgid "Failed to delete registry key %{name} at %{key}"
10278
10306
  msgstr ""
10279
10307
 
@@ -10281,205 +10309,213 @@ msgstr ""
10281
10309
  msgid "Failed to import root certificate: %{detail}"
10282
10310
  msgstr ""
10283
10311
 
10284
- #: ../lib/puppet/util/windows/security.rb:173
10312
+ #: ../lib/puppet/util/windows/security.rb:174
10285
10313
  msgid "Failed to get volume information"
10286
10314
  msgstr ""
10287
10315
 
10288
10316
  #. TRANSLATORS 'SYSTEM' is a Windows name and should not be translated
10289
- #: ../lib/puppet/util/windows/security.rb:337
10317
+ #: ../lib/puppet/util/windows/security.rb:340
10290
10318
  msgid "Setting control rights for %{path} owner SYSTEM to less than Full Control rights. Setting SYSTEM rights to less than Full Control may have unintented consequences for operations on this file"
10291
10319
  msgstr ""
10292
10320
 
10293
10321
  #. TRANSLATORS 'SYSTEM' is a Windows name and should not be translated
10294
- #: ../lib/puppet/util/windows/security.rb:340
10322
+ #: ../lib/puppet/util/windows/security.rb:343
10295
10323
  msgid "%{path} owner and group both set to user SYSTEM, but group is not managed directly: SYSTEM user rights will be set to FullControl by group"
10296
10324
  msgstr ""
10297
10325
 
10298
10326
  #. TRANSLATORS 'SYSTEM' is a Windows name and should not be translated
10299
- #: ../lib/puppet/util/windows/security.rb:343
10327
+ #: ../lib/puppet/util/windows/security.rb:346
10300
10328
  msgid "An attempt to set mode %{mode} on item %{path} would result in the owner, SYSTEM, to have less than Full Control rights. This attempt has been corrected to Full Control"
10301
10329
  msgstr ""
10302
10330
 
10303
10331
  #. TRANSLATORS 'SYSTEM' is a Windows name and should not be translated
10304
- #: ../lib/puppet/util/windows/security.rb:353
10332
+ #: ../lib/puppet/util/windows/security.rb:356
10305
10333
  msgid "Setting control rights for %{path} group SYSTEM to less than Full Control rights. Setting SYSTEM rights to less than Full Control may have unintented consequences for operations on this file"
10306
10334
  msgstr ""
10307
10335
 
10308
10336
  #. TRANSLATORS 'SYSTEM' is a Windows name and should not be translated
10309
- #: ../lib/puppet/util/windows/security.rb:356
10337
+ #: ../lib/puppet/util/windows/security.rb:359
10310
10338
  msgid "%{path} owner and group both set to user SYSTEM, but owner is not managed directly: SYSTEM user rights will be set to FullControl by owner"
10311
10339
  msgstr ""
10312
10340
 
10313
10341
  #. TRANSLATORS 'SYSTEM' is a Windows name and should not be translated
10314
- #: ../lib/puppet/util/windows/security.rb:359
10342
+ #: ../lib/puppet/util/windows/security.rb:362
10315
10343
  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"
10316
10344
  msgstr ""
10317
10345
 
10318
- #: ../lib/puppet/util/windows/security.rb:430 ../lib/puppet/util/windows/security.rb:447 ../lib/puppet/util/windows/sid.rb:154 ../lib/puppet/util/windows/sid.rb:216 ../lib/puppet/util/windows/user.rb:43
10346
+ #: ../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
10319
10347
  msgid "Invalid SID"
10320
10348
  msgstr ""
10321
10349
 
10322
- #: ../lib/puppet/util/windows/security.rb:434 ../lib/puppet/util/windows/security.rb:451
10350
+ #: ../lib/puppet/util/windows/security.rb:437 ../lib/puppet/util/windows/security.rb:454
10323
10351
  msgid "Failed to add access control entry"
10324
10352
  msgstr ""
10325
10353
 
10326
- #: ../lib/puppet/util/windows/security.rb:462 ../lib/puppet/util/windows/security.rb:644
10354
+ #: ../lib/puppet/util/windows/security.rb:465 ../lib/puppet/util/windows/security.rb:647
10327
10355
  msgid "Invalid DACL"
10328
10356
  msgstr ""
10329
10357
 
10330
- #: ../lib/puppet/util/windows/security.rb:485
10358
+ #: ../lib/puppet/util/windows/security.rb:488
10331
10359
  msgid "Unsupported access control entry type: 0x%{type}"
10332
10360
  msgstr ""
10333
10361
 
10334
- #: ../lib/puppet/util/windows/security.rb:519
10362
+ #: ../lib/puppet/util/windows/security.rb:522
10335
10363
  msgid "Failed to open '%{path}'"
10336
10364
  msgstr ""
10337
10365
 
10338
- #: ../lib/puppet/util/windows/security.rb:566
10366
+ #: ../lib/puppet/util/windows/security.rb:569
10339
10367
  msgid "Failed to adjust process privileges"
10340
10368
  msgstr ""
10341
10369
 
10342
- #: ../lib/puppet/util/windows/security.rb:596
10370
+ #: ../lib/puppet/util/windows/security.rb:599
10343
10371
  msgid "Failed to get security information"
10344
10372
  msgstr ""
10345
10373
 
10346
- #: ../lib/puppet/util/windows/security.rb:607
10374
+ #: ../lib/puppet/util/windows/security.rb:610
10347
10375
  msgid "Failed to get security descriptor control"
10348
10376
  msgstr ""
10349
10377
 
10350
- #: ../lib/puppet/util/windows/security.rb:640
10378
+ #: ../lib/puppet/util/windows/security.rb:643
10351
10379
  msgid "Failed to initialize ACL"
10352
10380
  msgstr ""
10353
10381
 
10354
- #: ../lib/puppet/util/windows/security.rb:679
10382
+ #: ../lib/puppet/util/windows/security.rb:682
10355
10383
  msgid "Failed to set security information"
10356
10384
  msgstr ""
10357
10385
 
10358
- #: ../lib/puppet/util/windows/service.rb:300
10386
+ #: ../lib/puppet/util/windows/service.rb:337
10359
10387
  msgid "Starting the %{service_name} service"
10360
10388
  msgstr ""
10361
10389
 
10362
- #: ../lib/puppet/util/windows/service.rb:310
10390
+ #: ../lib/puppet/util/windows/service.rb:347
10363
10391
  msgid "Failed to start the service"
10364
10392
  msgstr ""
10365
10393
 
10366
- #: ../lib/puppet/util/windows/service.rb:314
10394
+ #: ../lib/puppet/util/windows/service.rb:351
10367
10395
  msgid "Successfully started the %{service_name} service"
10368
10396
  msgstr ""
10369
10397
 
10370
- #: ../lib/puppet/util/windows/service.rb:322
10398
+ #: ../lib/puppet/util/windows/service.rb:359
10371
10399
  msgid "Stopping the %{service_name} service"
10372
10400
  msgstr ""
10373
10401
 
10374
- #: ../lib/puppet/util/windows/service.rb:330
10402
+ #: ../lib/puppet/util/windows/service.rb:367
10375
10403
  msgid "Successfully stopped the %{service_name} service"
10376
10404
  msgstr ""
10377
10405
 
10378
- #: ../lib/puppet/util/windows/service.rb:338
10406
+ #: ../lib/puppet/util/windows/service.rb:375
10379
10407
  msgid "Resuming the %{service_name} service"
10380
10408
  msgstr ""
10381
10409
 
10382
- #: ../lib/puppet/util/windows/service.rb:354
10410
+ #: ../lib/puppet/util/windows/service.rb:391
10383
10411
  msgid "Successfully resumed the %{service_name} service"
10384
10412
  msgstr ""
10385
10413
 
10386
- #: ../lib/puppet/util/windows/service.rb:370
10414
+ #: ../lib/puppet/util/windows/service.rb:407
10387
10415
  msgid "Unknown Service state '%{current_state}' for '%{service_name}'"
10388
10416
  msgstr ""
10389
10417
 
10390
- #: ../lib/puppet/util/windows/service.rb:388
10418
+ #: ../lib/puppet/util/windows/service.rb:434
10391
10419
  msgid "Unknown start type '%{start_type}' for '%{service_name}'"
10392
10420
  msgstr ""
10393
10421
 
10394
- #: ../lib/puppet/util/windows/service.rb:403
10422
+ #: ../lib/puppet/util/windows/service.rb:450
10395
10423
  msgid "Unknown start type %{start_type}"
10396
10424
  msgstr ""
10397
10425
 
10398
- #: ../lib/puppet/util/windows/service.rb:424
10426
+ #: ../lib/puppet/util/windows/service.rb:471
10399
10427
  msgid "Failed to update service configuration"
10400
10428
  msgstr ""
10401
10429
 
10402
- #: ../lib/puppet/util/windows/service.rb:484
10430
+ #: ../lib/puppet/util/windows/service.rb:532
10403
10431
  msgid "Failed to fetch services"
10404
10432
  msgstr ""
10405
10433
 
10406
- #: ../lib/puppet/util/windows/service.rb:533
10434
+ #: ../lib/puppet/util/windows/service.rb:581
10407
10435
  msgid "Failed to open a handle to the service"
10408
10436
  msgstr ""
10409
10437
 
10410
- #: ../lib/puppet/util/windows/service.rb:550
10438
+ #: ../lib/puppet/util/windows/service.rb:598
10411
10439
  msgid "Failed to open a handle to the service control manager"
10412
10440
  msgstr ""
10413
10441
 
10414
- #: ../lib/puppet/util/windows/service.rb:572
10442
+ #: ../lib/puppet/util/windows/service.rb:620
10415
10443
  msgid "The service is already in the %{final_state} state. No further work needs to be done."
10416
10444
  msgstr ""
10417
10445
 
10418
- #: ../lib/puppet/util/windows/service.rb:584
10446
+ #: ../lib/puppet/util/windows/service.rb:632
10419
10447
  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."
10420
10448
  msgstr ""
10421
10449
 
10422
- #: ../lib/puppet/util/windows/service.rb:595
10450
+ #: ../lib/puppet/util/windows/service.rb:643
10423
10451
  msgid "There is already a pending transition to the %{final_state} state for the %{service_name} service."
10424
10452
  msgstr ""
10425
10453
 
10426
- #: ../lib/puppet/util/windows/service.rb:611
10454
+ #: ../lib/puppet/util/windows/service.rb:659
10427
10455
  msgid "The service is in the %{pending_state} state, which is an unsafe pending state."
10428
10456
  msgstr ""
10429
10457
 
10430
- #: ../lib/puppet/util/windows/service.rb:616
10458
+ #: ../lib/puppet/util/windows/service.rb:664
10431
10459
  msgid "Transitioning the %{service_name} service from %{initial_state} to %{final_state}"
10432
10460
  msgstr ""
10433
10461
 
10434
- #: ../lib/puppet/util/windows/service.rb:620
10462
+ #: ../lib/puppet/util/windows/service.rb:668
10435
10463
  msgid "Waiting for the transition to finish"
10436
10464
  msgstr ""
10437
10465
 
10438
- #: ../lib/puppet/util/windows/service.rb:625
10466
+ #: ../lib/puppet/util/windows/service.rb:673
10439
10467
  msgid "Failed to transition the %{service_name} service to the %{final_state} state. Detail: %{detail}"
10440
10468
  msgstr ""
10441
10469
 
10442
- #: ../lib/puppet/util/windows/service.rb:664 ../lib/puppet/util/windows/service.rb:700
10470
+ #: ../lib/puppet/util/windows/service.rb:712 ../lib/puppet/util/windows/service.rb:748
10443
10471
  msgid "Service query failed"
10444
10472
  msgstr ""
10445
10473
 
10446
- #: ../lib/puppet/util/windows/service.rb:717
10474
+ #: ../lib/puppet/util/windows/service.rb:791
10475
+ msgid "Service query for %{parameter_name} failed"
10476
+ msgstr ""
10477
+
10478
+ #: ../lib/puppet/util/windows/service.rb:814
10479
+ msgid "Failed to update service %{change} configuration"
10480
+ msgstr ""
10481
+
10482
+ #: ../lib/puppet/util/windows/service.rb:841
10447
10483
  msgid "Failed to send the %{control_signal} signal to the service. Its current state is %{current_state}. Reason for failure:"
10448
10484
  msgstr ""
10449
10485
 
10450
- #: ../lib/puppet/util/windows/service.rb:751
10486
+ #: ../lib/puppet/util/windows/service.rb:875
10451
10487
  msgid "The service transitioned to the %{pending_state} state."
10452
10488
  msgstr ""
10453
10489
 
10454
- #: ../lib/puppet/util/windows/service.rb:765
10490
+ #: ../lib/puppet/util/windows/service.rb:889
10455
10491
  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}."
10456
10492
  msgstr ""
10457
10493
 
10458
- #: ../lib/puppet/util/windows/service.rb:779
10494
+ #: ../lib/puppet/util/windows/service.rb:903
10459
10495
  msgid "Waiting for the pending transition to the %{final_state} state to finish."
10460
10496
  msgstr ""
10461
10497
 
10462
- #: ../lib/puppet/util/windows/service.rb:793
10498
+ #: ../lib/puppet/util/windows/service.rb:917
10463
10499
  msgid "Unexpected transition to the %{current_state} state while waiting for the pending transition from %{pending_state} to %{final_state} to finish."
10464
10500
  msgstr ""
10465
10501
 
10466
- #: ../lib/puppet/util/windows/service.rb:807
10502
+ #: ../lib/puppet/util/windows/service.rb:931
10467
10503
  msgid "Timed out while waiting for the pending transition from %{pending_state} to %{final_state} to finish. The current state is %{current_state}."
10468
10504
  msgstr ""
10469
10505
 
10470
- #: ../lib/puppet/util/windows/sid.rb:93
10506
+ #: ../lib/puppet/util/windows/sid.rb:94
10471
10507
  msgid "Octet string must be an array of bytes"
10472
10508
  msgstr ""
10473
10509
 
10474
- #: ../lib/puppet/util/windows/sid.rb:160
10510
+ #: ../lib/puppet/util/windows/sid.rb:161
10475
10511
  msgid "Failed to convert binary SID"
10476
10512
  msgstr ""
10477
10513
 
10478
- #: ../lib/puppet/util/windows/sid.rb:165
10514
+ #: ../lib/puppet/util/windows/sid.rb:166
10479
10515
  msgid "ConvertSidToStringSidW failed to allocate buffer for sid"
10480
10516
  msgstr ""
10481
10517
 
10482
- #: ../lib/puppet/util/windows/sid.rb:185
10518
+ #: ../lib/puppet/util/windows/sid.rb:186
10483
10519
  msgid "Failed to convert string SID: %{string_sid}"
10484
10520
  msgstr ""
10485
10521