puppet 7.7.0 → 7.11.0

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 (386) hide show
  1. checksums.yaml +4 -4
  2. data/CONTRIBUTING.md +7 -7
  3. data/Gemfile +4 -3
  4. data/Gemfile.lock +18 -18
  5. data/README.md +4 -4
  6. data/{ext → examples/enc}/regexp_nodes/classes/databases +0 -0
  7. data/{ext → examples/enc}/regexp_nodes/classes/webservers +0 -0
  8. data/{ext → examples/enc}/regexp_nodes/environment/development +0 -0
  9. data/{ext → examples/enc}/regexp_nodes/parameters/service/prod +0 -0
  10. data/{ext → examples/enc}/regexp_nodes/parameters/service/qa +0 -0
  11. data/{ext → examples/enc}/regexp_nodes/parameters/service/sandbox +0 -0
  12. data/{ext → examples/enc}/regexp_nodes/regexp_nodes.rb +0 -0
  13. data/{ext → examples}/nagios/check_puppet.rb +2 -2
  14. data/ext/README.md +13 -0
  15. data/ext/osx/puppet.plist +2 -0
  16. data/ext/project_data.yaml +1 -0
  17. data/install.rb +0 -4
  18. data/lib/puppet/application/agent.rb +4 -0
  19. data/lib/puppet/application/apply.rb +20 -2
  20. data/lib/puppet/application/filebucket.rb +1 -0
  21. data/lib/puppet/application/resource.rb +30 -15
  22. data/lib/puppet/application/ssl.rb +1 -0
  23. data/lib/puppet/concurrent/thread_local_singleton.rb +1 -0
  24. data/lib/puppet/configurer.rb +169 -50
  25. data/lib/puppet/confine/variable.rb +1 -1
  26. data/lib/puppet/defaults.rb +70 -30
  27. data/lib/puppet/environments.rb +75 -25
  28. data/lib/puppet/face/help/action.erb +1 -0
  29. data/lib/puppet/face/help/face.erb +1 -0
  30. data/lib/puppet/face/node/clean.rb +1 -1
  31. data/lib/puppet/facter_impl.rb +96 -0
  32. data/lib/puppet/file_serving/configuration/parser.rb +2 -0
  33. data/lib/puppet/file_serving/configuration.rb +2 -0
  34. data/lib/puppet/file_serving/mount/file.rb +4 -4
  35. data/lib/puppet/file_serving/mount/scripts.rb +24 -0
  36. data/lib/puppet/file_system/file_impl.rb +3 -1
  37. data/lib/puppet/file_system/windows.rb +2 -2
  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/lookup/lookup_adapter.rb +3 -2
  65. data/lib/puppet/pops/model/ast.rb +1 -0
  66. data/lib/puppet/pops/model/factory.rb +14 -13
  67. data/lib/puppet/pops/parser/egrammar.ra +2 -2
  68. data/lib/puppet/pops/parser/eparser.rb +752 -753
  69. data/lib/puppet/pops/parser/lexer2.rb +69 -68
  70. data/lib/puppet/pops/parser/slurp_support.rb +1 -0
  71. data/lib/puppet/pops/serialization/to_data_converter.rb +18 -6
  72. data/lib/puppet/pops/serialization/to_stringified_converter.rb +1 -1
  73. data/lib/puppet/pops/types/p_sem_ver_type.rb +8 -2
  74. data/lib/puppet/pops/types/p_sensitive_type.rb +10 -0
  75. data/lib/puppet/pops/types/type_formatter.rb +7 -6
  76. data/lib/puppet/pops/types/type_mismatch_describer.rb +1 -1
  77. data/lib/puppet/pops/types/types.rb +1 -1
  78. data/lib/puppet/provider/aix_object.rb +1 -1
  79. data/lib/puppet/provider/exec/posix.rb +16 -4
  80. data/lib/puppet/provider/group/groupadd.rb +5 -2
  81. data/lib/puppet/provider/package/apt.rb +3 -3
  82. data/lib/puppet/provider/package/nim.rb +11 -6
  83. data/lib/puppet/provider/package/pip.rb +15 -3
  84. data/lib/puppet/provider/package/pkg.rb +9 -2
  85. data/lib/puppet/provider/package/puppet_gem.rb +1 -1
  86. data/lib/puppet/provider/package/puppetserver_gem.rb +1 -1
  87. data/lib/puppet/provider/package/windows/exe_package.rb +30 -1
  88. data/lib/puppet/provider/package/windows/package.rb +2 -1
  89. data/lib/puppet/provider/package/windows.rb +14 -1
  90. data/lib/puppet/provider/package/yum.rb +4 -4
  91. data/lib/puppet/provider/package/zypper.rb +3 -3
  92. data/lib/puppet/provider/parsedfile.rb +3 -0
  93. data/lib/puppet/provider/service/base.rb +1 -1
  94. data/lib/puppet/provider/service/freebsd.rb +1 -1
  95. data/lib/puppet/provider/service/init.rb +5 -5
  96. data/lib/puppet/provider/service/launchd.rb +2 -2
  97. data/lib/puppet/provider/service/redhat.rb +1 -1
  98. data/lib/puppet/provider/service/smf.rb +3 -3
  99. data/lib/puppet/provider/service/systemd.rb +8 -3
  100. data/lib/puppet/provider/service/upstart.rb +5 -5
  101. data/lib/puppet/provider/user/aix.rb +44 -1
  102. data/lib/puppet/provider/user/directoryservice.rb +25 -12
  103. data/lib/puppet/provider/user/useradd.rb +52 -16
  104. data/lib/puppet/provider.rb +1 -1
  105. data/lib/puppet/reference/providers.rb +2 -2
  106. data/lib/puppet/resource/type_collection.rb +4 -1
  107. data/lib/puppet/runtime.rb +11 -1
  108. data/lib/puppet/settings/config_file.rb +1 -8
  109. data/lib/puppet/settings/file_setting.rb +3 -8
  110. data/lib/puppet/settings/value_translator.rb +0 -1
  111. data/lib/puppet/settings.rb +32 -9
  112. data/lib/puppet/test/test_helper.rb +4 -1
  113. data/lib/puppet/transaction/additional_resource_generator.rb +1 -1
  114. data/lib/puppet/transaction/persistence.rb +11 -1
  115. data/lib/puppet/transaction/report.rb +15 -1
  116. data/lib/puppet/type/exec.rb +35 -5
  117. data/lib/puppet/type/file/mode.rb +6 -0
  118. data/lib/puppet/type/file.rb +6 -6
  119. data/lib/puppet/type/filebucket.rb +2 -2
  120. data/lib/puppet/type/group.rb +0 -1
  121. data/lib/puppet/type/resources.rb +1 -1
  122. data/lib/puppet/type/service.rb +8 -9
  123. data/lib/puppet/type/tidy.rb +1 -1
  124. data/lib/puppet/type/user.rb +39 -22
  125. data/lib/puppet/type.rb +1 -1
  126. data/lib/puppet/util/command_line.rb +1 -1
  127. data/lib/puppet/util/filetype.rb +2 -2
  128. data/lib/puppet/util/log.rb +1 -2
  129. data/lib/puppet/util/logging.rb +1 -25
  130. data/lib/puppet/util/monkey_patches.rb +2 -17
  131. data/lib/puppet/util/pidlock.rb +1 -1
  132. data/lib/puppet/util/rdoc/parser/puppet_parser_core.rb +1 -1
  133. data/lib/puppet/util/suidmanager.rb +1 -2
  134. data/lib/puppet/util/symbolic_file_mode.rb +29 -17
  135. data/lib/puppet/util/tagging.rb +1 -0
  136. data/lib/puppet/util/windows/sid.rb +3 -1
  137. data/lib/puppet/util/windows/user.rb +0 -1
  138. data/lib/puppet/util.rb +4 -3
  139. data/lib/puppet/version.rb +1 -1
  140. data/lib/puppet/x509/cert_provider.rb +3 -21
  141. data/lib/puppet.rb +5 -9
  142. data/locales/puppet.pot +346 -274
  143. data/man/man5/puppet.conf.5 +76 -25
  144. data/man/man8/puppet-agent.8 +4 -1
  145. data/man/man8/puppet-apply.8 +1 -1
  146. data/man/man8/puppet-catalog.8 +9 -9
  147. data/man/man8/puppet-config.8 +1 -1
  148. data/man/man8/puppet-describe.8 +1 -1
  149. data/man/man8/puppet-device.8 +1 -1
  150. data/man/man8/puppet-doc.8 +1 -1
  151. data/man/man8/puppet-epp.8 +1 -1
  152. data/man/man8/puppet-facts.8 +7 -7
  153. data/man/man8/puppet-filebucket.8 +1 -1
  154. data/man/man8/puppet-generate.8 +1 -1
  155. data/man/man8/puppet-help.8 +1 -1
  156. data/man/man8/puppet-lookup.8 +1 -1
  157. data/man/man8/puppet-module.8 +3 -3
  158. data/man/man8/puppet-node.8 +5 -5
  159. data/man/man8/puppet-parser.8 +1 -1
  160. data/man/man8/puppet-plugin.8 +1 -1
  161. data/man/man8/puppet-report.8 +5 -5
  162. data/man/man8/puppet-resource.8 +1 -1
  163. data/man/man8/puppet-script.8 +1 -1
  164. data/man/man8/puppet-ssl.8 +1 -1
  165. data/man/man8/puppet.8 +2 -2
  166. data/spec/fixtures/integration/application/agent/lib/facter/agent_spec_role.rb +3 -0
  167. data/spec/fixtures/integration/l10n/envs/prod/modules/demo/Gemfile +4 -0
  168. data/spec/fixtures/integration/l10n/envs/prod/modules/demo/Rakefile +3 -0
  169. data/spec/fixtures/integration/l10n/envs/prod/modules/demo/lib/puppet/functions/l10n.rb +8 -0
  170. data/spec/fixtures/integration/l10n/envs/prod/modules/demo/locales/config.yaml +25 -0
  171. data/spec/fixtures/integration/l10n/envs/prod/modules/demo/locales/ja/puppet-l10n.po +19 -0
  172. data/spec/fixtures/integration/l10n/envs/prod/modules/demo/locales/puppet-l10n.pot +20 -0
  173. data/spec/fixtures/integration/l10n/envs/prod/modules/demo/metadata.json +8 -0
  174. data/spec/fixtures/ssl/127.0.0.1-key.pem +106 -106
  175. data/spec/fixtures/ssl/127.0.0.1.pem +48 -48
  176. data/spec/fixtures/ssl/bad-basic-constraints.pem +54 -54
  177. data/spec/fixtures/ssl/bad-int-basic-constraints.pem +51 -51
  178. data/spec/fixtures/ssl/ca.pem +52 -52
  179. data/spec/fixtures/ssl/crl.pem +25 -25
  180. data/spec/fixtures/ssl/ec-key-openssl.pem +8 -0
  181. data/spec/fixtures/ssl/ec-key-pk8.pem +5 -0
  182. data/spec/fixtures/ssl/ec-key.pem +11 -11
  183. data/spec/fixtures/ssl/ec.pem +32 -32
  184. data/spec/fixtures/ssl/encrypted-ec-key.pem +12 -12
  185. data/spec/fixtures/ssl/encrypted-key.pem +107 -107
  186. data/spec/fixtures/ssl/intermediate-agent-crl.pem +25 -25
  187. data/spec/fixtures/ssl/intermediate-agent.pem +54 -54
  188. data/spec/fixtures/ssl/intermediate-crl.pem +28 -28
  189. data/spec/fixtures/ssl/intermediate.pem +51 -51
  190. data/spec/fixtures/ssl/oid-key.pem +117 -0
  191. data/spec/fixtures/ssl/oid.pem +69 -0
  192. data/spec/fixtures/ssl/pluto-key.pem +106 -106
  193. data/spec/fixtures/ssl/pluto.pem +50 -50
  194. data/spec/fixtures/ssl/request-key.pem +106 -106
  195. data/spec/fixtures/ssl/request.pem +45 -45
  196. data/spec/fixtures/ssl/revoked-key.pem +106 -106
  197. data/spec/fixtures/ssl/revoked.pem +49 -49
  198. data/spec/fixtures/ssl/signed-key.pem +106 -106
  199. data/spec/fixtures/ssl/signed.pem +47 -47
  200. data/spec/fixtures/ssl/tampered-cert.pem +49 -49
  201. data/spec/fixtures/ssl/tampered-csr.pem +45 -45
  202. data/spec/fixtures/ssl/trusted_oid_mapping.yaml +5 -0
  203. data/spec/fixtures/ssl/unknown-127.0.0.1-key.pem +106 -106
  204. data/spec/fixtures/ssl/unknown-127.0.0.1.pem +48 -48
  205. data/spec/fixtures/ssl/unknown-ca-key.pem +106 -106
  206. data/spec/fixtures/ssl/unknown-ca.pem +52 -52
  207. data/spec/integration/application/agent_spec.rb +118 -52
  208. data/spec/integration/application/filebucket_spec.rb +16 -0
  209. data/spec/integration/application/module_spec.rb +21 -0
  210. data/spec/integration/application/resource_spec.rb +64 -0
  211. data/spec/integration/application/ssl_spec.rb +20 -0
  212. data/spec/integration/configurer_spec.rb +18 -2
  213. data/spec/integration/defaults_spec.rb +5 -0
  214. data/spec/integration/environments/settings_interpolation_spec.rb +0 -4
  215. data/spec/integration/indirector/facts/facter_spec.rb +93 -39
  216. data/spec/integration/l10n/compiler_spec.rb +37 -0
  217. data/spec/integration/transaction/report_spec.rb +1 -1
  218. data/spec/integration/type/exec_spec.rb +70 -45
  219. data/spec/integration/type/file_spec.rb +2 -2
  220. data/spec/integration/type/package_spec.rb +6 -6
  221. data/spec/integration/util/rdoc/parser_spec.rb +1 -1
  222. data/spec/integration/util/windows/process_spec.rb +1 -9
  223. data/spec/lib/puppet/test_ca.rb +5 -0
  224. data/spec/lib/puppet_spec/modules.rb +13 -2
  225. data/spec/lib/puppet_spec/puppetserver.rb +15 -0
  226. data/spec/lib/puppet_spec/settings.rb +1 -0
  227. data/spec/shared_behaviours/documentation_on_faces.rb +0 -2
  228. data/spec/shared_contexts/l10n.rb +27 -0
  229. data/spec/spec_helper.rb +1 -10
  230. data/spec/unit/application/apply_spec.rb +76 -56
  231. data/spec/unit/application/resource_spec.rb +29 -0
  232. data/spec/unit/configurer_spec.rb +277 -56
  233. data/spec/unit/environments_spec.rb +184 -0
  234. data/spec/unit/facter_impl_spec.rb +31 -0
  235. data/spec/unit/file_bucket/dipper_spec.rb +2 -2
  236. data/spec/unit/file_serving/configuration/parser_spec.rb +23 -0
  237. data/spec/unit/file_serving/configuration_spec.rb +12 -4
  238. data/spec/unit/file_serving/mount/scripts_spec.rb +69 -0
  239. data/spec/unit/file_system_spec.rb +13 -0
  240. data/spec/unit/functions/assert_type_spec.rb +1 -1
  241. data/spec/unit/functions/empty_spec.rb +10 -0
  242. data/spec/unit/functions/logging_spec.rb +1 -0
  243. data/spec/unit/functions/lookup_spec.rb +87 -0
  244. data/spec/unit/functions/unwrap_spec.rb +8 -0
  245. data/spec/unit/functions4_spec.rb +19 -10
  246. data/spec/unit/http/service/compiler_spec.rb +8 -0
  247. data/spec/unit/indirector/catalog/compiler_spec.rb +87 -0
  248. data/spec/unit/indirector/catalog/rest_spec.rb +8 -0
  249. data/spec/unit/indirector/indirection_spec.rb +10 -3
  250. data/spec/unit/indirector/resource/ral_spec.rb +40 -75
  251. data/spec/unit/interface/action_spec.rb +0 -9
  252. data/spec/unit/module_spec.rb +14 -0
  253. data/spec/unit/module_tool/applications/installer_spec.rb +52 -14
  254. data/spec/unit/parser/compiler_spec.rb +29 -0
  255. data/spec/unit/parser/templatewrapper_spec.rb +12 -2
  256. data/spec/unit/pops/loaders/dependency_loader_spec.rb +0 -9
  257. data/spec/unit/pops/parser/lexer2_spec.rb +0 -4
  258. data/spec/unit/pops/parser/parse_containers_spec.rb +0 -11
  259. data/spec/unit/pops/serialization/to_from_hr_spec.rb +58 -0
  260. data/spec/unit/pops/serialization/to_stringified_spec.rb +5 -0
  261. data/spec/unit/pops/types/p_sem_ver_type_spec.rb +18 -0
  262. data/spec/unit/pops/types/p_sensitive_type_spec.rb +18 -0
  263. data/spec/unit/pops/types/type_calculator_spec.rb +6 -0
  264. data/spec/unit/provider/package/gem_spec.rb +1 -1
  265. data/spec/unit/provider/package/nim_spec.rb +42 -0
  266. data/spec/unit/provider/package/pip2_spec.rb +1 -1
  267. data/spec/unit/provider/package/pip3_spec.rb +1 -1
  268. data/spec/unit/provider/package/pip_spec.rb +38 -1
  269. data/spec/unit/provider/package/pkg_spec.rb +19 -5
  270. data/spec/unit/provider/package/puppet_gem_spec.rb +1 -1
  271. data/spec/unit/provider/package/puppetserver_gem_spec.rb +1 -1
  272. data/spec/unit/provider/package/windows/exe_package_spec.rb +17 -0
  273. data/spec/unit/provider/parsedfile_spec.rb +10 -0
  274. data/spec/unit/provider/service/freebsd_spec.rb +1 -1
  275. data/spec/unit/provider/service/launchd_spec.rb +11 -0
  276. data/spec/unit/provider/service/systemd_spec.rb +13 -1
  277. data/spec/unit/provider/user/aix_spec.rb +100 -0
  278. data/spec/unit/provider/user/directoryservice_spec.rb +68 -36
  279. data/spec/unit/provider/user/useradd_spec.rb +3 -2
  280. data/spec/unit/provider_spec.rb +4 -4
  281. data/spec/unit/puppet_spec.rb +12 -4
  282. data/spec/unit/resource/type_collection_spec.rb +16 -0
  283. data/spec/unit/resource/type_spec.rb +2 -2
  284. data/spec/unit/settings/config_file_spec.rb +1 -11
  285. data/spec/unit/settings/file_setting_spec.rb +10 -7
  286. data/spec/unit/settings/value_translator_spec.rb +4 -5
  287. data/spec/unit/settings_spec.rb +120 -79
  288. data/spec/unit/ssl/ssl_provider_spec.rb +18 -16
  289. data/spec/unit/type/exec_spec.rb +76 -29
  290. data/spec/unit/type/file/source_spec.rb +4 -4
  291. data/spec/unit/type/service_spec.rb +49 -34
  292. data/spec/unit/type/tidy_spec.rb +7 -0
  293. data/spec/unit/type/user_spec.rb +45 -0
  294. data/spec/unit/type_spec.rb +2 -2
  295. data/spec/unit/util/ldap/connection_spec.rb +10 -10
  296. data/spec/unit/util/ldap/manager_spec.rb +2 -2
  297. data/spec/unit/util/logging_spec.rb +2 -0
  298. data/spec/unit/util/windows/sid_spec.rb +39 -4
  299. data/spec/unit/util_spec.rb +1 -3
  300. data/spec/unit/x509/cert_provider_spec.rb +9 -1
  301. data/tasks/generate_cert_fixtures.rake +10 -1
  302. data/tasks/parallel.rake +3 -3
  303. metadata +53 -95
  304. data/ext/README.environment +0 -8
  305. data/ext/dbfix.sql +0 -132
  306. data/ext/debian/README.Debian +0 -8
  307. data/ext/debian/README.source +0 -2
  308. data/ext/debian/TODO.Debian +0 -1
  309. data/ext/debian/changelog.erb +0 -1122
  310. data/ext/debian/compat +0 -1
  311. data/ext/debian/control +0 -144
  312. data/ext/debian/copyright +0 -339
  313. data/ext/debian/docs +0 -1
  314. data/ext/debian/fileserver.conf +0 -41
  315. data/ext/debian/puppet-common.dirs +0 -13
  316. data/ext/debian/puppet-common.install +0 -3
  317. data/ext/debian/puppet-common.lintian-overrides +0 -5
  318. data/ext/debian/puppet-common.manpages +0 -28
  319. data/ext/debian/puppet-common.postinst +0 -35
  320. data/ext/debian/puppet-common.postrm +0 -33
  321. data/ext/debian/puppet-el.dirs +0 -1
  322. data/ext/debian/puppet-el.emacsen-install +0 -25
  323. data/ext/debian/puppet-el.emacsen-remove +0 -11
  324. data/ext/debian/puppet-el.emacsen-startup +0 -9
  325. data/ext/debian/puppet-el.install +0 -1
  326. data/ext/debian/puppet-testsuite.install +0 -2
  327. data/ext/debian/puppet-testsuite.lintian-overrides +0 -4
  328. data/ext/debian/puppet.lintian-overrides +0 -3
  329. data/ext/debian/puppet.logrotate +0 -20
  330. data/ext/debian/puppet.postinst +0 -20
  331. data/ext/debian/puppet.postrm +0 -20
  332. data/ext/debian/puppet.preinst +0 -20
  333. data/ext/debian/puppetmaster-common.install +0 -2
  334. data/ext/debian/puppetmaster-common.manpages +0 -2
  335. data/ext/debian/puppetmaster-common.postinst +0 -6
  336. data/ext/debian/puppetmaster-passenger.dirs +0 -4
  337. data/ext/debian/puppetmaster-passenger.postinst +0 -162
  338. data/ext/debian/puppetmaster-passenger.postrm +0 -61
  339. data/ext/debian/puppetmaster.README.debian +0 -17
  340. data/ext/debian/puppetmaster.default +0 -14
  341. data/ext/debian/puppetmaster.init +0 -137
  342. data/ext/debian/puppetmaster.lintian-overrides +0 -3
  343. data/ext/debian/puppetmaster.postinst +0 -20
  344. data/ext/debian/puppetmaster.postrm +0 -5
  345. data/ext/debian/puppetmaster.preinst +0 -22
  346. data/ext/debian/rules +0 -132
  347. data/ext/debian/source/format +0 -1
  348. data/ext/debian/source/options +0 -1
  349. data/ext/debian/vim-puppet.README.Debian +0 -13
  350. data/ext/debian/vim-puppet.dirs +0 -5
  351. data/ext/debian/vim-puppet.yaml +0 -7
  352. data/ext/debian/watch +0 -2
  353. data/ext/freebsd/puppetd +0 -26
  354. data/ext/freebsd/puppetmasterd +0 -26
  355. data/ext/gentoo/conf.d/puppet +0 -5
  356. data/ext/gentoo/conf.d/puppetmaster +0 -12
  357. data/ext/gentoo/init.d/puppet +0 -38
  358. data/ext/gentoo/init.d/puppetmaster +0 -51
  359. data/ext/gentoo/puppet/fileserver.conf +0 -41
  360. data/ext/ips/puppet-agent +0 -44
  361. data/ext/ips/puppet-master +0 -44
  362. data/ext/ips/puppet.p5m.erb +0 -12
  363. data/ext/ips/puppetagent.xml +0 -42
  364. data/ext/ips/puppetmaster.xml +0 -42
  365. data/ext/ips/rules +0 -19
  366. data/ext/ips/transforms +0 -34
  367. data/ext/ldap/puppet.schema +0 -24
  368. data/ext/logcheck/puppet +0 -23
  369. data/ext/osx/file_mapping.yaml +0 -28
  370. data/ext/osx/postflight.erb +0 -109
  371. data/ext/osx/preflight.erb +0 -52
  372. data/ext/osx/prototype.plist.erb +0 -38
  373. data/ext/redhat/fileserver.conf +0 -41
  374. data/ext/redhat/logrotate +0 -21
  375. data/ext/redhat/puppet.spec.erb +0 -841
  376. data/ext/redhat/server.init +0 -128
  377. data/ext/redhat/server.sysconfig +0 -13
  378. data/ext/solaris/pkginfo +0 -6
  379. data/ext/solaris/smf/puppetd.xml +0 -77
  380. data/ext/solaris/smf/puppetmasterd.xml +0 -77
  381. data/ext/solaris/smf/svc-puppetd +0 -71
  382. data/ext/solaris/smf/svc-puppetmasterd +0 -67
  383. data/ext/suse/puppet.spec +0 -310
  384. data/ext/suse/server.init +0 -173
  385. data/ext/yaml_nodes.rb +0 -105
  386. data/spec/unit/indirector/store_configs_spec.rb +0 -7
@@ -2,8 +2,6 @@
2
2
  require_relative '../../puppet/util/log'
3
3
  require_relative '../../puppet/error'
4
4
 
5
- require 'facter'
6
-
7
5
  module Puppet::Util
8
6
  module Logging
9
7
 
@@ -254,29 +252,7 @@ module Logging
254
252
  # Sets up Facter logging.
255
253
  # This method causes Facter output to be forwarded to Puppet.
256
254
  def self.setup_facter_logging!
257
- # Only recent versions of Facter support this feature
258
- return false unless Facter.respond_to? :on_message
259
-
260
- # The current Facter log levels are: :trace, :debug, :info, :warn, :error, and :fatal.
261
- # Convert to the corresponding levels in Puppet
262
- Facter.on_message do |level, message|
263
- case level
264
- when :trace, :debug
265
- level = :debug
266
- when :info
267
- # Same as Puppet
268
- when :warn
269
- level = :warning
270
- when :error
271
- level = :err
272
- when :fatal
273
- level = :crit
274
- else
275
- next
276
- end
277
- Puppet::Util::Log.create({:level => level, :source => 'Facter', :message => message})
278
- nil
279
- end
255
+ Puppet.runtime[:facter]
280
256
  true
281
257
  end
282
258
 
@@ -32,13 +32,6 @@ end
32
32
  # (#19151) Reject all SSLv2 ciphers and handshakes
33
33
  require_relative '../../puppet/ssl/openssl_loader'
34
34
  unless Puppet::Util::Platform.jruby_fips?
35
- unless defined?(OpenSSL::SSL::TLS1_VERSION)
36
- module OpenSSL::SSL
37
- # see https://github.com/ruby/ruby/commit/609103dbb5fb182eec12f052226c43e39b907682#diff-09f822c26289f5347111795ca22ed7ed1cfadd6ebd28f987991d1d414eef565aR2755-R2759
38
- OpenSSL::SSL::TLS1_VERSION = 0x301
39
- end
40
- end
41
-
42
35
  class OpenSSL::SSL::SSLContext
43
36
  if DEFAULT_PARAMS[:options]
44
37
  DEFAULT_PARAMS[:options] |= OpenSSL::SSL::OP_NO_SSLv2 | OpenSSL::SSL::OP_NO_SSLv3
@@ -94,20 +87,12 @@ unless Puppet::Util::Platform.jruby_fips?
94
87
  OpenSSL::X509.const_set(:V_ERR_HOSTNAME_MISMATCH, 62)
95
88
  end
96
89
 
90
+ # jruby-openssl doesn't support this
97
91
  unless OpenSSL::X509::Name.instance_methods.include?(:to_utf8)
98
92
  class OpenSSL::X509::Name
99
- # https://github.com/openssl/openssl/blob/OpenSSL_1_1_0j/include/openssl/asn1.h#L362
100
- ASN1_STRFLGS_ESC_MSB = 4
101
-
102
- FLAGS = if RUBY_PLATFORM == 'java'
103
- OpenSSL::X509::Name::RFC2253
104
- else
105
- OpenSSL::X509::Name::RFC2253 & ~ASN1_STRFLGS_ESC_MSB
106
- end
107
-
108
93
  def to_utf8
109
94
  # https://github.com/ruby/ruby/blob/v2_5_5/ext/openssl/ossl_x509name.c#L317
110
- str = to_s(FLAGS)
95
+ str = to_s(OpenSSL::X509::Name::RFC2253)
111
96
  str.force_encoding(Encoding::UTF_8)
112
97
  end
113
98
  end
@@ -46,7 +46,7 @@ class Puppet::Util::Pidlock
46
46
  private
47
47
 
48
48
  def ps_argument_for_current_kernel
49
- case Facter.value(:kernel)
49
+ case Puppet.runtime[:facter].value(:kernel)
50
50
  when "Linux"
51
51
  "-eq"
52
52
  when "AIX"
@@ -154,7 +154,7 @@ module RDoc::PuppetParserCore
154
154
  # fetch comments
155
155
  if line =~ /^[ \t]*# ?(.*)$/
156
156
  comments += $1 + "\n"
157
- elsif line =~ /^[ \t]*Facter.add\(['"](.*?)['"]\)/
157
+ elsif line =~ /^[ \t]*(Facter.add|Puppet\.runtime\[:facter\].add)\(['"](.*?)['"]\)/
158
158
  current_fact = RDoc::Fact.new($1,{})
159
159
  look_for_directives_in(container, comments) unless comments.empty?
160
160
  current_fact.comment = comments
@@ -1,4 +1,3 @@
1
- require 'facter'
2
1
  require_relative '../../puppet/util/warnings'
3
2
  require 'forwardable'
4
3
  require 'etc'
@@ -18,7 +17,7 @@ module Puppet::Util::SUIDManager
18
17
 
19
18
  def osx_maj_ver
20
19
  return @osx_maj_ver unless @osx_maj_ver.nil?
21
- @osx_maj_ver = Facter.value('macosx_productversion_major') || false
20
+ @osx_maj_ver = Puppet.runtime[:facter].value('macosx_productversion_major') || false
22
21
  end
23
22
  module_function :osx_maj_ver
24
23
 
@@ -19,25 +19,37 @@ module SymbolicFileMode
19
19
  return false
20
20
  end
21
21
 
22
+ def display_mode(value)
23
+ if value =~ /^0?[0-7]{1,4}$/
24
+ value.rjust(4, "0")
25
+ else
26
+ value
27
+ end
28
+ end
29
+
22
30
  def normalize_symbolic_mode(value)
23
31
  return nil if value.nil?
24
32
 
25
33
  # We need to treat integers as octal numbers.
26
- if value.is_a? Numeric then
27
- return value.to_s(8)
28
- elsif value =~ /^0?[0-7]{1,4}$/ then
29
- return value.to_i(8).to_s(8)
34
+ #
35
+ # "A numeric mode is from one to four octal digits (0-7), derived by adding
36
+ # up the bits with values 4, 2, and 1. Omitted digits are assumed to be
37
+ # leading zeros."
38
+ if value.is_a? Numeric
39
+ value.to_s(8)
40
+ elsif value =~ /^0?[0-7]{1,4}$/
41
+ value.to_i(8).to_s(8) # strip leading 0's
30
42
  else
31
- return value
43
+ value
32
44
  end
33
45
  end
34
46
 
35
47
  def symbolic_mode_to_int(modification, to_mode = 0, is_a_directory = false)
36
- if modification.nil? or modification == '' then
48
+ if modification.nil? or modification == ''
37
49
  raise Puppet::Error, _("An empty mode string is illegal")
38
- end
39
- if modification =~ /^[0-7]+$/ then return modification.to_i(8) end
40
- if modification =~ /^\d+$/ then
50
+ elsif modification =~ /^[0-7]+$/
51
+ return modification.to_i(8)
52
+ elsif modification =~ /^\d+$/
41
53
  raise Puppet::Error, _("Numeric modes must be in octal, not decimal!")
42
54
  end
43
55
 
@@ -84,31 +96,31 @@ module SymbolicFileMode
84
96
 
85
97
  dsl.split('').each do |op|
86
98
  case op
87
- when /[-+=]/ then
99
+ when /[-+=]/
88
100
  action = op
89
101
  # Clear all bits, if this is assignment
90
102
  value = 0 if op == '='
91
103
 
92
- when /[ugo]/ then
104
+ when /[ugo]/
93
105
  value = actions[action].call(value, snapshot_mode[op])
94
106
 
95
- when /[rwx]/ then
107
+ when /[rwx]/
96
108
  value = actions[action].call(value, SymbolicMode[op])
97
109
 
98
- when 'X' then
110
+ when 'X'
99
111
  # Only meaningful in combination with "set" actions.
100
- if action != '+' then
112
+ if action != '+'
101
113
  raise Puppet::Error, _("X only works with the '+' operator")
102
114
  end
103
115
 
104
116
  # As per the BSD manual page, set if this is a directory, or if
105
117
  # any execute bit is set on the original (unmodified) mode.
106
118
  # Ignored otherwise; it is "add if", not "add or clear".
107
- if is_a_directory or original_mode['any x?'] then
119
+ if is_a_directory or original_mode['any x?']
108
120
  value = actions[action].call(value, ExecBit)
109
121
  end
110
122
 
111
- when /[st]/ then
123
+ when /[st]/
112
124
  bit = SymbolicSpecialToBit[op][who] or fail _("internal error")
113
125
  final_mode['s'] = actions[action].call(final_mode['s'], bit)
114
126
 
@@ -122,7 +134,7 @@ module SymbolicFileMode
122
134
  end
123
135
 
124
136
  rescue Puppet::Error => e
125
- if part.inspect != modification.inspect then
137
+ if part.inspect != modification.inspect
126
138
  rest = " at #{part.inspect}"
127
139
  else
128
140
  rest = ''
@@ -1,3 +1,4 @@
1
+ # frozen_string_literal: true
1
2
  require_relative '../../puppet/util/tag_set'
2
3
 
3
4
  module Puppet::Util::Tagging
@@ -75,7 +75,9 @@ module Puppet::Util::Windows
75
75
  raw_sid_bytes = sid_ptr.read_array_of_uchar(get_length_sid(sid_ptr))
76
76
  end
77
77
  rescue => e
78
- Puppet.debug("Could not retrieve raw SID bytes from '#{name}': #{e.message}")
78
+ # Avoid debug logs pollution with valid account names
79
+ # https://docs.microsoft.com/en-us/windows/win32/api/sddl/nf-sddl-convertstringsidtosidw#return-value
80
+ Puppet.debug("Could not retrieve raw SID bytes from '#{name}': #{e.message}") unless e.code == ERROR_INVALID_SID_STRUCTURE
79
81
  end
80
82
 
81
83
  raw_sid_bytes ? Principal.lookup_account_sid(raw_sid_bytes) : Principal.lookup_account_name(name)
@@ -1,6 +1,5 @@
1
1
  require_relative '../../../puppet/util/windows'
2
2
 
3
- require 'facter'
4
3
  require 'ffi'
5
4
 
6
5
  module Puppet::Util::Windows::User
data/lib/puppet/util.rb CHANGED
@@ -772,12 +772,13 @@ module Util
772
772
  # Executes a block of code, wrapped around Facter.load_external(false) and
773
773
  # Facter.load_external(true) which will cause Facter to not evaluate external facts.
774
774
  def skip_external_facts
775
- return yield unless Facter.respond_to? :load_external
775
+ return yield unless Puppet.runtime[:facter].load_external?
776
+
776
777
  begin
777
- Facter.load_external(false)
778
+ Puppet.runtime[:facter].load_external(false)
778
779
  yield
779
780
  ensure
780
- Facter.load_external(true)
781
+ Puppet.runtime[:facter].load_external(true)
781
782
  end
782
783
  end
783
784
  module_function :skip_external_facts
@@ -6,7 +6,7 @@
6
6
  # Raketasks and such to set the version based on the output of `git describe`
7
7
 
8
8
  module Puppet
9
- PUPPETVERSION = '7.7.0'
9
+ PUPPETVERSION = '7.11.0'
10
10
 
11
11
  ##
12
12
  # version is a public API method intended to always provide a fast and
@@ -15,7 +15,6 @@ class Puppet::X509::CertProvider
15
15
  VALID_CERTNAME = /\A[ -.0-~]+\Z/
16
16
  CERT_DELIMITERS = /-----BEGIN CERTIFICATE-----.*?-----END CERTIFICATE-----/m
17
17
  CRL_DELIMITERS = /-----BEGIN X509 CRL-----.*?-----END X509 CRL-----/m
18
- EC_HEADER = /-----BEGIN EC PRIVATE KEY-----/
19
18
 
20
19
  def initialize(capath: Puppet[:localcacert],
21
20
  crlpath: Puppet[:hostcrl],
@@ -207,26 +206,9 @@ class Puppet::X509::CertProvider
207
206
  # @api private
208
207
  def load_private_key_from_pem(pem, password: nil)
209
208
  # set a non-nil password to ensure openssl doesn't prompt
210
- # but ruby 2.4.0 & 2.4.1 require at least 4 bytes due to
211
- # https://github.com/ruby/openssl/commit/f38501249f33bff7ca9d208670b8cde695ea8b7b
212
- # and corrected in https://github.com/ruby/openssl/commit/a896c3d1dfa090e92dec1abf8ac12843af6af721
213
- password ||= ' '
214
-
215
- # Can't use OpenSSL::PKey.read, because it's broken in MRI 2.3, doesn't exist
216
- # in JRuby 9.1, and is broken in JRuby 9.2
217
- begin
218
- if pem =~ EC_HEADER
219
- OpenSSL::PKey::EC.new(pem, password)
220
- else
221
- OpenSSL::PKey::RSA.new(pem, password)
222
- end
223
- rescue OpenSSL::PKey::PKeyError => e
224
- if e.message =~ /Neither PUB key nor PRIV key/
225
- raise OpenSSL::PKey::PKeyError, "Could not parse PKey: no start line"
226
- else
227
- raise e
228
- end
229
- end
209
+ password ||= ''
210
+
211
+ OpenSSL::PKey.read(pem, password)
230
212
  end
231
213
 
232
214
  # Load the private key password.
data/lib/puppet.rb CHANGED
@@ -12,7 +12,6 @@ $LOAD_PATH.extend(Puppet::Concurrent::Synchronized)
12
12
  # see the bottom of the file for further inclusions
13
13
  # Also see the new Vendor support - towards the end
14
14
  #
15
- require 'facter'
16
15
  require_relative 'puppet/error'
17
16
  require_relative 'puppet/util'
18
17
  require_relative 'puppet/util/autoload'
@@ -88,9 +87,6 @@ module Puppet
88
87
  require_relative 'puppet/util/logging'
89
88
  extend Puppet::Util::Logging
90
89
 
91
- # Setup facter's logging
92
- Puppet::Util::Logging.setup_facter_logging!
93
-
94
90
  # The feature collection
95
91
  @features = Puppet::Util::Feature.new('puppet/feature')
96
92
 
@@ -193,15 +189,15 @@ module Puppet
193
189
  def self.initialize_facts
194
190
  # Add the puppetversion fact; this is done before generating the hash so it is
195
191
  # accessible to custom facts.
196
- Facter.add(:puppetversion) do
192
+ Puppet.runtime[:facter].add(:puppetversion) do
197
193
  setcode { Puppet.version.to_s }
198
194
  end
199
195
 
200
- Facter.add(:agent_specified_environment) do
196
+ Puppet.runtime[:facter].add(:agent_specified_environment) do
201
197
  setcode do
202
- if Puppet.settings.set_by_config?(:environment)
203
- Puppet[:environment]
204
- end
198
+ Puppet.settings.set_by_cli(:environment) ||
199
+ Puppet.settings.set_in_section(:environment, :agent) ||
200
+ Puppet.settings.set_in_section(:environment, :main)
205
201
  end
206
202
  end
207
203
  end
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.6.1-91-g3f8691353f\n"
9
+ "Project-Id-Version: Puppet automation framework 7.9.0-154-gc8aa8b2175\n"
10
10
  "\n"
11
11
  "Report-Msgid-Bugs-To: https://tickets.puppetlabs.com\n"
12
- "POT-Creation-Date: 2021-05-12 16:37+0000\n"
13
- "PO-Revision-Date: 2021-05-12 16:37+0000\n"
12
+ "POT-Creation-Date: 2021-08-11 13:52+0000\n"
13
+ "PO-Revision-Date: 2021-08-11 13:52+0000\n"
14
14
  "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
15
15
  "Language-Team: LANGUAGE <LL@li.org>\n"
16
16
  "Language: \n"
@@ -184,19 +184,19 @@ msgstr ""
184
184
  msgid "The puppet agent daemon"
185
185
  msgstr ""
186
186
 
187
- #: ../lib/puppet/application/agent.rb:415
187
+ #: ../lib/puppet/application/agent.rb:422
188
188
  msgid "Fingerprint asked but neither the certificate, nor the certificate request have been issued"
189
189
  msgstr ""
190
190
 
191
- #: ../lib/puppet/application/agent.rb:420
191
+ #: ../lib/puppet/application/agent.rb:427
192
192
  msgid "Failed to generate fingerprint: %{message}"
193
193
  msgstr ""
194
194
 
195
- #: ../lib/puppet/application/agent.rb:443
195
+ #: ../lib/puppet/application/agent.rb:450
196
196
  msgid "Starting Puppet client version %{version}"
197
197
  msgstr ""
198
198
 
199
- #: ../lib/puppet/application/agent.rb:459
199
+ #: ../lib/puppet/application/agent.rb:466
200
200
  msgid "The puppet agent command does not take parameters"
201
201
  msgstr ""
202
202
 
@@ -206,35 +206,35 @@ msgstr ""
206
206
 
207
207
  #. TRANSLATORS "puppet apply" is a program command and should not be translated
208
208
  #. TRANSLATORS "puppet apply" is a program command and should not be translated
209
- #: ../lib/puppet/application/apply.rb:208 ../lib/puppet/application/apply.rb:321
209
+ #: ../lib/puppet/application/apply.rb:209 ../lib/puppet/application/apply.rb:322
210
210
  msgid "For puppet apply"
211
211
  msgstr ""
212
212
 
213
- #: ../lib/puppet/application/apply.rb:216
213
+ #: ../lib/puppet/application/apply.rb:217
214
214
  msgid "%{file} is not readable"
215
215
  msgstr ""
216
216
 
217
- #: ../lib/puppet/application/apply.rb:287 ../lib/puppet/application/script.rb:240
217
+ #: ../lib/puppet/application/apply.rb:288 ../lib/puppet/application/script.rb:241
218
218
  msgid "Exiting"
219
219
  msgstr ""
220
220
 
221
- #: ../lib/puppet/application/apply.rb:331
221
+ #: ../lib/puppet/application/apply.rb:332
222
222
  msgid "Could not deserialize catalog from %{format}: %{detail}"
223
223
  msgstr ""
224
224
 
225
- #: ../lib/puppet/application/apply.rb:352 ../lib/puppet/application/script.rb:145
225
+ #: ../lib/puppet/application/apply.rb:353 ../lib/puppet/application/script.rb:146
226
226
  msgid "Could not find facts for %{node}"
227
227
  msgstr ""
228
228
 
229
- #: ../lib/puppet/application/apply.rb:364 ../lib/puppet/application/script.rb:153
229
+ #: ../lib/puppet/application/apply.rb:365 ../lib/puppet/application/script.rb:154
230
230
  msgid "Could not find node %{node}"
231
231
  msgstr ""
232
232
 
233
- #: ../lib/puppet/application/apply.rb:377 ../lib/puppet/application/script.rb:138
233
+ #: ../lib/puppet/application/apply.rb:378 ../lib/puppet/application/script.rb:139
234
234
  msgid "Could not find file %{manifest}"
235
235
  msgstr ""
236
236
 
237
- #: ../lib/puppet/application/apply.rb:378
237
+ #: ../lib/puppet/application/apply.rb:379
238
238
  msgid "Only one file can be applied per run. Skipping %{files}"
239
239
  msgstr ""
240
240
 
@@ -246,47 +246,47 @@ msgstr ""
246
246
  msgid "Manage remote network devices"
247
247
  msgstr ""
248
248
 
249
- #: ../lib/puppet/application/device.rb:231
249
+ #: ../lib/puppet/application/device.rb:232
250
250
  msgid "resource command requires target"
251
251
  msgstr ""
252
252
 
253
- #: ../lib/puppet/application/device.rb:234
253
+ #: ../lib/puppet/application/device.rb:235
254
254
  msgid "facts command requires target"
255
255
  msgstr ""
256
256
 
257
- #: ../lib/puppet/application/device.rb:237
257
+ #: ../lib/puppet/application/device.rb:238
258
258
  msgid "missing argument: --target is required when using --apply"
259
259
  msgstr ""
260
260
 
261
- #: ../lib/puppet/application/device.rb:238
261
+ #: ../lib/puppet/application/device.rb:239
262
262
  msgid "%{file} does not exist, cannot apply"
263
263
  msgstr ""
264
264
 
265
- #: ../lib/puppet/application/device.rb:256
265
+ #: ../lib/puppet/application/device.rb:257
266
266
  msgid "Target device / certificate '%{target}' not found in %{config}"
267
267
  msgstr ""
268
268
 
269
- #: ../lib/puppet/application/device.rb:258
269
+ #: ../lib/puppet/application/device.rb:259
270
270
  msgid "No device found in %{config}"
271
271
  msgstr ""
272
272
 
273
- #: ../lib/puppet/application/device.rb:315
273
+ #: ../lib/puppet/application/device.rb:316
274
274
  msgid "retrieving resource: %{resource} from %{target} at %{scheme}%{url_host}%{port}%{url_path}"
275
275
  msgstr ""
276
276
 
277
- #: ../lib/puppet/application/device.rb:330
277
+ #: ../lib/puppet/application/device.rb:331
278
278
  msgid "retrieving facts from %{target} at %{scheme}%{url_host}%{port}%{url_path}"
279
279
  msgstr ""
280
280
 
281
- #: ../lib/puppet/application/device.rb:353
281
+ #: ../lib/puppet/application/device.rb:354
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:389 ../lib/puppet/application/resource.rb:196
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:390 ../lib/puppet/application/resource.rb:197
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:140
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:204
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:226
429
+ #: ../lib/puppet/application/resource.rb:240
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
 
@@ -434,11 +434,11 @@ msgstr ""
434
434
  msgid "Run a puppet manifests as a script without compiling a catalog"
435
435
  msgstr ""
436
436
 
437
- #: ../lib/puppet/application/script.rb:125
437
+ #: ../lib/puppet/application/script.rb:126
438
438
  msgid "Bolt must be installed to use the script application"
439
439
  msgstr ""
440
440
 
441
- #: ../lib/puppet/application/script.rb:139
441
+ #: ../lib/puppet/application/script.rb:140
442
442
  msgid "Only one file can be used per run. Skipping %{files}"
443
443
  msgstr ""
444
444
 
@@ -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:272
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:130
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:134
546
+ msgid "Fact %{name} with length: '%{length}' exceeds the length limit: %{limit}"
547
+ msgstr ""
548
+
549
+ #: ../lib/puppet/configurer.rb:138
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:142
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:146
558
+ msgid "Payload with the current size of: '%{payload}' exceeds the payload size limit: %{max_size}"
559
+ msgstr ""
560
+
561
+ #: ../lib/puppet/configurer.rb:184
562
+ msgid "The size of the payload is %{payload}"
563
+ msgstr ""
564
+
565
+ #: ../lib/puppet/configurer.rb:214
566
+ msgid "The total number of facts registered is %{number_of_facts}"
567
+ msgstr ""
568
+
569
+ #: ../lib/puppet/configurer.rb:265
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:281
546
574
  msgid "Applied catalog in %{seconds} seconds"
547
575
  msgstr ""
548
576
 
549
- #: ../lib/puppet/configurer.rb:225
577
+ #: ../lib/puppet/configurer.rb:315
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:329
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:366
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:389
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:394
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:398
599
+ msgid "Using environment '%{env}'"
572
600
  msgstr ""
573
601
 
574
- #: ../lib/puppet/configurer.rb:367
602
+ #: ../lib/puppet/configurer.rb:429
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:440
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:442
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:505
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:536
619
+ msgid "Environment '%{environment}' not found on server, skipping initial pluginsync."
620
+ msgstr ""
621
+
622
+ #: ../lib/puppet/configurer.rb:553 ../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:557 ../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:573
632
+ msgid "Found last server-specified environment: %{environment}"
633
+ msgstr ""
634
+
635
+ #: ../lib/puppet/configurer.rb:576
636
+ msgid "Could not find last server-specified environment: %{detail}"
637
+ msgstr ""
638
+
639
+ #: ../lib/puppet/configurer.rb:586 ../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:595
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:614
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:622
612
652
  msgid "Failed to submit facts: %{detail}"
613
653
  msgstr ""
614
654
 
615
- #: ../lib/puppet/configurer.rb:529
655
+ #: ../lib/puppet/configurer.rb:637
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:655
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:677
624
664
  msgid "Could not retrieve catalog from remote server: %{detail}"
625
665
  msgstr ""
626
666
 
@@ -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:1914
763
+ #: ../lib/puppet/defaults.rb:1944
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
 
@@ -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
 
@@ -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,19 @@ 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 ../lib/puppet/provider/package/pkg.rb:271
6596
6648
  msgid "Unable to update %{package}"
6597
6649
  msgstr ""
6598
6650
 
@@ -6673,22 +6725,30 @@ msgstr ""
6673
6725
  msgid "Package %{name} was not present after trying to install it"
6674
6726
  msgstr ""
6675
6727
 
6676
- #: ../lib/puppet/provider/package/windows.rb:97
6728
+ #: ../lib/puppet/provider/package/windows.rb:42
6729
+ msgid "Error when unlinking %{path}: %{detail}"
6730
+ msgstr ""
6731
+
6732
+ #: ../lib/puppet/provider/package/windows.rb:110
6677
6733
  msgid "The package %{operation}ed successfully and the system is rebooting now."
6678
6734
  msgstr ""
6679
6735
 
6680
- #: ../lib/puppet/provider/package/windows.rb:99
6736
+ #: ../lib/puppet/provider/package/windows.rb:112
6681
6737
  msgid "The package %{operation}ed successfully, but the system must be rebooted."
6682
6738
  msgstr ""
6683
6739
 
6684
- #: ../lib/puppet/provider/package/windows.rb:101
6740
+ #: ../lib/puppet/provider/package/windows.rb:114
6685
6741
  msgid "Failed to %{operation}"
6686
6742
  msgstr ""
6687
6743
 
6688
- #: ../lib/puppet/provider/package/windows.rb:107
6744
+ #: ../lib/puppet/provider/package/windows.rb:120
6689
6745
  msgid "The source parameter cannot be empty when using the Windows provider."
6690
6746
  msgstr ""
6691
6747
 
6748
+ #: ../lib/puppet/provider/package/windows/exe_package.rb:79
6749
+ msgid "Error when installing %{package}: %{detail}"
6750
+ msgstr ""
6751
+
6692
6752
  #: ../lib/puppet/provider/package/windows/package.rb:62
6693
6753
  msgid "The source parameter is required when using the Windows provider."
6694
6754
  msgstr ""
@@ -6697,7 +6757,7 @@ msgstr ""
6697
6757
  msgid "The source does not exist: '%{source}'"
6698
6758
  msgstr ""
6699
6759
 
6700
- #: ../lib/puppet/provider/package/windows/package.rb:73
6760
+ #: ../lib/puppet/provider/package/windows/package.rb:74
6701
6761
  msgid "Don't know how to install '%{source}'"
6702
6762
  msgstr ""
6703
6763
 
@@ -6733,19 +6793,19 @@ msgstr ""
6733
6793
  msgid "Failed to read %{target}'s records when prefetching them. Reason: %{detail}"
6734
6794
  msgstr ""
6735
6795
 
6736
- #: ../lib/puppet/provider/parsedfile.rb:291
6737
- msgid "Could not prefetch %{resource} provider '%{name}' target '%{target}': %{detail}. Treating as empty"
6796
+ #: ../lib/puppet/provider/parsedfile.rb:284 ../lib/puppet/provider/parsedfile.rb:308
6797
+ msgid "Prefetching %{target} for provider %{name} returned nil"
6738
6798
  msgstr ""
6739
6799
 
6740
- #: ../lib/puppet/provider/parsedfile.rb:305
6741
- msgid "Prefetching %{target} for provider %{name} returned nil"
6800
+ #: ../lib/puppet/provider/parsedfile.rb:294
6801
+ msgid "Could not prefetch %{resource} provider '%{name}' target '%{target}': %{detail}. Treating as empty"
6742
6802
  msgstr ""
6743
6803
 
6744
- #: ../lib/puppet/provider/parsedfile.rb:378
6804
+ #: ../lib/puppet/provider/parsedfile.rb:381
6745
6805
  msgid "Parsed Providers must define a default target"
6746
6806
  msgstr ""
6747
6807
 
6748
- #: ../lib/puppet/provider/parsedfile.rb:469
6808
+ #: ../lib/puppet/provider/parsedfile.rb:472
6749
6809
  msgid "Somehow got told to prefetch with no resource set"
6750
6810
  msgstr ""
6751
6811
 
@@ -7052,26 +7112,34 @@ msgid "Class '%{klass}' is already defined%{error}; cannot redefine"
7052
7112
  msgstr ""
7053
7113
 
7054
7114
  #: ../lib/puppet/resource/type_collection.rb:64
7115
+ msgid "Node '%{klass}' is already defined%{error}; cannot be redefined as a class"
7116
+ msgstr ""
7117
+
7118
+ #: ../lib/puppet/resource/type_collection.rb:65
7055
7119
  msgid "Definition '%{klass}' is already defined%{error}; cannot be redefined as a class"
7056
7120
  msgstr ""
7057
7121
 
7058
- #: ../lib/puppet/resource/type_collection.rb:95
7122
+ #: ../lib/puppet/resource/type_collection.rb:96
7059
7123
  msgid "Node '%{name}' is already defined%{error}; cannot redefine"
7060
7124
  msgstr ""
7061
7125
 
7062
- #: ../lib/puppet/resource/type_collection.rb:130
7126
+ #: ../lib/puppet/resource/type_collection.rb:97
7127
+ msgid "Class '%{klass}' is already defined%{error}; cannot be redefined as a node"
7128
+ msgstr ""
7129
+
7130
+ #: ../lib/puppet/resource/type_collection.rb:132
7063
7131
  msgid "'%{name}' is already defined%{error} as a class; cannot redefine as a definition"
7064
7132
  msgstr ""
7065
7133
 
7066
- #: ../lib/puppet/resource/type_collection.rb:131
7134
+ #: ../lib/puppet/resource/type_collection.rb:133
7067
7135
  msgid "Definition '%{name}' is already defined%{error}; cannot be redefined"
7068
7136
  msgstr ""
7069
7137
 
7070
- #: ../lib/puppet/resource/type_collection.rb:175
7138
+ #: ../lib/puppet/resource/type_collection.rb:177
7071
7139
  msgid "Execution of config_version command `%{cmd}` failed: %{message}"
7072
7140
  msgstr ""
7073
7141
 
7074
- #: ../lib/puppet/resource/type_collection.rb:196
7142
+ #: ../lib/puppet/resource/type_collection.rb:198
7075
7143
  msgid "Not attempting to load %{type} %{fqname} as this object was missing during a prior compilation"
7076
7144
  msgstr ""
7077
7145
 
@@ -7095,49 +7163,57 @@ msgstr ""
7095
7163
  msgid "Invalid setting type '%{type}'"
7096
7164
  msgstr ""
7097
7165
 
7098
- #: ../lib/puppet/settings.rb:911
7166
+ #: ../lib/puppet/settings.rb:874
7167
+ msgid "Cannot manage owner permissions, because the provider for '%{name}' is not functional"
7168
+ msgstr ""
7169
+
7170
+ #: ../lib/puppet/settings.rb:890
7171
+ msgid "Cannot manage group permissions, because the provider for '%{name}' is not functional"
7172
+ msgstr ""
7173
+
7174
+ #: ../lib/puppet/settings.rb:926
7099
7175
  msgid "Unknown searchpath case: %{source_type} for the %{source} settings path element."
7100
7176
  msgstr ""
7101
7177
 
7102
- #: ../lib/puppet/settings.rb:984
7178
+ #: ../lib/puppet/settings.rb:1007
7103
7179
  msgid "setting definition for '%{name}' is not a hash!"
7104
7180
  msgstr ""
7105
7181
 
7106
- #: ../lib/puppet/settings.rb:989
7182
+ #: ../lib/puppet/settings.rb:1012
7107
7183
  msgid "Setting %{name} is already defined"
7108
7184
  msgstr ""
7109
7185
 
7110
- #: ../lib/puppet/settings.rb:995
7186
+ #: ../lib/puppet/settings.rb:1018
7111
7187
  msgid "Setting %{name} is already using short name '%{short}'"
7112
7188
  msgstr ""
7113
7189
 
7114
- #: ../lib/puppet/settings.rb:1266
7190
+ #: ../lib/puppet/settings.rb:1289
7115
7191
  msgid "Setting %{name} is deprecated."
7116
7192
  msgstr ""
7117
7193
 
7118
7194
  #. TRANSLATORS 'puppet.conf' is a file name and should not be translated
7119
- #: ../lib/puppet/settings.rb:1271
7195
+ #: ../lib/puppet/settings.rb:1294
7120
7196
  msgid "Setting %{name} is deprecated in puppet.conf."
7121
7197
  msgstr ""
7122
7198
 
7123
- #: ../lib/puppet/settings.rb:1458
7199
+ #: ../lib/puppet/settings.rb:1481
7124
7200
  msgid "Error converting value for param '%{name}': %{detail}"
7125
7201
  msgstr ""
7126
7202
 
7127
- #: ../lib/puppet/settings.rb:1482
7203
+ #: ../lib/puppet/settings.rb:1505
7128
7204
  msgid "Could not find value for %{expression}"
7129
7205
  msgstr ""
7130
7206
 
7131
7207
  #. TRANSLATORS '$environment' is a Puppet specific variable and should not be translated
7132
- #: ../lib/puppet/settings.rb:1492
7208
+ #: ../lib/puppet/settings.rb:1515
7133
7209
  msgid "You cannot interpolate $environment within '%{setting_name}' when using directory environments."
7134
7210
  msgstr ""
7135
7211
 
7136
- #: ../lib/puppet/settings.rb:1493
7212
+ #: ../lib/puppet/settings.rb:1516
7137
7213
  msgid "Its value will remain %{value}."
7138
7214
  msgstr ""
7139
7215
 
7140
- #: ../lib/puppet/settings.rb:1524
7216
+ #: ../lib/puppet/settings.rb:1547
7141
7217
  msgid "Attempt to assign a value to unknown setting %{name}"
7142
7218
  msgstr ""
7143
7219
 
@@ -7214,15 +7290,15 @@ msgstr ""
7214
7290
  msgid "(See https://puppet.com/docs/puppet/latest/environments_about.html)"
7215
7291
  msgstr ""
7216
7292
 
7217
- #: ../lib/puppet/settings/config_file.rb:138
7293
+ #: ../lib/puppet/settings/config_file.rb:131
7218
7294
  msgid "Invalid file option '%{parameter}'"
7219
7295
  msgstr ""
7220
7296
 
7221
- #: ../lib/puppet/settings/config_file.rb:142
7297
+ #: ../lib/puppet/settings/config_file.rb:135
7222
7298
  msgid "File modes must be numbers"
7223
7299
  msgstr ""
7224
7300
 
7225
- #: ../lib/puppet/settings/config_file.rb:145
7301
+ #: ../lib/puppet/settings/config_file.rb:138
7226
7302
  msgid "Could not parse '%{string}'"
7227
7303
  msgstr ""
7228
7304
 
@@ -7291,7 +7367,7 @@ msgstr ""
7291
7367
  msgid "%{name} has not declared what class it wraps"
7292
7368
  msgstr ""
7293
7369
 
7294
- #: ../lib/puppet/ssl/base.rb:31 ../lib/puppet/x509/cert_provider.rb:370
7370
+ #: ../lib/puppet/ssl/base.rb:31 ../lib/puppet/x509/cert_provider.rb:352
7295
7371
  msgid "Certname %{name} must not contain unprintable or non-ASCII characters"
7296
7372
  msgstr ""
7297
7373
 
@@ -7932,72 +8008,72 @@ msgstr ""
7932
8008
  msgid "Could not set %{attribute} on %{class_name}: %{detail}"
7933
8009
  msgstr ""
7934
8010
 
7935
- #: ../lib/puppet/type/exec.rb:118
8011
+ #: ../lib/puppet/type/exec.rb:121
7936
8012
  msgid "executed successfully"
7937
8013
  msgstr ""
7938
8014
 
7939
- #: ../lib/puppet/type/exec.rb:152
8015
+ #: ../lib/puppet/type/exec.rb:155
7940
8016
  msgid "Command exceeded timeout"
7941
8017
  msgstr ""
7942
8018
 
7943
- #: ../lib/puppet/type/exec.rb:181
8019
+ #: ../lib/puppet/type/exec.rb:184
7944
8020
  msgid "[command redacted] returned %{status} instead of one of [%{expected}]"
7945
8021
  msgstr ""
7946
8022
 
7947
- #: ../lib/puppet/type/exec.rb:183
8023
+ #: ../lib/puppet/type/exec.rb:186
7948
8024
  msgid "'%{cmd}' returned %{status} instead of one of [%{expected}]"
7949
8025
  msgstr ""
7950
8026
 
7951
- #: ../lib/puppet/type/exec.rb:204
7952
- msgid "Command must be a String, got value of class %{klass}"
8027
+ #: ../lib/puppet/type/exec.rb:208
8028
+ msgid "Command must be a String or Array<String>, got value of class %{klass}"
7953
8029
  msgstr ""
7954
8030
 
7955
- #: ../lib/puppet/type/exec.rb:236
8031
+ #: ../lib/puppet/type/exec.rb:241
7956
8032
  msgid "Unable to execute commands as other users on Windows"
7957
8033
  msgstr ""
7958
8034
 
7959
- #: ../lib/puppet/type/exec.rb:238
8035
+ #: ../lib/puppet/type/exec.rb:243
7960
8036
  msgid "Only root can execute commands as other users"
7961
8037
  msgstr ""
7962
8038
 
7963
- #: ../lib/puppet/type/exec.rb:294
8039
+ #: ../lib/puppet/type/exec.rb:299
7964
8040
  msgid "Invalid environment setting '%{value}'"
7965
8041
  msgstr ""
7966
8042
 
7967
- #: ../lib/puppet/type/exec.rb:307
8043
+ #: ../lib/puppet/type/exec.rb:312
7968
8044
  msgid "The umask specification is invalid: %{value}"
7969
8045
  msgstr ""
7970
8046
 
7971
- #: ../lib/puppet/type/exec.rb:323
8047
+ #: ../lib/puppet/type/exec.rb:328
7972
8048
  msgid "The timeout must be a number."
7973
8049
  msgstr ""
7974
8050
 
7975
- #: ../lib/puppet/type/exec.rb:340
8051
+ #: ../lib/puppet/type/exec.rb:345
7976
8052
  msgid "Tries must be an integer"
7977
8053
  msgstr ""
7978
8054
 
7979
- #: ../lib/puppet/type/exec.rb:344
8055
+ #: ../lib/puppet/type/exec.rb:349
7980
8056
  msgid "Tries must be an integer >= 1"
7981
8057
  msgstr ""
7982
8058
 
7983
- #: ../lib/puppet/type/exec.rb:357
8059
+ #: ../lib/puppet/type/exec.rb:362
7984
8060
  msgid "try_sleep must be a number"
7985
8061
  msgstr ""
7986
8062
 
7987
- #: ../lib/puppet/type/exec.rb:361
8063
+ #: ../lib/puppet/type/exec.rb:366
7988
8064
  msgid "try_sleep cannot be a negative number"
7989
8065
  msgstr ""
7990
8066
 
7991
8067
  #. TRANSLATORS 'creates' is a parameter name and should not be translated
7992
- #: ../lib/puppet/type/exec.rb:433
8068
+ #: ../lib/puppet/type/exec.rb:438
7993
8069
  msgid "Checking that 'creates' path '%{creates_path}' exists"
7994
8070
  msgstr ""
7995
8071
 
7996
- #: ../lib/puppet/type/exec.rb:478 ../lib/puppet/type/exec.rb:534
8072
+ #: ../lib/puppet/type/exec.rb:490 ../lib/puppet/type/exec.rb:553
7997
8073
  msgid "Check %{value} exceeded timeout"
7998
8074
  msgstr ""
7999
8075
 
8000
- #: ../lib/puppet/type/exec.rb:623
8076
+ #: ../lib/puppet/type/exec.rb:645
8001
8077
  msgid "'%{cmd}' won't be executed because of failed check '%{check}'"
8002
8078
  msgstr ""
8003
8079
 
@@ -8121,7 +8197,7 @@ msgstr ""
8121
8197
  msgid "Ensure set to :present but file type is %{file_type} so no content will be synced"
8122
8198
  msgstr ""
8123
8199
 
8124
- #: ../lib/puppet/type/file/mode.rb:126
8200
+ #: ../lib/puppet/type/file/mode.rb:132
8125
8201
  msgid "Not managing symlink mode"
8126
8202
  msgstr ""
8127
8203
 
@@ -8234,19 +8310,15 @@ msgstr ""
8234
8310
  msgid "%{value} is not a valid day of the week"
8235
8311
  msgstr ""
8236
8312
 
8237
- #: ../lib/puppet/type/service.rb:96
8238
- msgid "Setting enable to %{value} is only supported on Microsoft Windows."
8239
- msgstr ""
8240
-
8241
- #: ../lib/puppet/type/service.rb:152 ../lib/puppet/type/user.rb:271
8313
+ #: ../lib/puppet/type/service.rb:151 ../lib/puppet/type/user.rb:272
8242
8314
  msgid "Passwords cannot include ':'"
8243
8315
  msgstr ""
8244
8316
 
8245
- #: ../lib/puppet/type/service.rb:279
8317
+ #: ../lib/puppet/type/service.rb:278
8246
8318
  msgid "\"%{value}\" is not a positive integer: the timeout parameter must be specified as a positive integer"
8247
8319
  msgstr ""
8248
8320
 
8249
- #: ../lib/puppet/type/service.rb:301
8321
+ #: ../lib/puppet/type/service.rb:300
8250
8322
  msgid "The 'logonaccount' parameter is mandatory when setting 'logonpassword'."
8251
8323
  msgstr ""
8252
8324
 
@@ -8281,81 +8353,81 @@ msgstr ""
8281
8353
  msgid "File does not exist"
8282
8354
  msgstr ""
8283
8355
 
8284
- #: ../lib/puppet/type/user.rb:182
8356
+ #: ../lib/puppet/type/user.rb:183
8285
8357
  msgid "Could not find group(s) %{groups}"
8286
8358
  msgstr ""
8287
8359
 
8288
- #: ../lib/puppet/type/user.rb:291
8360
+ #: ../lib/puppet/type/user.rb:292
8289
8361
  msgid "Password minimum age must be provided as a number."
8290
8362
  msgstr ""
8291
8363
 
8292
- #: ../lib/puppet/type/user.rb:310
8364
+ #: ../lib/puppet/type/user.rb:311
8293
8365
  msgid "Password maximum age must be provided as a number."
8294
8366
  msgstr ""
8295
8367
 
8296
- #: ../lib/puppet/type/user.rb:341
8368
+ #: ../lib/puppet/type/user.rb:342
8297
8369
  msgid "Group names must be provided, not GID numbers."
8298
8370
  msgstr ""
8299
8371
 
8300
- #: ../lib/puppet/type/user.rb:343
8372
+ #: ../lib/puppet/type/user.rb:344
8301
8373
  msgid "Group names must be provided as an array, not a comma-separated list."
8302
8374
  msgstr ""
8303
8375
 
8304
- #: ../lib/puppet/type/user.rb:344
8376
+ #: ../lib/puppet/type/user.rb:345
8305
8377
  msgid "Group names must not be empty. If you want to specify \"no groups\" pass an empty array"
8306
8378
  msgstr ""
8307
8379
 
8308
- #: ../lib/puppet/type/user.rb:437
8380
+ #: ../lib/puppet/type/user.rb:438
8309
8381
  msgid "User provider %{name} can not manage home directories"
8310
8382
  msgstr ""
8311
8383
 
8312
8384
  #. TRANSLATORS YYYY-MM-DD represents a date with a four-digit year, a two-digit month, and a two-digit day,
8313
8385
  #. TRANSLATORS separated by dashes.
8314
- #: ../lib/puppet/type/user.rb:454
8386
+ #: ../lib/puppet/type/user.rb:455
8315
8387
  msgid "Expiry dates must be YYYY-MM-DD or the string \"absent\""
8316
8388
  msgstr ""
8317
8389
 
8318
- #: ../lib/puppet/type/user.rb:521
8390
+ #: ../lib/puppet/type/user.rb:522
8319
8391
  msgid "Role names must be provided, not numbers"
8320
8392
  msgstr ""
8321
8393
 
8322
- #: ../lib/puppet/type/user.rb:523
8394
+ #: ../lib/puppet/type/user.rb:524
8323
8395
  msgid "Role names must be provided as an array, not a comma-separated list"
8324
8396
  msgstr ""
8325
8397
 
8326
- #: ../lib/puppet/type/user.rb:560
8398
+ #: ../lib/puppet/type/user.rb:561
8327
8399
  msgid "Auth names must be provided, not numbers"
8328
8400
  msgstr ""
8329
8401
 
8330
- #: ../lib/puppet/type/user.rb:562
8402
+ #: ../lib/puppet/type/user.rb:563
8331
8403
  msgid "Auth names must be provided as an array, not a comma-separated list"
8332
8404
  msgstr ""
8333
8405
 
8334
- #: ../lib/puppet/type/user.rb:586
8406
+ #: ../lib/puppet/type/user.rb:587
8335
8407
  msgid "Profile names must be provided, not numbers"
8336
8408
  msgstr ""
8337
8409
 
8338
- #: ../lib/puppet/type/user.rb:588
8410
+ #: ../lib/puppet/type/user.rb:589
8339
8411
  msgid "Profile names must be provided as an array, not a comma-separated list"
8340
8412
  msgstr ""
8341
8413
 
8342
- #: ../lib/puppet/type/user.rb:699
8414
+ #: ../lib/puppet/type/user.rb:701
8343
8415
  msgid "Ssh_authorized_key type is not available. Cannot purge SSH keys."
8344
8416
  msgstr ""
8345
8417
 
8346
- #: ../lib/puppet/type/user.rb:737
8418
+ #: ../lib/puppet/type/user.rb:739
8347
8419
  msgid "Each entry for purge_ssh_keys must be a string, not a %{klass}"
8348
8420
  msgstr ""
8349
8421
 
8350
- #: ../lib/puppet/type/user.rb:740
8422
+ #: ../lib/puppet/type/user.rb:742
8351
8423
  msgid "Paths to keyfiles must be absolute, not %{entry}"
8352
8424
  msgstr ""
8353
8425
 
8354
- #: ../lib/puppet/type/user.rb:744
8426
+ #: ../lib/puppet/type/user.rb:746
8355
8427
  msgid "purge_ssh_keys must be true, false, or an array of file names, not %{value}"
8356
8428
  msgstr ""
8357
8429
 
8358
- #: ../lib/puppet/type/user.rb:772
8430
+ #: ../lib/puppet/type/user.rb:755
8359
8431
  msgid "Class name must be provided."
8360
8432
  msgstr ""
8361
8433
 
@@ -9151,39 +9223,39 @@ msgstr ""
9151
9223
  msgid "Invalid %{klass}: %{id}"
9152
9224
  msgstr ""
9153
9225
 
9154
- #: ../lib/puppet/util/symbolic_file_mode.rb:37
9226
+ #: ../lib/puppet/util/symbolic_file_mode.rb:49
9155
9227
  msgid "An empty mode string is illegal"
9156
9228
  msgstr ""
9157
9229
 
9158
- #: ../lib/puppet/util/symbolic_file_mode.rb:41
9230
+ #: ../lib/puppet/util/symbolic_file_mode.rb:53
9159
9231
  msgid "Numeric modes must be in octal, not decimal!"
9160
9232
  msgstr ""
9161
9233
 
9162
- #: ../lib/puppet/util/symbolic_file_mode.rb:44
9234
+ #: ../lib/puppet/util/symbolic_file_mode.rb:56
9163
9235
  msgid "non-numeric current mode (%{mode})"
9164
9236
  msgstr ""
9165
9237
 
9166
- #: ../lib/puppet/util/symbolic_file_mode.rb:64
9238
+ #: ../lib/puppet/util/symbolic_file_mode.rb:76
9167
9239
  msgid "Missing action"
9168
9240
  msgstr ""
9169
9241
 
9170
- #: ../lib/puppet/util/symbolic_file_mode.rb:79
9242
+ #: ../lib/puppet/util/symbolic_file_mode.rb:91
9171
9243
  msgid "Missing operation (-, =, or +)"
9172
9244
  msgstr ""
9173
9245
 
9174
- #: ../lib/puppet/util/symbolic_file_mode.rb:101
9246
+ #: ../lib/puppet/util/symbolic_file_mode.rb:113
9175
9247
  msgid "X only works with the '+' operator"
9176
9248
  msgstr ""
9177
9249
 
9178
- #: ../lib/puppet/util/symbolic_file_mode.rb:112
9250
+ #: ../lib/puppet/util/symbolic_file_mode.rb:124
9179
9251
  msgid "internal error"
9180
9252
  msgstr ""
9181
9253
 
9182
- #: ../lib/puppet/util/symbolic_file_mode.rb:116
9254
+ #: ../lib/puppet/util/symbolic_file_mode.rb:128
9183
9255
  msgid "Unknown operation"
9184
9256
  msgstr ""
9185
9257
 
9186
- #: ../lib/puppet/util/symbolic_file_mode.rb:131
9258
+ #: ../lib/puppet/util/symbolic_file_mode.rb:143
9187
9259
  msgid "%{error}%{rest} in symbolic mode %{modification}"
9188
9260
  msgstr ""
9189
9261
 
@@ -9417,7 +9489,7 @@ msgstr ""
9417
9489
  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"
9418
9490
  msgstr ""
9419
9491
 
9420
- #: ../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
9492
+ #: ../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:59
9421
9493
  msgid "Invalid SID"
9422
9494
  msgstr ""
9423
9495
 
@@ -9573,19 +9645,19 @@ msgstr ""
9573
9645
  msgid "Timed out while waiting for the pending transition from %{pending_state} to %{final_state} to finish. The current state is %{current_state}."
9574
9646
  msgstr ""
9575
9647
 
9576
- #: ../lib/puppet/util/windows/sid.rb:96
9648
+ #: ../lib/puppet/util/windows/sid.rb:98
9577
9649
  msgid "Octet string must be an array of bytes"
9578
9650
  msgstr ""
9579
9651
 
9580
- #: ../lib/puppet/util/windows/sid.rb:163
9652
+ #: ../lib/puppet/util/windows/sid.rb:165
9581
9653
  msgid "Failed to convert binary SID"
9582
9654
  msgstr ""
9583
9655
 
9584
- #: ../lib/puppet/util/windows/sid.rb:168
9656
+ #: ../lib/puppet/util/windows/sid.rb:170
9585
9657
  msgid "ConvertSidToStringSidW failed to allocate buffer for sid"
9586
9658
  msgstr ""
9587
9659
 
9588
- #: ../lib/puppet/util/windows/sid.rb:188
9660
+ #: ../lib/puppet/util/windows/sid.rb:190
9589
9661
  msgid "Failed to convert string SID: %{string_sid}"
9590
9662
  msgstr ""
9591
9663
 
@@ -9609,72 +9681,72 @@ msgstr ""
9609
9681
  msgid "Failed to unload user profile %{user}"
9610
9682
  msgstr ""
9611
9683
 
9612
- #: ../lib/puppet/x509/cert_provider.rb:45
9684
+ #: ../lib/puppet/x509/cert_provider.rb:44
9613
9685
  msgid "Failed to save CA certificates to '%{capath}'"
9614
9686
  msgstr ""
9615
9687
 
9616
- #: ../lib/puppet/x509/cert_provider.rb:59
9688
+ #: ../lib/puppet/x509/cert_provider.rb:58
9617
9689
  msgid "The CA certificates are missing from '%{path}'"
9618
9690
  msgstr ""
9619
9691
 
9620
- #: ../lib/puppet/x509/cert_provider.rb:63
9692
+ #: ../lib/puppet/x509/cert_provider.rb:62
9621
9693
  msgid "Failed to load CA certificates from '%{capath}'"
9622
9694
  msgstr ""
9623
9695
 
9624
9696
  #. TRANSLATORS 'PEM' is an acronym and shouldn't be translated
9625
- #: ../lib/puppet/x509/cert_provider.rb:75
9697
+ #: ../lib/puppet/x509/cert_provider.rb:74
9626
9698
  msgid "Failed to parse CA certificates as PEM"
9627
9699
  msgstr ""
9628
9700
 
9629
- #: ../lib/puppet/x509/cert_provider.rb:91
9701
+ #: ../lib/puppet/x509/cert_provider.rb:90
9630
9702
  msgid "Failed to save CRLs to '%{crlpath}'"
9631
9703
  msgstr ""
9632
9704
 
9633
- #: ../lib/puppet/x509/cert_provider.rb:105
9705
+ #: ../lib/puppet/x509/cert_provider.rb:104
9634
9706
  msgid "The CRL is missing from '%{path}'"
9635
9707
  msgstr ""
9636
9708
 
9637
- #: ../lib/puppet/x509/cert_provider.rb:109
9709
+ #: ../lib/puppet/x509/cert_provider.rb:108
9638
9710
  msgid "Failed to load CRLs from '%{crlpath}'"
9639
9711
  msgstr ""
9640
9712
 
9641
9713
  #. TRANSLATORS 'PEM' is an acronym and shouldn't be translated
9642
- #: ../lib/puppet/x509/cert_provider.rb:121
9714
+ #: ../lib/puppet/x509/cert_provider.rb:120
9643
9715
  msgid "Failed to parse CRLs as PEM"
9644
9716
  msgstr ""
9645
9717
 
9646
- #: ../lib/puppet/x509/cert_provider.rb:171
9718
+ #: ../lib/puppet/x509/cert_provider.rb:170
9647
9719
  msgid "Failed to save private key for '%{name}'"
9648
9720
  msgstr ""
9649
9721
 
9650
- #: ../lib/puppet/x509/cert_provider.rb:191
9722
+ #: ../lib/puppet/x509/cert_provider.rb:190
9651
9723
  msgid "The private key is missing from '%{path}'"
9652
9724
  msgstr ""
9653
9725
 
9654
- #: ../lib/puppet/x509/cert_provider.rb:195
9726
+ #: ../lib/puppet/x509/cert_provider.rb:194
9655
9727
  msgid "Failed to load private key for '%{name}'"
9656
9728
  msgstr ""
9657
9729
 
9658
- #: ../lib/puppet/x509/cert_provider.rb:255
9730
+ #: ../lib/puppet/x509/cert_provider.rb:237
9659
9731
  msgid "Failed to save client certificate for '%{name}'"
9660
9732
  msgstr ""
9661
9733
 
9662
- #: ../lib/puppet/x509/cert_provider.rb:271
9734
+ #: ../lib/puppet/x509/cert_provider.rb:253
9663
9735
  msgid "The client certificate is missing from '%{path}'"
9664
9736
  msgstr ""
9665
9737
 
9666
- #: ../lib/puppet/x509/cert_provider.rb:275
9738
+ #: ../lib/puppet/x509/cert_provider.rb:257
9667
9739
  msgid "Failed to load client certificate for '%{name}'"
9668
9740
  msgstr ""
9669
9741
 
9670
- #: ../lib/puppet/x509/cert_provider.rb:324
9742
+ #: ../lib/puppet/x509/cert_provider.rb:306
9671
9743
  msgid "Failed to save certificate request for '%{name}'"
9672
9744
  msgstr ""
9673
9745
 
9674
- #: ../lib/puppet/x509/cert_provider.rb:340
9746
+ #: ../lib/puppet/x509/cert_provider.rb:322
9675
9747
  msgid "Failed to load certificate request for '%{name}'"
9676
9748
  msgstr ""
9677
9749
 
9678
- #: ../lib/puppet/x509/cert_provider.rb:353
9750
+ #: ../lib/puppet/x509/cert_provider.rb:335
9679
9751
  msgid "Failed to delete certificate request for '%{name}'"
9680
9752
  msgstr ""