puppet 7.8.0-x86-mingw32 → 7.12.0-x86-mingw32

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

Potentially problematic release.


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

Files changed (379) hide show
  1. checksums.yaml +4 -4
  2. data/CONTRIBUTING.md +5 -5
  3. data/Gemfile +2 -2
  4. data/Gemfile.lock +15 -15
  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/project_data.yaml +1 -0
  16. data/install.rb +0 -4
  17. data/lib/puppet/application/agent.rb +4 -0
  18. data/lib/puppet/application/apply.rb +20 -2
  19. data/lib/puppet/application/filebucket.rb +1 -0
  20. data/lib/puppet/application/resource.rb +30 -15
  21. data/lib/puppet/application/ssl.rb +1 -0
  22. data/lib/puppet/concurrent/thread_local_singleton.rb +1 -0
  23. data/lib/puppet/configurer.rb +176 -58
  24. data/lib/puppet/confine/variable.rb +1 -1
  25. data/lib/puppet/defaults.rb +67 -29
  26. data/lib/puppet/environments.rb +75 -25
  27. data/lib/puppet/face/help/action.erb +1 -0
  28. data/lib/puppet/face/help/face.erb +1 -0
  29. data/lib/puppet/face/node/clean.rb +1 -1
  30. data/lib/puppet/facter_impl.rb +96 -0
  31. data/lib/puppet/file_serving/configuration/parser.rb +2 -0
  32. data/lib/puppet/file_serving/configuration.rb +2 -0
  33. data/lib/puppet/file_serving/mount/file.rb +4 -4
  34. data/lib/puppet/file_serving/mount/scripts.rb +24 -0
  35. data/lib/puppet/file_system/file_impl.rb +3 -1
  36. data/lib/puppet/file_system/windows.rb +2 -2
  37. data/lib/puppet/file_system.rb +2 -1
  38. data/lib/puppet/forge/cache.rb +1 -1
  39. data/lib/puppet/forge.rb +4 -4
  40. data/lib/puppet/functions/empty.rb +8 -0
  41. data/lib/puppet/functions/find_template.rb +2 -2
  42. data/lib/puppet/functions/strftime.rb +1 -0
  43. data/lib/puppet/functions/unwrap.rb +17 -2
  44. data/lib/puppet/http/service/compiler.rb +6 -1
  45. data/lib/puppet/indirector/catalog/compiler.rb +24 -6
  46. data/lib/puppet/indirector/catalog/rest.rb +1 -0
  47. data/lib/puppet/indirector/facts/facter.rb +6 -6
  48. data/lib/puppet/indirector/indirection.rb +1 -1
  49. data/lib/puppet/indirector/resource/ral.rb +6 -1
  50. data/lib/puppet/indirector/terminus.rb +4 -0
  51. data/lib/puppet/interface/documentation.rb +1 -0
  52. data/lib/puppet/module/plan.rb +0 -1
  53. data/lib/puppet/module/task.rb +1 -1
  54. data/lib/puppet/module_tool/applications/installer.rb +12 -4
  55. data/lib/puppet/module_tool/applications/uninstaller.rb +1 -1
  56. data/lib/puppet/module_tool/applications/upgrader.rb +1 -1
  57. data/lib/puppet/module_tool/errors/shared.rb +17 -0
  58. data/lib/puppet/module_tool/tar/mini.rb +1 -1
  59. data/lib/puppet/network/http/api/indirected_routes.rb +1 -1
  60. data/lib/puppet/node/environment.rb +10 -11
  61. data/lib/puppet/pal/pal_impl.rb +1 -1
  62. data/lib/puppet/parser/scope.rb +8 -7
  63. data/lib/puppet/parser/templatewrapper.rb +1 -0
  64. data/lib/puppet/pops/evaluator/closure.rb +7 -5
  65. data/lib/puppet/pops/lookup/lookup_adapter.rb +3 -2
  66. data/lib/puppet/pops/model/ast.rb +1 -0
  67. data/lib/puppet/pops/model/factory.rb +14 -13
  68. data/lib/puppet/pops/parser/egrammar.ra +2 -2
  69. data/lib/puppet/pops/parser/eparser.rb +752 -753
  70. data/lib/puppet/pops/parser/lexer2.rb +69 -68
  71. data/lib/puppet/pops/parser/slurp_support.rb +1 -0
  72. data/lib/puppet/pops/serialization/to_data_converter.rb +18 -6
  73. data/lib/puppet/pops/serialization/to_stringified_converter.rb +1 -1
  74. data/lib/puppet/pops/types/type_formatter.rb +7 -6
  75. data/lib/puppet/pops/types/type_mismatch_describer.rb +1 -1
  76. data/lib/puppet/pops/types/types.rb +1 -1
  77. data/lib/puppet/provider/aix_object.rb +1 -1
  78. data/lib/puppet/provider/exec/posix.rb +16 -4
  79. data/lib/puppet/provider/group/groupadd.rb +5 -2
  80. data/lib/puppet/provider/package/pip.rb +15 -3
  81. data/lib/puppet/provider/package/pkg.rb +19 -2
  82. data/lib/puppet/provider/package/puppet_gem.rb +1 -1
  83. data/lib/puppet/provider/package/puppetserver_gem.rb +1 -1
  84. data/lib/puppet/provider/package/windows/exe_package.rb +30 -1
  85. data/lib/puppet/provider/package/windows/package.rb +2 -1
  86. data/lib/puppet/provider/package/windows.rb +14 -1
  87. data/lib/puppet/provider/package/yum.rb +1 -1
  88. data/lib/puppet/provider/parsedfile.rb +3 -0
  89. data/lib/puppet/provider/service/base.rb +1 -1
  90. data/lib/puppet/provider/service/init.rb +5 -5
  91. data/lib/puppet/provider/service/launchd.rb +2 -2
  92. data/lib/puppet/provider/service/redhat.rb +1 -1
  93. data/lib/puppet/provider/service/smf.rb +3 -3
  94. data/lib/puppet/provider/service/systemd.rb +2 -2
  95. data/lib/puppet/provider/service/upstart.rb +5 -5
  96. data/lib/puppet/provider/user/aix.rb +44 -1
  97. data/lib/puppet/provider/user/directoryservice.rb +1 -1
  98. data/lib/puppet/provider/user/useradd.rb +72 -16
  99. data/lib/puppet/provider.rb +1 -1
  100. data/lib/puppet/reference/providers.rb +2 -2
  101. data/lib/puppet/resource/type_collection.rb +4 -1
  102. data/lib/puppet/runtime.rb +11 -1
  103. data/lib/puppet/settings/config_file.rb +1 -8
  104. data/lib/puppet/settings/file_setting.rb +3 -8
  105. data/lib/puppet/settings/value_translator.rb +0 -1
  106. data/lib/puppet/settings.rb +32 -9
  107. data/lib/puppet/test/test_helper.rb +4 -1
  108. data/lib/puppet/transaction/persistence.rb +11 -1
  109. data/lib/puppet/transaction/report.rb +15 -1
  110. data/lib/puppet/type/exec.rb +35 -5
  111. data/lib/puppet/type/file/mode.rb +6 -0
  112. data/lib/puppet/type/file.rb +6 -6
  113. data/lib/puppet/type/filebucket.rb +2 -2
  114. data/lib/puppet/type/group.rb +0 -1
  115. data/lib/puppet/type/resources.rb +1 -1
  116. data/lib/puppet/type/service.rb +8 -3
  117. data/lib/puppet/type/tidy.rb +1 -1
  118. data/lib/puppet/type/user.rb +1 -2
  119. data/lib/puppet/type.rb +1 -1
  120. data/lib/puppet/util/autoload.rb +1 -1
  121. data/lib/puppet/util/command_line.rb +1 -1
  122. data/lib/puppet/util/filetype.rb +2 -2
  123. data/lib/puppet/util/json.rb +3 -0
  124. data/lib/puppet/util/log.rb +1 -2
  125. data/lib/puppet/util/logging.rb +1 -25
  126. data/lib/puppet/util/monkey_patches.rb +2 -17
  127. data/lib/puppet/util/pidlock.rb +1 -1
  128. data/lib/puppet/util/rdoc/parser/puppet_parser_core.rb +1 -1
  129. data/lib/puppet/util/suidmanager.rb +1 -2
  130. data/lib/puppet/util/symbolic_file_mode.rb +29 -17
  131. data/lib/puppet/util/tagging.rb +1 -0
  132. data/lib/puppet/util/windows/sid.rb +3 -1
  133. data/lib/puppet/util/windows/user.rb +0 -1
  134. data/lib/puppet/util.rb +4 -3
  135. data/lib/puppet/version.rb +1 -1
  136. data/lib/puppet/x509/cert_provider.rb +3 -21
  137. data/lib/puppet.rb +5 -9
  138. data/locales/puppet.pot +409 -329
  139. data/man/man5/puppet.conf.5 +73 -25
  140. data/man/man8/puppet-agent.8 +4 -1
  141. data/man/man8/puppet-apply.8 +1 -1
  142. data/man/man8/puppet-catalog.8 +9 -9
  143. data/man/man8/puppet-config.8 +1 -1
  144. data/man/man8/puppet-describe.8 +1 -1
  145. data/man/man8/puppet-device.8 +1 -1
  146. data/man/man8/puppet-doc.8 +1 -1
  147. data/man/man8/puppet-epp.8 +1 -1
  148. data/man/man8/puppet-facts.8 +7 -7
  149. data/man/man8/puppet-filebucket.8 +1 -1
  150. data/man/man8/puppet-generate.8 +1 -1
  151. data/man/man8/puppet-help.8 +1 -1
  152. data/man/man8/puppet-lookup.8 +1 -1
  153. data/man/man8/puppet-module.8 +3 -3
  154. data/man/man8/puppet-node.8 +5 -5
  155. data/man/man8/puppet-parser.8 +1 -1
  156. data/man/man8/puppet-plugin.8 +1 -1
  157. data/man/man8/puppet-report.8 +5 -5
  158. data/man/man8/puppet-resource.8 +1 -1
  159. data/man/man8/puppet-script.8 +1 -1
  160. data/man/man8/puppet-ssl.8 +1 -1
  161. data/man/man8/puppet.8 +2 -2
  162. data/spec/fixtures/integration/application/agent/lib/facter/agent_spec_role.rb +3 -0
  163. data/spec/fixtures/integration/l10n/envs/prod/modules/demo/Gemfile +4 -0
  164. data/spec/fixtures/integration/l10n/envs/prod/modules/demo/Rakefile +3 -0
  165. data/spec/fixtures/integration/l10n/envs/prod/modules/demo/lib/puppet/functions/l10n.rb +8 -0
  166. data/spec/fixtures/integration/l10n/envs/prod/modules/demo/locales/config.yaml +25 -0
  167. data/spec/fixtures/integration/l10n/envs/prod/modules/demo/locales/ja/puppet-l10n.po +19 -0
  168. data/spec/fixtures/integration/l10n/envs/prod/modules/demo/locales/puppet-l10n.pot +20 -0
  169. data/spec/fixtures/integration/l10n/envs/prod/modules/demo/metadata.json +8 -0
  170. data/spec/fixtures/ssl/127.0.0.1-key.pem +106 -106
  171. data/spec/fixtures/ssl/127.0.0.1.pem +48 -48
  172. data/spec/fixtures/ssl/bad-basic-constraints.pem +54 -54
  173. data/spec/fixtures/ssl/bad-int-basic-constraints.pem +51 -51
  174. data/spec/fixtures/ssl/ca.pem +52 -52
  175. data/spec/fixtures/ssl/crl.pem +25 -25
  176. data/spec/fixtures/ssl/ec-key-openssl.pem +8 -0
  177. data/spec/fixtures/ssl/ec-key-pk8.pem +5 -0
  178. data/spec/fixtures/ssl/ec-key.pem +11 -11
  179. data/spec/fixtures/ssl/ec.pem +32 -32
  180. data/spec/fixtures/ssl/encrypted-ec-key.pem +12 -12
  181. data/spec/fixtures/ssl/encrypted-key.pem +107 -107
  182. data/spec/fixtures/ssl/intermediate-agent-crl.pem +25 -25
  183. data/spec/fixtures/ssl/intermediate-agent.pem +54 -54
  184. data/spec/fixtures/ssl/intermediate-crl.pem +28 -28
  185. data/spec/fixtures/ssl/intermediate.pem +51 -51
  186. data/spec/fixtures/ssl/oid-key.pem +117 -0
  187. data/spec/fixtures/ssl/oid.pem +69 -0
  188. data/spec/fixtures/ssl/pluto-key.pem +106 -106
  189. data/spec/fixtures/ssl/pluto.pem +50 -50
  190. data/spec/fixtures/ssl/request-key.pem +106 -106
  191. data/spec/fixtures/ssl/request.pem +45 -45
  192. data/spec/fixtures/ssl/revoked-key.pem +106 -106
  193. data/spec/fixtures/ssl/revoked.pem +49 -49
  194. data/spec/fixtures/ssl/signed-key.pem +106 -106
  195. data/spec/fixtures/ssl/signed.pem +47 -47
  196. data/spec/fixtures/ssl/tampered-cert.pem +49 -49
  197. data/spec/fixtures/ssl/tampered-csr.pem +45 -45
  198. data/spec/fixtures/ssl/trusted_oid_mapping.yaml +5 -0
  199. data/spec/fixtures/ssl/unknown-127.0.0.1-key.pem +106 -106
  200. data/spec/fixtures/ssl/unknown-127.0.0.1.pem +48 -48
  201. data/spec/fixtures/ssl/unknown-ca-key.pem +106 -106
  202. data/spec/fixtures/ssl/unknown-ca.pem +52 -52
  203. data/spec/integration/application/agent_spec.rb +118 -52
  204. data/spec/integration/application/filebucket_spec.rb +16 -0
  205. data/spec/integration/application/module_spec.rb +21 -0
  206. data/spec/integration/application/resource_spec.rb +35 -1
  207. data/spec/integration/application/ssl_spec.rb +20 -0
  208. data/spec/integration/configurer_spec.rb +18 -2
  209. data/spec/integration/defaults_spec.rb +5 -0
  210. data/spec/integration/environments/settings_interpolation_spec.rb +0 -4
  211. data/spec/integration/indirector/facts/facter_spec.rb +93 -39
  212. data/spec/integration/l10n/compiler_spec.rb +37 -0
  213. data/spec/integration/transaction/report_spec.rb +1 -1
  214. data/spec/integration/type/exec_spec.rb +70 -45
  215. data/spec/integration/type/file_spec.rb +2 -2
  216. data/spec/integration/type/package_spec.rb +6 -6
  217. data/spec/integration/util/rdoc/parser_spec.rb +1 -1
  218. data/spec/integration/util/windows/process_spec.rb +1 -9
  219. data/spec/lib/puppet/test_ca.rb +5 -0
  220. data/spec/lib/puppet_spec/modules.rb +13 -2
  221. data/spec/lib/puppet_spec/puppetserver.rb +15 -0
  222. data/spec/lib/puppet_spec/settings.rb +1 -0
  223. data/spec/shared_behaviours/documentation_on_faces.rb +0 -2
  224. data/spec/shared_contexts/l10n.rb +27 -0
  225. data/spec/spec_helper.rb +1 -10
  226. data/spec/unit/application/apply_spec.rb +76 -56
  227. data/spec/unit/application/resource_spec.rb +29 -0
  228. data/spec/unit/configurer_spec.rb +291 -56
  229. data/spec/unit/environments_spec.rb +184 -0
  230. data/spec/unit/facter_impl_spec.rb +31 -0
  231. data/spec/unit/file_bucket/dipper_spec.rb +2 -2
  232. data/spec/unit/file_serving/configuration/parser_spec.rb +23 -0
  233. data/spec/unit/file_serving/configuration_spec.rb +12 -4
  234. data/spec/unit/file_serving/mount/scripts_spec.rb +69 -0
  235. data/spec/unit/file_system_spec.rb +13 -0
  236. data/spec/unit/functions/assert_type_spec.rb +1 -1
  237. data/spec/unit/functions/empty_spec.rb +10 -0
  238. data/spec/unit/functions/logging_spec.rb +1 -0
  239. data/spec/unit/functions/lookup_spec.rb +87 -0
  240. data/spec/unit/functions/unwrap_spec.rb +8 -0
  241. data/spec/unit/functions4_spec.rb +2 -2
  242. data/spec/unit/http/service/compiler_spec.rb +8 -0
  243. data/spec/unit/indirector/catalog/compiler_spec.rb +87 -0
  244. data/spec/unit/indirector/catalog/rest_spec.rb +8 -0
  245. data/spec/unit/indirector/indirection_spec.rb +10 -3
  246. data/spec/unit/indirector/resource/ral_spec.rb +40 -75
  247. data/spec/unit/interface/action_spec.rb +0 -9
  248. data/spec/unit/module_spec.rb +14 -0
  249. data/spec/unit/module_tool/applications/installer_spec.rb +52 -14
  250. data/spec/unit/network/formats_spec.rb +6 -0
  251. data/spec/unit/parser/compiler_spec.rb +29 -0
  252. data/spec/unit/parser/templatewrapper_spec.rb +12 -2
  253. data/spec/unit/pops/loaders/dependency_loader_spec.rb +0 -9
  254. data/spec/unit/pops/parser/lexer2_spec.rb +0 -4
  255. data/spec/unit/pops/parser/parse_containers_spec.rb +0 -11
  256. data/spec/unit/pops/serialization/to_from_hr_spec.rb +58 -0
  257. data/spec/unit/pops/serialization/to_stringified_spec.rb +5 -0
  258. data/spec/unit/pops/types/type_calculator_spec.rb +6 -0
  259. data/spec/unit/provider/package/gem_spec.rb +1 -1
  260. data/spec/unit/provider/package/pip2_spec.rb +1 -1
  261. data/spec/unit/provider/package/pip3_spec.rb +1 -1
  262. data/spec/unit/provider/package/pip_spec.rb +38 -1
  263. data/spec/unit/provider/package/pkg_spec.rb +34 -5
  264. data/spec/unit/provider/package/puppet_gem_spec.rb +1 -1
  265. data/spec/unit/provider/package/puppetserver_gem_spec.rb +1 -1
  266. data/spec/unit/provider/package/windows/exe_package_spec.rb +17 -0
  267. data/spec/unit/provider/parsedfile_spec.rb +10 -0
  268. data/spec/unit/provider/service/launchd_spec.rb +11 -0
  269. data/spec/unit/provider/service/systemd_spec.rb +1 -1
  270. data/spec/unit/provider/user/aix_spec.rb +100 -0
  271. data/spec/unit/provider/user/directoryservice_spec.rb +1 -1
  272. data/spec/unit/provider/user/useradd_spec.rb +43 -2
  273. data/spec/unit/provider_spec.rb +4 -4
  274. data/spec/unit/puppet_spec.rb +12 -4
  275. data/spec/unit/resource/type_collection_spec.rb +16 -0
  276. data/spec/unit/resource/type_spec.rb +2 -2
  277. data/spec/unit/settings/config_file_spec.rb +1 -11
  278. data/spec/unit/settings/file_setting_spec.rb +10 -7
  279. data/spec/unit/settings/value_translator_spec.rb +4 -5
  280. data/spec/unit/settings_spec.rb +120 -79
  281. data/spec/unit/ssl/ssl_provider_spec.rb +18 -16
  282. data/spec/unit/type/exec_spec.rb +76 -29
  283. data/spec/unit/type/file/source_spec.rb +4 -4
  284. data/spec/unit/type/service_spec.rb +27 -0
  285. data/spec/unit/type/tidy_spec.rb +7 -0
  286. data/spec/unit/type_spec.rb +2 -2
  287. data/spec/unit/util/autoload_spec.rb +25 -8
  288. data/spec/unit/util/ldap/connection_spec.rb +10 -10
  289. data/spec/unit/util/ldap/manager_spec.rb +2 -2
  290. data/spec/unit/util/logging_spec.rb +2 -0
  291. data/spec/unit/util/windows/sid_spec.rb +39 -4
  292. data/spec/unit/util_spec.rb +1 -3
  293. data/spec/unit/x509/cert_provider_spec.rb +9 -1
  294. data/tasks/generate_cert_fixtures.rake +10 -1
  295. data/tasks/parallel.rake +3 -3
  296. metadata +51 -95
  297. data/ext/README.environment +0 -8
  298. data/ext/dbfix.sql +0 -132
  299. data/ext/debian/README.Debian +0 -8
  300. data/ext/debian/README.source +0 -2
  301. data/ext/debian/TODO.Debian +0 -1
  302. data/ext/debian/changelog.erb +0 -1122
  303. data/ext/debian/compat +0 -1
  304. data/ext/debian/control +0 -144
  305. data/ext/debian/copyright +0 -339
  306. data/ext/debian/docs +0 -1
  307. data/ext/debian/fileserver.conf +0 -41
  308. data/ext/debian/puppet-common.dirs +0 -13
  309. data/ext/debian/puppet-common.install +0 -3
  310. data/ext/debian/puppet-common.lintian-overrides +0 -5
  311. data/ext/debian/puppet-common.manpages +0 -28
  312. data/ext/debian/puppet-common.postinst +0 -35
  313. data/ext/debian/puppet-common.postrm +0 -33
  314. data/ext/debian/puppet-el.dirs +0 -1
  315. data/ext/debian/puppet-el.emacsen-install +0 -25
  316. data/ext/debian/puppet-el.emacsen-remove +0 -11
  317. data/ext/debian/puppet-el.emacsen-startup +0 -9
  318. data/ext/debian/puppet-el.install +0 -1
  319. data/ext/debian/puppet-testsuite.install +0 -2
  320. data/ext/debian/puppet-testsuite.lintian-overrides +0 -4
  321. data/ext/debian/puppet.lintian-overrides +0 -3
  322. data/ext/debian/puppet.logrotate +0 -20
  323. data/ext/debian/puppet.postinst +0 -20
  324. data/ext/debian/puppet.postrm +0 -20
  325. data/ext/debian/puppet.preinst +0 -20
  326. data/ext/debian/puppetmaster-common.install +0 -2
  327. data/ext/debian/puppetmaster-common.manpages +0 -2
  328. data/ext/debian/puppetmaster-common.postinst +0 -6
  329. data/ext/debian/puppetmaster-passenger.dirs +0 -4
  330. data/ext/debian/puppetmaster-passenger.postinst +0 -162
  331. data/ext/debian/puppetmaster-passenger.postrm +0 -61
  332. data/ext/debian/puppetmaster.README.debian +0 -17
  333. data/ext/debian/puppetmaster.default +0 -14
  334. data/ext/debian/puppetmaster.init +0 -137
  335. data/ext/debian/puppetmaster.lintian-overrides +0 -3
  336. data/ext/debian/puppetmaster.postinst +0 -20
  337. data/ext/debian/puppetmaster.postrm +0 -5
  338. data/ext/debian/puppetmaster.preinst +0 -22
  339. data/ext/debian/rules +0 -132
  340. data/ext/debian/source/format +0 -1
  341. data/ext/debian/source/options +0 -1
  342. data/ext/debian/vim-puppet.README.Debian +0 -13
  343. data/ext/debian/vim-puppet.dirs +0 -5
  344. data/ext/debian/vim-puppet.yaml +0 -7
  345. data/ext/debian/watch +0 -2
  346. data/ext/freebsd/puppetd +0 -26
  347. data/ext/freebsd/puppetmasterd +0 -26
  348. data/ext/gentoo/conf.d/puppet +0 -5
  349. data/ext/gentoo/conf.d/puppetmaster +0 -12
  350. data/ext/gentoo/init.d/puppet +0 -38
  351. data/ext/gentoo/init.d/puppetmaster +0 -51
  352. data/ext/gentoo/puppet/fileserver.conf +0 -41
  353. data/ext/ips/puppet-agent +0 -44
  354. data/ext/ips/puppet-master +0 -44
  355. data/ext/ips/puppet.p5m.erb +0 -12
  356. data/ext/ips/puppetagent.xml +0 -42
  357. data/ext/ips/puppetmaster.xml +0 -42
  358. data/ext/ips/rules +0 -19
  359. data/ext/ips/transforms +0 -34
  360. data/ext/ldap/puppet.schema +0 -24
  361. data/ext/logcheck/puppet +0 -23
  362. data/ext/osx/file_mapping.yaml +0 -28
  363. data/ext/osx/postflight.erb +0 -109
  364. data/ext/osx/preflight.erb +0 -52
  365. data/ext/osx/prototype.plist.erb +0 -38
  366. data/ext/redhat/fileserver.conf +0 -41
  367. data/ext/redhat/logrotate +0 -21
  368. data/ext/redhat/puppet.spec.erb +0 -841
  369. data/ext/redhat/server.init +0 -128
  370. data/ext/redhat/server.sysconfig +0 -13
  371. data/ext/solaris/pkginfo +0 -6
  372. data/ext/solaris/smf/puppetd.xml +0 -77
  373. data/ext/solaris/smf/puppetmasterd.xml +0 -77
  374. data/ext/solaris/smf/svc-puppetd +0 -71
  375. data/ext/solaris/smf/svc-puppetmasterd +0 -67
  376. data/ext/suse/puppet.spec +0 -310
  377. data/ext/suse/server.init +0 -173
  378. data/ext/yaml_nodes.rb +0 -105
  379. 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 7.7.0-19-gf6adbd522b\n"
9
+ "Project-Id-Version: Puppet automation framework 7.11.0-22-gd1463bbc0c\n"
10
10
  "\n"
11
11
  "Report-Msgid-Bugs-To: https://tickets.puppetlabs.com\n"
12
- "POT-Creation-Date: 2021-05-27 07:22+0000\n"
13
- "PO-Revision-Date: 2021-05-27 07:22+0000\n"
12
+ "POT-Creation-Date: 2021-09-29 16:36+0000\n"
13
+ "PO-Revision-Date: 2021-09-29 16:36+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:138
51
+ #: ../lib/puppet.rb:134
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:224
55
+ #: ../lib/puppet.rb:220
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:250
60
+ #: ../lib/puppet.rb:246
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:252
65
+ #: ../lib/puppet.rb:248
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:422
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:427
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:450
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:466
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:209 ../lib/puppet/application/apply.rb:322
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:217
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:288 ../lib/puppet/application/script.rb:241
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:332
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:353 ../lib/puppet/application/script.rb:146
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:365 ../lib/puppet/application/script.rb:154
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:378 ../lib/puppet/application/script.rb:139
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:379
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
 
@@ -282,11 +282,11 @@ msgstr ""
282
282
  msgid "starting applying configuration to %{target} at %{scheme}%{url_host}%{port}%{url_path}"
283
283
  msgstr ""
284
284
 
285
- #: ../lib/puppet/application/device.rb:390 ../lib/puppet/application/resource.rb:197
285
+ #: ../lib/puppet/application/device.rb:390 ../lib/puppet/application/resource.rb:201
286
286
  msgid "You must specify the type to display"
287
287
  msgstr ""
288
288
 
289
- #: ../lib/puppet/application/device.rb:391 ../lib/puppet/application/resource.rb:198
289
+ #: ../lib/puppet/application/device.rb:391 ../lib/puppet/application/resource.rb:202
290
290
  msgid "Could not find type %{type}"
291
291
  msgstr ""
292
292
 
@@ -348,31 +348,31 @@ msgstr ""
348
348
  msgid "Try 'puppet help %{face} %{action}' for usage"
349
349
  msgstr ""
350
350
 
351
- #: ../lib/puppet/application/filebucket.rb:16
351
+ #: ../lib/puppet/application/filebucket.rb:17
352
352
  msgid "Store and retrieve files in a filebucket"
353
353
  msgstr ""
354
354
 
355
- #: ../lib/puppet/application/filebucket.rb:225
355
+ #: ../lib/puppet/application/filebucket.rb:226
356
356
  msgid "You must specify a file to back up"
357
357
  msgstr ""
358
358
 
359
- #: ../lib/puppet/application/filebucket.rb:229
359
+ #: ../lib/puppet/application/filebucket.rb:230
360
360
  msgid "%{file}: no such file"
361
361
  msgstr ""
362
362
 
363
- #: ../lib/puppet/application/filebucket.rb:233
363
+ #: ../lib/puppet/application/filebucket.rb:234
364
364
  msgid "%{file}: cannot read file"
365
365
  msgstr ""
366
366
 
367
- #: ../lib/puppet/application/filebucket.rb:255 ../lib/puppet/application/filebucket.rb:278
367
+ #: ../lib/puppet/application/filebucket.rb:256 ../lib/puppet/application/filebucket.rb:279
368
368
  msgid "Need exactly two arguments: filebucket diff <file_a> <file_b>"
369
369
  msgstr ""
370
370
 
371
- #: ../lib/puppet/application/filebucket.rb:275
371
+ #: ../lib/puppet/application/filebucket.rb:276
372
372
  msgid "Comparing %{checksum_a} %{checksum_b} %{file_a} %{file_b}"
373
373
  msgstr ""
374
374
 
375
- #: ../lib/puppet/application/filebucket.rb:289
375
+ #: ../lib/puppet/application/filebucket.rb:290
376
376
  msgid "Cancelling"
377
377
  msgstr ""
378
378
 
@@ -414,19 +414,19 @@ msgstr ""
414
414
  msgid "Incorrect formatted data in %{fact_file} given via the --facts flag"
415
415
  msgstr ""
416
416
 
417
- #: ../lib/puppet/application/resource.rb:32
417
+ #: ../lib/puppet/application/resource.rb:34
418
418
  msgid "The resource abstraction layer shell"
419
419
  msgstr ""
420
420
 
421
- #: ../lib/puppet/application/resource.rb:141
421
+ #: ../lib/puppet/application/resource.rb:145
422
422
  msgid "Editing with Yaml output is not supported"
423
423
  msgstr ""
424
424
 
425
- #: ../lib/puppet/application/resource.rb:205
425
+ #: ../lib/puppet/application/resource.rb:209
426
426
  msgid "Invalid parameter setting %{setting}"
427
427
  msgstr ""
428
428
 
429
- #: ../lib/puppet/application/resource.rb:227
429
+ #: ../lib/puppet/application/resource.rb:241
430
430
  msgid "Listing all file instances is not supported. Please specify a file or directory, e.g. puppet resource file /etc"
431
431
  msgstr ""
432
432
 
@@ -450,55 +450,55 @@ msgstr ""
450
450
  msgid "An action must be specified."
451
451
  msgstr ""
452
452
 
453
- #: ../lib/puppet/application/ssl.rb:129 ../lib/puppet/application/ssl.rb:136
453
+ #: ../lib/puppet/application/ssl.rb:130 ../lib/puppet/application/ssl.rb:137
454
454
  msgid "The certificate for '%{name}' has not yet been signed"
455
455
  msgstr ""
456
456
 
457
- #: ../lib/puppet/application/ssl.rb:147
457
+ #: ../lib/puppet/application/ssl.rb:148
458
458
  msgid "Completed SSL initialization"
459
459
  msgstr ""
460
460
 
461
- #: ../lib/puppet/application/ssl.rb:151
461
+ #: ../lib/puppet/application/ssl.rb:152
462
462
  msgid "Unknown action '%{action}'"
463
463
  msgstr ""
464
464
 
465
- #: ../lib/puppet/application/ssl.rb:165 ../lib/puppet/ssl/state_machine.rb:180
465
+ #: ../lib/puppet/application/ssl.rb:166 ../lib/puppet/ssl/state_machine.rb:180
466
466
  msgid "Creating a new EC SSL key for %{name} using curve %{curve}"
467
467
  msgstr ""
468
468
 
469
- #: ../lib/puppet/application/ssl.rb:168
469
+ #: ../lib/puppet/application/ssl.rb:169
470
470
  msgid "Creating a new SSL key for %{name}"
471
471
  msgstr ""
472
472
 
473
- #: ../lib/puppet/application/ssl.rb:178
473
+ #: ../lib/puppet/application/ssl.rb:179
474
474
  msgid "Submitted certificate request for '%{name}' to %{url}"
475
475
  msgstr ""
476
476
 
477
- #: ../lib/puppet/application/ssl.rb:181
477
+ #: ../lib/puppet/application/ssl.rb:182
478
478
  msgid "Could not submit certificate request for '%{name}' to %{url} due to a conflict on the server"
479
479
  msgstr ""
480
480
 
481
- #: ../lib/puppet/application/ssl.rb:183 ../lib/puppet/application/ssl.rb:186
481
+ #: ../lib/puppet/application/ssl.rb:184 ../lib/puppet/application/ssl.rb:187
482
482
  msgid "Failed to submit certificate request: %{message}"
483
483
  msgstr ""
484
484
 
485
- #: ../lib/puppet/application/ssl.rb:194
485
+ #: ../lib/puppet/application/ssl.rb:195
486
486
  msgid "Downloading certificate '%{name}' from %{url}"
487
487
  msgstr ""
488
488
 
489
- #: ../lib/puppet/application/ssl.rb:198
489
+ #: ../lib/puppet/application/ssl.rb:199
490
490
  msgid "Downloaded certificate '%{name}' with fingerprint %{fingerprint}"
491
491
  msgstr ""
492
492
 
493
- #: ../lib/puppet/application/ssl.rb:211 ../lib/puppet/application/ssl.rb:214
493
+ #: ../lib/puppet/application/ssl.rb:212 ../lib/puppet/application/ssl.rb:215
494
494
  msgid "Failed to download certificate: %{message}"
495
495
  msgstr ""
496
496
 
497
- #: ../lib/puppet/application/ssl.rb:243 ../lib/puppet/application/ssl.rb:246
497
+ #: ../lib/puppet/application/ssl.rb:244 ../lib/puppet/application/ssl.rb:247
498
498
  msgid "Failed to connect to the CA to determine if certificate %{certname} has been cleaned"
499
499
  msgstr ""
500
500
 
501
- #: ../lib/puppet/application/ssl.rb:250
501
+ #: ../lib/puppet/application/ssl.rb:251
502
502
  msgid ""
503
503
  "The certificate %{certname} must be cleaned from the CA first. To fix this,\n"
504
504
  "run the following commands on the CA:\n"
@@ -506,7 +506,7 @@ msgid ""
506
506
  " puppet ssl clean\n"
507
507
  msgstr ""
508
508
 
509
- #: ../lib/puppet/application/ssl.rb:273
509
+ #: ../lib/puppet/application/ssl.rb:274
510
510
  msgid "Removed %{label} %{path}"
511
511
  msgstr ""
512
512
 
@@ -534,93 +534,133 @@ msgstr ""
534
534
  msgid "Not using cached catalog because its environment '%{catalog_env}' does not match '%{local_env}'"
535
535
  msgstr ""
536
536
 
537
- #: ../lib/puppet/configurer.rb:100 ../lib/puppet/configurer.rb:182
537
+ #: ../lib/puppet/configurer.rb:100 ../lib/puppet/configurer.rb:275
538
538
  msgid "Using cached catalog from environment '%{catalog_env}'"
539
539
  msgstr ""
540
540
 
541
- #: ../lib/puppet/configurer.rb:175
541
+ #: ../lib/puppet/configurer.rb:133
542
+ msgid "The current total number of facts: %{size} exceeds the number of facts limit: %{max_size}"
543
+ msgstr ""
544
+
545
+ #: ../lib/puppet/configurer.rb:137
546
+ msgid "Fact %{name} with length: '%{length}' exceeds the length limit: %{limit}"
547
+ msgstr ""
548
+
549
+ #: ../lib/puppet/configurer.rb:141
550
+ msgid "The current number of top level facts: %{size} exceeds the top facts limit: %{max_size}"
551
+ msgstr ""
552
+
553
+ #: ../lib/puppet/configurer.rb:145
554
+ msgid "Fact value '%{value}' with the value length: '%{length}' exceeds the value length limit: %{max_length}"
555
+ msgstr ""
556
+
557
+ #: ../lib/puppet/configurer.rb:149
558
+ msgid "Payload with the current size of: '%{payload}' exceeds the payload size limit: %{max_size}"
559
+ msgstr ""
560
+
561
+ #: ../lib/puppet/configurer.rb:187
562
+ msgid "The size of the payload is %{payload}"
563
+ msgstr ""
564
+
565
+ #: ../lib/puppet/configurer.rb:217
566
+ msgid "The total number of facts registered is %{number_of_facts}"
567
+ msgstr ""
568
+
569
+ #: ../lib/puppet/configurer.rb:268
542
570
  msgid "Could not retrieve catalog; skipping run"
543
571
  msgstr ""
544
572
 
545
- #: ../lib/puppet/configurer.rb:191
573
+ #: ../lib/puppet/configurer.rb:284
546
574
  msgid "Applied catalog in %{seconds} seconds"
547
575
  msgstr ""
548
576
 
549
- #: ../lib/puppet/configurer.rb:225
577
+ #: ../lib/puppet/configurer.rb:318
550
578
  msgid "Could not select a functional puppet server from server_list: '%{server_list}'"
551
579
  msgstr ""
552
580
 
553
581
  #. TRANSLATORS 'server_list' is the name of a setting and should not be translated
554
- #: ../lib/puppet/configurer.rb:239
582
+ #: ../lib/puppet/configurer.rb:332
555
583
  msgid "Selected puppet server from the `server_list` setting: %{server}:%{port}"
556
584
  msgstr ""
557
585
 
558
- #: ../lib/puppet/configurer.rb:275
586
+ #: ../lib/puppet/configurer.rb:369
559
587
  msgid "Local environment: '%{local_env}' doesn't match the environment of the cached catalog '%{catalog_env}', switching agent to '%{catalog_env}'."
560
588
  msgstr ""
561
589
 
562
- #: ../lib/puppet/configurer.rb:320
563
- msgid "Local environment: '%{local_env}' doesn't match server specified node environment '%{node_env}', switching agent to '%{node_env}'."
590
+ #: ../lib/puppet/configurer.rb:392
591
+ msgid "Environment not passed via CLI and no catalog was given, attempting to find out the last server-specified environment"
564
592
  msgstr ""
565
593
 
566
- #: ../lib/puppet/configurer.rb:335
567
- msgid "Using configured environment '%{env}'"
594
+ #: ../lib/puppet/configurer.rb:399
595
+ 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."
568
596
  msgstr ""
569
597
 
570
- #: ../lib/puppet/configurer.rb:339
571
- msgid "Unable to fetch my node definition, but the agent run will continue:"
598
+ #: ../lib/puppet/configurer.rb:403
599
+ msgid "Using environment '%{env}'"
572
600
  msgstr ""
573
601
 
574
- #: ../lib/puppet/configurer.rb:367
602
+ #: ../lib/puppet/configurer.rb:427
575
603
  msgid "Not using catalog because its environment '%{catalog_env}' does not match agent specified environment '%{local_env}' and strict_environment_mode is set"
576
604
  msgstr ""
577
605
 
578
- #: ../lib/puppet/configurer.rb:378
606
+ #: ../lib/puppet/configurer.rb:438
579
607
  msgid "Catalog environment didn't stabilize after %{tries} fetches, aborting run"
580
608
  msgstr ""
581
609
 
582
- #: ../lib/puppet/configurer.rb:380
610
+ #: ../lib/puppet/configurer.rb:440
583
611
  msgid "Local environment: '%{local_env}' doesn't match server specified environment '%{catalog_env}', restarting agent run with environment '%{catalog_env}'"
584
612
  msgstr ""
585
613
 
586
- #: ../lib/puppet/configurer.rb:434
614
+ #: ../lib/puppet/configurer.rb:496
587
615
  msgid "Failed to apply catalog: %{detail}"
588
616
  msgstr ""
589
617
 
590
- #: ../lib/puppet/configurer.rb:463 ../lib/puppet/http/resolver/server_list.rb:64 ../lib/puppet/http/resolver/server_list.rb:68
618
+ #: ../lib/puppet/configurer.rb:527
619
+ msgid "Environment '%{environment}' not found on server, skipping initial pluginsync."
620
+ msgstr ""
621
+
622
+ #: ../lib/puppet/configurer.rb:544 ../lib/puppet/http/resolver/server_list.rb:64 ../lib/puppet/http/resolver/server_list.rb:68
591
623
  msgid "Puppet server %{host}:%{port} is unavailable: %{code} %{reason}"
592
624
  msgstr ""
593
625
 
594
626
  #. TRANSLATORS 'server_list' is the name of a setting and should not be translated
595
- #: ../lib/puppet/configurer.rb:467 ../lib/puppet/http/resolver/server_list.rb:73 ../lib/puppet/http/resolver/server_list.rb:76
627
+ #: ../lib/puppet/configurer.rb:548 ../lib/puppet/http/resolver/server_list.rb:73 ../lib/puppet/http/resolver/server_list.rb:76
596
628
  msgid "Unable to connect to server from server_list setting: %{detail}"
597
629
  msgstr ""
598
630
 
599
- #: ../lib/puppet/configurer.rb:478 ../lib/puppet/face/report.rb:47
631
+ #: ../lib/puppet/configurer.rb:564
632
+ msgid "Found last server-specified environment: %{environment}"
633
+ msgstr ""
634
+
635
+ #: ../lib/puppet/configurer.rb:567
636
+ msgid "Could not find last server-specified environment: %{detail}"
637
+ msgstr ""
638
+
639
+ #: ../lib/puppet/configurer.rb:584 ../lib/puppet/face/report.rb:47
600
640
  msgid "Could not send report: %{detail}"
601
641
  msgstr ""
602
642
 
603
- #: ../lib/puppet/configurer.rb:487
643
+ #: ../lib/puppet/configurer.rb:593
604
644
  msgid "Could not save last run local report: %{detail}"
605
645
  msgstr ""
606
646
 
607
- #: ../lib/puppet/configurer.rb:506
647
+ #: ../lib/puppet/configurer.rb:612
608
648
  msgid "Uploading facts for %{node} to %{server}"
609
649
  msgstr ""
610
650
 
611
- #: ../lib/puppet/configurer.rb:514
651
+ #: ../lib/puppet/configurer.rb:620
612
652
  msgid "Failed to submit facts: %{detail}"
613
653
  msgstr ""
614
654
 
615
- #: ../lib/puppet/configurer.rb:529
655
+ #: ../lib/puppet/configurer.rb:635
616
656
  msgid "Could not run command from %{setting}: %{detail}"
617
657
  msgstr ""
618
658
 
619
- #: ../lib/puppet/configurer.rb:547
659
+ #: ../lib/puppet/configurer.rb:664
620
660
  msgid "Could not retrieve catalog from cache: %{detail}"
621
661
  msgstr ""
622
662
 
623
- #: ../lib/puppet/configurer.rb:568
663
+ #: ../lib/puppet/configurer.rb:686
624
664
  msgid "Could not retrieve catalog from remote server: %{detail}"
625
665
  msgstr ""
626
666
 
@@ -660,7 +700,7 @@ msgstr ""
660
700
  msgid "TrustedInformation expected a certificate, but none was given."
661
701
  msgstr ""
662
702
 
663
- #: ../lib/puppet/context/trusted_information.rb:104 ../lib/puppet/parser/scope.rb:835
703
+ #: ../lib/puppet/context/trusted_information.rb:104 ../lib/puppet/parser/scope.rb:836
664
704
  msgid "Unsupported data type: '%{klass}'"
665
705
  msgstr ""
666
706
 
@@ -697,30 +737,30 @@ msgid "Valid values are '%{values}'."
697
737
  msgstr ""
698
738
 
699
739
  #. TRANSLATORS 'data_binding_terminus' is a setting and should not be translated
700
- #: ../lib/puppet/defaults.rb:538
740
+ #: ../lib/puppet/defaults.rb:539
701
741
  msgid "Setting 'data_binding_terminus' is deprecated."
702
742
  msgstr ""
703
743
 
704
744
  #. TRANSLATORS 'hiera' should not be translated
705
- #: ../lib/puppet/defaults.rb:540
745
+ #: ../lib/puppet/defaults.rb:541
706
746
  msgid "Convert custom terminus to hiera 5 API."
707
747
  msgstr ""
708
748
 
709
749
  #. TRANSLATORS 'environment_data_provider' is a setting and should not be translated
710
- #: ../lib/puppet/defaults.rb:733
750
+ #: ../lib/puppet/defaults.rb:735
711
751
  msgid "Setting 'environment_data_provider' is deprecated."
712
752
  msgstr ""
713
753
 
714
- #: ../lib/puppet/defaults.rb:818
754
+ #: ../lib/puppet/defaults.rb:820
715
755
  msgid "Certificate names must be lower case"
716
756
  msgstr ""
717
757
 
718
- #: ../lib/puppet/defaults.rb:1077 ../lib/puppet/settings/enum_setting.rb:13 ../lib/puppet/settings/symbolic_enum_setting.rb:14
758
+ #: ../lib/puppet/defaults.rb:1079 ../lib/puppet/settings/enum_setting.rb:13 ../lib/puppet/settings/symbolic_enum_setting.rb:14
719
759
  msgid "Invalid value '%{value}' for parameter %{name}. Allowed values are '%{allowed_values}'"
720
760
  msgstr ""
721
761
 
722
762
  #. TRANSLATORS 'pluginsync' is a setting and should not be translated
723
- #: ../lib/puppet/defaults.rb:1916
763
+ #: ../lib/puppet/defaults.rb:1950
724
764
  msgid "Setting 'pluginsync' is deprecated."
725
765
  msgstr ""
726
766
 
@@ -1589,15 +1629,15 @@ msgstr ""
1589
1629
  msgid "Relative paths must not be fully qualified"
1590
1630
  msgstr ""
1591
1631
 
1592
- #: ../lib/puppet/file_serving/configuration.rb:55
1632
+ #: ../lib/puppet/file_serving/configuration.rb:56
1593
1633
  msgid "Cannot find file: Invalid mount '%{mount_name}'"
1594
1634
  msgstr ""
1595
1635
 
1596
- #: ../lib/puppet/file_serving/configuration.rb:56
1636
+ #: ../lib/puppet/file_serving/configuration.rb:57
1597
1637
  msgid "Cannot find file: Invalid relative path '%{path}'"
1598
1638
  msgstr ""
1599
1639
 
1600
- #: ../lib/puppet/file_serving/configuration.rb:104
1640
+ #: ../lib/puppet/file_serving/configuration.rb:106
1601
1641
  msgid "Error parsing fileserver configuration: %{detail}; using old configuration"
1602
1642
  msgstr ""
1603
1643
 
@@ -1625,11 +1665,11 @@ msgstr ""
1625
1665
  msgid "%{mount} is already mounted at %{name} at %{error_location}"
1626
1666
  msgstr ""
1627
1667
 
1628
- #: ../lib/puppet/file_serving/configuration/parser.rb:98
1668
+ #: ../lib/puppet/file_serving/configuration/parser.rb:100
1629
1669
  msgid "Removing mount \"%{mount}\": %{detail}"
1630
1670
  msgstr ""
1631
1671
 
1632
- #: ../lib/puppet/file_serving/configuration/parser.rb:102
1672
+ #: ../lib/puppet/file_serving/configuration/parser.rb:104
1633
1673
  msgid "The '%{mount}' module can not have a path. Ignoring attempt to set it"
1634
1674
  msgstr ""
1635
1675
 
@@ -1719,7 +1759,7 @@ msgstr ""
1719
1759
  msgid "No client; expanding '%{path}' with local host"
1720
1760
  msgstr ""
1721
1761
 
1722
- #: ../lib/puppet/file_serving/mount/modules.rb:8
1762
+ #: ../lib/puppet/file_serving/mount/modules.rb:8 ../lib/puppet/file_serving/mount/scripts.rb:6
1723
1763
  msgid "No module specified"
1724
1764
  msgstr ""
1725
1765
 
@@ -2027,7 +2067,7 @@ msgstr ""
2027
2067
  msgid "The given data requires an Integer index at %{walked_path}, got '%{type}'"
2028
2068
  msgstr ""
2029
2069
 
2030
- #: ../lib/puppet/functions/empty.rb:74
2070
+ #: ../lib/puppet/functions/empty.rb:82
2031
2071
  msgid "Calling function empty() with %{arg_type} value is deprecated."
2032
2072
  msgstr ""
2033
2073
 
@@ -2117,7 +2157,7 @@ msgstr ""
2117
2157
  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}"
2118
2158
  msgstr ""
2119
2159
 
2120
- #: ../lib/puppet/functions/strftime.rb:207
2160
+ #: ../lib/puppet/functions/strftime.rb:208
2121
2161
  msgid "The argument signature (String format, [String timezone]) is deprecated for #strftime. See #strftime documentation and Timespan type for more info"
2122
2162
  msgstr ""
2123
2163
 
@@ -2284,120 +2324,120 @@ msgstr ""
2284
2324
  msgid "Catalog for %{request} was requested with fact definition for the wrong node (%{fact_name})."
2285
2325
  msgstr ""
2286
2326
 
2287
- #: ../lib/puppet/indirector/catalog/compiler.rb:71
2327
+ #: ../lib/puppet/indirector/catalog/compiler.rb:85
2288
2328
  msgid "Setup server facts for compiling"
2289
2329
  msgstr ""
2290
2330
 
2291
- #: ../lib/puppet/indirector/catalog/compiler.rb:95
2331
+ #: ../lib/puppet/indirector/catalog/compiler.rb:113
2292
2332
  msgid "Unsupported facts format"
2293
2333
  msgstr ""
2294
2334
 
2295
2335
  #. TRANSLATORS Inlining refers to adding additional metadata (in this case we are not inlining)
2296
- #: ../lib/puppet/indirector/catalog/compiler.rb:136
2336
+ #: ../lib/puppet/indirector/catalog/compiler.rb:154
2297
2337
  msgid "Not inlining absent resource"
2298
2338
  msgstr ""
2299
2339
 
2300
2340
  #. TRANSLATORS Inlining refers to adding additional metadata (in this case we are not inlining)
2301
- #: ../lib/puppet/indirector/catalog/compiler.rb:139
2341
+ #: ../lib/puppet/indirector/catalog/compiler.rb:157
2302
2342
  msgid "Not inlining resource without sources"
2303
2343
  msgstr ""
2304
2344
 
2305
2345
  #. TRANSLATORS Inlining refers to adding additional metadata (in this case we are not inlining)
2306
- #: ../lib/puppet/indirector/catalog/compiler.rb:142
2346
+ #: ../lib/puppet/indirector/catalog/compiler.rb:160
2307
2347
  msgid "Not inlining unsupported source scheme"
2308
2348
  msgstr ""
2309
2349
 
2310
2350
  #. TRANSLATORS Inlining refers to adding additional metadata (in this case we are not inlining)
2311
- #: ../lib/puppet/indirector/catalog/compiler.rb:164
2351
+ #: ../lib/puppet/indirector/catalog/compiler.rb:182
2312
2352
  msgid "Not inlining file outside environment"
2313
2353
  msgstr ""
2314
2354
 
2315
2355
  #. TRANSLATORS Inlining refers to adding additional metadata
2316
- #: ../lib/puppet/indirector/catalog/compiler.rb:170
2356
+ #: ../lib/puppet/indirector/catalog/compiler.rb:188
2317
2357
  msgid "Inlining file metadata"
2318
2358
  msgstr ""
2319
2359
 
2320
- #: ../lib/puppet/indirector/catalog/compiler.rb:260
2360
+ #: ../lib/puppet/indirector/catalog/compiler.rb:278
2321
2361
  msgid "Could not get metadata for %{resource}"
2322
2362
  msgstr ""
2323
2363
 
2324
- #: ../lib/puppet/indirector/catalog/compiler.rb:281
2364
+ #: ../lib/puppet/indirector/catalog/compiler.rb:299
2325
2365
  msgid "Unable to find a common checksum type between agent '%{agent_type}' and master '%{master_type}'."
2326
2366
  msgstr ""
2327
2367
 
2328
- #: ../lib/puppet/indirector/catalog/compiler.rb:288
2368
+ #: ../lib/puppet/indirector/catalog/compiler.rb:306
2329
2369
  msgid "Compiled static catalog for %{node} in environment %{environment} in %%{seconds} seconds"
2330
2370
  msgstr ""
2331
2371
 
2332
- #: ../lib/puppet/indirector/catalog/compiler.rb:289
2372
+ #: ../lib/puppet/indirector/catalog/compiler.rb:307
2333
2373
  msgid "Compiled static catalog for %{node} in environment %{environment}"
2334
2374
  msgstr ""
2335
2375
 
2336
- #: ../lib/puppet/indirector/catalog/compiler.rb:291
2376
+ #: ../lib/puppet/indirector/catalog/compiler.rb:309
2337
2377
  msgid "Compiled static catalog for %{node} in %%{seconds} seconds"
2338
2378
  msgstr ""
2339
2379
 
2340
- #: ../lib/puppet/indirector/catalog/compiler.rb:292
2380
+ #: ../lib/puppet/indirector/catalog/compiler.rb:310
2341
2381
  msgid "Compiled static catalog for %{node}"
2342
2382
  msgstr ""
2343
2383
 
2344
- #: ../lib/puppet/indirector/catalog/compiler.rb:297
2384
+ #: ../lib/puppet/indirector/catalog/compiler.rb:315
2345
2385
  msgid "Compiled catalog for %{node} in environment %{environment} in %%{seconds} seconds"
2346
2386
  msgstr ""
2347
2387
 
2348
- #: ../lib/puppet/indirector/catalog/compiler.rb:298
2388
+ #: ../lib/puppet/indirector/catalog/compiler.rb:316
2349
2389
  msgid "Compiled catalog for %{node} in environment %{environment}"
2350
2390
  msgstr ""
2351
2391
 
2352
- #: ../lib/puppet/indirector/catalog/compiler.rb:300
2392
+ #: ../lib/puppet/indirector/catalog/compiler.rb:318
2353
2393
  msgid "Compiled catalog for %{node} in %%{seconds} seconds"
2354
2394
  msgstr ""
2355
2395
 
2356
- #: ../lib/puppet/indirector/catalog/compiler.rb:301
2396
+ #: ../lib/puppet/indirector/catalog/compiler.rb:319
2357
2397
  msgid "Compiled catalog for %{node}"
2358
2398
  msgstr ""
2359
2399
 
2360
2400
  #. TRANSLATORS Inlined refers to adding additional metadata
2361
- #: ../lib/puppet/indirector/catalog/compiler.rb:323
2401
+ #: ../lib/puppet/indirector/catalog/compiler.rb:341
2362
2402
  msgid "Inlined resource metadata into static catalog for %{node} in environment %{environment} in %%{seconds} seconds"
2363
2403
  msgstr ""
2364
2404
 
2365
2405
  #. TRANSLATORS Inlined refers to adding additional metadata
2366
- #: ../lib/puppet/indirector/catalog/compiler.rb:325
2406
+ #: ../lib/puppet/indirector/catalog/compiler.rb:343
2367
2407
  msgid "Inlined resource metadata into static catalog for %{node} in environment %{environment}"
2368
2408
  msgstr ""
2369
2409
 
2370
2410
  #. TRANSLATORS Inlined refers to adding additional metadata
2371
- #: ../lib/puppet/indirector/catalog/compiler.rb:328
2411
+ #: ../lib/puppet/indirector/catalog/compiler.rb:346
2372
2412
  msgid "Inlined resource metadata into static catalog for %{node} in %%{seconds} seconds"
2373
2413
  msgstr ""
2374
2414
 
2375
2415
  #. TRANSLATORS Inlined refers to adding additional metadata
2376
- #: ../lib/puppet/indirector/catalog/compiler.rb:330
2416
+ #: ../lib/puppet/indirector/catalog/compiler.rb:348
2377
2417
  msgid "Inlined resource metadata into static catalog for %{node}"
2378
2418
  msgstr ""
2379
2419
 
2380
- #: ../lib/puppet/indirector/catalog/compiler.rb:347
2420
+ #: ../lib/puppet/indirector/catalog/compiler.rb:365
2381
2421
  msgid "Found node information"
2382
2422
  msgstr ""
2383
2423
 
2384
- #: ../lib/puppet/indirector/catalog/compiler.rb:355
2424
+ #: ../lib/puppet/indirector/catalog/compiler.rb:373
2385
2425
  msgid "Failed when searching for node %{name}: %{detail}"
2386
2426
  msgstr ""
2387
2427
 
2388
- #: ../lib/puppet/indirector/catalog/compiler.rb:375
2428
+ #: ../lib/puppet/indirector/catalog/compiler.rb:393
2389
2429
  msgid "Invalid option use_node for a remote request"
2390
2430
  msgstr ""
2391
2431
 
2392
- #: ../lib/puppet/indirector/catalog/compiler.rb:394
2432
+ #: ../lib/puppet/indirector/catalog/compiler.rb:412
2393
2433
  msgid "Could not find node '%{name}'; cannot compile"
2394
2434
  msgstr ""
2395
2435
 
2396
- #: ../lib/puppet/indirector/catalog/compiler.rb:427
2436
+ #: ../lib/puppet/indirector/catalog/compiler.rb:445
2397
2437
  msgid "Could not retrieve fact servername"
2398
2438
  msgstr ""
2399
2439
 
2400
- #: ../lib/puppet/indirector/catalog/compiler.rb:436
2440
+ #: ../lib/puppet/indirector/catalog/compiler.rb:454
2401
2441
  msgid "Could not retrieve either serverip or serverip6 fact"
2402
2442
  msgstr ""
2403
2443
 
@@ -2409,7 +2449,7 @@ msgstr ""
2409
2449
  msgid "Unable to serialize catalog to json, retrying with pson"
2410
2450
  msgstr ""
2411
2451
 
2412
- #: ../lib/puppet/indirector/catalog/rest.rb:32 ../lib/puppet/indirector/facts/rest.rb:20 ../lib/puppet/indirector/file_content/rest.rb:29 ../lib/puppet/indirector/file_metadata/rest.rb:26 ../lib/puppet/indirector/node/rest.rb:23
2452
+ #: ../lib/puppet/indirector/catalog/rest.rb:33 ../lib/puppet/indirector/facts/rest.rb:20 ../lib/puppet/indirector/file_content/rest.rb:29 ../lib/puppet/indirector/file_metadata/rest.rb:26 ../lib/puppet/indirector/node/rest.rb:23
2413
2453
  msgid "Find %{uri} resulted in 404 with the message: %{body}"
2414
2454
  msgstr ""
2415
2455
 
@@ -2752,7 +2792,7 @@ msgstr ""
2752
2792
  msgid "Could not understand URL %{key}: %{detail}"
2753
2793
  msgstr ""
2754
2794
 
2755
- #: ../lib/puppet/indirector/resource/ral.rb:59
2795
+ #: ../lib/puppet/indirector/resource/ral.rb:64
2756
2796
  msgid "Could not find type %{request_type}"
2757
2797
  msgstr ""
2758
2798
 
@@ -2780,11 +2820,11 @@ msgstr ""
2780
2820
  msgid "Cannot create instances of abstract terminus types"
2781
2821
  msgstr ""
2782
2822
 
2783
- #: ../lib/puppet/indirector/terminus.rb:163
2823
+ #: ../lib/puppet/indirector/terminus.rb:167
2784
2824
  msgid "Instance name %{name} does not match requested key %{key}"
2785
2825
  msgstr ""
2786
2826
 
2787
- #: ../lib/puppet/indirector/terminus.rb:169
2827
+ #: ../lib/puppet/indirector/terminus.rb:173
2788
2828
  msgid "Invalid instance type %{klass}, expected %{model_type}"
2789
2829
  msgstr ""
2790
2830
 
@@ -2905,43 +2945,43 @@ msgid "Face summary should be a single line; put the long text in 'description'
2905
2945
  msgstr ""
2906
2946
 
2907
2947
  #. TRANSLATORS 'author' is an attribute name and should not be translated
2908
- #: ../lib/puppet/interface/documentation.rb:205
2948
+ #: ../lib/puppet/interface/documentation.rb:206
2909
2949
  msgid "author must be a string; use multiple statements for multiple authors"
2910
2950
  msgstr ""
2911
2951
 
2912
2952
  #. TRANSLATORS 'author' is an attribute name and should not be translated
2913
- #: ../lib/puppet/interface/documentation.rb:210
2953
+ #: ../lib/puppet/interface/documentation.rb:211
2914
2954
  msgid "author should be a single line; use multiple statements for multiple authors"
2915
2955
  msgstr ""
2916
2956
 
2917
2957
  #. TRANSLATORS 'author' is an attribute name and should not be translated
2918
- #: ../lib/puppet/interface/documentation.rb:230
2958
+ #: ../lib/puppet/interface/documentation.rb:231
2919
2959
  msgid "author should be a single line; use multiple statements"
2920
2960
  msgstr ""
2921
2961
 
2922
2962
  #. TRANSLATORS 'copyright' is an attribute name and should not be translated
2923
- #: ../lib/puppet/interface/documentation.rb:251
2963
+ #: ../lib/puppet/interface/documentation.rb:252
2924
2964
  msgid "copyright takes the owners names, then the years covered"
2925
2965
  msgstr ""
2926
2966
 
2927
2967
  #. TRANSLATORS 'copyright' is an attribute name and should not be translated
2928
- #: ../lib/puppet/interface/documentation.rb:275
2968
+ #: ../lib/puppet/interface/documentation.rb:276
2929
2969
  msgid "copyright owner must be a string or an array of strings"
2930
2970
  msgstr ""
2931
2971
 
2932
2972
  #. TRANSLATORS 'copyright' is an attribute name and should not be translated
2933
- #: ../lib/puppet/interface/documentation.rb:312
2973
+ #: ../lib/puppet/interface/documentation.rb:313
2934
2974
  msgid "copyright with a year %{value} is very strange; did you accidentally add or subtract two years?"
2935
2975
  msgstr ""
2936
2976
 
2937
2977
  #. TRANSLATORS 'copyright' is an attribute name and should not be translated
2938
2978
  #. TRANSLATORS 'copyright' is an attribute name and should not be translated
2939
- #: ../lib/puppet/interface/documentation.rb:328 ../lib/puppet/interface/documentation.rb:333
2979
+ #: ../lib/puppet/interface/documentation.rb:329 ../lib/puppet/interface/documentation.rb:334
2940
2980
  msgid "%{value} is not a good copyright year or range"
2941
2981
  msgstr ""
2942
2982
 
2943
2983
  #. TRANSLATORS 'copyright' is an attribute name and should not be translated
2944
- #: ../lib/puppet/interface/documentation.rb:352
2984
+ #: ../lib/puppet/interface/documentation.rb:353
2945
2985
  msgid "%{value} is not a good copyright year, set, or range"
2946
2986
  msgstr ""
2947
2987
 
@@ -3094,19 +3134,19 @@ msgstr ""
3094
3134
  msgid "Plan %{plan_name} not found in module %{module_name}."
3095
3135
  msgstr ""
3096
3136
 
3097
- #: ../lib/puppet/module/plan.rb:64
3137
+ #: ../lib/puppet/module/plan.rb:63
3098
3138
  msgid "Plan names must start with a lowercase letter and be composed of only lowercase letters, numbers, and underscores"
3099
3139
  msgstr ""
3100
3140
 
3101
- #: ../lib/puppet/module/plan.rb:66
3141
+ #: ../lib/puppet/module/plan.rb:65
3102
3142
  msgid "Plan name cannot have extension %{ext}, must be .pp or .yaml"
3103
3143
  msgstr ""
3104
3144
 
3105
- #: ../lib/puppet/module/plan.rb:69
3145
+ #: ../lib/puppet/module/plan.rb:68
3106
3146
  msgid "Plan name cannot be a reserved word, but was '%{name}'"
3107
3147
  msgstr ""
3108
3148
 
3109
- #: ../lib/puppet/module/plan.rb:72
3149
+ #: ../lib/puppet/module/plan.rb:71
3110
3150
  msgid "Plan name cannot be a Puppet data type, but was '%{name}'"
3111
3151
  msgstr ""
3112
3152
 
@@ -3202,19 +3242,19 @@ msgstr ""
3202
3242
  msgid "No file containing checksums found."
3203
3243
  msgstr ""
3204
3244
 
3205
- #: ../lib/puppet/module_tool/applications/installer.rb:84 ../lib/puppet/module_tool/applications/upgrader.rb:102
3245
+ #: ../lib/puppet/module_tool/applications/installer.rb:88 ../lib/puppet/module_tool/applications/upgrader.rb:102
3206
3246
  msgid "Downloading from %{host} ..."
3207
3247
  msgstr ""
3208
3248
 
3209
- #: ../lib/puppet/module_tool/applications/installer.rb:132 ../lib/puppet/module_tool/applications/upgrader.rb:140
3249
+ #: ../lib/puppet/module_tool/applications/installer.rb:136 ../lib/puppet/module_tool/applications/upgrader.rb:140
3210
3250
  msgid "Resolving dependencies ..."
3211
3251
  msgstr ""
3212
3252
 
3213
- #: ../lib/puppet/module_tool/applications/installer.rb:208
3253
+ #: ../lib/puppet/module_tool/applications/installer.rb:216
3214
3254
  msgid "Preparing to install ..."
3215
3255
  msgstr ""
3216
3256
 
3217
- #: ../lib/puppet/module_tool/applications/installer.rb:211
3257
+ #: ../lib/puppet/module_tool/applications/installer.rb:219
3218
3258
  msgid "Installing -- do not interrupt ..."
3219
3259
  msgstr ""
3220
3260
 
@@ -3333,7 +3373,7 @@ msgstr ""
3333
3373
  msgid "Could not %{action} '%{module_name}' (%{version}); no version satisfies all dependencies"
3334
3374
  msgstr ""
3335
3375
 
3336
- #: ../lib/puppet/module_tool/errors/shared.rb:17 ../lib/puppet/module_tool/errors/shared.rb:186 ../lib/puppet/module_tool/errors/upgrader.rb:58
3376
+ #: ../lib/puppet/module_tool/errors/shared.rb:17 ../lib/puppet/module_tool/errors/shared.rb:203 ../lib/puppet/module_tool/errors/upgrader.rb:58
3337
3377
  msgid "Could not %{action} module '%{module_name}' (%{version})"
3338
3378
  msgstr ""
3339
3379
 
@@ -3423,68 +3463,80 @@ msgid " No version of '%{module_name}' will satisfy dependencies"
3423
3463
  msgstr ""
3424
3464
 
3425
3465
  #: ../lib/puppet/module_tool/errors/shared.rb:135
3426
- msgid "Could not %{action} '%{module_name}'; module is not installed"
3466
+ msgid "Could not %{action} '%{module_name}', did you mean '%{suggestion}'?"
3427
3467
  msgstr ""
3428
3468
 
3429
- #: ../lib/puppet/module_tool/errors/shared.rb:140 ../lib/puppet/module_tool/errors/shared.rb:163 ../lib/puppet/module_tool/errors/shared.rb:204
3469
+ #: ../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
3430
3470
  msgid "Could not %{action} module '%{module_name}'"
3431
3471
  msgstr ""
3432
3472
 
3433
3473
  #: ../lib/puppet/module_tool/errors/shared.rb:141
3474
+ msgid " The name '%{module_name}' is invalid"
3475
+ msgstr ""
3476
+
3477
+ #: ../lib/puppet/module_tool/errors/shared.rb:142
3478
+ msgid " Did you mean `puppet module %{action} %{suggestion}`?"
3479
+ msgstr ""
3480
+
3481
+ #: ../lib/puppet/module_tool/errors/shared.rb:152
3482
+ msgid "Could not %{action} '%{module_name}'; module is not installed"
3483
+ msgstr ""
3484
+
3485
+ #: ../lib/puppet/module_tool/errors/shared.rb:158
3434
3486
  msgid " Module '%{module_name}' is not installed"
3435
3487
  msgstr ""
3436
3488
 
3437
3489
  #. TRANSLATORS `puppet module %{action} %{suggestion}` is a command line and should not be translated
3438
- #: ../lib/puppet/module_tool/errors/shared.rb:144
3490
+ #: ../lib/puppet/module_tool/errors/shared.rb:161
3439
3491
  msgid " You may have meant `puppet module %{action} %{suggestion}`"
3440
3492
  msgstr ""
3441
3493
 
3442
3494
  #. TRANSLATORS `puppet module install` is a command line and should not be translated
3443
- #: ../lib/puppet/module_tool/errors/shared.rb:147
3495
+ #: ../lib/puppet/module_tool/errors/shared.rb:164
3444
3496
  msgid " Use `puppet module install` to install this module"
3445
3497
  msgstr ""
3446
3498
 
3447
3499
  #. TRANSLATORS "module path" refers to a set of directories where modules may be installed
3448
- #: ../lib/puppet/module_tool/errors/shared.rb:158
3500
+ #: ../lib/puppet/module_tool/errors/shared.rb:175
3449
3501
  msgid "Could not %{action} '%{module_name}'; module appears in multiple places in the module path"
3450
3502
  msgstr ""
3451
3503
 
3452
- #: ../lib/puppet/module_tool/errors/shared.rb:164
3504
+ #: ../lib/puppet/module_tool/errors/shared.rb:181
3453
3505
  msgid " Module '%{module_name}' appears multiple places in the module path"
3454
3506
  msgstr ""
3455
3507
 
3456
3508
  #. TRANSLATORS This is repeats as separate lines as a list under "Module '%{module_name}' appears multiple places in the module path"
3457
- #: ../lib/puppet/module_tool/errors/shared.rb:167
3509
+ #: ../lib/puppet/module_tool/errors/shared.rb:184
3458
3510
  msgid " '%{module_name}' (%{version}) was found in %{path}"
3459
3511
  msgstr ""
3460
3512
 
3461
3513
  #. TRANSLATORS `--modulepath` is command line option and should not be translated
3462
- #: ../lib/puppet/module_tool/errors/shared.rb:170
3514
+ #: ../lib/puppet/module_tool/errors/shared.rb:187
3463
3515
  msgid " Use the `--modulepath` option to limit the search to specific directories"
3464
3516
  msgstr ""
3465
3517
 
3466
- #: ../lib/puppet/module_tool/errors/shared.rb:181
3518
+ #: ../lib/puppet/module_tool/errors/shared.rb:198
3467
3519
  msgid "Could not %{action} '%{module_name}'; module has had changes made locally"
3468
3520
  msgstr ""
3469
3521
 
3470
- #: ../lib/puppet/module_tool/errors/shared.rb:187
3522
+ #: ../lib/puppet/module_tool/errors/shared.rb:204
3471
3523
  msgid " Installed module has had changes made locally"
3472
3524
  msgstr ""
3473
3525
 
3474
3526
  #. TRANSLATORS `puppet module %{action} --ignore-changes` is a command line and should not be translated
3475
- #: ../lib/puppet/module_tool/errors/shared.rb:189
3527
+ #: ../lib/puppet/module_tool/errors/shared.rb:206
3476
3528
  msgid " Use `puppet module %{action} --ignore-changes` to %{action} this module anyway"
3477
3529
  msgstr ""
3478
3530
 
3479
- #: ../lib/puppet/module_tool/errors/shared.rb:199
3531
+ #: ../lib/puppet/module_tool/errors/shared.rb:216
3480
3532
  msgid "Could not %{action} '%{module_name}'; %{error}"
3481
3533
  msgstr ""
3482
3534
 
3483
- #: ../lib/puppet/module_tool/errors/shared.rb:205
3535
+ #: ../lib/puppet/module_tool/errors/shared.rb:222
3484
3536
  msgid " Failure trying to parse metadata"
3485
3537
  msgstr ""
3486
3538
 
3487
- #: ../lib/puppet/module_tool/errors/shared.rb:206
3539
+ #: ../lib/puppet/module_tool/errors/shared.rb:223
3488
3540
  msgid " Original message was: %{message}"
3489
3541
  msgstr ""
3490
3542
 
@@ -3872,7 +3924,7 @@ msgstr ""
3872
3924
  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."
3873
3925
  msgstr ""
3874
3926
 
3875
- #: ../lib/puppet/node/environment.rb:575 ../lib/puppet/pops/loaders.rb:301
3927
+ #: ../lib/puppet/node/environment.rb:574 ../lib/puppet/pops/loaders.rb:301
3876
3928
  msgid "Could not parse for environment %{env}: %{detail}"
3877
3929
  msgstr ""
3878
3930
 
@@ -4301,111 +4353,111 @@ msgstr ""
4301
4353
  msgid "Duplicate parameter '%{param}' for on %{resource}"
4302
4354
  msgstr ""
4303
4355
 
4304
- #: ../lib/puppet/parser/scope.rb:155
4356
+ #: ../lib/puppet/parser/scope.rb:156
4305
4357
  msgid "Numerical variables cannot be changed. Attempt to set $%{name}"
4306
4358
  msgstr ""
4307
4359
 
4308
- #: ../lib/puppet/parser/scope.rb:160
4360
+ #: ../lib/puppet/parser/scope.rb:161
4309
4361
  msgid "Numerical variables cannot be deleted: Attempt to delete: $%{name}"
4310
4362
  msgstr ""
4311
4363
 
4312
- #: ../lib/puppet/parser/scope.rb:214
4364
+ #: ../lib/puppet/parser/scope.rb:215
4313
4365
  msgid "%{callee}: expects a value for parameter $%{to}"
4314
4366
  msgstr ""
4315
4367
 
4316
- #: ../lib/puppet/parser/scope.rb:215
4368
+ #: ../lib/puppet/parser/scope.rb:216
4317
4369
  msgid "%{callee}: default expression for $%{from} tries to illegally access not yet evaluated $%{to}"
4318
4370
  msgstr ""
4319
4371
 
4320
- #: ../lib/puppet/parser/scope.rb:234
4372
+ #: ../lib/puppet/parser/scope.rb:235
4321
4373
  msgid "Attempt to assign variable %{name} when evaluating parameters"
4322
4374
  msgstr ""
4323
4375
 
4324
- #: ../lib/puppet/parser/scope.rb:377
4376
+ #: ../lib/puppet/parser/scope.rb:378
4325
4377
  msgid "you must pass a compiler instance to a new scope object"
4326
4378
  msgstr ""
4327
4379
 
4328
- #: ../lib/puppet/parser/scope.rb:493
4380
+ #: ../lib/puppet/parser/scope.rb:494
4329
4381
  msgid "Scope variable name %{name} is a %{klass}, not a string"
4330
4382
  msgstr ""
4331
4383
 
4332
- #: ../lib/puppet/parser/scope.rb:655
4384
+ #: ../lib/puppet/parser/scope.rb:656
4333
4385
  msgid "class %{classname} could not be found"
4334
4386
  msgstr ""
4335
4387
 
4336
- #: ../lib/puppet/parser/scope.rb:657
4388
+ #: ../lib/puppet/parser/scope.rb:658
4337
4389
  msgid "class %{classname} has not been evaluated"
4338
4390
  msgstr ""
4339
4391
 
4340
- #: ../lib/puppet/parser/scope.rb:703
4392
+ #: ../lib/puppet/parser/scope.rb:704
4341
4393
  msgid "Default already defined for %{type} { %{param} }; cannot redefine"
4342
4394
  msgstr ""
4343
4395
 
4344
- #: ../lib/puppet/parser/scope.rb:763
4396
+ #: ../lib/puppet/parser/scope.rb:764
4345
4397
  msgid "Cannot assign to a numeric match result variable '$%{name}'"
4346
4398
  msgstr ""
4347
4399
 
4348
- #: ../lib/puppet/parser/scope.rb:766
4400
+ #: ../lib/puppet/parser/scope.rb:767
4349
4401
  msgid "Scope variable name %{name} is a %{class_type}, not a string"
4350
4402
  msgstr ""
4351
4403
 
4352
- #: ../lib/puppet/parser/scope.rb:771 ../lib/puppet/parser/scope.rb:776
4404
+ #: ../lib/puppet/parser/scope.rb:772 ../lib/puppet/parser/scope.rb:777
4353
4405
  msgid "Attempt to assign to a reserved variable name: '%{name}'"
4354
4406
  msgstr ""
4355
4407
 
4356
- #: ../lib/puppet/parser/scope.rb:781
4408
+ #: ../lib/puppet/parser/scope.rb:782
4357
4409
  msgid "Cannot reassign variable '$%{name}'"
4358
4410
  msgstr ""
4359
4411
 
4360
- #: ../lib/puppet/parser/scope.rb:1012
4412
+ #: ../lib/puppet/parser/scope.rb:1013
4361
4413
  msgid "Invalid regex match data. Got a %{klass}"
4362
4414
  msgstr ""
4363
4415
 
4364
- #: ../lib/puppet/parser/scope.rb:1020
4416
+ #: ../lib/puppet/parser/scope.rb:1021
4365
4417
  msgid "Scope#find_resource_type() is no longer supported, use Puppet::Pops::Evaluator::Runtime3ResourceSupport instead"
4366
4418
  msgstr ""
4367
4419
 
4368
- #: ../lib/puppet/parser/scope.rb:1025
4420
+ #: ../lib/puppet/parser/scope.rb:1026
4369
4421
  msgid "Scope#find_builtin_resource_type() is no longer supported, use Puppet::Pops::Evaluator::Runtime3ResourceSupport instead"
4370
4422
  msgstr ""
4371
4423
 
4372
- #: ../lib/puppet/parser/scope.rb:1030
4424
+ #: ../lib/puppet/parser/scope.rb:1031
4373
4425
  msgid "Scope#find_defined_resource_type() is no longer supported, use Puppet::Pops::Evaluator::Runtime3ResourceSupport instead"
4374
4426
  msgstr ""
4375
4427
 
4376
- #: ../lib/puppet/parser/scope.rb:1044
4428
+ #: ../lib/puppet/parser/scope.rb:1045
4377
4429
  msgid "Function %{name} not defined despite being loaded!"
4378
4430
  msgstr ""
4379
4431
 
4380
- #: ../lib/puppet/parser/scope.rb:1051
4432
+ #: ../lib/puppet/parser/scope.rb:1052
4381
4433
  msgid "Scope#resolve_type_and_title() is no longer supported, use Puppet::Pops::Evaluator::Runtime3ResourceSupport instead"
4382
4434
  msgstr ""
4383
4435
 
4384
- #: ../lib/puppet/parser/scope.rb:1071
4436
+ #: ../lib/puppet/parser/scope.rb:1072
4385
4437
  msgid "Cannot use undef as a class name"
4386
4438
  msgstr ""
4387
4439
 
4388
- #: ../lib/puppet/parser/scope.rb:1073
4440
+ #: ../lib/puppet/parser/scope.rb:1074
4389
4441
  msgid "Cannot use empty string as a class name"
4390
4442
  msgstr ""
4391
4443
 
4392
4444
  #. TRANSLATORS "Class" and "Type" are Puppet keywords and should not be translated
4393
- #: ../lib/puppet/parser/scope.rb:1082
4445
+ #: ../lib/puppet/parser/scope.rb:1083
4394
4446
  msgid "Cannot use an unspecific Class[] Type"
4395
4447
  msgstr ""
4396
4448
 
4397
4449
  #. TRANSLATORS "Resource" is a class name and should not be translated
4398
- #: ../lib/puppet/parser/scope.rb:1109
4450
+ #: ../lib/puppet/parser/scope.rb:1110
4399
4451
  msgid "Cannot use an unspecific Resource[] where a Resource['class', name] is expected"
4400
4452
  msgstr ""
4401
4453
 
4402
4454
  #. TRANSLATORS "Resource" is a class name and should not be translated
4403
- #: ../lib/puppet/parser/scope.rb:1113
4455
+ #: ../lib/puppet/parser/scope.rb:1114
4404
4456
  msgid "Cannot use a Resource[%{type_name}] where a Resource['class', name] is expected"
4405
4457
  msgstr ""
4406
4458
 
4407
4459
  #. TRANSLATORS "Resource" is a class name and should not be translated
4408
- #: ../lib/puppet/parser/scope.rb:1117
4460
+ #: ../lib/puppet/parser/scope.rb:1118
4409
4461
  msgid "Cannot use an unspecific Resource['class'] where a Resource['class', name] is expected"
4410
4462
  msgstr ""
4411
4463
 
@@ -4418,15 +4470,15 @@ msgstr ""
4418
4470
  msgid "having multiple named scopes is not supported when scripting"
4419
4471
  msgstr ""
4420
4472
 
4421
- #: ../lib/puppet/parser/templatewrapper.rb:66
4473
+ #: ../lib/puppet/parser/templatewrapper.rb:67
4422
4474
  msgid "Could not find template '%{filename}'"
4423
4475
  msgstr ""
4424
4476
 
4425
- #: ../lib/puppet/parser/templatewrapper.rb:83
4477
+ #: ../lib/puppet/parser/templatewrapper.rb:84
4426
4478
  msgid "Bound template variables for %{template_source} in %%{seconds} seconds"
4427
4479
  msgstr ""
4428
4480
 
4429
- #: ../lib/puppet/parser/templatewrapper.rb:91
4481
+ #: ../lib/puppet/parser/templatewrapper.rb:92
4430
4482
  msgid "Interpolated template %{template_source} in %%{seconds} seconds"
4431
4483
  msgstr ""
4432
4484
 
@@ -5566,47 +5618,47 @@ msgstr ""
5566
5618
  msgid "Lookup of key '%{key}' failed: %{detail}"
5567
5619
  msgstr ""
5568
5620
 
5569
- #: ../lib/puppet/pops/lookup/lookup_adapter.rb:295
5621
+ #: ../lib/puppet/pops/lookup/lookup_adapter.rb:296
5570
5622
  msgid "value of %{opts} must be a hash"
5571
5623
  msgstr ""
5572
5624
 
5573
- #: ../lib/puppet/pops/lookup/lookup_adapter.rb:302
5625
+ #: ../lib/puppet/pops/lookup/lookup_adapter.rb:303
5574
5626
  msgid "all %{opts} patterns must match a key starting with module name '%{module_name}'"
5575
5627
  msgstr ""
5576
5628
 
5577
- #: ../lib/puppet/pops/lookup/lookup_adapter.rb:306
5629
+ #: ../lib/puppet/pops/lookup/lookup_adapter.rb:307
5578
5630
  msgid "all %{opts} keys must start with module name '%{module_name}'"
5579
5631
  msgstr ""
5580
5632
 
5581
- #: ../lib/puppet/pops/lookup/lookup_adapter.rb:431
5633
+ #: ../lib/puppet/pops/lookup/lookup_adapter.rb:432
5582
5634
  msgid "Defining \"data_provider\": \"%{name}\" in metadata.json is deprecated. It is ignored since a '%{config}' with version >= 5 is present"
5583
5635
  msgstr ""
5584
5636
 
5585
- #: ../lib/puppet/pops/lookup/lookup_adapter.rb:441
5637
+ #: ../lib/puppet/pops/lookup/lookup_adapter.rb:442
5586
5638
  msgid "Defining \"data_provider\": \"%{name}\" in metadata.json is deprecated."
5587
5639
  msgstr ""
5588
5640
 
5589
- #: ../lib/puppet/pops/lookup/lookup_adapter.rb:442 ../lib/puppet/pops/lookup/lookup_adapter.rb:496
5641
+ #: ../lib/puppet/pops/lookup/lookup_adapter.rb:443 ../lib/puppet/pops/lookup/lookup_adapter.rb:497
5590
5642
  msgid "A '%{hiera_config}' file should be used instead"
5591
5643
  msgstr ""
5592
5644
 
5593
- #: ../lib/puppet/pops/lookup/lookup_adapter.rb:456
5645
+ #: ../lib/puppet/pops/lookup/lookup_adapter.rb:457
5594
5646
  msgid "Environment '%{env}', cannot find module_data_provider '%{provider}'"
5595
5647
  msgstr ""
5596
5648
 
5597
- #: ../lib/puppet/pops/lookup/lookup_adapter.rb:480
5649
+ #: ../lib/puppet/pops/lookup/lookup_adapter.rb:481
5598
5650
  msgid "Defining environment_data_provider='%{provider_name}' in environment.conf is deprecated"
5599
5651
  msgstr ""
5600
5652
 
5601
- #: ../lib/puppet/pops/lookup/lookup_adapter.rb:484
5653
+ #: ../lib/puppet/pops/lookup/lookup_adapter.rb:485
5602
5654
  msgid "The environment_data_provider='%{provider_name}' setting is ignored since '%{config_path}' version >= 5"
5603
5655
  msgstr ""
5604
5656
 
5605
- #: ../lib/puppet/pops/lookup/lookup_adapter.rb:495
5657
+ #: ../lib/puppet/pops/lookup/lookup_adapter.rb:496
5606
5658
  msgid "Defining environment_data_provider='%{provider_name}' in environment.conf is deprecated."
5607
5659
  msgstr ""
5608
5660
 
5609
- #: ../lib/puppet/pops/lookup/lookup_adapter.rb:511
5661
+ #: ../lib/puppet/pops/lookup/lookup_adapter.rb:512
5610
5662
  msgid "Environment '%{env}', cannot find environment_data_provider '%{provider}'"
5611
5663
  msgstr ""
5612
5664
 
@@ -5661,11 +5713,11 @@ msgid "Unacceptable transform - found an Object without a rule: %{klass}"
5661
5713
  msgstr ""
5662
5714
 
5663
5715
  #. TRANSLATORS 'NUMBER' refers to a method name and the 'name_or_numeric' was the passed in value and should not be translated
5664
- #: ../lib/puppet/pops/model/factory.rb:812
5716
+ #: ../lib/puppet/pops/model/factory.rb:813
5665
5717
  msgid "Internal Error, NUMBER token does not contain a valid number, %{name_or_numeric}"
5666
5718
  msgstr ""
5667
5719
 
5668
- #: ../lib/puppet/pops/model/factory.rb:1121
5720
+ #: ../lib/puppet/pops/model/factory.rb:1122
5669
5721
  msgid "can only concatenate strings, got %{class_name}"
5670
5722
  msgstr ""
5671
5723
 
@@ -6190,15 +6242,15 @@ msgstr ""
6190
6242
  msgid "'%{exe}' is not qualified and no path was specified. Please qualify the command or specify a path."
6191
6243
  msgstr ""
6192
6244
 
6193
- #: ../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
6245
+ #: ../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
6194
6246
  msgid "Could not find command '%{exe}'"
6195
6247
  msgstr ""
6196
6248
 
6197
- #: ../lib/puppet/provider/exec/posix.rb:23 ../lib/puppet/provider/exec/windows.rb:42
6249
+ #: ../lib/puppet/provider/exec/posix.rb:35 ../lib/puppet/provider/exec/windows.rb:42
6198
6250
  msgid "'%{exe}' is a %{klass}, not a file"
6199
6251
  msgstr ""
6200
6252
 
6201
- #: ../lib/puppet/provider/exec/posix.rb:25
6253
+ #: ../lib/puppet/provider/exec/posix.rb:37
6202
6254
  msgid "'%{exe}' is not executable"
6203
6255
  msgstr ""
6204
6256
 
@@ -6235,11 +6287,11 @@ msgstr ""
6235
6287
  msgid "No AIX group exists with a group name or gid of %{group}!"
6236
6288
  msgstr ""
6237
6289
 
6238
- #: ../lib/puppet/provider/group/groupadd.rb:11 ../lib/puppet/provider/group/pw.rb:14
6290
+ #: ../lib/puppet/provider/group/groupadd.rb:14 ../lib/puppet/provider/group/pw.rb:14
6239
6291
  msgid "GID must be an integer"
6240
6292
  msgstr ""
6241
6293
 
6242
- #: ../lib/puppet/provider/group/groupadd.rb:44
6294
+ #: ../lib/puppet/provider/group/groupadd.rb:47
6243
6295
  msgid "GID %{resource} already exists, use allowdupe to force group creation"
6244
6296
  msgstr ""
6245
6297
 
@@ -6474,31 +6526,31 @@ msgstr ""
6474
6526
  msgid "NIM package provider is unable to downgrade packages"
6475
6527
  msgstr ""
6476
6528
 
6477
- #: ../lib/puppet/provider/package/nim.rb:212
6529
+ #: ../lib/puppet/provider/package/nim.rb:217
6478
6530
  msgid ""
6479
6531
  "Unable to parse output from nimclient showres: line does not match expected package header format:\n"
6480
6532
  "'%{line}'"
6481
6533
  msgstr ""
6482
6534
 
6483
- #: ../lib/puppet/provider/package/nim.rb:219
6535
+ #: ../lib/puppet/provider/package/nim.rb:224
6484
6536
  msgid ""
6485
6537
  "Unable to parse output from nimclient showres: package string does not match expected installp package string format:\n"
6486
6538
  "'%{package_string}'"
6487
6539
  msgstr ""
6488
6540
 
6489
- #: ../lib/puppet/provider/package/nim.rb:229
6541
+ #: ../lib/puppet/provider/package/nim.rb:234
6490
6542
  msgid ""
6491
6543
  "Unable to parse output from nimclient showres: package string does not match expected rpm package string format:\n"
6492
6544
  "'%{package_string}'"
6493
6545
  msgstr ""
6494
6546
 
6495
- #: ../lib/puppet/provider/package/nim.rb:239
6547
+ #: ../lib/puppet/provider/package/nim.rb:244
6496
6548
  msgid ""
6497
6549
  "Unable to parse output from nimclient showres: line does not match expected package line format:\n"
6498
6550
  "'%{line}'"
6499
6551
  msgstr ""
6500
6552
 
6501
- #: ../lib/puppet/provider/package/nim.rb:251
6553
+ #: ../lib/puppet/provider/package/nim.rb:256
6502
6554
  msgid ""
6503
6555
  "Unrecognized package type specifier: '%{package_type_flag}' in package line:\n"
6504
6556
  "'%{line}'"
@@ -6580,19 +6632,23 @@ msgstr ""
6580
6632
  msgid "Implicit version %{should} has %{n} possible matches"
6581
6633
  msgstr ""
6582
6634
 
6583
- #: ../lib/puppet/provider/package/pkg.rb:170
6635
+ #: ../lib/puppet/provider/package/pkg.rb:177
6584
6636
  msgid "Selecting version '%{version}' for implicit '%{should}'"
6585
6637
  msgstr ""
6586
6638
 
6587
- #: ../lib/puppet/provider/package/pkg.rb:175
6639
+ #: ../lib/puppet/provider/package/pkg.rb:182
6588
6640
  msgid "No version of %{name} matching %{should} is installable, even though the package is currently installed"
6589
6641
  msgstr ""
6590
6642
 
6591
- #: ../lib/puppet/provider/package/pkg.rb:194
6643
+ #: ../lib/puppet/provider/package/pkg.rb:201
6592
6644
  msgid "pkg warning: %{warnings}"
6593
6645
  msgstr ""
6594
6646
 
6595
- #: ../lib/puppet/provider/package/pkg.rb:238 ../lib/puppet/provider/package/pkg.rb:264
6647
+ #: ../lib/puppet/provider/package/pkg.rb:245
6648
+ msgid "Pkg could not install %{name} after %{tries} tries. Aborting run"
6649
+ msgstr ""
6650
+
6651
+ #: ../lib/puppet/provider/package/pkg.rb:255 ../lib/puppet/provider/package/pkg.rb:281
6596
6652
  msgid "Unable to update %{package}"
6597
6653
  msgstr ""
6598
6654
 
@@ -6673,22 +6729,30 @@ msgstr ""
6673
6729
  msgid "Package %{name} was not present after trying to install it"
6674
6730
  msgstr ""
6675
6731
 
6676
- #: ../lib/puppet/provider/package/windows.rb:97
6732
+ #: ../lib/puppet/provider/package/windows.rb:42
6733
+ msgid "Error when unlinking %{path}: %{detail}"
6734
+ msgstr ""
6735
+
6736
+ #: ../lib/puppet/provider/package/windows.rb:110
6677
6737
  msgid "The package %{operation}ed successfully and the system is rebooting now."
6678
6738
  msgstr ""
6679
6739
 
6680
- #: ../lib/puppet/provider/package/windows.rb:99
6740
+ #: ../lib/puppet/provider/package/windows.rb:112
6681
6741
  msgid "The package %{operation}ed successfully, but the system must be rebooted."
6682
6742
  msgstr ""
6683
6743
 
6684
- #: ../lib/puppet/provider/package/windows.rb:101
6744
+ #: ../lib/puppet/provider/package/windows.rb:114
6685
6745
  msgid "Failed to %{operation}"
6686
6746
  msgstr ""
6687
6747
 
6688
- #: ../lib/puppet/provider/package/windows.rb:107
6748
+ #: ../lib/puppet/provider/package/windows.rb:120
6689
6749
  msgid "The source parameter cannot be empty when using the Windows provider."
6690
6750
  msgstr ""
6691
6751
 
6752
+ #: ../lib/puppet/provider/package/windows/exe_package.rb:79
6753
+ msgid "Error when installing %{package}: %{detail}"
6754
+ msgstr ""
6755
+
6692
6756
  #: ../lib/puppet/provider/package/windows/package.rb:62
6693
6757
  msgid "The source parameter is required when using the Windows provider."
6694
6758
  msgstr ""
@@ -6697,7 +6761,7 @@ msgstr ""
6697
6761
  msgid "The source does not exist: '%{source}'"
6698
6762
  msgstr ""
6699
6763
 
6700
- #: ../lib/puppet/provider/package/windows/package.rb:73
6764
+ #: ../lib/puppet/provider/package/windows/package.rb:74
6701
6765
  msgid "Don't know how to install '%{source}'"
6702
6766
  msgstr ""
6703
6767
 
@@ -6733,19 +6797,19 @@ msgstr ""
6733
6797
  msgid "Failed to read %{target}'s records when prefetching them. Reason: %{detail}"
6734
6798
  msgstr ""
6735
6799
 
6736
- #: ../lib/puppet/provider/parsedfile.rb:291
6737
- msgid "Could not prefetch %{resource} provider '%{name}' target '%{target}': %{detail}. Treating as empty"
6800
+ #: ../lib/puppet/provider/parsedfile.rb:284 ../lib/puppet/provider/parsedfile.rb:308
6801
+ msgid "Prefetching %{target} for provider %{name} returned nil"
6738
6802
  msgstr ""
6739
6803
 
6740
- #: ../lib/puppet/provider/parsedfile.rb:305
6741
- msgid "Prefetching %{target} for provider %{name} returned nil"
6804
+ #: ../lib/puppet/provider/parsedfile.rb:294
6805
+ msgid "Could not prefetch %{resource} provider '%{name}' target '%{target}': %{detail}. Treating as empty"
6742
6806
  msgstr ""
6743
6807
 
6744
- #: ../lib/puppet/provider/parsedfile.rb:378
6808
+ #: ../lib/puppet/provider/parsedfile.rb:381
6745
6809
  msgid "Parsed Providers must define a default target"
6746
6810
  msgstr ""
6747
6811
 
6748
- #: ../lib/puppet/provider/parsedfile.rb:469
6812
+ #: ../lib/puppet/provider/parsedfile.rb:472
6749
6813
  msgid "Somehow got told to prefetch with no resource set"
6750
6814
  msgstr ""
6751
6815
 
@@ -7047,31 +7111,39 @@ msgstr ""
7047
7111
  msgid "%{param} is a metaparameter; please choose another parameter name in the %{name} definition"
7048
7112
  msgstr ""
7049
7113
 
7050
- #: ../lib/puppet/resource/type_collection.rb:63
7114
+ #: ../lib/puppet/resource/type_collection.rb:64
7051
7115
  msgid "Class '%{klass}' is already defined%{error}; cannot redefine"
7052
7116
  msgstr ""
7053
7117
 
7054
- #: ../lib/puppet/resource/type_collection.rb:64
7118
+ #: ../lib/puppet/resource/type_collection.rb:65
7119
+ msgid "Node '%{klass}' is already defined%{error}; cannot be redefined as a class"
7120
+ msgstr ""
7121
+
7122
+ #: ../lib/puppet/resource/type_collection.rb:66
7055
7123
  msgid "Definition '%{klass}' is already defined%{error}; cannot be redefined as a class"
7056
7124
  msgstr ""
7057
7125
 
7058
- #: ../lib/puppet/resource/type_collection.rb:95
7126
+ #: ../lib/puppet/resource/type_collection.rb:97
7059
7127
  msgid "Node '%{name}' is already defined%{error}; cannot redefine"
7060
7128
  msgstr ""
7061
7129
 
7062
- #: ../lib/puppet/resource/type_collection.rb:130
7130
+ #: ../lib/puppet/resource/type_collection.rb:98
7131
+ msgid "Class '%{klass}' is already defined%{error}; cannot be redefined as a node"
7132
+ msgstr ""
7133
+
7134
+ #: ../lib/puppet/resource/type_collection.rb:133
7063
7135
  msgid "'%{name}' is already defined%{error} as a class; cannot redefine as a definition"
7064
7136
  msgstr ""
7065
7137
 
7066
- #: ../lib/puppet/resource/type_collection.rb:131
7138
+ #: ../lib/puppet/resource/type_collection.rb:134
7067
7139
  msgid "Definition '%{name}' is already defined%{error}; cannot be redefined"
7068
7140
  msgstr ""
7069
7141
 
7070
- #: ../lib/puppet/resource/type_collection.rb:175
7142
+ #: ../lib/puppet/resource/type_collection.rb:178
7071
7143
  msgid "Execution of config_version command `%{cmd}` failed: %{message}"
7072
7144
  msgstr ""
7073
7145
 
7074
- #: ../lib/puppet/resource/type_collection.rb:196
7146
+ #: ../lib/puppet/resource/type_collection.rb:199
7075
7147
  msgid "Not attempting to load %{type} %{fqname} as this object was missing during a prior compilation"
7076
7148
  msgstr ""
7077
7149
 
@@ -7095,49 +7167,57 @@ msgstr ""
7095
7167
  msgid "Invalid setting type '%{type}'"
7096
7168
  msgstr ""
7097
7169
 
7098
- #: ../lib/puppet/settings.rb:911
7170
+ #: ../lib/puppet/settings.rb:874
7171
+ msgid "Cannot manage owner permissions, because the provider for '%{name}' is not functional"
7172
+ msgstr ""
7173
+
7174
+ #: ../lib/puppet/settings.rb:890
7175
+ msgid "Cannot manage group permissions, because the provider for '%{name}' is not functional"
7176
+ msgstr ""
7177
+
7178
+ #: ../lib/puppet/settings.rb:926
7099
7179
  msgid "Unknown searchpath case: %{source_type} for the %{source} settings path element."
7100
7180
  msgstr ""
7101
7181
 
7102
- #: ../lib/puppet/settings.rb:984
7182
+ #: ../lib/puppet/settings.rb:1007
7103
7183
  msgid "setting definition for '%{name}' is not a hash!"
7104
7184
  msgstr ""
7105
7185
 
7106
- #: ../lib/puppet/settings.rb:989
7186
+ #: ../lib/puppet/settings.rb:1012
7107
7187
  msgid "Setting %{name} is already defined"
7108
7188
  msgstr ""
7109
7189
 
7110
- #: ../lib/puppet/settings.rb:995
7190
+ #: ../lib/puppet/settings.rb:1018
7111
7191
  msgid "Setting %{name} is already using short name '%{short}'"
7112
7192
  msgstr ""
7113
7193
 
7114
- #: ../lib/puppet/settings.rb:1266
7194
+ #: ../lib/puppet/settings.rb:1289
7115
7195
  msgid "Setting %{name} is deprecated."
7116
7196
  msgstr ""
7117
7197
 
7118
7198
  #. TRANSLATORS 'puppet.conf' is a file name and should not be translated
7119
- #: ../lib/puppet/settings.rb:1271
7199
+ #: ../lib/puppet/settings.rb:1294
7120
7200
  msgid "Setting %{name} is deprecated in puppet.conf."
7121
7201
  msgstr ""
7122
7202
 
7123
- #: ../lib/puppet/settings.rb:1458
7203
+ #: ../lib/puppet/settings.rb:1481
7124
7204
  msgid "Error converting value for param '%{name}': %{detail}"
7125
7205
  msgstr ""
7126
7206
 
7127
- #: ../lib/puppet/settings.rb:1482
7207
+ #: ../lib/puppet/settings.rb:1505
7128
7208
  msgid "Could not find value for %{expression}"
7129
7209
  msgstr ""
7130
7210
 
7131
7211
  #. TRANSLATORS '$environment' is a Puppet specific variable and should not be translated
7132
- #: ../lib/puppet/settings.rb:1492
7212
+ #: ../lib/puppet/settings.rb:1515
7133
7213
  msgid "You cannot interpolate $environment within '%{setting_name}' when using directory environments."
7134
7214
  msgstr ""
7135
7215
 
7136
- #: ../lib/puppet/settings.rb:1493
7216
+ #: ../lib/puppet/settings.rb:1516
7137
7217
  msgid "Its value will remain %{value}."
7138
7218
  msgstr ""
7139
7219
 
7140
- #: ../lib/puppet/settings.rb:1524
7220
+ #: ../lib/puppet/settings.rb:1547
7141
7221
  msgid "Attempt to assign a value to unknown setting %{name}"
7142
7222
  msgstr ""
7143
7223
 
@@ -7214,15 +7294,15 @@ msgstr ""
7214
7294
  msgid "(See https://puppet.com/docs/puppet/latest/environments_about.html)"
7215
7295
  msgstr ""
7216
7296
 
7217
- #: ../lib/puppet/settings/config_file.rb:138
7297
+ #: ../lib/puppet/settings/config_file.rb:131
7218
7298
  msgid "Invalid file option '%{parameter}'"
7219
7299
  msgstr ""
7220
7300
 
7221
- #: ../lib/puppet/settings/config_file.rb:142
7301
+ #: ../lib/puppet/settings/config_file.rb:135
7222
7302
  msgid "File modes must be numbers"
7223
7303
  msgstr ""
7224
7304
 
7225
- #: ../lib/puppet/settings/config_file.rb:145
7305
+ #: ../lib/puppet/settings/config_file.rb:138
7226
7306
  msgid "Could not parse '%{string}'"
7227
7307
  msgstr ""
7228
7308
 
@@ -7247,11 +7327,11 @@ msgstr ""
7247
7327
  msgid "Invalid settings in environment.conf at '%{path_to_conf_file}'. The following unknown setting(s) are being ignored: %{ignored_settings}"
7248
7328
  msgstr ""
7249
7329
 
7250
- #: ../lib/puppet/settings/file_setting.rb:183
7330
+ #: ../lib/puppet/settings/file_setting.rb:178
7251
7331
  msgid "Settings parameter '%{name}' is undefined"
7252
7332
  msgstr ""
7253
7333
 
7254
- #: ../lib/puppet/settings/file_setting.rb:219
7334
+ #: ../lib/puppet/settings/file_setting.rb:214
7255
7335
  msgid "The %{parameter} parameter for the setting '%{name}' must be either 'root' or 'service', not '%{value}'"
7256
7336
  msgstr ""
7257
7337
 
@@ -7291,7 +7371,7 @@ msgstr ""
7291
7371
  msgid "%{name} has not declared what class it wraps"
7292
7372
  msgstr ""
7293
7373
 
7294
- #: ../lib/puppet/ssl/base.rb:31 ../lib/puppet/x509/cert_provider.rb:370
7374
+ #: ../lib/puppet/ssl/base.rb:31 ../lib/puppet/x509/cert_provider.rb:352
7295
7375
  msgid "Certname %{name} must not contain unprintable or non-ASCII characters"
7296
7376
  msgstr ""
7297
7377
 
@@ -7932,72 +8012,72 @@ msgstr ""
7932
8012
  msgid "Could not set %{attribute} on %{class_name}: %{detail}"
7933
8013
  msgstr ""
7934
8014
 
7935
- #: ../lib/puppet/type/exec.rb:118
8015
+ #: ../lib/puppet/type/exec.rb:121
7936
8016
  msgid "executed successfully"
7937
8017
  msgstr ""
7938
8018
 
7939
- #: ../lib/puppet/type/exec.rb:152
8019
+ #: ../lib/puppet/type/exec.rb:155
7940
8020
  msgid "Command exceeded timeout"
7941
8021
  msgstr ""
7942
8022
 
7943
- #: ../lib/puppet/type/exec.rb:181
8023
+ #: ../lib/puppet/type/exec.rb:184
7944
8024
  msgid "[command redacted] returned %{status} instead of one of [%{expected}]"
7945
8025
  msgstr ""
7946
8026
 
7947
- #: ../lib/puppet/type/exec.rb:183
8027
+ #: ../lib/puppet/type/exec.rb:186
7948
8028
  msgid "'%{cmd}' returned %{status} instead of one of [%{expected}]"
7949
8029
  msgstr ""
7950
8030
 
7951
- #: ../lib/puppet/type/exec.rb:204
7952
- msgid "Command must be a String, got value of class %{klass}"
8031
+ #: ../lib/puppet/type/exec.rb:216
8032
+ msgid "Command must be a String or Array<String>, got value of class %{klass}"
7953
8033
  msgstr ""
7954
8034
 
7955
- #: ../lib/puppet/type/exec.rb:236
8035
+ #: ../lib/puppet/type/exec.rb:249
7956
8036
  msgid "Unable to execute commands as other users on Windows"
7957
8037
  msgstr ""
7958
8038
 
7959
- #: ../lib/puppet/type/exec.rb:238
8039
+ #: ../lib/puppet/type/exec.rb:251
7960
8040
  msgid "Only root can execute commands as other users"
7961
8041
  msgstr ""
7962
8042
 
7963
- #: ../lib/puppet/type/exec.rb:294
8043
+ #: ../lib/puppet/type/exec.rb:307
7964
8044
  msgid "Invalid environment setting '%{value}'"
7965
8045
  msgstr ""
7966
8046
 
7967
- #: ../lib/puppet/type/exec.rb:307
8047
+ #: ../lib/puppet/type/exec.rb:320
7968
8048
  msgid "The umask specification is invalid: %{value}"
7969
8049
  msgstr ""
7970
8050
 
7971
- #: ../lib/puppet/type/exec.rb:323
8051
+ #: ../lib/puppet/type/exec.rb:336
7972
8052
  msgid "The timeout must be a number."
7973
8053
  msgstr ""
7974
8054
 
7975
- #: ../lib/puppet/type/exec.rb:340
8055
+ #: ../lib/puppet/type/exec.rb:353
7976
8056
  msgid "Tries must be an integer"
7977
8057
  msgstr ""
7978
8058
 
7979
- #: ../lib/puppet/type/exec.rb:344
8059
+ #: ../lib/puppet/type/exec.rb:357
7980
8060
  msgid "Tries must be an integer >= 1"
7981
8061
  msgstr ""
7982
8062
 
7983
- #: ../lib/puppet/type/exec.rb:357
8063
+ #: ../lib/puppet/type/exec.rb:370
7984
8064
  msgid "try_sleep must be a number"
7985
8065
  msgstr ""
7986
8066
 
7987
- #: ../lib/puppet/type/exec.rb:361
8067
+ #: ../lib/puppet/type/exec.rb:374
7988
8068
  msgid "try_sleep cannot be a negative number"
7989
8069
  msgstr ""
7990
8070
 
7991
8071
  #. TRANSLATORS 'creates' is a parameter name and should not be translated
7992
- #: ../lib/puppet/type/exec.rb:433
8072
+ #: ../lib/puppet/type/exec.rb:446
7993
8073
  msgid "Checking that 'creates' path '%{creates_path}' exists"
7994
8074
  msgstr ""
7995
8075
 
7996
- #: ../lib/puppet/type/exec.rb:478 ../lib/puppet/type/exec.rb:534
8076
+ #: ../lib/puppet/type/exec.rb:498 ../lib/puppet/type/exec.rb:561
7997
8077
  msgid "Check %{value} exceeded timeout"
7998
8078
  msgstr ""
7999
8079
 
8000
- #: ../lib/puppet/type/exec.rb:623
8080
+ #: ../lib/puppet/type/exec.rb:653
8001
8081
  msgid "'%{cmd}' won't be executed because of failed check '%{check}'"
8002
8082
  msgstr ""
8003
8083
 
@@ -8121,7 +8201,7 @@ msgstr ""
8121
8201
  msgid "Ensure set to :present but file type is %{file_type} so no content will be synced"
8122
8202
  msgstr ""
8123
8203
 
8124
- #: ../lib/puppet/type/file/mode.rb:126
8204
+ #: ../lib/puppet/type/file/mode.rb:132
8125
8205
  msgid "Not managing symlink mode"
8126
8206
  msgstr ""
8127
8207
 
@@ -8142,11 +8222,11 @@ msgstr ""
8142
8222
  msgid "Could not create %{type} filebucket: %{detail}"
8143
8223
  msgstr ""
8144
8224
 
8145
- #: ../lib/puppet/type/group.rb:60
8225
+ #: ../lib/puppet/type/group.rb:59
8146
8226
  msgid "GID cannot be deleted"
8147
8227
  msgstr ""
8148
8228
 
8149
- #: ../lib/puppet/type/group.rb:72
8229
+ #: ../lib/puppet/type/group.rb:71
8150
8230
  msgid "Invalid GID %{gid}"
8151
8231
  msgstr ""
8152
8232
 
@@ -8238,11 +8318,11 @@ msgstr ""
8238
8318
  msgid "Passwords cannot include ':'"
8239
8319
  msgstr ""
8240
8320
 
8241
- #: ../lib/puppet/type/service.rb:278
8321
+ #: ../lib/puppet/type/service.rb:283
8242
8322
  msgid "\"%{value}\" is not a positive integer: the timeout parameter must be specified as a positive integer"
8243
8323
  msgstr ""
8244
8324
 
8245
- #: ../lib/puppet/type/service.rb:300
8325
+ #: ../lib/puppet/type/service.rb:305
8246
8326
  msgid "The 'logonaccount' parameter is mandatory when setting 'logonpassword'."
8247
8327
  msgstr ""
8248
8328
 
@@ -8335,23 +8415,23 @@ msgstr ""
8335
8415
  msgid "Profile names must be provided as an array, not a comma-separated list"
8336
8416
  msgstr ""
8337
8417
 
8338
- #: ../lib/puppet/type/user.rb:699
8418
+ #: ../lib/puppet/type/user.rb:700
8339
8419
  msgid "Ssh_authorized_key type is not available. Cannot purge SSH keys."
8340
8420
  msgstr ""
8341
8421
 
8342
- #: ../lib/puppet/type/user.rb:737
8422
+ #: ../lib/puppet/type/user.rb:738
8343
8423
  msgid "Each entry for purge_ssh_keys must be a string, not a %{klass}"
8344
8424
  msgstr ""
8345
8425
 
8346
- #: ../lib/puppet/type/user.rb:740
8426
+ #: ../lib/puppet/type/user.rb:741
8347
8427
  msgid "Paths to keyfiles must be absolute, not %{entry}"
8348
8428
  msgstr ""
8349
8429
 
8350
- #: ../lib/puppet/type/user.rb:744
8430
+ #: ../lib/puppet/type/user.rb:745
8351
8431
  msgid "purge_ssh_keys must be true, false, or an array of file names, not %{value}"
8352
8432
  msgstr ""
8353
8433
 
8354
- #: ../lib/puppet/type/user.rb:772
8434
+ #: ../lib/puppet/type/user.rb:754
8355
8435
  msgid "Class name must be provided."
8356
8436
  msgstr ""
8357
8437
 
@@ -8885,60 +8965,60 @@ msgid "Failed to set process priority to '%{priority}'"
8885
8965
  msgstr ""
8886
8966
 
8887
8967
  #. TRANSLATORS "Log.close_all" is a method name and should not be translated
8888
- #: ../lib/puppet/util/log.rb:67
8968
+ #: ../lib/puppet/util/log.rb:66
8889
8969
  msgid "Log.close_all failed to close %{destinations}"
8890
8970
  msgstr ""
8891
8971
 
8892
- #: ../lib/puppet/util/log.rb:86
8972
+ #: ../lib/puppet/util/log.rb:85
8893
8973
  msgid "Logs require a level"
8894
8974
  msgstr ""
8895
8975
 
8896
- #: ../lib/puppet/util/log.rb:87 ../lib/puppet/util/log.rb:378 ../lib/puppet/util/windows/eventlog.rb:99
8976
+ #: ../lib/puppet/util/log.rb:86 ../lib/puppet/util/log.rb:377 ../lib/puppet/util/windows/eventlog.rb:99
8897
8977
  msgid "Invalid log level %{level}"
8898
8978
  msgstr ""
8899
8979
 
8900
- #: ../lib/puppet/util/log.rb:109
8980
+ #: ../lib/puppet/util/log.rb:108
8901
8981
  msgid "Invalid loglevel %{level}"
8902
8982
  msgstr ""
8903
8983
 
8904
- #: ../lib/puppet/util/log.rb:136
8984
+ #: ../lib/puppet/util/log.rb:135
8905
8985
  msgid "Unknown destination type %{dest}"
8906
8986
  msgstr ""
8907
8987
 
8908
- #: ../lib/puppet/util/log.rb:176
8988
+ #: ../lib/puppet/util/log.rb:175
8909
8989
  msgid "Received a Log attribute with invalid encoding:%{log_message}"
8910
8990
  msgstr ""
8911
8991
 
8912
- #: ../lib/puppet/util/log.rb:178
8992
+ #: ../lib/puppet/util/log.rb:177
8913
8993
  msgid ""
8914
8994
  "Backtrace:\n"
8915
8995
  "%{backtrace}"
8916
8996
  msgstr ""
8917
8997
 
8918
- #: ../lib/puppet/util/log.rb:232
8998
+ #: ../lib/puppet/util/log.rb:231
8919
8999
  msgid "Reopening log files"
8920
9000
  msgstr ""
8921
9001
 
8922
9002
  #. TRANSLATORS 'Puppet::Util::Log' refers to a Puppet source code class
8923
- #: ../lib/puppet/util/log.rb:368
9003
+ #: ../lib/puppet/util/log.rb:367
8924
9004
  msgid "Puppet::Util::Log requires a message"
8925
9005
  msgstr ""
8926
9006
 
8927
9007
  #. TRANSLATORS 'Puppet::Util::Log' refers to a Puppet source code class
8928
- #: ../lib/puppet/util/log.rb:374
9008
+ #: ../lib/puppet/util/log.rb:373
8929
9009
  msgid "Puppet::Util::Log requires a log level"
8930
9010
  msgstr ""
8931
9011
 
8932
9012
  #. TRANSLATORS 'Puppet::Util::Log' refers to a Puppet source code class
8933
- #: ../lib/puppet/util/log.rb:376
9013
+ #: ../lib/puppet/util/log.rb:375
8934
9014
  msgid "Puppet::Util::Log requires a symbol or string"
8935
9015
  msgstr ""
8936
9016
 
8937
- #: ../lib/puppet/util/log.rb:407
9017
+ #: ../lib/puppet/util/log.rb:406
8938
9018
  msgid "Could not parse for environment %{environment}: %{msg}"
8939
9019
  msgstr ""
8940
9020
 
8941
- #: ../lib/puppet/util/log.rb:409
9021
+ #: ../lib/puppet/util/log.rb:408
8942
9022
  msgid "%{msg} on node %{node}"
8943
9023
  msgstr ""
8944
9024
 
@@ -8950,20 +9030,20 @@ msgstr ""
8950
9030
  msgid "Creating log directory %{dir}"
8951
9031
  msgstr ""
8952
9032
 
8953
- #: ../lib/puppet/util/logging.rb:81 ../lib/puppet/util/logging.rb:105
9033
+ #: ../lib/puppet/util/logging.rb:79 ../lib/puppet/util/logging.rb:103
8954
9034
  msgid "Wrapped exception:"
8955
9035
  msgstr ""
8956
9036
 
8957
9037
  #. TRANSLATORS the literals ":file", ":line", and ":key" should not be translated
8958
- #: ../lib/puppet/util/logging.rb:162
9038
+ #: ../lib/puppet/util/logging.rb:160
8959
9039
  msgid "Need either :file and :line, or :key"
8960
9040
  msgstr ""
8961
9041
 
8962
- #: ../lib/puppet/util/logging.rb:192
9042
+ #: ../lib/puppet/util/logging.rb:190
8963
9043
  msgid "(file & line not available)"
8964
9044
  msgstr ""
8965
9045
 
8966
- #: ../lib/puppet/util/logging.rb:294
9046
+ #: ../lib/puppet/util/logging.rb:270
8967
9047
  msgid "(location: %{location})"
8968
9048
  msgstr ""
8969
9049
 
@@ -9131,59 +9211,59 @@ msgstr ""
9131
9211
  msgid "Creating state file %{file}"
9132
9212
  msgstr ""
9133
9213
 
9134
- #: ../lib/puppet/util/suidmanager.rb:104
9214
+ #: ../lib/puppet/util/suidmanager.rb:103
9135
9215
  msgid "No such group %{group}"
9136
9216
  msgstr ""
9137
9217
 
9138
- #: ../lib/puppet/util/suidmanager.rb:120
9218
+ #: ../lib/puppet/util/suidmanager.rb:119
9139
9219
  msgid "No such user %{user}"
9140
9220
  msgstr ""
9141
9221
 
9142
- #: ../lib/puppet/util/suidmanager.rb:148
9222
+ #: ../lib/puppet/util/suidmanager.rb:147
9143
9223
  msgid "Invalid id type %{type}"
9144
9224
  msgstr ""
9145
9225
 
9146
- #: ../lib/puppet/util/suidmanager.rb:151
9226
+ #: ../lib/puppet/util/suidmanager.rb:150
9147
9227
  msgid "Invalid %{klass}: %{id}"
9148
9228
  msgstr ""
9149
9229
 
9150
- #: ../lib/puppet/util/symbolic_file_mode.rb:37
9230
+ #: ../lib/puppet/util/symbolic_file_mode.rb:49
9151
9231
  msgid "An empty mode string is illegal"
9152
9232
  msgstr ""
9153
9233
 
9154
- #: ../lib/puppet/util/symbolic_file_mode.rb:41
9234
+ #: ../lib/puppet/util/symbolic_file_mode.rb:53
9155
9235
  msgid "Numeric modes must be in octal, not decimal!"
9156
9236
  msgstr ""
9157
9237
 
9158
- #: ../lib/puppet/util/symbolic_file_mode.rb:44
9238
+ #: ../lib/puppet/util/symbolic_file_mode.rb:56
9159
9239
  msgid "non-numeric current mode (%{mode})"
9160
9240
  msgstr ""
9161
9241
 
9162
- #: ../lib/puppet/util/symbolic_file_mode.rb:64
9242
+ #: ../lib/puppet/util/symbolic_file_mode.rb:76
9163
9243
  msgid "Missing action"
9164
9244
  msgstr ""
9165
9245
 
9166
- #: ../lib/puppet/util/symbolic_file_mode.rb:79
9246
+ #: ../lib/puppet/util/symbolic_file_mode.rb:91
9167
9247
  msgid "Missing operation (-, =, or +)"
9168
9248
  msgstr ""
9169
9249
 
9170
- #: ../lib/puppet/util/symbolic_file_mode.rb:101
9250
+ #: ../lib/puppet/util/symbolic_file_mode.rb:113
9171
9251
  msgid "X only works with the '+' operator"
9172
9252
  msgstr ""
9173
9253
 
9174
- #: ../lib/puppet/util/symbolic_file_mode.rb:112
9254
+ #: ../lib/puppet/util/symbolic_file_mode.rb:124
9175
9255
  msgid "internal error"
9176
9256
  msgstr ""
9177
9257
 
9178
- #: ../lib/puppet/util/symbolic_file_mode.rb:116
9258
+ #: ../lib/puppet/util/symbolic_file_mode.rb:128
9179
9259
  msgid "Unknown operation"
9180
9260
  msgstr ""
9181
9261
 
9182
- #: ../lib/puppet/util/symbolic_file_mode.rb:131
9262
+ #: ../lib/puppet/util/symbolic_file_mode.rb:143
9183
9263
  msgid "%{error}%{rest} in symbolic mode %{modification}"
9184
9264
  msgstr ""
9185
9265
 
9186
- #: ../lib/puppet/util/tagging.rb:27
9266
+ #: ../lib/puppet/util/tagging.rb:28
9187
9267
  msgid "Invalid tag '%{name}'"
9188
9268
  msgstr ""
9189
9269
 
@@ -9413,7 +9493,7 @@ msgstr ""
9413
9493
  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"
9414
9494
  msgstr ""
9415
9495
 
9416
- #: ../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
9496
+ #: ../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:58
9417
9497
  msgid "Invalid SID"
9418
9498
  msgstr ""
9419
9499
 
@@ -9569,108 +9649,108 @@ msgstr ""
9569
9649
  msgid "Timed out while waiting for the pending transition from %{pending_state} to %{final_state} to finish. The current state is %{current_state}."
9570
9650
  msgstr ""
9571
9651
 
9572
- #: ../lib/puppet/util/windows/sid.rb:96
9652
+ #: ../lib/puppet/util/windows/sid.rb:98
9573
9653
  msgid "Octet string must be an array of bytes"
9574
9654
  msgstr ""
9575
9655
 
9576
- #: ../lib/puppet/util/windows/sid.rb:163
9656
+ #: ../lib/puppet/util/windows/sid.rb:165
9577
9657
  msgid "Failed to convert binary SID"
9578
9658
  msgstr ""
9579
9659
 
9580
- #: ../lib/puppet/util/windows/sid.rb:168
9660
+ #: ../lib/puppet/util/windows/sid.rb:170
9581
9661
  msgid "ConvertSidToStringSidW failed to allocate buffer for sid"
9582
9662
  msgstr ""
9583
9663
 
9584
- #: ../lib/puppet/util/windows/sid.rb:188
9664
+ #: ../lib/puppet/util/windows/sid.rb:190
9585
9665
  msgid "Failed to convert string SID: %{string_sid}"
9586
9666
  msgstr ""
9587
9667
 
9588
- #: ../lib/puppet/util/windows/user.rb:54
9668
+ #: ../lib/puppet/util/windows/user.rb:53
9589
9669
  msgid "Failed to create administrators SID"
9590
9670
  msgstr ""
9591
9671
 
9592
- #: ../lib/puppet/util/windows/user.rb:64
9672
+ #: ../lib/puppet/util/windows/user.rb:63
9593
9673
  msgid "Failed to check membership"
9594
9674
  msgstr ""
9595
9675
 
9596
- #: ../lib/puppet/util/windows/user.rb:104
9676
+ #: ../lib/puppet/util/windows/user.rb:103
9597
9677
  msgid "Failed to logon user %{name}"
9598
9678
  msgstr ""
9599
9679
 
9600
- #: ../lib/puppet/util/windows/user.rb:135
9680
+ #: ../lib/puppet/util/windows/user.rb:134
9601
9681
  msgid "Failed to load user profile %{user}"
9602
9682
  msgstr ""
9603
9683
 
9604
- #: ../lib/puppet/util/windows/user.rb:141
9684
+ #: ../lib/puppet/util/windows/user.rb:140
9605
9685
  msgid "Failed to unload user profile %{user}"
9606
9686
  msgstr ""
9607
9687
 
9608
- #: ../lib/puppet/x509/cert_provider.rb:45
9688
+ #: ../lib/puppet/x509/cert_provider.rb:44
9609
9689
  msgid "Failed to save CA certificates to '%{capath}'"
9610
9690
  msgstr ""
9611
9691
 
9612
- #: ../lib/puppet/x509/cert_provider.rb:59
9692
+ #: ../lib/puppet/x509/cert_provider.rb:58
9613
9693
  msgid "The CA certificates are missing from '%{path}'"
9614
9694
  msgstr ""
9615
9695
 
9616
- #: ../lib/puppet/x509/cert_provider.rb:63
9696
+ #: ../lib/puppet/x509/cert_provider.rb:62
9617
9697
  msgid "Failed to load CA certificates from '%{capath}'"
9618
9698
  msgstr ""
9619
9699
 
9620
9700
  #. TRANSLATORS 'PEM' is an acronym and shouldn't be translated
9621
- #: ../lib/puppet/x509/cert_provider.rb:75
9701
+ #: ../lib/puppet/x509/cert_provider.rb:74
9622
9702
  msgid "Failed to parse CA certificates as PEM"
9623
9703
  msgstr ""
9624
9704
 
9625
- #: ../lib/puppet/x509/cert_provider.rb:91
9705
+ #: ../lib/puppet/x509/cert_provider.rb:90
9626
9706
  msgid "Failed to save CRLs to '%{crlpath}'"
9627
9707
  msgstr ""
9628
9708
 
9629
- #: ../lib/puppet/x509/cert_provider.rb:105
9709
+ #: ../lib/puppet/x509/cert_provider.rb:104
9630
9710
  msgid "The CRL is missing from '%{path}'"
9631
9711
  msgstr ""
9632
9712
 
9633
- #: ../lib/puppet/x509/cert_provider.rb:109
9713
+ #: ../lib/puppet/x509/cert_provider.rb:108
9634
9714
  msgid "Failed to load CRLs from '%{crlpath}'"
9635
9715
  msgstr ""
9636
9716
 
9637
9717
  #. TRANSLATORS 'PEM' is an acronym and shouldn't be translated
9638
- #: ../lib/puppet/x509/cert_provider.rb:121
9718
+ #: ../lib/puppet/x509/cert_provider.rb:120
9639
9719
  msgid "Failed to parse CRLs as PEM"
9640
9720
  msgstr ""
9641
9721
 
9642
- #: ../lib/puppet/x509/cert_provider.rb:171
9722
+ #: ../lib/puppet/x509/cert_provider.rb:170
9643
9723
  msgid "Failed to save private key for '%{name}'"
9644
9724
  msgstr ""
9645
9725
 
9646
- #: ../lib/puppet/x509/cert_provider.rb:191
9726
+ #: ../lib/puppet/x509/cert_provider.rb:190
9647
9727
  msgid "The private key is missing from '%{path}'"
9648
9728
  msgstr ""
9649
9729
 
9650
- #: ../lib/puppet/x509/cert_provider.rb:195
9730
+ #: ../lib/puppet/x509/cert_provider.rb:194
9651
9731
  msgid "Failed to load private key for '%{name}'"
9652
9732
  msgstr ""
9653
9733
 
9654
- #: ../lib/puppet/x509/cert_provider.rb:255
9734
+ #: ../lib/puppet/x509/cert_provider.rb:237
9655
9735
  msgid "Failed to save client certificate for '%{name}'"
9656
9736
  msgstr ""
9657
9737
 
9658
- #: ../lib/puppet/x509/cert_provider.rb:271
9738
+ #: ../lib/puppet/x509/cert_provider.rb:253
9659
9739
  msgid "The client certificate is missing from '%{path}'"
9660
9740
  msgstr ""
9661
9741
 
9662
- #: ../lib/puppet/x509/cert_provider.rb:275
9742
+ #: ../lib/puppet/x509/cert_provider.rb:257
9663
9743
  msgid "Failed to load client certificate for '%{name}'"
9664
9744
  msgstr ""
9665
9745
 
9666
- #: ../lib/puppet/x509/cert_provider.rb:324
9746
+ #: ../lib/puppet/x509/cert_provider.rb:306
9667
9747
  msgid "Failed to save certificate request for '%{name}'"
9668
9748
  msgstr ""
9669
9749
 
9670
- #: ../lib/puppet/x509/cert_provider.rb:340
9750
+ #: ../lib/puppet/x509/cert_provider.rb:322
9671
9751
  msgid "Failed to load certificate request for '%{name}'"
9672
9752
  msgstr ""
9673
9753
 
9674
- #: ../lib/puppet/x509/cert_provider.rb:353
9754
+ #: ../lib/puppet/x509/cert_provider.rb:335
9675
9755
  msgid "Failed to delete certificate request for '%{name}'"
9676
9756
  msgstr ""