puppet 6.22.1-x64-mingw32 → 6.25.1-x64-mingw32

Sign up to get free protection for your applications and to get access to all the features.
Files changed (415) hide show
  1. checksums.yaml +4 -4
  2. data/CONTRIBUTING.md +5 -5
  3. data/Gemfile +2 -2
  4. data/Gemfile.lock +20 -20
  5. data/README.md +4 -4
  6. data/{ext → examples/enc}/regexp_nodes/classes/databases +0 -0
  7. data/{ext → examples/enc}/regexp_nodes/classes/webservers +0 -0
  8. data/{ext → examples/enc}/regexp_nodes/environment/development +0 -0
  9. data/{ext → examples/enc}/regexp_nodes/parameters/service/prod +0 -0
  10. data/{ext → examples/enc}/regexp_nodes/parameters/service/qa +0 -0
  11. data/{ext → examples/enc}/regexp_nodes/parameters/service/sandbox +0 -0
  12. data/{ext → examples/enc}/regexp_nodes/regexp_nodes.rb +0 -0
  13. data/{ext → examples}/nagios/check_puppet.rb +2 -2
  14. data/ext/README.md +13 -0
  15. data/ext/osx/puppet.plist +2 -0
  16. data/ext/project_data.yaml +1 -0
  17. data/lib/puppet/application/agent.rb +16 -5
  18. data/lib/puppet/application/apply.rb +22 -3
  19. data/lib/puppet/application/device.rb +2 -1
  20. data/lib/puppet/application/filebucket.rb +1 -0
  21. data/lib/puppet/application/resource.rb +32 -16
  22. data/lib/puppet/application/script.rb +2 -1
  23. data/lib/puppet/application/ssl.rb +1 -0
  24. data/lib/puppet/concurrent/thread_local_singleton.rb +1 -0
  25. data/lib/puppet/configurer/downloader.rb +2 -1
  26. data/lib/puppet/configurer.rb +144 -56
  27. data/lib/puppet/confine/variable.rb +1 -1
  28. data/lib/puppet/defaults.rb +47 -33
  29. data/lib/puppet/environments.rb +75 -25
  30. data/lib/puppet/face/facts.rb +1 -1
  31. data/lib/puppet/face/help/action.erb +1 -0
  32. data/lib/puppet/face/help/face.erb +1 -0
  33. data/lib/puppet/face/node/clean.rb +11 -0
  34. data/lib/puppet/facter_impl.rb +96 -0
  35. data/lib/puppet/file_serving/configuration/parser.rb +2 -0
  36. data/lib/puppet/file_serving/configuration.rb +3 -0
  37. data/lib/puppet/file_serving/fileset.rb +14 -2
  38. data/lib/puppet/file_serving/mount/file.rb +4 -4
  39. data/lib/puppet/file_serving/mount/scripts.rb +24 -0
  40. data/lib/puppet/file_system/file_impl.rb +3 -1
  41. data/lib/puppet/file_system/windows.rb +2 -2
  42. data/lib/puppet/forge.rb +4 -4
  43. data/lib/puppet/functions/all.rb +1 -1
  44. data/lib/puppet/functions/camelcase.rb +1 -1
  45. data/lib/puppet/functions/capitalize.rb +2 -2
  46. data/lib/puppet/functions/downcase.rb +2 -2
  47. data/lib/puppet/functions/empty.rb +8 -0
  48. data/lib/puppet/functions/find_template.rb +2 -2
  49. data/lib/puppet/functions/get.rb +5 -5
  50. data/lib/puppet/functions/group_by.rb +13 -5
  51. data/lib/puppet/functions/lest.rb +1 -1
  52. data/lib/puppet/functions/new.rb +100 -100
  53. data/lib/puppet/functions/partition.rb +4 -4
  54. data/lib/puppet/functions/require.rb +5 -5
  55. data/lib/puppet/functions/sort.rb +3 -3
  56. data/lib/puppet/functions/strftime.rb +1 -0
  57. data/lib/puppet/functions/tree_each.rb +7 -9
  58. data/lib/puppet/functions/type.rb +4 -4
  59. data/lib/puppet/functions/unwrap.rb +17 -2
  60. data/lib/puppet/functions/upcase.rb +2 -2
  61. data/lib/puppet/http/client.rb +1 -1
  62. data/lib/puppet/http/redirector.rb +5 -0
  63. data/lib/puppet/http/resolver/server_list.rb +15 -4
  64. data/lib/puppet/http/service/compiler.rb +75 -1
  65. data/lib/puppet/http/service/file_server.rb +2 -1
  66. data/lib/puppet/indirector/catalog/compiler.rb +25 -6
  67. data/lib/puppet/indirector/catalog/rest.rb +1 -0
  68. data/lib/puppet/indirector/facts/facter.rb +6 -6
  69. data/lib/puppet/indirector/file_metadata/rest.rb +1 -0
  70. data/lib/puppet/indirector/indirection.rb +1 -1
  71. data/lib/puppet/indirector/resource/ral.rb +6 -1
  72. data/lib/puppet/indirector/terminus.rb +4 -0
  73. data/lib/puppet/interface/documentation.rb +1 -0
  74. data/lib/puppet/module/plan.rb +0 -1
  75. data/lib/puppet/module/task.rb +1 -1
  76. data/lib/puppet/module.rb +1 -0
  77. data/lib/puppet/module_tool/applications/installer.rb +12 -4
  78. data/lib/puppet/module_tool/applications/uninstaller.rb +1 -1
  79. data/lib/puppet/module_tool/applications/upgrader.rb +1 -1
  80. data/lib/puppet/module_tool/errors/shared.rb +17 -0
  81. data/lib/puppet/network/http/api/indirected_routes.rb +1 -1
  82. data/lib/puppet/node/environment.rb +10 -11
  83. data/lib/puppet/pal/pal_impl.rb +1 -1
  84. data/lib/puppet/parser/functions/fqdn_rand.rb +14 -6
  85. data/lib/puppet/parser/resource.rb +1 -1
  86. data/lib/puppet/parser/scope.rb +1 -0
  87. data/lib/puppet/parser/templatewrapper.rb +1 -0
  88. data/lib/puppet/pops/evaluator/closure.rb +7 -5
  89. data/lib/puppet/pops/evaluator/runtime3_resource_support.rb +1 -0
  90. data/lib/puppet/pops/lookup/lookup_adapter.rb +3 -2
  91. data/lib/puppet/pops/model/ast.rb +1 -0
  92. data/lib/puppet/pops/model/factory.rb +2 -1
  93. data/lib/puppet/pops/parser/eparser.rb +201 -201
  94. data/lib/puppet/pops/parser/lexer2.rb +92 -91
  95. data/lib/puppet/pops/parser/slurp_support.rb +1 -0
  96. data/lib/puppet/pops/serialization/to_data_converter.rb +18 -6
  97. data/lib/puppet/pops/serialization/to_stringified_converter.rb +1 -1
  98. data/lib/puppet/pops/types/p_sem_ver_type.rb +8 -2
  99. data/lib/puppet/pops/types/p_sensitive_type.rb +10 -0
  100. data/lib/puppet/pops/types/type_formatter.rb +4 -3
  101. data/lib/puppet/pops/types/type_mismatch_describer.rb +1 -1
  102. data/lib/puppet/pops/types/types.rb +1 -1
  103. data/lib/puppet/provider/aix_object.rb +1 -1
  104. data/lib/puppet/provider/exec/posix.rb +16 -4
  105. data/lib/puppet/provider/group/groupadd.rb +5 -2
  106. data/lib/puppet/provider/package/nim.rb +11 -6
  107. data/lib/puppet/provider/package/pip.rb +15 -3
  108. data/lib/puppet/provider/package/pkg.rb +19 -2
  109. data/lib/puppet/provider/package/puppetserver_gem.rb +1 -1
  110. data/lib/puppet/provider/package/yum.rb +1 -1
  111. data/lib/puppet/provider/parsedfile.rb +3 -0
  112. data/lib/puppet/provider/service/base.rb +1 -1
  113. data/lib/puppet/provider/service/init.rb +5 -5
  114. data/lib/puppet/provider/service/launchd.rb +2 -2
  115. data/lib/puppet/provider/service/redhat.rb +1 -1
  116. data/lib/puppet/provider/service/smf.rb +3 -3
  117. data/lib/puppet/provider/service/systemd.rb +15 -5
  118. data/lib/puppet/provider/service/upstart.rb +5 -5
  119. data/lib/puppet/provider/service/windows.rb +38 -0
  120. data/lib/puppet/provider/user/aix.rb +44 -1
  121. data/lib/puppet/provider/user/directoryservice.rb +26 -13
  122. data/lib/puppet/provider/user/useradd.rb +72 -16
  123. data/lib/puppet/provider.rb +1 -1
  124. data/lib/puppet/reference/configuration.rb +1 -1
  125. data/lib/puppet/reference/providers.rb +2 -2
  126. data/lib/puppet/resource/catalog.rb +1 -1
  127. data/lib/puppet/resource/type_collection.rb +1 -0
  128. data/lib/puppet/resource.rb +38 -5
  129. data/lib/puppet/runtime.rb +11 -1
  130. data/lib/puppet/settings.rb +32 -9
  131. data/lib/puppet/test/test_helper.rb +4 -1
  132. data/lib/puppet/transaction/additional_resource_generator.rb +1 -1
  133. data/lib/puppet/transaction/persistence.rb +11 -1
  134. data/lib/puppet/transaction/report.rb +15 -1
  135. data/lib/puppet/type/exec.rb +35 -5
  136. data/lib/puppet/type/file/mode.rb +6 -0
  137. data/lib/puppet/type/file/selcontext.rb +1 -1
  138. data/lib/puppet/type/file.rb +25 -7
  139. data/lib/puppet/type/filebucket.rb +3 -3
  140. data/lib/puppet/type/group.rb +0 -1
  141. data/lib/puppet/type/resources.rb +1 -1
  142. data/lib/puppet/type/service.rb +26 -41
  143. data/lib/puppet/type/tidy.rb +22 -3
  144. data/lib/puppet/type/user.rb +38 -21
  145. data/lib/puppet/type.rb +1 -1
  146. data/lib/puppet/util/command_line.rb +1 -1
  147. data/lib/puppet/util/filetype.rb +2 -2
  148. data/lib/puppet/util/json.rb +3 -0
  149. data/lib/puppet/util/log.rb +1 -2
  150. data/lib/puppet/util/logging.rb +1 -25
  151. data/lib/puppet/util/pidlock.rb +1 -1
  152. data/lib/puppet/util/rdoc/parser/puppet_parser_core.rb +1 -1
  153. data/lib/puppet/util/selinux.rb +30 -4
  154. data/lib/puppet/util/suidmanager.rb +1 -2
  155. data/lib/puppet/util/symbolic_file_mode.rb +29 -17
  156. data/lib/puppet/util/tagging.rb +1 -0
  157. data/lib/puppet/util/windows/service.rb +0 -5
  158. data/lib/puppet/util/windows/sid.rb +3 -1
  159. data/lib/puppet/util/windows/user.rb +0 -2
  160. data/lib/puppet/util/windows.rb +3 -0
  161. data/lib/puppet/util.rb +4 -3
  162. data/lib/puppet/version.rb +1 -1
  163. data/lib/puppet.rb +5 -9
  164. data/locales/puppet.pot +408 -364
  165. data/man/man5/puppet.conf.5 +303 -275
  166. data/man/man8/puppet-agent.8 +4 -1
  167. data/man/man8/puppet-apply.8 +1 -1
  168. data/man/man8/puppet-catalog.8 +9 -9
  169. data/man/man8/puppet-config.8 +1 -1
  170. data/man/man8/puppet-describe.8 +1 -1
  171. data/man/man8/puppet-device.8 +1 -1
  172. data/man/man8/puppet-doc.8 +1 -1
  173. data/man/man8/puppet-epp.8 +1 -1
  174. data/man/man8/puppet-facts.8 +8 -8
  175. data/man/man8/puppet-filebucket.8 +1 -1
  176. data/man/man8/puppet-generate.8 +1 -1
  177. data/man/man8/puppet-help.8 +1 -1
  178. data/man/man8/puppet-key.8 +7 -7
  179. data/man/man8/puppet-lookup.8 +1 -1
  180. data/man/man8/puppet-man.8 +1 -1
  181. data/man/man8/puppet-module.8 +3 -3
  182. data/man/man8/puppet-node.8 +5 -5
  183. data/man/man8/puppet-parser.8 +1 -1
  184. data/man/man8/puppet-plugin.8 +1 -1
  185. data/man/man8/puppet-report.8 +5 -5
  186. data/man/man8/puppet-resource.8 +1 -1
  187. data/man/man8/puppet-script.8 +1 -1
  188. data/man/man8/puppet-ssl.8 +1 -1
  189. data/man/man8/puppet-status.8 +4 -4
  190. data/man/man8/puppet.8 +2 -2
  191. data/spec/fixtures/integration/application/agent/cached_deferred_catalog.json +2 -1
  192. data/spec/fixtures/integration/application/agent/lib/facter/agent_spec_role.rb +3 -0
  193. data/spec/fixtures/integration/l10n/envs/prod/modules/demo/Gemfile +4 -0
  194. data/spec/fixtures/integration/l10n/envs/prod/modules/demo/Rakefile +3 -0
  195. data/spec/fixtures/integration/l10n/envs/prod/modules/demo/lib/puppet/functions/l10n.rb +8 -0
  196. data/spec/fixtures/integration/l10n/envs/prod/modules/demo/locales/config.yaml +25 -0
  197. data/spec/fixtures/integration/l10n/envs/prod/modules/demo/locales/ja/puppet-l10n.po +19 -0
  198. data/spec/fixtures/integration/l10n/envs/prod/modules/demo/locales/puppet-l10n.pot +20 -0
  199. data/spec/fixtures/integration/l10n/envs/prod/modules/demo/metadata.json +8 -0
  200. data/spec/fixtures/ssl/127.0.0.1-key.pem +107 -57
  201. data/spec/fixtures/ssl/127.0.0.1.pem +52 -31
  202. data/spec/fixtures/ssl/bad-basic-constraints.pem +57 -35
  203. data/spec/fixtures/ssl/bad-int-basic-constraints.pem +57 -35
  204. data/spec/fixtures/ssl/ca.pem +57 -35
  205. data/spec/fixtures/ssl/crl.pem +28 -18
  206. data/spec/fixtures/ssl/ec-key.pem +11 -11
  207. data/spec/fixtures/ssl/ec.pem +33 -24
  208. data/spec/fixtures/ssl/encrypted-ec-key.pem +12 -12
  209. data/spec/fixtures/ssl/encrypted-key.pem +108 -58
  210. data/spec/fixtures/ssl/intermediate-agent-crl.pem +28 -19
  211. data/spec/fixtures/ssl/intermediate-agent.pem +57 -36
  212. data/spec/fixtures/ssl/intermediate-crl.pem +31 -21
  213. data/spec/fixtures/ssl/intermediate.pem +57 -36
  214. data/spec/fixtures/ssl/oid-key.pem +117 -0
  215. data/spec/fixtures/ssl/oid.pem +69 -0
  216. data/spec/fixtures/ssl/pluto-key.pem +107 -57
  217. data/spec/fixtures/ssl/pluto.pem +52 -30
  218. data/spec/fixtures/ssl/request-key.pem +107 -57
  219. data/spec/fixtures/ssl/request.pem +47 -26
  220. data/spec/fixtures/ssl/revoked-key.pem +107 -57
  221. data/spec/fixtures/ssl/revoked.pem +52 -30
  222. data/spec/fixtures/ssl/signed-key.pem +107 -57
  223. data/spec/fixtures/ssl/signed.pem +52 -30
  224. data/spec/fixtures/ssl/tampered-cert.pem +52 -30
  225. data/spec/fixtures/ssl/tampered-csr.pem +47 -26
  226. data/spec/fixtures/ssl/trusted_oid_mapping.yaml +5 -0
  227. data/spec/fixtures/ssl/unknown-127.0.0.1-key.pem +107 -57
  228. data/spec/fixtures/ssl/unknown-127.0.0.1.pem +50 -29
  229. data/spec/fixtures/ssl/unknown-ca-key.pem +107 -57
  230. data/spec/fixtures/ssl/unknown-ca.pem +55 -33
  231. data/spec/integration/application/agent_spec.rb +141 -37
  232. data/spec/integration/application/filebucket_spec.rb +16 -0
  233. data/spec/integration/application/module_spec.rb +21 -0
  234. data/spec/integration/application/resource_spec.rb +64 -0
  235. data/spec/integration/application/ssl_spec.rb +20 -0
  236. data/spec/integration/configurer_spec.rb +18 -2
  237. data/spec/integration/environments/settings_interpolation_spec.rb +0 -4
  238. data/spec/integration/indirector/facts/facter_spec.rb +93 -39
  239. data/spec/integration/l10n/compiler_spec.rb +37 -0
  240. data/spec/integration/parser/pcore_resource_spec.rb +10 -0
  241. data/spec/integration/transaction/report_spec.rb +1 -1
  242. data/spec/integration/type/exec_spec.rb +70 -45
  243. data/spec/integration/type/file_spec.rb +2 -2
  244. data/spec/integration/type/package_spec.rb +6 -6
  245. data/spec/integration/util/rdoc/parser_spec.rb +1 -1
  246. data/spec/integration/util/windows/process_spec.rb +1 -9
  247. data/spec/lib/puppet/test_ca.rb +7 -2
  248. data/spec/lib/puppet_spec/modules.rb +13 -2
  249. data/spec/lib/puppet_spec/puppetserver.rb +15 -0
  250. data/spec/lib/puppet_spec/settings.rb +1 -0
  251. data/spec/shared_behaviours/documentation_on_faces.rb +0 -2
  252. data/spec/shared_contexts/l10n.rb +27 -0
  253. data/spec/spec_helper.rb +1 -10
  254. data/spec/unit/application/agent_spec.rb +7 -2
  255. data/spec/unit/application/apply_spec.rb +76 -56
  256. data/spec/unit/application/resource_spec.rb +29 -0
  257. data/spec/unit/configurer/downloader_spec.rb +6 -0
  258. data/spec/unit/configurer_spec.rb +256 -57
  259. data/spec/unit/defaults_spec.rb +1 -0
  260. data/spec/unit/environments_spec.rb +184 -0
  261. data/spec/unit/facter_impl_spec.rb +31 -0
  262. data/spec/unit/file_bucket/dipper_spec.rb +2 -2
  263. data/spec/unit/file_serving/configuration/parser_spec.rb +23 -0
  264. data/spec/unit/file_serving/configuration_spec.rb +14 -4
  265. data/spec/unit/file_serving/fileset_spec.rb +60 -0
  266. data/spec/unit/file_serving/mount/scripts_spec.rb +69 -0
  267. data/spec/unit/file_system_spec.rb +13 -0
  268. data/spec/unit/functions/assert_type_spec.rb +1 -1
  269. data/spec/unit/functions/empty_spec.rb +10 -0
  270. data/spec/unit/functions/logging_spec.rb +1 -0
  271. data/spec/unit/functions/lookup_spec.rb +64 -0
  272. data/spec/unit/functions/unwrap_spec.rb +8 -0
  273. data/spec/unit/functions4_spec.rb +2 -2
  274. data/spec/unit/gettext/config_spec.rb +12 -0
  275. data/spec/unit/http/client_spec.rb +58 -1
  276. data/spec/unit/http/service/compiler_spec.rb +131 -0
  277. data/spec/unit/indirector/catalog/compiler_spec.rb +101 -10
  278. data/spec/unit/indirector/catalog/rest_spec.rb +8 -0
  279. data/spec/unit/indirector/indirection_spec.rb +10 -3
  280. data/spec/unit/indirector/resource/ral_spec.rb +40 -75
  281. data/spec/unit/interface/action_spec.rb +0 -9
  282. data/spec/unit/module_spec.rb +15 -1
  283. data/spec/unit/module_tool/applications/installer_spec.rb +51 -12
  284. data/spec/unit/network/authstore_spec.rb +0 -15
  285. data/spec/unit/network/formats_spec.rb +6 -0
  286. data/spec/unit/parser/functions/fqdn_rand_spec.rb +15 -1
  287. data/spec/unit/parser/templatewrapper_spec.rb +12 -2
  288. data/spec/unit/pops/parser/parse_containers_spec.rb +0 -11
  289. data/spec/unit/pops/serialization/to_from_hr_spec.rb +58 -0
  290. data/spec/unit/pops/serialization/to_stringified_spec.rb +5 -0
  291. data/spec/unit/pops/types/p_sem_ver_type_spec.rb +18 -0
  292. data/spec/unit/pops/types/p_sensitive_type_spec.rb +18 -0
  293. data/spec/unit/pops/types/type_calculator_spec.rb +6 -0
  294. data/spec/unit/provider/package/gem_spec.rb +1 -1
  295. data/spec/unit/provider/package/nim_spec.rb +42 -0
  296. data/spec/unit/provider/package/pip2_spec.rb +1 -1
  297. data/spec/unit/provider/package/pip3_spec.rb +1 -1
  298. data/spec/unit/provider/package/pip_spec.rb +38 -1
  299. data/spec/unit/provider/package/pkg_spec.rb +29 -4
  300. data/spec/unit/provider/package/puppet_gem_spec.rb +1 -1
  301. data/spec/unit/provider/package/puppetserver_gem_spec.rb +1 -1
  302. data/spec/unit/provider/parsedfile_spec.rb +10 -0
  303. data/spec/unit/provider/service/init_spec.rb +1 -0
  304. data/spec/unit/provider/service/launchd_spec.rb +11 -0
  305. data/spec/unit/provider/service/openwrt_spec.rb +3 -1
  306. data/spec/unit/provider/service/systemd_spec.rb +43 -9
  307. data/spec/unit/provider/service/windows_spec.rb +202 -0
  308. data/spec/unit/provider/user/aix_spec.rb +100 -0
  309. data/spec/unit/provider/user/directoryservice_spec.rb +68 -36
  310. data/spec/unit/provider/user/useradd_spec.rb +43 -2
  311. data/spec/unit/provider_spec.rb +4 -4
  312. data/spec/unit/puppet_spec.rb +12 -4
  313. data/spec/unit/resource/catalog_spec.rb +14 -1
  314. data/spec/unit/resource_spec.rb +58 -2
  315. data/spec/unit/settings_spec.rb +97 -56
  316. data/spec/unit/ssl/certificate_request_spec.rb +8 -14
  317. data/spec/unit/ssl/state_machine_spec.rb +19 -5
  318. data/spec/unit/transaction/additional_resource_generator_spec.rb +0 -2
  319. data/spec/unit/transaction_spec.rb +18 -20
  320. data/spec/unit/type/exec_spec.rb +76 -29
  321. data/spec/unit/type/file/selinux_spec.rb +3 -3
  322. data/spec/unit/type/file/source_spec.rb +4 -4
  323. data/spec/unit/type/service_spec.rb +86 -188
  324. data/spec/unit/type/tidy_spec.rb +24 -7
  325. data/spec/unit/type/user_spec.rb +45 -0
  326. data/spec/unit/type_spec.rb +2 -2
  327. data/spec/unit/util/logging_spec.rb +2 -0
  328. data/spec/unit/util/selinux_spec.rb +87 -16
  329. data/spec/unit/util/windows/sid_spec.rb +39 -4
  330. data/tasks/generate_cert_fixtures.rake +12 -3
  331. data/tasks/parallel.rake +3 -3
  332. metadata +49 -95
  333. data/ext/README.environment +0 -8
  334. data/ext/dbfix.sql +0 -132
  335. data/ext/debian/README.Debian +0 -8
  336. data/ext/debian/README.source +0 -2
  337. data/ext/debian/TODO.Debian +0 -1
  338. data/ext/debian/changelog.erb +0 -1122
  339. data/ext/debian/compat +0 -1
  340. data/ext/debian/control +0 -144
  341. data/ext/debian/copyright +0 -339
  342. data/ext/debian/docs +0 -1
  343. data/ext/debian/fileserver.conf +0 -41
  344. data/ext/debian/puppet-common.dirs +0 -13
  345. data/ext/debian/puppet-common.install +0 -3
  346. data/ext/debian/puppet-common.lintian-overrides +0 -5
  347. data/ext/debian/puppet-common.manpages +0 -28
  348. data/ext/debian/puppet-common.postinst +0 -35
  349. data/ext/debian/puppet-common.postrm +0 -33
  350. data/ext/debian/puppet-el.dirs +0 -1
  351. data/ext/debian/puppet-el.emacsen-install +0 -25
  352. data/ext/debian/puppet-el.emacsen-remove +0 -11
  353. data/ext/debian/puppet-el.emacsen-startup +0 -9
  354. data/ext/debian/puppet-el.install +0 -1
  355. data/ext/debian/puppet-testsuite.install +0 -2
  356. data/ext/debian/puppet-testsuite.lintian-overrides +0 -4
  357. data/ext/debian/puppet.lintian-overrides +0 -3
  358. data/ext/debian/puppet.logrotate +0 -20
  359. data/ext/debian/puppet.postinst +0 -20
  360. data/ext/debian/puppet.postrm +0 -20
  361. data/ext/debian/puppet.preinst +0 -20
  362. data/ext/debian/puppetmaster-common.install +0 -2
  363. data/ext/debian/puppetmaster-common.manpages +0 -2
  364. data/ext/debian/puppetmaster-common.postinst +0 -6
  365. data/ext/debian/puppetmaster-passenger.dirs +0 -4
  366. data/ext/debian/puppetmaster-passenger.postinst +0 -162
  367. data/ext/debian/puppetmaster-passenger.postrm +0 -61
  368. data/ext/debian/puppetmaster.README.debian +0 -17
  369. data/ext/debian/puppetmaster.default +0 -14
  370. data/ext/debian/puppetmaster.init +0 -137
  371. data/ext/debian/puppetmaster.lintian-overrides +0 -3
  372. data/ext/debian/puppetmaster.postinst +0 -20
  373. data/ext/debian/puppetmaster.postrm +0 -5
  374. data/ext/debian/puppetmaster.preinst +0 -22
  375. data/ext/debian/rules +0 -132
  376. data/ext/debian/source/format +0 -1
  377. data/ext/debian/source/options +0 -1
  378. data/ext/debian/vim-puppet.README.Debian +0 -13
  379. data/ext/debian/vim-puppet.dirs +0 -5
  380. data/ext/debian/vim-puppet.yaml +0 -7
  381. data/ext/debian/watch +0 -2
  382. data/ext/freebsd/puppetd +0 -26
  383. data/ext/freebsd/puppetmasterd +0 -26
  384. data/ext/gentoo/conf.d/puppet +0 -5
  385. data/ext/gentoo/conf.d/puppetmaster +0 -12
  386. data/ext/gentoo/init.d/puppet +0 -38
  387. data/ext/gentoo/init.d/puppetmaster +0 -51
  388. data/ext/gentoo/puppet/fileserver.conf +0 -41
  389. data/ext/ips/puppet-agent +0 -44
  390. data/ext/ips/puppet-master +0 -44
  391. data/ext/ips/puppet.p5m.erb +0 -12
  392. data/ext/ips/puppetagent.xml +0 -42
  393. data/ext/ips/puppetmaster.xml +0 -42
  394. data/ext/ips/rules +0 -19
  395. data/ext/ips/transforms +0 -34
  396. data/ext/ldap/puppet.schema +0 -24
  397. data/ext/logcheck/puppet +0 -23
  398. data/ext/osx/file_mapping.yaml +0 -33
  399. data/ext/osx/postflight.erb +0 -109
  400. data/ext/osx/preflight.erb +0 -52
  401. data/ext/osx/prototype.plist.erb +0 -38
  402. data/ext/redhat/fileserver.conf +0 -41
  403. data/ext/redhat/logrotate +0 -21
  404. data/ext/redhat/puppet.spec.erb +0 -842
  405. data/ext/redhat/server.init +0 -128
  406. data/ext/redhat/server.sysconfig +0 -13
  407. data/ext/solaris/pkginfo +0 -6
  408. data/ext/solaris/smf/puppetd.xml +0 -77
  409. data/ext/solaris/smf/puppetmasterd.xml +0 -77
  410. data/ext/solaris/smf/svc-puppetd +0 -71
  411. data/ext/solaris/smf/svc-puppetmasterd +0 -67
  412. data/ext/suse/puppet.spec +0 -310
  413. data/ext/suse/server.init +0 -173
  414. data/ext/yaml_nodes.rb +0 -105
  415. data/spec/unit/indirector/store_configs_spec.rb +0 -7
data/locales/puppet.pot CHANGED
@@ -6,11 +6,11 @@
6
6
  #, fuzzy
7
7
  msgid ""
8
8
  msgstr ""
9
- "Project-Id-Version: Puppet automation framework 6.21.1-62-g86a9c83c34\n"
9
+ "Project-Id-Version: Puppet automation framework 6.24.0-169-g88eaa4c1dd\n"
10
10
  "\n"
11
11
  "Report-Msgid-Bugs-To: https://tickets.puppetlabs.com\n"
12
- "POT-Creation-Date: 2021-04-08 09:48+0000\n"
13
- "PO-Revision-Date: 2021-04-08 09:48+0000\n"
12
+ "POT-Creation-Date: 2021-09-28 10:51+0000\n"
13
+ "PO-Revision-Date: 2021-09-28 10:51+0000\n"
14
14
  "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
15
15
  "Language-Team: LANGUAGE <LL@li.org>\n"
16
16
  "Language: \n"
@@ -28,11 +28,11 @@ msgstr ""
28
28
  msgid "See https://puppet.com/docs/puppet/%{minor_version}/deprecated_language.html"
29
29
  msgstr ""
30
30
 
31
- #: ../lib/hiera/scope.rb:46 ../lib/puppet/parser/scope.rb:534
31
+ #: ../lib/hiera/scope.rb:46 ../lib/puppet/parser/scope.rb:535
32
32
  msgid "Variable: %{name}"
33
33
  msgstr ""
34
34
 
35
- #: ../lib/hiera/scope.rb:47 ../lib/hiera/scope.rb:49 ../lib/puppet/parser/scope.rb:535 ../lib/puppet/parser/scope.rb:537
35
+ #: ../lib/hiera/scope.rb:47 ../lib/hiera/scope.rb:49 ../lib/puppet/parser/scope.rb:536 ../lib/puppet/parser/scope.rb:538
36
36
  msgid "Undefined variable '%{name}'; %{reason}"
37
37
  msgstr ""
38
38
 
@@ -48,21 +48,21 @@ msgstr ""
48
48
  msgid "Config file %{hiera_config} not found, using Hiera defaults"
49
49
  msgstr ""
50
50
 
51
- #: ../lib/puppet.rb:144
51
+ #: ../lib/puppet.rb:140
52
52
  msgid "Support for ruby version %{version} is deprecated and will be removed in a future release. See https://puppet.com/docs/puppet/latest/system_requirements.html for a list of supported ruby versions."
53
53
  msgstr ""
54
54
 
55
- #: ../lib/puppet.rb:230
55
+ #: ../lib/puppet.rb:226
56
56
  msgid "The environmentpath setting cannot be empty or nil."
57
57
  msgstr ""
58
58
 
59
59
  #. TRANSLATORS: `message` is an already translated string of why SSL failed to initialize
60
- #: ../lib/puppet.rb:257
60
+ #: ../lib/puppet.rb:253
61
61
  msgid "Failed to initialize SSL: %{message}"
62
62
  msgstr ""
63
63
 
64
64
  #. TRANSLATORS: `puppet agent -t` is a command and should not be translated
65
- #: ../lib/puppet.rb:259
65
+ #: ../lib/puppet.rb:255
66
66
  msgid "Run `puppet agent -t`"
67
67
  msgstr ""
68
68
 
@@ -184,57 +184,57 @@ msgstr ""
184
184
  msgid "The puppet agent daemon"
185
185
  msgstr ""
186
186
 
187
- #: ../lib/puppet/application/agent.rb:415
187
+ #: ../lib/puppet/application/agent.rb:426
188
188
  msgid "Fingerprint asked but neither the certificate, nor the certificate request have been issued"
189
189
  msgstr ""
190
190
 
191
- #: ../lib/puppet/application/agent.rb:420
191
+ #: ../lib/puppet/application/agent.rb:431
192
192
  msgid "Failed to generate fingerprint: %{message}"
193
193
  msgstr ""
194
194
 
195
- #: ../lib/puppet/application/agent.rb:443
195
+ #: ../lib/puppet/application/agent.rb:454
196
196
  msgid "Starting Puppet client version %{version}"
197
197
  msgstr ""
198
198
 
199
- #: ../lib/puppet/application/agent.rb:459
199
+ #: ../lib/puppet/application/agent.rb:470
200
200
  msgid "The puppet agent command does not take parameters"
201
201
  msgstr ""
202
202
 
203
- #: ../lib/puppet/application/apply.rb:35
203
+ #: ../lib/puppet/application/apply.rb:37
204
204
  msgid "Apply Puppet manifests locally"
205
205
  msgstr ""
206
206
 
207
207
  #. TRANSLATORS "puppet apply" is a program command and should not be translated
208
208
  #. TRANSLATORS "puppet apply" is a program command and should not be translated
209
- #: ../lib/puppet/application/apply.rb:208 ../lib/puppet/application/apply.rb:321
209
+ #: ../lib/puppet/application/apply.rb:212 ../lib/puppet/application/apply.rb:340
210
210
  msgid "For puppet apply"
211
211
  msgstr ""
212
212
 
213
- #: ../lib/puppet/application/apply.rb:216
213
+ #: ../lib/puppet/application/apply.rb:220
214
214
  msgid "%{file} is not readable"
215
215
  msgstr ""
216
216
 
217
- #: ../lib/puppet/application/apply.rb:287 ../lib/puppet/application/script.rb:240
217
+ #: ../lib/puppet/application/apply.rb:306 ../lib/puppet/application/script.rb:241
218
218
  msgid "Exiting"
219
219
  msgstr ""
220
220
 
221
- #: ../lib/puppet/application/apply.rb:331
221
+ #: ../lib/puppet/application/apply.rb:350
222
222
  msgid "Could not deserialize catalog from %{format}: %{detail}"
223
223
  msgstr ""
224
224
 
225
- #: ../lib/puppet/application/apply.rb:352 ../lib/puppet/application/script.rb:145
225
+ #: ../lib/puppet/application/apply.rb:371 ../lib/puppet/application/script.rb:146
226
226
  msgid "Could not find facts for %{node}"
227
227
  msgstr ""
228
228
 
229
- #: ../lib/puppet/application/apply.rb:364 ../lib/puppet/application/script.rb:153
229
+ #: ../lib/puppet/application/apply.rb:383 ../lib/puppet/application/script.rb:154
230
230
  msgid "Could not find node %{node}"
231
231
  msgstr ""
232
232
 
233
- #: ../lib/puppet/application/apply.rb:377 ../lib/puppet/application/script.rb:138
233
+ #: ../lib/puppet/application/apply.rb:396 ../lib/puppet/application/script.rb:139
234
234
  msgid "Could not find file %{manifest}"
235
235
  msgstr ""
236
236
 
237
- #: ../lib/puppet/application/apply.rb:378
237
+ #: ../lib/puppet/application/apply.rb:397
238
238
  msgid "Only one file can be applied per run. Skipping %{files}"
239
239
  msgstr ""
240
240
 
@@ -250,47 +250,47 @@ msgstr ""
250
250
  msgid "Manage remote network devices"
251
251
  msgstr ""
252
252
 
253
- #: ../lib/puppet/application/device.rb:231
253
+ #: ../lib/puppet/application/device.rb:232
254
254
  msgid "resource command requires target"
255
255
  msgstr ""
256
256
 
257
- #: ../lib/puppet/application/device.rb:234
257
+ #: ../lib/puppet/application/device.rb:235
258
258
  msgid "facts command requires target"
259
259
  msgstr ""
260
260
 
261
- #: ../lib/puppet/application/device.rb:237
261
+ #: ../lib/puppet/application/device.rb:238
262
262
  msgid "missing argument: --target is required when using --apply"
263
263
  msgstr ""
264
264
 
265
- #: ../lib/puppet/application/device.rb:238
265
+ #: ../lib/puppet/application/device.rb:239
266
266
  msgid "%{file} does not exist, cannot apply"
267
267
  msgstr ""
268
268
 
269
- #: ../lib/puppet/application/device.rb:256
269
+ #: ../lib/puppet/application/device.rb:257
270
270
  msgid "Target device / certificate '%{target}' not found in %{config}"
271
271
  msgstr ""
272
272
 
273
- #: ../lib/puppet/application/device.rb:258
273
+ #: ../lib/puppet/application/device.rb:259
274
274
  msgid "No device found in %{config}"
275
275
  msgstr ""
276
276
 
277
- #: ../lib/puppet/application/device.rb:317
277
+ #: ../lib/puppet/application/device.rb:318
278
278
  msgid "retrieving resource: %{resource} from %{target} at %{scheme}%{url_host}%{port}%{url_path}"
279
279
  msgstr ""
280
280
 
281
- #: ../lib/puppet/application/device.rb:332
281
+ #: ../lib/puppet/application/device.rb:333
282
282
  msgid "retrieving facts from %{target} at %{scheme}%{url_host}%{port}%{url_path}"
283
283
  msgstr ""
284
284
 
285
- #: ../lib/puppet/application/device.rb:355
285
+ #: ../lib/puppet/application/device.rb:356
286
286
  msgid "starting applying configuration to %{target} at %{scheme}%{url_host}%{port}%{url_path}"
287
287
  msgstr ""
288
288
 
289
- #: ../lib/puppet/application/device.rb:393 ../lib/puppet/application/resource.rb:196
289
+ #: ../lib/puppet/application/device.rb:394 ../lib/puppet/application/resource.rb:201
290
290
  msgid "You must specify the type to display"
291
291
  msgstr ""
292
292
 
293
- #: ../lib/puppet/application/device.rb:394 ../lib/puppet/application/resource.rb:197
293
+ #: ../lib/puppet/application/device.rb:395 ../lib/puppet/application/resource.rb:202
294
294
  msgid "Could not find type %{type}"
295
295
  msgstr ""
296
296
 
@@ -352,31 +352,31 @@ msgstr ""
352
352
  msgid "Try 'puppet help %{face} %{action}' for usage"
353
353
  msgstr ""
354
354
 
355
- #: ../lib/puppet/application/filebucket.rb:16
355
+ #: ../lib/puppet/application/filebucket.rb:17
356
356
  msgid "Store and retrieve files in a filebucket"
357
357
  msgstr ""
358
358
 
359
- #: ../lib/puppet/application/filebucket.rb:221
359
+ #: ../lib/puppet/application/filebucket.rb:222
360
360
  msgid "You must specify a file to back up"
361
361
  msgstr ""
362
362
 
363
- #: ../lib/puppet/application/filebucket.rb:225
363
+ #: ../lib/puppet/application/filebucket.rb:226
364
364
  msgid "%{file}: no such file"
365
365
  msgstr ""
366
366
 
367
- #: ../lib/puppet/application/filebucket.rb:229
367
+ #: ../lib/puppet/application/filebucket.rb:230
368
368
  msgid "%{file}: cannot read file"
369
369
  msgstr ""
370
370
 
371
- #: ../lib/puppet/application/filebucket.rb:251 ../lib/puppet/application/filebucket.rb:274
371
+ #: ../lib/puppet/application/filebucket.rb:252 ../lib/puppet/application/filebucket.rb:275
372
372
  msgid "Need exactly two arguments: filebucket diff <file_a> <file_b>"
373
373
  msgstr ""
374
374
 
375
- #: ../lib/puppet/application/filebucket.rb:271
375
+ #: ../lib/puppet/application/filebucket.rb:272
376
376
  msgid "Comparing %{checksum_a} %{checksum_b} %{file_a} %{file_b}"
377
377
  msgstr ""
378
378
 
379
- #: ../lib/puppet/application/filebucket.rb:285
379
+ #: ../lib/puppet/application/filebucket.rb:286
380
380
  msgid "Cancelling"
381
381
  msgstr ""
382
382
 
@@ -418,19 +418,19 @@ msgstr ""
418
418
  msgid "Incorrect formatted data in %{fact_file} given via the --facts flag"
419
419
  msgstr ""
420
420
 
421
- #: ../lib/puppet/application/resource.rb:32
421
+ #: ../lib/puppet/application/resource.rb:34
422
422
  msgid "The resource abstraction layer shell"
423
423
  msgstr ""
424
424
 
425
- #: ../lib/puppet/application/resource.rb:140
425
+ #: ../lib/puppet/application/resource.rb:145
426
426
  msgid "Editing with Yaml output is not supported"
427
427
  msgstr ""
428
428
 
429
- #: ../lib/puppet/application/resource.rb:204
429
+ #: ../lib/puppet/application/resource.rb:209
430
430
  msgid "Invalid parameter setting %{setting}"
431
431
  msgstr ""
432
432
 
433
- #: ../lib/puppet/application/resource.rb:226
433
+ #: ../lib/puppet/application/resource.rb:241
434
434
  msgid "Listing all file instances is not supported. Please specify a file or directory, e.g. puppet resource file /etc"
435
435
  msgstr ""
436
436
 
@@ -438,11 +438,11 @@ msgstr ""
438
438
  msgid "Run a puppet manifests as a script without compiling a catalog"
439
439
  msgstr ""
440
440
 
441
- #: ../lib/puppet/application/script.rb:125
441
+ #: ../lib/puppet/application/script.rb:126
442
442
  msgid "Bolt must be installed to use the script application"
443
443
  msgstr ""
444
444
 
445
- #: ../lib/puppet/application/script.rb:139
445
+ #: ../lib/puppet/application/script.rb:140
446
446
  msgid "Only one file can be used per run. Skipping %{files}"
447
447
  msgstr ""
448
448
 
@@ -454,55 +454,55 @@ msgstr ""
454
454
  msgid "An action must be specified."
455
455
  msgstr ""
456
456
 
457
- #: ../lib/puppet/application/ssl.rb:129 ../lib/puppet/application/ssl.rb:136
457
+ #: ../lib/puppet/application/ssl.rb:130 ../lib/puppet/application/ssl.rb:137
458
458
  msgid "The certificate for '%{name}' has not yet been signed"
459
459
  msgstr ""
460
460
 
461
- #: ../lib/puppet/application/ssl.rb:147
461
+ #: ../lib/puppet/application/ssl.rb:148
462
462
  msgid "Completed SSL initialization"
463
463
  msgstr ""
464
464
 
465
- #: ../lib/puppet/application/ssl.rb:151
465
+ #: ../lib/puppet/application/ssl.rb:152
466
466
  msgid "Unknown action '%{action}'"
467
467
  msgstr ""
468
468
 
469
- #: ../lib/puppet/application/ssl.rb:165 ../lib/puppet/ssl/state_machine.rb:180
469
+ #: ../lib/puppet/application/ssl.rb:166 ../lib/puppet/ssl/state_machine.rb:180
470
470
  msgid "Creating a new EC SSL key for %{name} using curve %{curve}"
471
471
  msgstr ""
472
472
 
473
- #: ../lib/puppet/application/ssl.rb:168 ../lib/puppet/ssl/key.rb:26
473
+ #: ../lib/puppet/application/ssl.rb:169 ../lib/puppet/ssl/key.rb:26
474
474
  msgid "Creating a new SSL key for %{name}"
475
475
  msgstr ""
476
476
 
477
- #: ../lib/puppet/application/ssl.rb:178
477
+ #: ../lib/puppet/application/ssl.rb:179
478
478
  msgid "Submitted certificate request for '%{name}' to %{url}"
479
479
  msgstr ""
480
480
 
481
- #: ../lib/puppet/application/ssl.rb:181
481
+ #: ../lib/puppet/application/ssl.rb:182
482
482
  msgid "Could not submit certificate request for '%{name}' to %{url} due to a conflict on the server"
483
483
  msgstr ""
484
484
 
485
- #: ../lib/puppet/application/ssl.rb:183 ../lib/puppet/application/ssl.rb:186
485
+ #: ../lib/puppet/application/ssl.rb:184 ../lib/puppet/application/ssl.rb:187
486
486
  msgid "Failed to submit certificate request: %{message}"
487
487
  msgstr ""
488
488
 
489
- #: ../lib/puppet/application/ssl.rb:194
489
+ #: ../lib/puppet/application/ssl.rb:195
490
490
  msgid "Downloading certificate '%{name}' from %{url}"
491
491
  msgstr ""
492
492
 
493
- #: ../lib/puppet/application/ssl.rb:198
493
+ #: ../lib/puppet/application/ssl.rb:199
494
494
  msgid "Downloaded certificate '%{name}' with fingerprint %{fingerprint}"
495
495
  msgstr ""
496
496
 
497
- #: ../lib/puppet/application/ssl.rb:211 ../lib/puppet/application/ssl.rb:214
497
+ #: ../lib/puppet/application/ssl.rb:212 ../lib/puppet/application/ssl.rb:215
498
498
  msgid "Failed to download certificate: %{message}"
499
499
  msgstr ""
500
500
 
501
- #: ../lib/puppet/application/ssl.rb:243 ../lib/puppet/application/ssl.rb:246
501
+ #: ../lib/puppet/application/ssl.rb:244 ../lib/puppet/application/ssl.rb:247
502
502
  msgid "Failed to connect to the CA to determine if certificate %{certname} has been cleaned"
503
503
  msgstr ""
504
504
 
505
- #: ../lib/puppet/application/ssl.rb:250
505
+ #: ../lib/puppet/application/ssl.rb:251
506
506
  msgid ""
507
507
  "The certificate %{certname} must be cleaned from the CA first. To fix this,\n"
508
508
  "run the following commands on the CA:\n"
@@ -510,7 +510,7 @@ msgid ""
510
510
  " puppet ssl clean\n"
511
511
  msgstr ""
512
512
 
513
- #: ../lib/puppet/application/ssl.rb:273
513
+ #: ../lib/puppet/application/ssl.rb:274
514
514
  msgid "Removed %{label} %{path}"
515
515
  msgstr ""
516
516
 
@@ -538,93 +538,105 @@ msgstr ""
538
538
  msgid "Not using cached catalog because its environment '%{catalog_env}' does not match '%{local_env}'"
539
539
  msgstr ""
540
540
 
541
- #: ../lib/puppet/configurer.rb:100 ../lib/puppet/configurer.rb:182
541
+ #: ../lib/puppet/configurer.rb:100 ../lib/puppet/configurer.rb:185
542
542
  msgid "Using cached catalog from environment '%{catalog_env}'"
543
543
  msgstr ""
544
544
 
545
- #: ../lib/puppet/configurer.rb:175
545
+ #: ../lib/puppet/configurer.rb:178
546
546
  msgid "Could not retrieve catalog; skipping run"
547
547
  msgstr ""
548
548
 
549
- #: ../lib/puppet/configurer.rb:191
549
+ #: ../lib/puppet/configurer.rb:194
550
550
  msgid "Applied catalog in %{seconds} seconds"
551
551
  msgstr ""
552
552
 
553
- #: ../lib/puppet/configurer.rb:227
553
+ #: ../lib/puppet/configurer.rb:230
554
554
  msgid "Could not select a functional puppet server from server_list: '%{server_list}'"
555
555
  msgstr ""
556
556
 
557
557
  #. TRANSLATORS 'server_list' is the name of a setting and should not be translated
558
- #: ../lib/puppet/configurer.rb:241
558
+ #: ../lib/puppet/configurer.rb:244
559
559
  msgid "Selected puppet server from the `server_list` setting: %{server}:%{port}"
560
560
  msgstr ""
561
561
 
562
- #: ../lib/puppet/configurer.rb:277
562
+ #: ../lib/puppet/configurer.rb:281
563
563
  msgid "Local environment: '%{local_env}' doesn't match the environment of the cached catalog '%{catalog_env}', switching agent to '%{catalog_env}'."
564
564
  msgstr ""
565
565
 
566
- #: ../lib/puppet/configurer.rb:322
567
- msgid "Local environment: '%{local_env}' doesn't match server specified node environment '%{node_env}', switching agent to '%{node_env}'."
566
+ #: ../lib/puppet/configurer.rb:304
567
+ msgid "Environment not passed via CLI and no catalog was given, attempting to find out the last server-specified environment"
568
568
  msgstr ""
569
569
 
570
- #: ../lib/puppet/configurer.rb:337
571
- msgid "Using configured environment '%{env}'"
570
+ #: ../lib/puppet/configurer.rb:309
571
+ msgid "Could not find a usable environment in the lastrunfile. Either the file does not exist, does not have the required keys, or the values of 'initial_environment' and 'converged_environment' are identical."
572
572
  msgstr ""
573
573
 
574
- #: ../lib/puppet/configurer.rb:341
575
- msgid "Unable to fetch my node definition, but the agent run will continue:"
574
+ #: ../lib/puppet/configurer.rb:313
575
+ msgid "Using environment '%{env}'"
576
576
  msgstr ""
577
577
 
578
- #: ../lib/puppet/configurer.rb:369
578
+ #: ../lib/puppet/configurer.rb:344
579
579
  msgid "Not using catalog because its environment '%{catalog_env}' does not match agent specified environment '%{local_env}' and strict_environment_mode is set"
580
580
  msgstr ""
581
581
 
582
- #: ../lib/puppet/configurer.rb:380
582
+ #: ../lib/puppet/configurer.rb:355
583
583
  msgid "Catalog environment didn't stabilize after %{tries} fetches, aborting run"
584
584
  msgstr ""
585
585
 
586
- #: ../lib/puppet/configurer.rb:382
586
+ #: ../lib/puppet/configurer.rb:357
587
587
  msgid "Local environment: '%{local_env}' doesn't match server specified environment '%{catalog_env}', restarting agent run with environment '%{catalog_env}'"
588
588
  msgstr ""
589
589
 
590
- #: ../lib/puppet/configurer.rb:436
590
+ #: ../lib/puppet/configurer.rb:420
591
591
  msgid "Failed to apply catalog: %{detail}"
592
592
  msgstr ""
593
593
 
594
- #: ../lib/puppet/configurer.rb:465 ../lib/puppet/http/resolver/server_list.rb:67
594
+ #: ../lib/puppet/configurer.rb:451
595
+ msgid "Environment '%{environment}' not found on server, skipping initial pluginsync."
596
+ msgstr ""
597
+
598
+ #: ../lib/puppet/configurer.rb:468 ../lib/puppet/http/resolver/server_list.rb:68 ../lib/puppet/http/resolver/server_list.rb:72
595
599
  msgid "Puppet server %{host}:%{port} is unavailable: %{code} %{reason}"
596
600
  msgstr ""
597
601
 
598
602
  #. TRANSLATORS 'server_list' is the name of a setting and should not be translated
599
- #: ../lib/puppet/configurer.rb:469 ../lib/puppet/http/resolver/server_list.rb:70
603
+ #: ../lib/puppet/configurer.rb:472 ../lib/puppet/http/resolver/server_list.rb:77 ../lib/puppet/http/resolver/server_list.rb:80
600
604
  msgid "Unable to connect to server from server_list setting: %{detail}"
601
605
  msgstr ""
602
606
 
603
- #: ../lib/puppet/configurer.rb:480 ../lib/puppet/face/report.rb:47
607
+ #: ../lib/puppet/configurer.rb:488
608
+ msgid "Found last server-specified environment: %{environment}"
609
+ msgstr ""
610
+
611
+ #: ../lib/puppet/configurer.rb:491
612
+ msgid "Could not find last server-specified environment: %{detail}"
613
+ msgstr ""
614
+
615
+ #: ../lib/puppet/configurer.rb:508 ../lib/puppet/face/report.rb:47
604
616
  msgid "Could not send report: %{detail}"
605
617
  msgstr ""
606
618
 
607
- #: ../lib/puppet/configurer.rb:489
619
+ #: ../lib/puppet/configurer.rb:517
608
620
  msgid "Could not save last run local report: %{detail}"
609
621
  msgstr ""
610
622
 
611
- #: ../lib/puppet/configurer.rb:508
623
+ #: ../lib/puppet/configurer.rb:536
612
624
  msgid "Uploading facts for %{node} to %{server}"
613
625
  msgstr ""
614
626
 
615
- #: ../lib/puppet/configurer.rb:516
627
+ #: ../lib/puppet/configurer.rb:544
616
628
  msgid "Failed to submit facts: %{detail}"
617
629
  msgstr ""
618
630
 
619
- #: ../lib/puppet/configurer.rb:531
631
+ #: ../lib/puppet/configurer.rb:559
620
632
  msgid "Could not run command from %{setting}: %{detail}"
621
633
  msgstr ""
622
634
 
623
- #: ../lib/puppet/configurer.rb:549
635
+ #: ../lib/puppet/configurer.rb:577
624
636
  msgid "Could not retrieve catalog from cache: %{detail}"
625
637
  msgstr ""
626
638
 
627
- #: ../lib/puppet/configurer.rb:570
639
+ #: ../lib/puppet/configurer.rb:599
628
640
  msgid "Could not retrieve catalog from remote server: %{detail}"
629
641
  msgstr ""
630
642
 
@@ -664,7 +676,7 @@ msgstr ""
664
676
  msgid "TrustedInformation expected a certificate, but none was given."
665
677
  msgstr ""
666
678
 
667
- #: ../lib/puppet/context/trusted_information.rb:104 ../lib/puppet/parser/scope.rb:835
679
+ #: ../lib/puppet/context/trusted_information.rb:104 ../lib/puppet/parser/scope.rb:836
668
680
  msgid "Unsupported data type: '%{klass}'"
669
681
  msgstr ""
670
682
 
@@ -728,11 +740,11 @@ msgid "Invalid value '%{value}' for parameter %{name}. Allowed values are '%{all
728
740
  msgstr ""
729
741
 
730
742
  #. TRANSLATORS 'pluginsync' is a setting and should not be translated
731
- #: ../lib/puppet/defaults.rb:2015
743
+ #: ../lib/puppet/defaults.rb:2023
732
744
  msgid "Setting 'pluginsync' is deprecated."
733
745
  msgstr ""
734
746
 
735
- #: ../lib/puppet/defaults.rb:2250
747
+ #: ../lib/puppet/defaults.rb:2258
736
748
  msgid "The 'func3x_check' setting is deprecated and will be removed in a future release."
737
749
  msgstr ""
738
750
 
@@ -1460,19 +1472,19 @@ msgstr ""
1460
1472
  msgid "At least one node should be passed"
1461
1473
  msgstr ""
1462
1474
 
1463
- #: ../lib/puppet/face/node/clean.rb:64
1475
+ #: ../lib/puppet/face/node/clean.rb:75
1464
1476
  msgid "Not managing %{node} certs as this host is not a CA"
1465
1477
  msgstr ""
1466
1478
 
1467
- #: ../lib/puppet/face/node/clean.rb:71
1479
+ #: ../lib/puppet/face/node/clean.rb:82
1468
1480
  msgid "%{node}'s facts removed"
1469
1481
  msgstr ""
1470
1482
 
1471
- #: ../lib/puppet/face/node/clean.rb:77
1483
+ #: ../lib/puppet/face/node/clean.rb:88
1472
1484
  msgid "%{node}'s cached node removed"
1473
1485
  msgstr ""
1474
1486
 
1475
- #: ../lib/puppet/face/node/clean.rb:83
1487
+ #: ../lib/puppet/face/node/clean.rb:94
1476
1488
  msgid "%{node}'s reports removed"
1477
1489
  msgstr ""
1478
1490
 
@@ -1690,15 +1702,15 @@ msgstr ""
1690
1702
  msgid "Relative paths must not be fully qualified"
1691
1703
  msgstr ""
1692
1704
 
1693
- #: ../lib/puppet/file_serving/configuration.rb:55
1705
+ #: ../lib/puppet/file_serving/configuration.rb:56
1694
1706
  msgid "Cannot find file: Invalid mount '%{mount_name}'"
1695
1707
  msgstr ""
1696
1708
 
1697
- #: ../lib/puppet/file_serving/configuration.rb:56
1709
+ #: ../lib/puppet/file_serving/configuration.rb:57
1698
1710
  msgid "Cannot find file: Invalid relative path '%{path}'"
1699
1711
  msgstr ""
1700
1712
 
1701
- #: ../lib/puppet/file_serving/configuration.rb:109
1713
+ #: ../lib/puppet/file_serving/configuration.rb:112
1702
1714
  msgid "Error parsing fileserver configuration: %{detail}; using old configuration"
1703
1715
  msgstr ""
1704
1716
 
@@ -1734,11 +1746,11 @@ msgstr ""
1734
1746
  msgid "%{mount} is already mounted at %{name} at %{error_location}"
1735
1747
  msgstr ""
1736
1748
 
1737
- #: ../lib/puppet/file_serving/configuration/parser.rb:124
1749
+ #: ../lib/puppet/file_serving/configuration/parser.rb:126
1738
1750
  msgid "Removing mount \"%{mount}\": %{detail}"
1739
1751
  msgstr ""
1740
1752
 
1741
- #: ../lib/puppet/file_serving/configuration/parser.rb:128
1753
+ #: ../lib/puppet/file_serving/configuration/parser.rb:130
1742
1754
  msgid "The '%{mount}' module can not have a path. Ignoring attempt to set it"
1743
1755
  msgstr ""
1744
1756
 
@@ -1750,21 +1762,29 @@ msgstr ""
1750
1762
  msgid "Fileset paths must be fully qualified: %{path}"
1751
1763
  msgstr ""
1752
1764
 
1753
- #: ../lib/puppet/file_serving/fileset.rb:50
1765
+ #: ../lib/puppet/file_serving/fileset.rb:51
1754
1766
  msgid "Fileset paths must exist"
1755
1767
  msgstr ""
1756
1768
 
1757
1769
  #. TRANSLATORS "recurse" and "recurselimit" are parameter names and should not be translated
1758
- #: ../lib/puppet/file_serving/fileset.rb:52
1770
+ #: ../lib/puppet/file_serving/fileset.rb:53
1759
1771
  msgid "Fileset recurse parameter must not be a number anymore, please use recurselimit"
1760
1772
  msgstr ""
1761
1773
 
1774
+ #: ../lib/puppet/file_serving/fileset.rb:69
1775
+ msgid "The directory '%{path}' contains %{entries} entries, which exceeds the limit of %{munged_max_files} specified by the max_files parameter for this resource. The limit may be increased, but be aware that large number of file resources can result in excessive resource consumption and degraded performance. Consider using an alternate method to manage large directory trees"
1776
+ msgstr ""
1777
+
1778
+ #: ../lib/puppet/file_serving/fileset.rb:71
1779
+ msgid "The directory '%{path}' contains %{entries} entries, which exceeds the default soft limit %{soft_max_files} and may cause excessive resource consumption and degraded performance. To remove this warning set a value for `max_files` parameter or consider using an alternate method to manage large directory trees"
1780
+ msgstr ""
1781
+
1762
1782
  #. TRANSLATORS ":links" is a parameter name and should not be translated
1763
- #: ../lib/puppet/file_serving/fileset.rb:80
1783
+ #: ../lib/puppet/file_serving/fileset.rb:92
1764
1784
  msgid "Invalid :links value '%{links}'"
1765
1785
  msgstr ""
1766
1786
 
1767
- #: ../lib/puppet/file_serving/fileset.rb:93
1787
+ #: ../lib/puppet/file_serving/fileset.rb:105
1768
1788
  msgid "Invalid option '%{option}'"
1769
1789
  msgstr ""
1770
1790
 
@@ -1820,7 +1840,7 @@ msgstr ""
1820
1840
  msgid "No client; expanding '%{path}' with local host"
1821
1841
  msgstr ""
1822
1842
 
1823
- #: ../lib/puppet/file_serving/mount/modules.rb:8
1843
+ #: ../lib/puppet/file_serving/mount/modules.rb:8 ../lib/puppet/file_serving/mount/scripts.rb:6
1824
1844
  msgid "No module specified"
1825
1845
  msgstr ""
1826
1846
 
@@ -2128,7 +2148,7 @@ msgstr ""
2128
2148
  msgid "The given data requires an Integer index at %{walked_path}, got '%{type}'"
2129
2149
  msgstr ""
2130
2150
 
2131
- #: ../lib/puppet/functions/empty.rb:74
2151
+ #: ../lib/puppet/functions/empty.rb:82
2132
2152
  msgid "Calling function empty() with %{arg_type} value is deprecated."
2133
2153
  msgstr ""
2134
2154
 
@@ -2218,7 +2238,7 @@ msgstr ""
2218
2238
  msgid "slice(): block must define one parameter, or the same number of parameters as the given size of the slice (%{slice_size}). Block has %{serving_size}; %{parameter_names}"
2219
2239
  msgstr ""
2220
2240
 
2221
- #: ../lib/puppet/functions/strftime.rb:207
2241
+ #: ../lib/puppet/functions/strftime.rb:208
2222
2242
  msgid "The argument signature (String format, [String timezone]) is deprecated for #strftime. See #strftime documentation and Timespan type for more info"
2223
2243
  msgstr ""
2224
2244
 
@@ -2336,6 +2356,10 @@ msgstr ""
2336
2356
  msgid "Location URI is invalid: %{detail}"
2337
2357
  msgstr ""
2338
2358
 
2359
+ #: ../lib/puppet/http/resolver/server_list.rb:70 ../lib/puppet/http/resolver/server_list.rb:78
2360
+ msgid "Trying with next server from server_list."
2361
+ msgstr ""
2362
+
2339
2363
  #: ../lib/puppet/http/retry_after_handler.rb:83
2340
2364
  msgid "Failed to parse Retry-After header '%{retry_after}' as an integer or RFC 2822 date"
2341
2365
  msgstr ""
@@ -2377,120 +2401,120 @@ msgstr ""
2377
2401
  msgid "Catalog for %{request} was requested with fact definition for the wrong node (%{fact_name})."
2378
2402
  msgstr ""
2379
2403
 
2380
- #: ../lib/puppet/indirector/catalog/compiler.rb:71
2404
+ #: ../lib/puppet/indirector/catalog/compiler.rb:85
2381
2405
  msgid "Setup server facts for compiling"
2382
2406
  msgstr ""
2383
2407
 
2384
- #: ../lib/puppet/indirector/catalog/compiler.rb:95
2408
+ #: ../lib/puppet/indirector/catalog/compiler.rb:113
2385
2409
  msgid "Unsupported facts format"
2386
2410
  msgstr ""
2387
2411
 
2388
2412
  #. TRANSLATORS Inlining refers to adding additional metadata (in this case we are not inlining)
2389
- #: ../lib/puppet/indirector/catalog/compiler.rb:136
2413
+ #: ../lib/puppet/indirector/catalog/compiler.rb:154
2390
2414
  msgid "Not inlining absent resource"
2391
2415
  msgstr ""
2392
2416
 
2393
2417
  #. TRANSLATORS Inlining refers to adding additional metadata (in this case we are not inlining)
2394
- #: ../lib/puppet/indirector/catalog/compiler.rb:139
2418
+ #: ../lib/puppet/indirector/catalog/compiler.rb:157
2395
2419
  msgid "Not inlining resource without sources"
2396
2420
  msgstr ""
2397
2421
 
2398
2422
  #. TRANSLATORS Inlining refers to adding additional metadata (in this case we are not inlining)
2399
- #: ../lib/puppet/indirector/catalog/compiler.rb:142
2423
+ #: ../lib/puppet/indirector/catalog/compiler.rb:160
2400
2424
  msgid "Not inlining unsupported source scheme"
2401
2425
  msgstr ""
2402
2426
 
2403
2427
  #. TRANSLATORS Inlining refers to adding additional metadata (in this case we are not inlining)
2404
- #: ../lib/puppet/indirector/catalog/compiler.rb:164
2428
+ #: ../lib/puppet/indirector/catalog/compiler.rb:182
2405
2429
  msgid "Not inlining file outside environment"
2406
2430
  msgstr ""
2407
2431
 
2408
2432
  #. TRANSLATORS Inlining refers to adding additional metadata
2409
- #: ../lib/puppet/indirector/catalog/compiler.rb:170
2433
+ #: ../lib/puppet/indirector/catalog/compiler.rb:188
2410
2434
  msgid "Inlining file metadata"
2411
2435
  msgstr ""
2412
2436
 
2413
- #: ../lib/puppet/indirector/catalog/compiler.rb:259
2437
+ #: ../lib/puppet/indirector/catalog/compiler.rb:278
2414
2438
  msgid "Could not get metadata for %{resource}"
2415
2439
  msgstr ""
2416
2440
 
2417
- #: ../lib/puppet/indirector/catalog/compiler.rb:280
2441
+ #: ../lib/puppet/indirector/catalog/compiler.rb:299
2418
2442
  msgid "Unable to find a common checksum type between agent '%{agent_type}' and master '%{master_type}'."
2419
2443
  msgstr ""
2420
2444
 
2421
- #: ../lib/puppet/indirector/catalog/compiler.rb:287
2445
+ #: ../lib/puppet/indirector/catalog/compiler.rb:306
2422
2446
  msgid "Compiled static catalog for %{node} in environment %{environment} in %%{seconds} seconds"
2423
2447
  msgstr ""
2424
2448
 
2425
- #: ../lib/puppet/indirector/catalog/compiler.rb:288
2449
+ #: ../lib/puppet/indirector/catalog/compiler.rb:307
2426
2450
  msgid "Compiled static catalog for %{node} in environment %{environment}"
2427
2451
  msgstr ""
2428
2452
 
2429
- #: ../lib/puppet/indirector/catalog/compiler.rb:290
2453
+ #: ../lib/puppet/indirector/catalog/compiler.rb:309
2430
2454
  msgid "Compiled static catalog for %{node} in %%{seconds} seconds"
2431
2455
  msgstr ""
2432
2456
 
2433
- #: ../lib/puppet/indirector/catalog/compiler.rb:291
2457
+ #: ../lib/puppet/indirector/catalog/compiler.rb:310
2434
2458
  msgid "Compiled static catalog for %{node}"
2435
2459
  msgstr ""
2436
2460
 
2437
- #: ../lib/puppet/indirector/catalog/compiler.rb:296
2461
+ #: ../lib/puppet/indirector/catalog/compiler.rb:315
2438
2462
  msgid "Compiled catalog for %{node} in environment %{environment} in %%{seconds} seconds"
2439
2463
  msgstr ""
2440
2464
 
2441
- #: ../lib/puppet/indirector/catalog/compiler.rb:297
2465
+ #: ../lib/puppet/indirector/catalog/compiler.rb:316
2442
2466
  msgid "Compiled catalog for %{node} in environment %{environment}"
2443
2467
  msgstr ""
2444
2468
 
2445
- #: ../lib/puppet/indirector/catalog/compiler.rb:299
2469
+ #: ../lib/puppet/indirector/catalog/compiler.rb:318
2446
2470
  msgid "Compiled catalog for %{node} in %%{seconds} seconds"
2447
2471
  msgstr ""
2448
2472
 
2449
- #: ../lib/puppet/indirector/catalog/compiler.rb:300
2473
+ #: ../lib/puppet/indirector/catalog/compiler.rb:319
2450
2474
  msgid "Compiled catalog for %{node}"
2451
2475
  msgstr ""
2452
2476
 
2453
2477
  #. TRANSLATORS Inlined refers to adding additional metadata
2454
- #: ../lib/puppet/indirector/catalog/compiler.rb:322
2478
+ #: ../lib/puppet/indirector/catalog/compiler.rb:341
2455
2479
  msgid "Inlined resource metadata into static catalog for %{node} in environment %{environment} in %%{seconds} seconds"
2456
2480
  msgstr ""
2457
2481
 
2458
2482
  #. TRANSLATORS Inlined refers to adding additional metadata
2459
- #: ../lib/puppet/indirector/catalog/compiler.rb:324
2483
+ #: ../lib/puppet/indirector/catalog/compiler.rb:343
2460
2484
  msgid "Inlined resource metadata into static catalog for %{node} in environment %{environment}"
2461
2485
  msgstr ""
2462
2486
 
2463
2487
  #. TRANSLATORS Inlined refers to adding additional metadata
2464
- #: ../lib/puppet/indirector/catalog/compiler.rb:327
2488
+ #: ../lib/puppet/indirector/catalog/compiler.rb:346
2465
2489
  msgid "Inlined resource metadata into static catalog for %{node} in %%{seconds} seconds"
2466
2490
  msgstr ""
2467
2491
 
2468
2492
  #. TRANSLATORS Inlined refers to adding additional metadata
2469
- #: ../lib/puppet/indirector/catalog/compiler.rb:329
2493
+ #: ../lib/puppet/indirector/catalog/compiler.rb:348
2470
2494
  msgid "Inlined resource metadata into static catalog for %{node}"
2471
2495
  msgstr ""
2472
2496
 
2473
- #: ../lib/puppet/indirector/catalog/compiler.rb:346
2497
+ #: ../lib/puppet/indirector/catalog/compiler.rb:365
2474
2498
  msgid "Found node information"
2475
2499
  msgstr ""
2476
2500
 
2477
- #: ../lib/puppet/indirector/catalog/compiler.rb:354
2501
+ #: ../lib/puppet/indirector/catalog/compiler.rb:373
2478
2502
  msgid "Failed when searching for node %{name}: %{detail}"
2479
2503
  msgstr ""
2480
2504
 
2481
- #: ../lib/puppet/indirector/catalog/compiler.rb:374
2505
+ #: ../lib/puppet/indirector/catalog/compiler.rb:393
2482
2506
  msgid "Invalid option use_node for a remote request"
2483
2507
  msgstr ""
2484
2508
 
2485
- #: ../lib/puppet/indirector/catalog/compiler.rb:393
2509
+ #: ../lib/puppet/indirector/catalog/compiler.rb:412
2486
2510
  msgid "Could not find node '%{name}'; cannot compile"
2487
2511
  msgstr ""
2488
2512
 
2489
- #: ../lib/puppet/indirector/catalog/compiler.rb:426
2513
+ #: ../lib/puppet/indirector/catalog/compiler.rb:445
2490
2514
  msgid "Could not retrieve fact servername"
2491
2515
  msgstr ""
2492
2516
 
2493
- #: ../lib/puppet/indirector/catalog/compiler.rb:435
2517
+ #: ../lib/puppet/indirector/catalog/compiler.rb:454
2494
2518
  msgid "Could not retrieve either serverip or serverip6 fact"
2495
2519
  msgstr ""
2496
2520
 
@@ -2502,7 +2526,7 @@ msgstr ""
2502
2526
  msgid "Unable to serialize catalog to json, retrying with pson"
2503
2527
  msgstr ""
2504
2528
 
2505
- #: ../lib/puppet/indirector/catalog/rest.rb:34 ../lib/puppet/indirector/facts/rest.rb:22 ../lib/puppet/indirector/file_content/rest.rb:33 ../lib/puppet/indirector/file_metadata/rest.rb:30 ../lib/puppet/indirector/node/rest.rb:25 ../lib/puppet/indirector/rest.rb:146 ../lib/puppet/indirector/status/rest.rb:21
2529
+ #: ../lib/puppet/indirector/catalog/rest.rb:35 ../lib/puppet/indirector/facts/rest.rb:22 ../lib/puppet/indirector/file_content/rest.rb:33 ../lib/puppet/indirector/file_metadata/rest.rb:30 ../lib/puppet/indirector/node/rest.rb:25 ../lib/puppet/indirector/rest.rb:146 ../lib/puppet/indirector/status/rest.rb:21
2506
2530
  msgid "Find %{uri} resulted in 404 with the message: %{body}"
2507
2531
  msgstr ""
2508
2532
 
@@ -2885,7 +2909,7 @@ msgstr ""
2885
2909
  msgid "Could not understand URL %{key}: %{detail}"
2886
2910
  msgstr ""
2887
2911
 
2888
- #: ../lib/puppet/indirector/resource/ral.rb:59
2912
+ #: ../lib/puppet/indirector/resource/ral.rb:64
2889
2913
  msgid "Could not find type %{request_type}"
2890
2914
  msgstr ""
2891
2915
 
@@ -2978,11 +3002,11 @@ msgstr ""
2978
3002
  msgid "Cannot create instances of abstract terminus types"
2979
3003
  msgstr ""
2980
3004
 
2981
- #: ../lib/puppet/indirector/terminus.rb:163
3005
+ #: ../lib/puppet/indirector/terminus.rb:167
2982
3006
  msgid "Instance name %{name} does not match requested key %{key}"
2983
3007
  msgstr ""
2984
3008
 
2985
- #: ../lib/puppet/indirector/terminus.rb:169
3009
+ #: ../lib/puppet/indirector/terminus.rb:173
2986
3010
  msgid "Invalid instance type %{klass}, expected %{model_type}"
2987
3011
  msgstr ""
2988
3012
 
@@ -3051,8 +3075,8 @@ msgstr ""
3051
3075
  msgid "Option %{option} conflicts with existing option %{conflict} on %{face}"
3052
3076
  msgstr ""
3053
3077
 
3054
- #. TRANSLATORS 'Puppet.settings' should not be translated
3055
3078
  #. TRANSLATORS 'Puppet.settings' references to the Puppet settings options and should not be translated
3079
+ #. TRANSLATORS 'Puppet.settings' should not be translated
3056
3080
  #: ../lib/puppet/interface/action.rb:315 ../lib/puppet/interface/option_manager.rb:14
3057
3081
  msgid "Global option %{option} does not exist in Puppet.settings"
3058
3082
  msgstr ""
@@ -3103,43 +3127,43 @@ msgid "Face summary should be a single line; put the long text in 'description'
3103
3127
  msgstr ""
3104
3128
 
3105
3129
  #. TRANSLATORS 'author' is an attribute name and should not be translated
3106
- #: ../lib/puppet/interface/documentation.rb:205
3130
+ #: ../lib/puppet/interface/documentation.rb:206
3107
3131
  msgid "author must be a string; use multiple statements for multiple authors"
3108
3132
  msgstr ""
3109
3133
 
3110
3134
  #. TRANSLATORS 'author' is an attribute name and should not be translated
3111
- #: ../lib/puppet/interface/documentation.rb:210
3135
+ #: ../lib/puppet/interface/documentation.rb:211
3112
3136
  msgid "author should be a single line; use multiple statements for multiple authors"
3113
3137
  msgstr ""
3114
3138
 
3115
3139
  #. TRANSLATORS 'author' is an attribute name and should not be translated
3116
- #: ../lib/puppet/interface/documentation.rb:230
3140
+ #: ../lib/puppet/interface/documentation.rb:231
3117
3141
  msgid "author should be a single line; use multiple statements"
3118
3142
  msgstr ""
3119
3143
 
3120
3144
  #. TRANSLATORS 'copyright' is an attribute name and should not be translated
3121
- #: ../lib/puppet/interface/documentation.rb:251
3145
+ #: ../lib/puppet/interface/documentation.rb:252
3122
3146
  msgid "copyright takes the owners names, then the years covered"
3123
3147
  msgstr ""
3124
3148
 
3125
3149
  #. TRANSLATORS 'copyright' is an attribute name and should not be translated
3126
- #: ../lib/puppet/interface/documentation.rb:275
3150
+ #: ../lib/puppet/interface/documentation.rb:276
3127
3151
  msgid "copyright owner must be a string or an array of strings"
3128
3152
  msgstr ""
3129
3153
 
3130
3154
  #. TRANSLATORS 'copyright' is an attribute name and should not be translated
3131
- #: ../lib/puppet/interface/documentation.rb:312
3155
+ #: ../lib/puppet/interface/documentation.rb:313
3132
3156
  msgid "copyright with a year %{value} is very strange; did you accidentally add or subtract two years?"
3133
3157
  msgstr ""
3134
3158
 
3135
3159
  #. TRANSLATORS 'copyright' is an attribute name and should not be translated
3136
3160
  #. TRANSLATORS 'copyright' is an attribute name and should not be translated
3137
- #: ../lib/puppet/interface/documentation.rb:328 ../lib/puppet/interface/documentation.rb:333
3161
+ #: ../lib/puppet/interface/documentation.rb:329 ../lib/puppet/interface/documentation.rb:334
3138
3162
  msgid "%{value} is not a good copyright year or range"
3139
3163
  msgstr ""
3140
3164
 
3141
3165
  #. TRANSLATORS 'copyright' is an attribute name and should not be translated
3142
- #: ../lib/puppet/interface/documentation.rb:352
3166
+ #: ../lib/puppet/interface/documentation.rb:353
3143
3167
  msgid "%{value} is not a good copyright year, set, or range"
3144
3168
  msgstr ""
3145
3169
 
@@ -3277,11 +3301,11 @@ msgid "Loaded puppet/type/%{name} but no class was created"
3277
3301
  msgstr ""
3278
3302
 
3279
3303
  #. TRANSLATORS 'metadata.json' is a specific file name and should not be translated.
3280
- #: ../lib/puppet/module.rb:221
3304
+ #: ../lib/puppet/module.rb:222
3281
3305
  msgid "%{name} has an invalid and unparsable metadata.json file. The parse error: %{error}"
3282
3306
  msgstr ""
3283
3307
 
3284
- #: ../lib/puppet/module.rb:467
3308
+ #: ../lib/puppet/module.rb:468
3285
3309
  msgid ""
3286
3310
  " Invalid module name '%{name}'; module names must match either:\n"
3287
3311
  " An installed module name (ex. modulename) matching the expression /^[a-z][a-z0-9_]*$/ -or-\n"
@@ -3292,19 +3316,19 @@ msgstr ""
3292
3316
  msgid "Plan %{plan_name} not found in module %{module_name}."
3293
3317
  msgstr ""
3294
3318
 
3295
- #: ../lib/puppet/module/plan.rb:64
3319
+ #: ../lib/puppet/module/plan.rb:63
3296
3320
  msgid "Plan names must start with a lowercase letter and be composed of only lowercase letters, numbers, and underscores"
3297
3321
  msgstr ""
3298
3322
 
3299
- #: ../lib/puppet/module/plan.rb:66
3323
+ #: ../lib/puppet/module/plan.rb:65
3300
3324
  msgid "Plan name cannot have extension %{ext}, must be .pp or .yaml"
3301
3325
  msgstr ""
3302
3326
 
3303
- #: ../lib/puppet/module/plan.rb:69
3327
+ #: ../lib/puppet/module/plan.rb:68
3304
3328
  msgid "Plan name cannot be a reserved word, but was '%{name}'"
3305
3329
  msgstr ""
3306
3330
 
3307
- #: ../lib/puppet/module/plan.rb:72
3331
+ #: ../lib/puppet/module/plan.rb:71
3308
3332
  msgid "Plan name cannot be a Puppet data type, but was '%{name}'"
3309
3333
  msgstr ""
3310
3334
 
@@ -3400,19 +3424,19 @@ msgstr ""
3400
3424
  msgid "No file containing checksums found."
3401
3425
  msgstr ""
3402
3426
 
3403
- #: ../lib/puppet/module_tool/applications/installer.rb:84 ../lib/puppet/module_tool/applications/upgrader.rb:102
3427
+ #: ../lib/puppet/module_tool/applications/installer.rb:88 ../lib/puppet/module_tool/applications/upgrader.rb:102
3404
3428
  msgid "Downloading from %{host} ..."
3405
3429
  msgstr ""
3406
3430
 
3407
- #: ../lib/puppet/module_tool/applications/installer.rb:132 ../lib/puppet/module_tool/applications/upgrader.rb:140
3431
+ #: ../lib/puppet/module_tool/applications/installer.rb:136 ../lib/puppet/module_tool/applications/upgrader.rb:140
3408
3432
  msgid "Resolving dependencies ..."
3409
3433
  msgstr ""
3410
3434
 
3411
- #: ../lib/puppet/module_tool/applications/installer.rb:208
3435
+ #: ../lib/puppet/module_tool/applications/installer.rb:216
3412
3436
  msgid "Preparing to install ..."
3413
3437
  msgstr ""
3414
3438
 
3415
- #: ../lib/puppet/module_tool/applications/installer.rb:211
3439
+ #: ../lib/puppet/module_tool/applications/installer.rb:219
3416
3440
  msgid "Installing -- do not interrupt ..."
3417
3441
  msgstr ""
3418
3442
 
@@ -3535,7 +3559,7 @@ msgstr ""
3535
3559
  msgid "Could not %{action} '%{module_name}' (%{version}); no version satisfies all dependencies"
3536
3560
  msgstr ""
3537
3561
 
3538
- #: ../lib/puppet/module_tool/errors/shared.rb:17 ../lib/puppet/module_tool/errors/shared.rb:186 ../lib/puppet/module_tool/errors/upgrader.rb:58
3562
+ #: ../lib/puppet/module_tool/errors/shared.rb:17 ../lib/puppet/module_tool/errors/shared.rb:203 ../lib/puppet/module_tool/errors/upgrader.rb:58
3539
3563
  msgid "Could not %{action} module '%{module_name}' (%{version})"
3540
3564
  msgstr ""
3541
3565
 
@@ -3625,68 +3649,80 @@ msgid " No version of '%{module_name}' will satisfy dependencies"
3625
3649
  msgstr ""
3626
3650
 
3627
3651
  #: ../lib/puppet/module_tool/errors/shared.rb:135
3628
- msgid "Could not %{action} '%{module_name}'; module is not installed"
3652
+ msgid "Could not %{action} '%{module_name}', did you mean '%{suggestion}'?"
3629
3653
  msgstr ""
3630
3654
 
3631
- #: ../lib/puppet/module_tool/errors/shared.rb:140 ../lib/puppet/module_tool/errors/shared.rb:163 ../lib/puppet/module_tool/errors/shared.rb:204
3655
+ #: ../lib/puppet/module_tool/errors/shared.rb:140 ../lib/puppet/module_tool/errors/shared.rb:157 ../lib/puppet/module_tool/errors/shared.rb:180 ../lib/puppet/module_tool/errors/shared.rb:221
3632
3656
  msgid "Could not %{action} module '%{module_name}'"
3633
3657
  msgstr ""
3634
3658
 
3635
3659
  #: ../lib/puppet/module_tool/errors/shared.rb:141
3660
+ msgid " The name '%{module_name}' is invalid"
3661
+ msgstr ""
3662
+
3663
+ #: ../lib/puppet/module_tool/errors/shared.rb:142
3664
+ msgid " Did you mean `puppet module %{action} %{suggestion}`?"
3665
+ msgstr ""
3666
+
3667
+ #: ../lib/puppet/module_tool/errors/shared.rb:152
3668
+ msgid "Could not %{action} '%{module_name}'; module is not installed"
3669
+ msgstr ""
3670
+
3671
+ #: ../lib/puppet/module_tool/errors/shared.rb:158
3636
3672
  msgid " Module '%{module_name}' is not installed"
3637
3673
  msgstr ""
3638
3674
 
3639
3675
  #. TRANSLATORS `puppet module %{action} %{suggestion}` is a command line and should not be translated
3640
- #: ../lib/puppet/module_tool/errors/shared.rb:144
3676
+ #: ../lib/puppet/module_tool/errors/shared.rb:161
3641
3677
  msgid " You may have meant `puppet module %{action} %{suggestion}`"
3642
3678
  msgstr ""
3643
3679
 
3644
3680
  #. TRANSLATORS `puppet module install` is a command line and should not be translated
3645
- #: ../lib/puppet/module_tool/errors/shared.rb:147
3681
+ #: ../lib/puppet/module_tool/errors/shared.rb:164
3646
3682
  msgid " Use `puppet module install` to install this module"
3647
3683
  msgstr ""
3648
3684
 
3649
3685
  #. TRANSLATORS "module path" refers to a set of directories where modules may be installed
3650
- #: ../lib/puppet/module_tool/errors/shared.rb:158
3686
+ #: ../lib/puppet/module_tool/errors/shared.rb:175
3651
3687
  msgid "Could not %{action} '%{module_name}'; module appears in multiple places in the module path"
3652
3688
  msgstr ""
3653
3689
 
3654
- #: ../lib/puppet/module_tool/errors/shared.rb:164
3690
+ #: ../lib/puppet/module_tool/errors/shared.rb:181
3655
3691
  msgid " Module '%{module_name}' appears multiple places in the module path"
3656
3692
  msgstr ""
3657
3693
 
3658
3694
  #. TRANSLATORS This is repeats as separate lines as a list under "Module '%{module_name}' appears multiple places in the module path"
3659
- #: ../lib/puppet/module_tool/errors/shared.rb:167
3695
+ #: ../lib/puppet/module_tool/errors/shared.rb:184
3660
3696
  msgid " '%{module_name}' (%{version}) was found in %{path}"
3661
3697
  msgstr ""
3662
3698
 
3663
3699
  #. TRANSLATORS `--modulepath` is command line option and should not be translated
3664
- #: ../lib/puppet/module_tool/errors/shared.rb:170
3700
+ #: ../lib/puppet/module_tool/errors/shared.rb:187
3665
3701
  msgid " Use the `--modulepath` option to limit the search to specific directories"
3666
3702
  msgstr ""
3667
3703
 
3668
- #: ../lib/puppet/module_tool/errors/shared.rb:181
3704
+ #: ../lib/puppet/module_tool/errors/shared.rb:198
3669
3705
  msgid "Could not %{action} '%{module_name}'; module has had changes made locally"
3670
3706
  msgstr ""
3671
3707
 
3672
- #: ../lib/puppet/module_tool/errors/shared.rb:187
3708
+ #: ../lib/puppet/module_tool/errors/shared.rb:204
3673
3709
  msgid " Installed module has had changes made locally"
3674
3710
  msgstr ""
3675
3711
 
3676
3712
  #. TRANSLATORS `puppet module %{action} --ignore-changes` is a command line and should not be translated
3677
- #: ../lib/puppet/module_tool/errors/shared.rb:189
3713
+ #: ../lib/puppet/module_tool/errors/shared.rb:206
3678
3714
  msgid " Use `puppet module %{action} --ignore-changes` to %{action} this module anyway"
3679
3715
  msgstr ""
3680
3716
 
3681
- #: ../lib/puppet/module_tool/errors/shared.rb:199
3717
+ #: ../lib/puppet/module_tool/errors/shared.rb:216
3682
3718
  msgid "Could not %{action} '%{module_name}'; %{error}"
3683
3719
  msgstr ""
3684
3720
 
3685
- #: ../lib/puppet/module_tool/errors/shared.rb:205
3721
+ #: ../lib/puppet/module_tool/errors/shared.rb:222
3686
3722
  msgid " Failure trying to parse metadata"
3687
3723
  msgstr ""
3688
3724
 
3689
- #: ../lib/puppet/module_tool/errors/shared.rb:206
3725
+ #: ../lib/puppet/module_tool/errors/shared.rb:223
3690
3726
  msgid " Original message was: %{message}"
3691
3727
  msgstr ""
3692
3728
 
@@ -4245,7 +4281,7 @@ msgstr ""
4245
4281
  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."
4246
4282
  msgstr ""
4247
4283
 
4248
- #: ../lib/puppet/node/environment.rb:568 ../lib/puppet/pops/loaders.rb:301
4284
+ #: ../lib/puppet/node/environment.rb:567 ../lib/puppet/pops/loaders.rb:301
4249
4285
  msgid "Could not parse for environment %{env}: %{detail}"
4250
4286
  msgstr ""
4251
4287
 
@@ -4803,111 +4839,111 @@ msgstr ""
4803
4839
  msgid "Duplicate parameter '%{param}' for on %{resource}"
4804
4840
  msgstr ""
4805
4841
 
4806
- #: ../lib/puppet/parser/scope.rb:155
4842
+ #: ../lib/puppet/parser/scope.rb:156
4807
4843
  msgid "Numerical variables cannot be changed. Attempt to set $%{name}"
4808
4844
  msgstr ""
4809
4845
 
4810
- #: ../lib/puppet/parser/scope.rb:160
4846
+ #: ../lib/puppet/parser/scope.rb:161
4811
4847
  msgid "Numerical variables cannot be deleted: Attempt to delete: $%{name}"
4812
4848
  msgstr ""
4813
4849
 
4814
- #: ../lib/puppet/parser/scope.rb:214
4850
+ #: ../lib/puppet/parser/scope.rb:215
4815
4851
  msgid "%{callee}: expects a value for parameter $%{to}"
4816
4852
  msgstr ""
4817
4853
 
4818
- #: ../lib/puppet/parser/scope.rb:215
4854
+ #: ../lib/puppet/parser/scope.rb:216
4819
4855
  msgid "%{callee}: default expression for $%{from} tries to illegally access not yet evaluated $%{to}"
4820
4856
  msgstr ""
4821
4857
 
4822
- #: ../lib/puppet/parser/scope.rb:234
4858
+ #: ../lib/puppet/parser/scope.rb:235
4823
4859
  msgid "Attempt to assign variable %{name} when evaluating parameters"
4824
4860
  msgstr ""
4825
4861
 
4826
- #: ../lib/puppet/parser/scope.rb:377
4862
+ #: ../lib/puppet/parser/scope.rb:378
4827
4863
  msgid "you must pass a compiler instance to a new scope object"
4828
4864
  msgstr ""
4829
4865
 
4830
- #: ../lib/puppet/parser/scope.rb:493
4866
+ #: ../lib/puppet/parser/scope.rb:494
4831
4867
  msgid "Scope variable name %{name} is a %{klass}, not a string"
4832
4868
  msgstr ""
4833
4869
 
4834
- #: ../lib/puppet/parser/scope.rb:655
4870
+ #: ../lib/puppet/parser/scope.rb:656
4835
4871
  msgid "class %{classname} could not be found"
4836
4872
  msgstr ""
4837
4873
 
4838
- #: ../lib/puppet/parser/scope.rb:657
4874
+ #: ../lib/puppet/parser/scope.rb:658
4839
4875
  msgid "class %{classname} has not been evaluated"
4840
4876
  msgstr ""
4841
4877
 
4842
- #: ../lib/puppet/parser/scope.rb:703
4878
+ #: ../lib/puppet/parser/scope.rb:704
4843
4879
  msgid "Default already defined for %{type} { %{param} }; cannot redefine"
4844
4880
  msgstr ""
4845
4881
 
4846
- #: ../lib/puppet/parser/scope.rb:763
4882
+ #: ../lib/puppet/parser/scope.rb:764
4847
4883
  msgid "Cannot assign to a numeric match result variable '$%{name}'"
4848
4884
  msgstr ""
4849
4885
 
4850
- #: ../lib/puppet/parser/scope.rb:766
4886
+ #: ../lib/puppet/parser/scope.rb:767
4851
4887
  msgid "Scope variable name %{name} is a %{class_type}, not a string"
4852
4888
  msgstr ""
4853
4889
 
4854
- #: ../lib/puppet/parser/scope.rb:771 ../lib/puppet/parser/scope.rb:776
4890
+ #: ../lib/puppet/parser/scope.rb:772 ../lib/puppet/parser/scope.rb:777
4855
4891
  msgid "Attempt to assign to a reserved variable name: '%{name}'"
4856
4892
  msgstr ""
4857
4893
 
4858
- #: ../lib/puppet/parser/scope.rb:781
4894
+ #: ../lib/puppet/parser/scope.rb:782
4859
4895
  msgid "Cannot reassign variable '$%{name}'"
4860
4896
  msgstr ""
4861
4897
 
4862
- #: ../lib/puppet/parser/scope.rb:1012
4898
+ #: ../lib/puppet/parser/scope.rb:1013
4863
4899
  msgid "Invalid regex match data. Got a %{klass}"
4864
4900
  msgstr ""
4865
4901
 
4866
- #: ../lib/puppet/parser/scope.rb:1020
4902
+ #: ../lib/puppet/parser/scope.rb:1021
4867
4903
  msgid "Scope#find_resource_type() is no longer supported, use Puppet::Pops::Evaluator::Runtime3ResourceSupport instead"
4868
4904
  msgstr ""
4869
4905
 
4870
- #: ../lib/puppet/parser/scope.rb:1025
4906
+ #: ../lib/puppet/parser/scope.rb:1026
4871
4907
  msgid "Scope#find_builtin_resource_type() is no longer supported, use Puppet::Pops::Evaluator::Runtime3ResourceSupport instead"
4872
4908
  msgstr ""
4873
4909
 
4874
- #: ../lib/puppet/parser/scope.rb:1030
4910
+ #: ../lib/puppet/parser/scope.rb:1031
4875
4911
  msgid "Scope#find_defined_resource_type() is no longer supported, use Puppet::Pops::Evaluator::Runtime3ResourceSupport instead"
4876
4912
  msgstr ""
4877
4913
 
4878
- #: ../lib/puppet/parser/scope.rb:1044
4914
+ #: ../lib/puppet/parser/scope.rb:1045
4879
4915
  msgid "Function %{name} not defined despite being loaded!"
4880
4916
  msgstr ""
4881
4917
 
4882
- #: ../lib/puppet/parser/scope.rb:1051
4918
+ #: ../lib/puppet/parser/scope.rb:1052
4883
4919
  msgid "Scope#resolve_type_and_title() is no longer supported, use Puppet::Pops::Evaluator::Runtime3ResourceSupport instead"
4884
4920
  msgstr ""
4885
4921
 
4886
- #: ../lib/puppet/parser/scope.rb:1071
4922
+ #: ../lib/puppet/parser/scope.rb:1072
4887
4923
  msgid "Cannot use undef as a class name"
4888
4924
  msgstr ""
4889
4925
 
4890
- #: ../lib/puppet/parser/scope.rb:1073
4926
+ #: ../lib/puppet/parser/scope.rb:1074
4891
4927
  msgid "Cannot use empty string as a class name"
4892
4928
  msgstr ""
4893
4929
 
4894
4930
  #. TRANSLATORS "Class" and "Type" are Puppet keywords and should not be translated
4895
- #: ../lib/puppet/parser/scope.rb:1082
4931
+ #: ../lib/puppet/parser/scope.rb:1083
4896
4932
  msgid "Cannot use an unspecific Class[] Type"
4897
4933
  msgstr ""
4898
4934
 
4899
4935
  #. TRANSLATORS "Resource" is a class name and should not be translated
4900
- #: ../lib/puppet/parser/scope.rb:1109
4936
+ #: ../lib/puppet/parser/scope.rb:1110
4901
4937
  msgid "Cannot use an unspecific Resource[] where a Resource['class', name] is expected"
4902
4938
  msgstr ""
4903
4939
 
4904
4940
  #. TRANSLATORS "Resource" is a class name and should not be translated
4905
- #: ../lib/puppet/parser/scope.rb:1113
4941
+ #: ../lib/puppet/parser/scope.rb:1114
4906
4942
  msgid "Cannot use a Resource[%{type_name}] where a Resource['class', name] is expected"
4907
4943
  msgstr ""
4908
4944
 
4909
4945
  #. TRANSLATORS "Resource" is a class name and should not be translated
4910
- #: ../lib/puppet/parser/scope.rb:1117
4946
+ #: ../lib/puppet/parser/scope.rb:1118
4911
4947
  msgid "Cannot use an unspecific Resource['class'] where a Resource['class', name] is expected"
4912
4948
  msgstr ""
4913
4949
 
@@ -4920,15 +4956,15 @@ msgstr ""
4920
4956
  msgid "having multiple named scopes is not supported when scripting"
4921
4957
  msgstr ""
4922
4958
 
4923
- #: ../lib/puppet/parser/templatewrapper.rb:66
4959
+ #: ../lib/puppet/parser/templatewrapper.rb:67
4924
4960
  msgid "Could not find template '%{filename}'"
4925
4961
  msgstr ""
4926
4962
 
4927
- #: ../lib/puppet/parser/templatewrapper.rb:83
4963
+ #: ../lib/puppet/parser/templatewrapper.rb:84
4928
4964
  msgid "Bound template variables for %{template_source} in %%{seconds} seconds"
4929
4965
  msgstr ""
4930
4966
 
4931
- #: ../lib/puppet/parser/templatewrapper.rb:91
4967
+ #: ../lib/puppet/parser/templatewrapper.rb:92
4932
4968
  msgid "Interpolated template %{template_source} in %%{seconds} seconds"
4933
4969
  msgstr ""
4934
4970
 
@@ -6072,47 +6108,47 @@ msgstr ""
6072
6108
  msgid "Lookup of key '%{key}' failed: %{detail}"
6073
6109
  msgstr ""
6074
6110
 
6075
- #: ../lib/puppet/pops/lookup/lookup_adapter.rb:295
6111
+ #: ../lib/puppet/pops/lookup/lookup_adapter.rb:296
6076
6112
  msgid "value of %{opts} must be a hash"
6077
6113
  msgstr ""
6078
6114
 
6079
- #: ../lib/puppet/pops/lookup/lookup_adapter.rb:302
6115
+ #: ../lib/puppet/pops/lookup/lookup_adapter.rb:303
6080
6116
  msgid "all %{opts} patterns must match a key starting with module name '%{module_name}'"
6081
6117
  msgstr ""
6082
6118
 
6083
- #: ../lib/puppet/pops/lookup/lookup_adapter.rb:306
6119
+ #: ../lib/puppet/pops/lookup/lookup_adapter.rb:307
6084
6120
  msgid "all %{opts} keys must start with module name '%{module_name}'"
6085
6121
  msgstr ""
6086
6122
 
6087
- #: ../lib/puppet/pops/lookup/lookup_adapter.rb:431
6123
+ #: ../lib/puppet/pops/lookup/lookup_adapter.rb:432
6088
6124
  msgid "Defining \"data_provider\": \"%{name}\" in metadata.json is deprecated. It is ignored since a '%{config}' with version >= 5 is present"
6089
6125
  msgstr ""
6090
6126
 
6091
- #: ../lib/puppet/pops/lookup/lookup_adapter.rb:441
6127
+ #: ../lib/puppet/pops/lookup/lookup_adapter.rb:442
6092
6128
  msgid "Defining \"data_provider\": \"%{name}\" in metadata.json is deprecated."
6093
6129
  msgstr ""
6094
6130
 
6095
- #: ../lib/puppet/pops/lookup/lookup_adapter.rb:442 ../lib/puppet/pops/lookup/lookup_adapter.rb:496
6131
+ #: ../lib/puppet/pops/lookup/lookup_adapter.rb:443 ../lib/puppet/pops/lookup/lookup_adapter.rb:497
6096
6132
  msgid "A '%{hiera_config}' file should be used instead"
6097
6133
  msgstr ""
6098
6134
 
6099
- #: ../lib/puppet/pops/lookup/lookup_adapter.rb:456
6135
+ #: ../lib/puppet/pops/lookup/lookup_adapter.rb:457
6100
6136
  msgid "Environment '%{env}', cannot find module_data_provider '%{provider}'"
6101
6137
  msgstr ""
6102
6138
 
6103
- #: ../lib/puppet/pops/lookup/lookup_adapter.rb:480
6139
+ #: ../lib/puppet/pops/lookup/lookup_adapter.rb:481
6104
6140
  msgid "Defining environment_data_provider='%{provider_name}' in environment.conf is deprecated"
6105
6141
  msgstr ""
6106
6142
 
6107
- #: ../lib/puppet/pops/lookup/lookup_adapter.rb:484
6143
+ #: ../lib/puppet/pops/lookup/lookup_adapter.rb:485
6108
6144
  msgid "The environment_data_provider='%{provider_name}' setting is ignored since '%{config_path}' version >= 5"
6109
6145
  msgstr ""
6110
6146
 
6111
- #: ../lib/puppet/pops/lookup/lookup_adapter.rb:495
6147
+ #: ../lib/puppet/pops/lookup/lookup_adapter.rb:496
6112
6148
  msgid "Defining environment_data_provider='%{provider_name}' in environment.conf is deprecated."
6113
6149
  msgstr ""
6114
6150
 
6115
- #: ../lib/puppet/pops/lookup/lookup_adapter.rb:511
6151
+ #: ../lib/puppet/pops/lookup/lookup_adapter.rb:512
6116
6152
  msgid "Environment '%{env}', cannot find environment_data_provider '%{provider}'"
6117
6153
  msgstr ""
6118
6154
 
@@ -6167,11 +6203,11 @@ msgid "Unacceptable transform - found an Object without a rule: %{klass}"
6167
6203
  msgstr ""
6168
6204
 
6169
6205
  #. TRANSLATORS 'NUMBER' refers to a method name and the 'name_or_numeric' was the passed in value and should not be translated
6170
- #: ../lib/puppet/pops/model/factory.rb:849
6206
+ #: ../lib/puppet/pops/model/factory.rb:850
6171
6207
  msgid "Internal Error, NUMBER token does not contain a valid number, %{name_or_numeric}"
6172
6208
  msgstr ""
6173
6209
 
6174
- #: ../lib/puppet/pops/model/factory.rb:1166
6210
+ #: ../lib/puppet/pops/model/factory.rb:1167
6175
6211
  msgid "can only concatenate strings, got %{class_name}"
6176
6212
  msgstr ""
6177
6213
 
@@ -6704,15 +6740,15 @@ msgstr ""
6704
6740
  msgid "'%{exe}' is not qualified and no path was specified. Please qualify the command or specify a path."
6705
6741
  msgstr ""
6706
6742
 
6707
- #: ../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
6743
+ #: ../lib/puppet/provider/exec/posix.rb:33 ../lib/puppet/provider/exec/posix.rb:50 ../lib/puppet/provider/exec/windows.rb:40 ../lib/puppet/provider/exec/windows.rb:53
6708
6744
  msgid "Could not find command '%{exe}'"
6709
6745
  msgstr ""
6710
6746
 
6711
- #: ../lib/puppet/provider/exec/posix.rb:23 ../lib/puppet/provider/exec/windows.rb:42
6747
+ #: ../lib/puppet/provider/exec/posix.rb:35 ../lib/puppet/provider/exec/windows.rb:42
6712
6748
  msgid "'%{exe}' is a %{klass}, not a file"
6713
6749
  msgstr ""
6714
6750
 
6715
- #: ../lib/puppet/provider/exec/posix.rb:25
6751
+ #: ../lib/puppet/provider/exec/posix.rb:37
6716
6752
  msgid "'%{exe}' is not executable"
6717
6753
  msgstr ""
6718
6754
 
@@ -6749,11 +6785,11 @@ msgstr ""
6749
6785
  msgid "No AIX group exists with a group name or gid of %{group}!"
6750
6786
  msgstr ""
6751
6787
 
6752
- #: ../lib/puppet/provider/group/groupadd.rb:11 ../lib/puppet/provider/group/pw.rb:14
6788
+ #: ../lib/puppet/provider/group/groupadd.rb:14 ../lib/puppet/provider/group/pw.rb:14
6753
6789
  msgid "GID must be an integer"
6754
6790
  msgstr ""
6755
6791
 
6756
- #: ../lib/puppet/provider/group/groupadd.rb:44
6792
+ #: ../lib/puppet/provider/group/groupadd.rb:47
6757
6793
  msgid "GID %{resource} already exists, use allowdupe to force group creation"
6758
6794
  msgstr ""
6759
6795
 
@@ -6992,31 +7028,31 @@ msgstr ""
6992
7028
  msgid "NIM package provider is unable to downgrade packages"
6993
7029
  msgstr ""
6994
7030
 
6995
- #: ../lib/puppet/provider/package/nim.rb:212
7031
+ #: ../lib/puppet/provider/package/nim.rb:217
6996
7032
  msgid ""
6997
7033
  "Unable to parse output from nimclient showres: line does not match expected package header format:\n"
6998
7034
  "'%{line}'"
6999
7035
  msgstr ""
7000
7036
 
7001
- #: ../lib/puppet/provider/package/nim.rb:219
7037
+ #: ../lib/puppet/provider/package/nim.rb:224
7002
7038
  msgid ""
7003
7039
  "Unable to parse output from nimclient showres: package string does not match expected installp package string format:\n"
7004
7040
  "'%{package_string}'"
7005
7041
  msgstr ""
7006
7042
 
7007
- #: ../lib/puppet/provider/package/nim.rb:229
7043
+ #: ../lib/puppet/provider/package/nim.rb:234
7008
7044
  msgid ""
7009
7045
  "Unable to parse output from nimclient showres: package string does not match expected rpm package string format:\n"
7010
7046
  "'%{package_string}'"
7011
7047
  msgstr ""
7012
7048
 
7013
- #: ../lib/puppet/provider/package/nim.rb:239
7049
+ #: ../lib/puppet/provider/package/nim.rb:244
7014
7050
  msgid ""
7015
7051
  "Unable to parse output from nimclient showres: line does not match expected package line format:\n"
7016
7052
  "'%{line}'"
7017
7053
  msgstr ""
7018
7054
 
7019
- #: ../lib/puppet/provider/package/nim.rb:251
7055
+ #: ../lib/puppet/provider/package/nim.rb:256
7020
7056
  msgid ""
7021
7057
  "Unrecognized package type specifier: '%{package_type_flag}' in package line:\n"
7022
7058
  "'%{line}'"
@@ -7098,19 +7134,23 @@ msgstr ""
7098
7134
  msgid "Implicit version %{should} has %{n} possible matches"
7099
7135
  msgstr ""
7100
7136
 
7101
- #: ../lib/puppet/provider/package/pkg.rb:174
7137
+ #: ../lib/puppet/provider/package/pkg.rb:181
7102
7138
  msgid "Selecting version '%{version}' for implicit '%{should}'"
7103
7139
  msgstr ""
7104
7140
 
7105
- #: ../lib/puppet/provider/package/pkg.rb:179
7141
+ #: ../lib/puppet/provider/package/pkg.rb:186
7106
7142
  msgid "No version of %{name} matching %{should} is installable, even though the package is currently installed"
7107
7143
  msgstr ""
7108
7144
 
7109
- #: ../lib/puppet/provider/package/pkg.rb:198
7145
+ #: ../lib/puppet/provider/package/pkg.rb:205
7110
7146
  msgid "pkg warning: %{warnings}"
7111
7147
  msgstr ""
7112
7148
 
7113
- #: ../lib/puppet/provider/package/pkg.rb:242 ../lib/puppet/provider/package/pkg.rb:268
7149
+ #: ../lib/puppet/provider/package/pkg.rb:249
7150
+ msgid "Pkg could not install %{name} after %{tries} tries. Aborting run"
7151
+ msgstr ""
7152
+
7153
+ #: ../lib/puppet/provider/package/pkg.rb:259 ../lib/puppet/provider/package/pkg.rb:285
7114
7154
  msgid "Unable to update %{package}"
7115
7155
  msgstr ""
7116
7156
 
@@ -7251,19 +7291,19 @@ msgstr ""
7251
7291
  msgid "Failed to read %{target}'s records when prefetching them. Reason: %{detail}"
7252
7292
  msgstr ""
7253
7293
 
7254
- #: ../lib/puppet/provider/parsedfile.rb:291
7255
- msgid "Could not prefetch %{resource} provider '%{name}' target '%{target}': %{detail}. Treating as empty"
7294
+ #: ../lib/puppet/provider/parsedfile.rb:284 ../lib/puppet/provider/parsedfile.rb:308
7295
+ msgid "Prefetching %{target} for provider %{name} returned nil"
7256
7296
  msgstr ""
7257
7297
 
7258
- #: ../lib/puppet/provider/parsedfile.rb:305
7259
- msgid "Prefetching %{target} for provider %{name} returned nil"
7298
+ #: ../lib/puppet/provider/parsedfile.rb:294
7299
+ msgid "Could not prefetch %{resource} provider '%{name}' target '%{target}': %{detail}. Treating as empty"
7260
7300
  msgstr ""
7261
7301
 
7262
- #: ../lib/puppet/provider/parsedfile.rb:378
7302
+ #: ../lib/puppet/provider/parsedfile.rb:381
7263
7303
  msgid "Parsed Providers must define a default target"
7264
7304
  msgstr ""
7265
7305
 
7266
- #: ../lib/puppet/provider/parsedfile.rb:469
7306
+ #: ../lib/puppet/provider/parsedfile.rb:472
7267
7307
  msgid "Somehow got told to prefetch with no resource set"
7268
7308
  msgstr ""
7269
7309
 
@@ -7633,55 +7673,55 @@ msgstr ""
7633
7673
  msgid "%{param} is a metaparameter; please choose another parameter name in the %{name} definition"
7634
7674
  msgstr ""
7635
7675
 
7636
- #: ../lib/puppet/resource/type_collection.rb:72
7676
+ #: ../lib/puppet/resource/type_collection.rb:73
7637
7677
  msgid "Class '%{klass}' is already defined%{error}; cannot redefine"
7638
7678
  msgstr ""
7639
7679
 
7640
- #: ../lib/puppet/resource/type_collection.rb:73
7680
+ #: ../lib/puppet/resource/type_collection.rb:74
7641
7681
  msgid "Definition '%{klass}' is already defined%{error}; cannot be redefined as a class"
7642
7682
  msgstr ""
7643
7683
 
7644
- #: ../lib/puppet/resource/type_collection.rb:74
7684
+ #: ../lib/puppet/resource/type_collection.rb:75
7645
7685
  msgid "Application '%{klass}' is already defined%{error}; cannot be redefined as a class"
7646
7686
  msgstr ""
7647
7687
 
7648
- #: ../lib/puppet/resource/type_collection.rb:105
7688
+ #: ../lib/puppet/resource/type_collection.rb:106
7649
7689
  msgid "Node '%{name}' is already defined%{error}; cannot redefine"
7650
7690
  msgstr ""
7651
7691
 
7652
- #: ../lib/puppet/resource/type_collection.rb:113
7692
+ #: ../lib/puppet/resource/type_collection.rb:114
7653
7693
  msgid "Site is already defined%{error}; cannot redefine"
7654
7694
  msgstr ""
7655
7695
 
7656
- #: ../lib/puppet/resource/type_collection.rb:150
7696
+ #: ../lib/puppet/resource/type_collection.rb:151
7657
7697
  msgid "'%{name}' is already defined%{error} as a class; cannot redefine as a definition"
7658
7698
  msgstr ""
7659
7699
 
7660
- #: ../lib/puppet/resource/type_collection.rb:151
7700
+ #: ../lib/puppet/resource/type_collection.rb:152
7661
7701
  msgid "Definition '%{name}' is already defined%{error}; cannot be redefined"
7662
7702
  msgstr ""
7663
7703
 
7664
- #: ../lib/puppet/resource/type_collection.rb:152 ../lib/puppet/resource/type_collection.rb:168
7704
+ #: ../lib/puppet/resource/type_collection.rb:153 ../lib/puppet/resource/type_collection.rb:169
7665
7705
  msgid "'%{name}' is already defined%{error} as an application; cannot be redefined"
7666
7706
  msgstr ""
7667
7707
 
7668
- #: ../lib/puppet/resource/type_collection.rb:157
7708
+ #: ../lib/puppet/resource/type_collection.rb:158
7669
7709
  msgid "'%{name}' is already defined%{error} as a class; cannot redefine as a mapping"
7670
7710
  msgstr ""
7671
7711
 
7672
- #: ../lib/puppet/resource/type_collection.rb:166
7712
+ #: ../lib/puppet/resource/type_collection.rb:167
7673
7713
  msgid "'%{name}' is already defined%{error} as a class; cannot redefine as an application"
7674
7714
  msgstr ""
7675
7715
 
7676
- #: ../lib/puppet/resource/type_collection.rb:167
7716
+ #: ../lib/puppet/resource/type_collection.rb:168
7677
7717
  msgid "'%{name}' is already defined%{error} as a definition; cannot redefine as an application"
7678
7718
  msgstr ""
7679
7719
 
7680
- #: ../lib/puppet/resource/type_collection.rb:220
7720
+ #: ../lib/puppet/resource/type_collection.rb:221
7681
7721
  msgid "Execution of config_version command `%{cmd}` failed: %{message}"
7682
7722
  msgstr ""
7683
7723
 
7684
- #: ../lib/puppet/resource/type_collection.rb:241
7724
+ #: ../lib/puppet/resource/type_collection.rb:242
7685
7725
  msgid "Not attempting to load %{type} %{fqname} as this object was missing during a prior compilation"
7686
7726
  msgstr ""
7687
7727
 
@@ -7721,49 +7761,57 @@ msgstr ""
7721
7761
  msgid "Invalid setting type '%{type}'"
7722
7762
  msgstr ""
7723
7763
 
7724
- #: ../lib/puppet/settings.rb:905
7764
+ #: ../lib/puppet/settings.rb:868
7765
+ msgid "Cannot manage owner permissions, because the provider for '%{name}' is not functional"
7766
+ msgstr ""
7767
+
7768
+ #: ../lib/puppet/settings.rb:884
7769
+ msgid "Cannot manage group permissions, because the provider for '%{name}' is not functional"
7770
+ msgstr ""
7771
+
7772
+ #: ../lib/puppet/settings.rb:920
7725
7773
  msgid "Unknown searchpath case: %{source_type} for the %{source} settings path element."
7726
7774
  msgstr ""
7727
7775
 
7728
- #: ../lib/puppet/settings.rb:978
7776
+ #: ../lib/puppet/settings.rb:1001
7729
7777
  msgid "setting definition for '%{name}' is not a hash!"
7730
7778
  msgstr ""
7731
7779
 
7732
- #: ../lib/puppet/settings.rb:983
7780
+ #: ../lib/puppet/settings.rb:1006
7733
7781
  msgid "Setting %{name} is already defined"
7734
7782
  msgstr ""
7735
7783
 
7736
- #: ../lib/puppet/settings.rb:989
7784
+ #: ../lib/puppet/settings.rb:1012
7737
7785
  msgid "Setting %{name} is already using short name '%{short}'"
7738
7786
  msgstr ""
7739
7787
 
7740
- #: ../lib/puppet/settings.rb:1253
7788
+ #: ../lib/puppet/settings.rb:1276
7741
7789
  msgid "Setting %{name} is deprecated."
7742
7790
  msgstr ""
7743
7791
 
7744
7792
  #. TRANSLATORS 'puppet.conf' is a file name and should not be translated
7745
- #: ../lib/puppet/settings.rb:1258
7793
+ #: ../lib/puppet/settings.rb:1281
7746
7794
  msgid "Setting %{name} is deprecated in puppet.conf."
7747
7795
  msgstr ""
7748
7796
 
7749
- #: ../lib/puppet/settings.rb:1445
7797
+ #: ../lib/puppet/settings.rb:1468
7750
7798
  msgid "Error converting value for param '%{name}': %{detail}"
7751
7799
  msgstr ""
7752
7800
 
7753
- #: ../lib/puppet/settings.rb:1469
7801
+ #: ../lib/puppet/settings.rb:1492
7754
7802
  msgid "Could not find value for %{expression}"
7755
7803
  msgstr ""
7756
7804
 
7757
7805
  #. TRANSLATORS '$environment' is a Puppet specific variable and should not be translated
7758
- #: ../lib/puppet/settings.rb:1479
7806
+ #: ../lib/puppet/settings.rb:1502
7759
7807
  msgid "You cannot interpolate $environment within '%{setting_name}' when using directory environments."
7760
7808
  msgstr ""
7761
7809
 
7762
- #: ../lib/puppet/settings.rb:1480
7810
+ #: ../lib/puppet/settings.rb:1503
7763
7811
  msgid "Its value will remain %{value}."
7764
7812
  msgstr ""
7765
7813
 
7766
- #: ../lib/puppet/settings.rb:1511
7814
+ #: ../lib/puppet/settings.rb:1534
7767
7815
  msgid "Attempt to assign a value to unknown setting %{name}"
7768
7816
  msgstr ""
7769
7817
 
@@ -8634,72 +8682,72 @@ msgstr ""
8634
8682
  msgid "Could not set %{attribute} on %{class_name}: %{detail}"
8635
8683
  msgstr ""
8636
8684
 
8637
- #: ../lib/puppet/type/exec.rb:118
8685
+ #: ../lib/puppet/type/exec.rb:121
8638
8686
  msgid "executed successfully"
8639
8687
  msgstr ""
8640
8688
 
8641
- #: ../lib/puppet/type/exec.rb:152
8689
+ #: ../lib/puppet/type/exec.rb:155
8642
8690
  msgid "Command exceeded timeout"
8643
8691
  msgstr ""
8644
8692
 
8645
- #: ../lib/puppet/type/exec.rb:181
8693
+ #: ../lib/puppet/type/exec.rb:184
8646
8694
  msgid "[command redacted] returned %{status} instead of one of [%{expected}]"
8647
8695
  msgstr ""
8648
8696
 
8649
- #: ../lib/puppet/type/exec.rb:183
8697
+ #: ../lib/puppet/type/exec.rb:186
8650
8698
  msgid "'%{cmd}' returned %{status} instead of one of [%{expected}]"
8651
8699
  msgstr ""
8652
8700
 
8653
- #: ../lib/puppet/type/exec.rb:204
8654
- msgid "Command must be a String, got value of class %{klass}"
8701
+ #: ../lib/puppet/type/exec.rb:216
8702
+ msgid "Command must be a String or Array<String>, got value of class %{klass}"
8655
8703
  msgstr ""
8656
8704
 
8657
- #: ../lib/puppet/type/exec.rb:236
8705
+ #: ../lib/puppet/type/exec.rb:249
8658
8706
  msgid "Unable to execute commands as other users on Windows"
8659
8707
  msgstr ""
8660
8708
 
8661
- #: ../lib/puppet/type/exec.rb:238
8709
+ #: ../lib/puppet/type/exec.rb:251
8662
8710
  msgid "Only root can execute commands as other users"
8663
8711
  msgstr ""
8664
8712
 
8665
- #: ../lib/puppet/type/exec.rb:294
8713
+ #: ../lib/puppet/type/exec.rb:307
8666
8714
  msgid "Invalid environment setting '%{value}'"
8667
8715
  msgstr ""
8668
8716
 
8669
- #: ../lib/puppet/type/exec.rb:307
8717
+ #: ../lib/puppet/type/exec.rb:320
8670
8718
  msgid "The umask specification is invalid: %{value}"
8671
8719
  msgstr ""
8672
8720
 
8673
- #: ../lib/puppet/type/exec.rb:323
8721
+ #: ../lib/puppet/type/exec.rb:336
8674
8722
  msgid "The timeout must be a number."
8675
8723
  msgstr ""
8676
8724
 
8677
- #: ../lib/puppet/type/exec.rb:340
8725
+ #: ../lib/puppet/type/exec.rb:353
8678
8726
  msgid "Tries must be an integer"
8679
8727
  msgstr ""
8680
8728
 
8681
- #: ../lib/puppet/type/exec.rb:344
8729
+ #: ../lib/puppet/type/exec.rb:357
8682
8730
  msgid "Tries must be an integer >= 1"
8683
8731
  msgstr ""
8684
8732
 
8685
- #: ../lib/puppet/type/exec.rb:357
8733
+ #: ../lib/puppet/type/exec.rb:370
8686
8734
  msgid "try_sleep must be a number"
8687
8735
  msgstr ""
8688
8736
 
8689
- #: ../lib/puppet/type/exec.rb:361
8737
+ #: ../lib/puppet/type/exec.rb:374
8690
8738
  msgid "try_sleep cannot be a negative number"
8691
8739
  msgstr ""
8692
8740
 
8693
8741
  #. TRANSLATORS 'creates' is a parameter name and should not be translated
8694
- #: ../lib/puppet/type/exec.rb:433
8742
+ #: ../lib/puppet/type/exec.rb:446
8695
8743
  msgid "Checking that 'creates' path '%{creates_path}' exists"
8696
8744
  msgstr ""
8697
8745
 
8698
- #: ../lib/puppet/type/exec.rb:478 ../lib/puppet/type/exec.rb:534
8746
+ #: ../lib/puppet/type/exec.rb:498 ../lib/puppet/type/exec.rb:561
8699
8747
  msgid "Check %{value} exceeded timeout"
8700
8748
  msgstr ""
8701
8749
 
8702
- #: ../lib/puppet/type/exec.rb:623
8750
+ #: ../lib/puppet/type/exec.rb:653
8703
8751
  msgid "'%{cmd}' won't be executed because of failed check '%{check}'"
8704
8752
  msgstr ""
8705
8753
 
@@ -8719,74 +8767,74 @@ msgstr ""
8719
8767
  msgid "Invalid recurselimit value %{value}"
8720
8768
  msgstr ""
8721
8769
 
8722
- #: ../lib/puppet/type/file.rb:418
8770
+ #: ../lib/puppet/type/file.rb:435
8723
8771
  msgid "You cannot specify more than one of %{creators}"
8724
8772
  msgstr ""
8725
8773
 
8726
- #: ../lib/puppet/type/file.rb:420
8774
+ #: ../lib/puppet/type/file.rb:437
8727
8775
  msgid "You cannot specify a remote recursion without a source"
8728
8776
  msgstr ""
8729
8777
 
8730
- #: ../lib/puppet/type/file.rb:422
8778
+ #: ../lib/puppet/type/file.rb:439
8731
8779
  msgid "You cannot specify source when using checksum 'none'"
8732
8780
  msgstr ""
8733
8781
 
8734
- #: ../lib/puppet/type/file.rb:425
8782
+ #: ../lib/puppet/type/file.rb:442
8735
8783
  msgid "You cannot specify content when using checksum '%{checksum_type}'"
8736
8784
  msgstr ""
8737
8785
 
8738
- #: ../lib/puppet/type/file.rb:428
8786
+ #: ../lib/puppet/type/file.rb:445
8739
8787
  msgid "Possible error: recurselimit is set but not recurse, no recursion will happen"
8740
8788
  msgstr ""
8741
8789
 
8742
- #: ../lib/puppet/type/file.rb:436
8790
+ #: ../lib/puppet/type/file.rb:453
8743
8791
  msgid "Checksum value '%{value}' is not a valid checksum type %{checksum}"
8744
8792
  msgstr ""
8745
8793
 
8746
- #: ../lib/puppet/type/file.rb:439
8794
+ #: ../lib/puppet/type/file.rb:456
8747
8795
  msgid "Checksum value is ignored unless content or source are specified"
8748
8796
  msgstr ""
8749
8797
 
8750
- #: ../lib/puppet/type/file.rb:477
8798
+ #: ../lib/puppet/type/file.rb:494
8751
8799
  msgid "Can not find filebucket for backups without a catalog"
8752
8800
  msgstr ""
8753
8801
 
8754
- #: ../lib/puppet/type/file.rb:482
8802
+ #: ../lib/puppet/type/file.rb:499
8755
8803
  msgid "Could not find filebucket %{backup} specified in backup"
8756
8804
  msgstr ""
8757
8805
 
8758
- #: ../lib/puppet/type/file.rb:780
8806
+ #: ../lib/puppet/type/file.rb:798
8759
8807
  msgid "Could not back up file of type %{current_type}"
8760
8808
  msgstr ""
8761
8809
 
8762
- #: ../lib/puppet/type/file.rb:795
8810
+ #: ../lib/puppet/type/file.rb:813
8763
8811
  msgid "Could not remove files of type %{current_type}"
8764
8812
  msgstr ""
8765
8813
 
8766
8814
  #. TRANSLATORS "source_permissions => ignore" should not be translated
8767
- #: ../lib/puppet/type/file.rb:806
8815
+ #: ../lib/puppet/type/file.rb:824
8768
8816
  msgid "Copying owner/mode/group from the source file on Windows is not supported; use source_permissions => ignore."
8769
8817
  msgstr ""
8770
8818
 
8771
8819
  #. TRANSLATORS "stat" is a program name and should not be translated
8772
- #: ../lib/puppet/type/file.rb:887 ../lib/puppet/type/tidy.rb:352
8820
+ #: ../lib/puppet/type/file.rb:905 ../lib/puppet/type/tidy.rb:371
8773
8821
  msgid "Could not stat; permission denied"
8774
8822
  msgstr ""
8775
8823
 
8776
- #: ../lib/puppet/type/file.rb:890
8824
+ #: ../lib/puppet/type/file.rb:908
8777
8825
  msgid "Could not stat; invalid pathname"
8778
8826
  msgstr ""
8779
8827
 
8780
- #: ../lib/puppet/type/file.rb:1018
8828
+ #: ../lib/puppet/type/file.rb:1036
8781
8829
  msgid "Not removing directory; use 'force' to override"
8782
8830
  msgstr ""
8783
8831
 
8784
8832
  #. TRANSLATORS refers to a file which could not be backed up
8785
- #: ../lib/puppet/type/file.rb:1043
8833
+ #: ../lib/puppet/type/file.rb:1061
8786
8834
  msgid "Could not back up; will not remove"
8787
8835
  msgstr ""
8788
8836
 
8789
- #: ../lib/puppet/type/file.rb:1058
8837
+ #: ../lib/puppet/type/file.rb:1076
8790
8838
  msgid "File written to disk did not match desired checksum; discarding changes (%{content_checksum} vs %{desired_checksum})"
8791
8839
  msgstr ""
8792
8840
 
@@ -8823,7 +8871,7 @@ msgstr ""
8823
8871
  msgid "Ensure set to :present but file type is %{file_type} so no content will be synced"
8824
8872
  msgstr ""
8825
8873
 
8826
- #: ../lib/puppet/type/file/mode.rb:126
8874
+ #: ../lib/puppet/type/file/mode.rb:132
8827
8875
  msgid "Not managing symlink mode"
8828
8876
  msgstr ""
8829
8877
 
@@ -8844,11 +8892,11 @@ msgstr ""
8844
8892
  msgid "Could not create %{type} filebucket: %{detail}"
8845
8893
  msgstr ""
8846
8894
 
8847
- #: ../lib/puppet/type/group.rb:60
8895
+ #: ../lib/puppet/type/group.rb:59
8848
8896
  msgid "GID cannot be deleted"
8849
8897
  msgstr ""
8850
8898
 
8851
- #: ../lib/puppet/type/group.rb:72
8899
+ #: ../lib/puppet/type/group.rb:71
8852
8900
  msgid "Invalid GID %{gid}"
8853
8901
  msgstr ""
8854
8902
 
@@ -8936,50 +8984,46 @@ msgstr ""
8936
8984
  msgid "%{value} is not a valid day of the week"
8937
8985
  msgstr ""
8938
8986
 
8939
- #: ../lib/puppet/type/service.rb:96
8940
- msgid "Setting enable to %{value} is only supported on Microsoft Windows."
8941
- msgstr ""
8942
-
8943
- #: ../lib/puppet/type/service.rb:166
8944
- msgid "The 'logonaccount' parameter is mandatory when setting 'logonpassword'."
8945
- msgstr ""
8946
-
8947
- #: ../lib/puppet/type/service.rb:167 ../lib/puppet/type/user.rb:271
8987
+ #: ../lib/puppet/type/service.rb:151 ../lib/puppet/type/user.rb:271
8948
8988
  msgid "Passwords cannot include ':'"
8949
8989
  msgstr ""
8950
8990
 
8951
- #: ../lib/puppet/type/service.rb:304
8991
+ #: ../lib/puppet/type/service.rb:283
8952
8992
  msgid "\"%{value}\" is not a positive integer: the timeout parameter must be specified as a positive integer"
8953
8993
  msgstr ""
8954
8994
 
8955
- #: ../lib/puppet/type/tidy.rb:85
8995
+ #: ../lib/puppet/type/service.rb:305
8996
+ msgid "The 'logonaccount' parameter is mandatory when setting 'logonpassword'."
8997
+ msgstr ""
8998
+
8999
+ #: ../lib/puppet/type/tidy.rb:101
8956
9000
  msgid "Tidy can't use matches with recurse 0, false, or undef"
8957
9001
  msgstr ""
8958
9002
 
8959
- #: ../lib/puppet/type/tidy.rb:125
9003
+ #: ../lib/puppet/type/tidy.rb:141
8960
9004
  msgid "Invalid age unit '%{unit}'"
8961
9005
  msgstr ""
8962
9006
 
8963
9007
  #. TRANSLATORS tidy is the name of a program and should not be translated
8964
- #: ../lib/puppet/type/tidy.rb:145
9008
+ #: ../lib/puppet/type/tidy.rb:161
8965
9009
  msgid "Invalid tidy age %{age}"
8966
9010
  msgstr ""
8967
9011
 
8968
- #: ../lib/puppet/type/tidy.rb:167
9012
+ #: ../lib/puppet/type/tidy.rb:183
8969
9013
  msgid "Invalid size unit '%{unit}'"
8970
9014
  msgstr ""
8971
9015
 
8972
9016
  #. TRANSLATORS tidy is the name of a program and should not be translated
8973
- #: ../lib/puppet/type/tidy.rb:185
9017
+ #: ../lib/puppet/type/tidy.rb:201
8974
9018
  msgid "Invalid tidy size %{age}"
8975
9019
  msgstr ""
8976
9020
 
8977
9021
  #. TRANSLATORS "Tidy" is a program name and should not be translated
8978
- #: ../lib/puppet/type/tidy.rb:275
9022
+ #: ../lib/puppet/type/tidy.rb:294
8979
9023
  msgid "Tidying %{count} files"
8980
9024
  msgstr ""
8981
9025
 
8982
- #: ../lib/puppet/type/tidy.rb:348
9026
+ #: ../lib/puppet/type/tidy.rb:367
8983
9027
  msgid "File does not exist"
8984
9028
  msgstr ""
8985
9029
 
@@ -9041,23 +9085,23 @@ msgstr ""
9041
9085
  msgid "Profile names must be provided as an array, not a comma-separated list"
9042
9086
  msgstr ""
9043
9087
 
9044
- #: ../lib/puppet/type/user.rb:699
9088
+ #: ../lib/puppet/type/user.rb:700
9045
9089
  msgid "Ssh_authorized_key type is not available. Cannot purge SSH keys."
9046
9090
  msgstr ""
9047
9091
 
9048
- #: ../lib/puppet/type/user.rb:737
9092
+ #: ../lib/puppet/type/user.rb:738
9049
9093
  msgid "Each entry for purge_ssh_keys must be a string, not a %{klass}"
9050
9094
  msgstr ""
9051
9095
 
9052
- #: ../lib/puppet/type/user.rb:740
9096
+ #: ../lib/puppet/type/user.rb:741
9053
9097
  msgid "Paths to keyfiles must be absolute, not %{entry}"
9054
9098
  msgstr ""
9055
9099
 
9056
- #: ../lib/puppet/type/user.rb:744
9100
+ #: ../lib/puppet/type/user.rb:745
9057
9101
  msgid "purge_ssh_keys must be true, false, or an array of file names, not %{value}"
9058
9102
  msgstr ""
9059
9103
 
9060
- #: ../lib/puppet/type/user.rb:772
9104
+ #: ../lib/puppet/type/user.rb:754
9061
9105
  msgid "Class name must be provided."
9062
9106
  msgstr ""
9063
9107
 
@@ -9626,60 +9670,60 @@ msgid "Failed to set process priority to '%{priority}'"
9626
9670
  msgstr ""
9627
9671
 
9628
9672
  #. TRANSLATORS "Log.close_all" is a method name and should not be translated
9629
- #: ../lib/puppet/util/log.rb:67
9673
+ #: ../lib/puppet/util/log.rb:66
9630
9674
  msgid "Log.close_all failed to close %{destinations}"
9631
9675
  msgstr ""
9632
9676
 
9633
- #: ../lib/puppet/util/log.rb:86
9677
+ #: ../lib/puppet/util/log.rb:85
9634
9678
  msgid "Logs require a level"
9635
9679
  msgstr ""
9636
9680
 
9637
- #: ../lib/puppet/util/log.rb:87 ../lib/puppet/util/log.rb:378 ../lib/puppet/util/windows/eventlog.rb:99
9681
+ #: ../lib/puppet/util/log.rb:86 ../lib/puppet/util/log.rb:377 ../lib/puppet/util/windows/eventlog.rb:99
9638
9682
  msgid "Invalid log level %{level}"
9639
9683
  msgstr ""
9640
9684
 
9641
- #: ../lib/puppet/util/log.rb:109
9685
+ #: ../lib/puppet/util/log.rb:108
9642
9686
  msgid "Invalid loglevel %{level}"
9643
9687
  msgstr ""
9644
9688
 
9645
- #: ../lib/puppet/util/log.rb:136
9689
+ #: ../lib/puppet/util/log.rb:135
9646
9690
  msgid "Unknown destination type %{dest}"
9647
9691
  msgstr ""
9648
9692
 
9649
- #: ../lib/puppet/util/log.rb:176
9693
+ #: ../lib/puppet/util/log.rb:175
9650
9694
  msgid "Received a Log attribute with invalid encoding:%{log_message}"
9651
9695
  msgstr ""
9652
9696
 
9653
- #: ../lib/puppet/util/log.rb:178
9697
+ #: ../lib/puppet/util/log.rb:177
9654
9698
  msgid ""
9655
9699
  "Backtrace:\n"
9656
9700
  "%{backtrace}"
9657
9701
  msgstr ""
9658
9702
 
9659
- #: ../lib/puppet/util/log.rb:232
9703
+ #: ../lib/puppet/util/log.rb:231
9660
9704
  msgid "Reopening log files"
9661
9705
  msgstr ""
9662
9706
 
9663
9707
  #. TRANSLATORS 'Puppet::Util::Log' refers to a Puppet source code class
9664
- #: ../lib/puppet/util/log.rb:368
9708
+ #: ../lib/puppet/util/log.rb:367
9665
9709
  msgid "Puppet::Util::Log requires a message"
9666
9710
  msgstr ""
9667
9711
 
9668
9712
  #. TRANSLATORS 'Puppet::Util::Log' refers to a Puppet source code class
9669
- #: ../lib/puppet/util/log.rb:374
9713
+ #: ../lib/puppet/util/log.rb:373
9670
9714
  msgid "Puppet::Util::Log requires a log level"
9671
9715
  msgstr ""
9672
9716
 
9673
9717
  #. TRANSLATORS 'Puppet::Util::Log' refers to a Puppet source code class
9674
- #: ../lib/puppet/util/log.rb:376
9718
+ #: ../lib/puppet/util/log.rb:375
9675
9719
  msgid "Puppet::Util::Log requires a symbol or string"
9676
9720
  msgstr ""
9677
9721
 
9678
- #: ../lib/puppet/util/log.rb:407
9722
+ #: ../lib/puppet/util/log.rb:406
9679
9723
  msgid "Could not parse for environment %{environment}: %{msg}"
9680
9724
  msgstr ""
9681
9725
 
9682
- #: ../lib/puppet/util/log.rb:409
9726
+ #: ../lib/puppet/util/log.rb:408
9683
9727
  msgid "%{msg} on node %{node}"
9684
9728
  msgstr ""
9685
9729
 
@@ -9691,20 +9735,20 @@ msgstr ""
9691
9735
  msgid "Creating log directory %{dir}"
9692
9736
  msgstr ""
9693
9737
 
9694
- #: ../lib/puppet/util/logging.rb:81 ../lib/puppet/util/logging.rb:105
9738
+ #: ../lib/puppet/util/logging.rb:79 ../lib/puppet/util/logging.rb:103
9695
9739
  msgid "Wrapped exception:"
9696
9740
  msgstr ""
9697
9741
 
9698
9742
  #. TRANSLATORS the literals ":file", ":line", and ":key" should not be translated
9699
- #: ../lib/puppet/util/logging.rb:162
9743
+ #: ../lib/puppet/util/logging.rb:160
9700
9744
  msgid "Need either :file and :line, or :key"
9701
9745
  msgstr ""
9702
9746
 
9703
- #: ../lib/puppet/util/logging.rb:192
9747
+ #: ../lib/puppet/util/logging.rb:190
9704
9748
  msgid "(file & line not available)"
9705
9749
  msgstr ""
9706
9750
 
9707
- #: ../lib/puppet/util/logging.rb:294
9751
+ #: ../lib/puppet/util/logging.rb:270
9708
9752
  msgid "(location: %{location})"
9709
9753
  msgstr ""
9710
9754
 
@@ -9816,31 +9860,31 @@ msgstr ""
9816
9860
  msgid "Caught exception %{klass}:%{error} retrying"
9817
9861
  msgstr ""
9818
9862
 
9819
- #: ../lib/puppet/util/selinux.rb:71
9863
+ #: ../lib/puppet/util/selinux.rb:81
9820
9864
  msgid "Invalid context to parse: %{context}"
9821
9865
  msgstr ""
9822
9866
 
9823
- #: ../lib/puppet/util/selinux.rb:83
9867
+ #: ../lib/puppet/util/selinux.rb:93
9824
9868
  msgid "Invalid SELinux parameter type"
9825
9869
  msgstr ""
9826
9870
 
9827
- #: ../lib/puppet/util/selinux.rb:104
9871
+ #: ../lib/puppet/util/selinux.rb:114
9828
9872
  msgid "Can't set SELinux context on file unless the file already has some kind of context"
9829
9873
  msgstr ""
9830
9874
 
9831
- #: ../lib/puppet/util/selinux.rb:118
9875
+ #: ../lib/puppet/util/selinux.rb:128
9832
9876
  msgid "set_selinux_context component must be one of :seluser, :selrole, :seltype, or :selrange"
9833
9877
  msgstr ""
9834
9878
 
9835
- #: ../lib/puppet/util/selinux.rb:129
9879
+ #: ../lib/puppet/util/selinux.rb:139
9836
9880
  msgid "Failed to set SELinux context %{context} on %{file}"
9837
9881
  msgstr ""
9838
9882
 
9839
- #: ../lib/puppet/util/selinux.rb:180
9883
+ #: ../lib/puppet/util/selinux.rb:190
9840
9884
  msgid "Could not open SELinux category translation file %{path}."
9841
9885
  msgstr ""
9842
9886
 
9843
- #: ../lib/puppet/util/selinux.rb:250
9887
+ #: ../lib/puppet/util/selinux.rb:276
9844
9888
  msgid "got a relative path in SELinux find_fs: %{path}"
9845
9889
  msgstr ""
9846
9890
 
@@ -9868,59 +9912,59 @@ msgstr ""
9868
9912
  msgid "Creating state file %{file}"
9869
9913
  msgstr ""
9870
9914
 
9871
- #: ../lib/puppet/util/suidmanager.rb:104
9915
+ #: ../lib/puppet/util/suidmanager.rb:103
9872
9916
  msgid "No such group %{group}"
9873
9917
  msgstr ""
9874
9918
 
9875
- #: ../lib/puppet/util/suidmanager.rb:120
9919
+ #: ../lib/puppet/util/suidmanager.rb:119
9876
9920
  msgid "No such user %{user}"
9877
9921
  msgstr ""
9878
9922
 
9879
- #: ../lib/puppet/util/suidmanager.rb:148
9923
+ #: ../lib/puppet/util/suidmanager.rb:147
9880
9924
  msgid "Invalid id type %{type}"
9881
9925
  msgstr ""
9882
9926
 
9883
- #: ../lib/puppet/util/suidmanager.rb:151
9927
+ #: ../lib/puppet/util/suidmanager.rb:150
9884
9928
  msgid "Invalid %{klass}: %{id}"
9885
9929
  msgstr ""
9886
9930
 
9887
- #: ../lib/puppet/util/symbolic_file_mode.rb:37
9931
+ #: ../lib/puppet/util/symbolic_file_mode.rb:49
9888
9932
  msgid "An empty mode string is illegal"
9889
9933
  msgstr ""
9890
9934
 
9891
- #: ../lib/puppet/util/symbolic_file_mode.rb:41
9935
+ #: ../lib/puppet/util/symbolic_file_mode.rb:53
9892
9936
  msgid "Numeric modes must be in octal, not decimal!"
9893
9937
  msgstr ""
9894
9938
 
9895
- #: ../lib/puppet/util/symbolic_file_mode.rb:44
9939
+ #: ../lib/puppet/util/symbolic_file_mode.rb:56
9896
9940
  msgid "non-numeric current mode (%{mode})"
9897
9941
  msgstr ""
9898
9942
 
9899
- #: ../lib/puppet/util/symbolic_file_mode.rb:64
9943
+ #: ../lib/puppet/util/symbolic_file_mode.rb:76
9900
9944
  msgid "Missing action"
9901
9945
  msgstr ""
9902
9946
 
9903
- #: ../lib/puppet/util/symbolic_file_mode.rb:79
9947
+ #: ../lib/puppet/util/symbolic_file_mode.rb:91
9904
9948
  msgid "Missing operation (-, =, or +)"
9905
9949
  msgstr ""
9906
9950
 
9907
- #: ../lib/puppet/util/symbolic_file_mode.rb:101
9951
+ #: ../lib/puppet/util/symbolic_file_mode.rb:113
9908
9952
  msgid "X only works with the '+' operator"
9909
9953
  msgstr ""
9910
9954
 
9911
- #: ../lib/puppet/util/symbolic_file_mode.rb:112
9955
+ #: ../lib/puppet/util/symbolic_file_mode.rb:124
9912
9956
  msgid "internal error"
9913
9957
  msgstr ""
9914
9958
 
9915
- #: ../lib/puppet/util/symbolic_file_mode.rb:116
9959
+ #: ../lib/puppet/util/symbolic_file_mode.rb:128
9916
9960
  msgid "Unknown operation"
9917
9961
  msgstr ""
9918
9962
 
9919
- #: ../lib/puppet/util/symbolic_file_mode.rb:131
9963
+ #: ../lib/puppet/util/symbolic_file_mode.rb:143
9920
9964
  msgid "%{error}%{rest} in symbolic mode %{modification}"
9921
9965
  msgstr ""
9922
9966
 
9923
- #: ../lib/puppet/util/tagging.rb:27
9967
+ #: ../lib/puppet/util/tagging.rb:28
9924
9968
  msgid "Invalid tag '%{name}'"
9925
9969
  msgstr ""
9926
9970
 
@@ -10158,7 +10202,7 @@ msgstr ""
10158
10202
  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"
10159
10203
  msgstr ""
10160
10204
 
10161
- #: ../lib/puppet/util/windows/security.rb:433 ../lib/puppet/util/windows/security.rb:450 ../lib/puppet/util/windows/sid.rb:157 ../lib/puppet/util/windows/sid.rb:219 ../lib/puppet/util/windows/user.rb:59
10205
+ #: ../lib/puppet/util/windows/security.rb:433 ../lib/puppet/util/windows/security.rb:450 ../lib/puppet/util/windows/sid.rb:159 ../lib/puppet/util/windows/sid.rb:221 ../lib/puppet/util/windows/user.rb:57
10162
10206
  msgid "Invalid SID"
10163
10207
  msgstr ""
10164
10208
 
@@ -10314,39 +10358,39 @@ msgstr ""
10314
10358
  msgid "Timed out while waiting for the pending transition from %{pending_state} to %{final_state} to finish. The current state is %{current_state}."
10315
10359
  msgstr ""
10316
10360
 
10317
- #: ../lib/puppet/util/windows/sid.rb:96
10361
+ #: ../lib/puppet/util/windows/sid.rb:98
10318
10362
  msgid "Octet string must be an array of bytes"
10319
10363
  msgstr ""
10320
10364
 
10321
- #: ../lib/puppet/util/windows/sid.rb:163
10365
+ #: ../lib/puppet/util/windows/sid.rb:165
10322
10366
  msgid "Failed to convert binary SID"
10323
10367
  msgstr ""
10324
10368
 
10325
- #: ../lib/puppet/util/windows/sid.rb:168
10369
+ #: ../lib/puppet/util/windows/sid.rb:170
10326
10370
  msgid "ConvertSidToStringSidW failed to allocate buffer for sid"
10327
10371
  msgstr ""
10328
10372
 
10329
- #: ../lib/puppet/util/windows/sid.rb:188
10373
+ #: ../lib/puppet/util/windows/sid.rb:190
10330
10374
  msgid "Failed to convert string SID: %{string_sid}"
10331
10375
  msgstr ""
10332
10376
 
10333
- #: ../lib/puppet/util/windows/user.rb:54
10377
+ #: ../lib/puppet/util/windows/user.rb:52
10334
10378
  msgid "Failed to create administrators SID"
10335
10379
  msgstr ""
10336
10380
 
10337
- #: ../lib/puppet/util/windows/user.rb:64
10381
+ #: ../lib/puppet/util/windows/user.rb:62
10338
10382
  msgid "Failed to check membership"
10339
10383
  msgstr ""
10340
10384
 
10341
- #: ../lib/puppet/util/windows/user.rb:104
10385
+ #: ../lib/puppet/util/windows/user.rb:102
10342
10386
  msgid "Failed to logon user %{name}"
10343
10387
  msgstr ""
10344
10388
 
10345
- #: ../lib/puppet/util/windows/user.rb:135
10389
+ #: ../lib/puppet/util/windows/user.rb:133
10346
10390
  msgid "Failed to load user profile %{user}"
10347
10391
  msgstr ""
10348
10392
 
10349
- #: ../lib/puppet/util/windows/user.rb:141
10393
+ #: ../lib/puppet/util/windows/user.rb:139
10350
10394
  msgid "Failed to unload user profile %{user}"
10351
10395
  msgstr ""
10352
10396