puppet 7.9.0-x64-mingw32 → 7.12.1-x64-mingw32

Sign up to get free protection for your applications and to get access to all the features.
Files changed (292) hide show
  1. checksums.yaml +4 -4
  2. data/Gemfile +2 -2
  3. data/Gemfile.lock +12 -12
  4. data/{ext → examples/enc}/regexp_nodes/classes/databases +0 -0
  5. data/{ext → examples/enc}/regexp_nodes/classes/webservers +0 -0
  6. data/{ext → examples/enc}/regexp_nodes/environment/development +0 -0
  7. data/{ext → examples/enc}/regexp_nodes/parameters/service/prod +0 -0
  8. data/{ext → examples/enc}/regexp_nodes/parameters/service/qa +0 -0
  9. data/{ext → examples/enc}/regexp_nodes/parameters/service/sandbox +0 -0
  10. data/{ext → examples/enc}/regexp_nodes/regexp_nodes.rb +0 -0
  11. data/{ext → examples}/nagios/check_puppet.rb +2 -2
  12. data/ext/README.md +13 -0
  13. data/lib/puppet/application/agent.rb +4 -0
  14. data/lib/puppet/application/apply.rb +20 -2
  15. data/lib/puppet/application/resource.rb +15 -13
  16. data/lib/puppet/concurrent/thread_local_singleton.rb +1 -0
  17. data/lib/puppet/configurer.rb +236 -58
  18. data/lib/puppet/confine/variable.rb +1 -1
  19. data/lib/puppet/defaults.rb +66 -29
  20. data/lib/puppet/environments.rb +66 -26
  21. data/lib/puppet/facter_impl.rb +96 -0
  22. data/lib/puppet/file_serving/configuration/parser.rb +2 -0
  23. data/lib/puppet/file_serving/configuration.rb +2 -0
  24. data/lib/puppet/file_serving/mount/file.rb +4 -4
  25. data/lib/puppet/file_serving/mount/scripts.rb +24 -0
  26. data/lib/puppet/file_system/file_impl.rb +3 -1
  27. data/lib/puppet/file_system.rb +2 -1
  28. data/lib/puppet/forge.rb +1 -1
  29. data/lib/puppet/functions/find_template.rb +2 -2
  30. data/lib/puppet/http/client.rb +1 -1
  31. data/lib/puppet/http/redirector.rb +5 -0
  32. data/lib/puppet/http/service/compiler.rb +6 -1
  33. data/lib/puppet/indirector/catalog/compiler.rb +24 -6
  34. data/lib/puppet/indirector/catalog/rest.rb +1 -0
  35. data/lib/puppet/indirector/facts/facter.rb +6 -6
  36. data/lib/puppet/indirector/indirection.rb +1 -1
  37. data/lib/puppet/indirector/terminus.rb +4 -0
  38. data/lib/puppet/module/plan.rb +0 -1
  39. data/lib/puppet/module/task.rb +1 -1
  40. data/lib/puppet/module_tool/applications/installer.rb +8 -4
  41. data/lib/puppet/module_tool/applications/uninstaller.rb +1 -1
  42. data/lib/puppet/module_tool/applications/upgrader.rb +1 -1
  43. data/lib/puppet/network/http/api/indirected_routes.rb +1 -1
  44. data/lib/puppet/node/environment.rb +10 -11
  45. data/lib/puppet/pal/pal_impl.rb +1 -1
  46. data/lib/puppet/parser/resource.rb +1 -1
  47. data/lib/puppet/parser/scope.rb +8 -7
  48. data/lib/puppet/parser/templatewrapper.rb +1 -0
  49. data/lib/puppet/pops/evaluator/closure.rb +7 -5
  50. data/lib/puppet/pops/evaluator/runtime3_resource_support.rb +1 -0
  51. data/lib/puppet/pops/lookup/lookup_adapter.rb +3 -2
  52. data/lib/puppet/pops/model/ast.rb +1 -0
  53. data/lib/puppet/pops/model/factory.rb +14 -13
  54. data/lib/puppet/pops/parser/egrammar.ra +2 -2
  55. data/lib/puppet/pops/parser/eparser.rb +752 -753
  56. data/lib/puppet/pops/parser/lexer2.rb +69 -68
  57. data/lib/puppet/pops/parser/slurp_support.rb +1 -0
  58. data/lib/puppet/pops/serialization/to_data_converter.rb +18 -6
  59. data/lib/puppet/pops/serialization/to_stringified_converter.rb +1 -1
  60. data/lib/puppet/pops/types/type_formatter.rb +7 -6
  61. data/lib/puppet/pops/types/types.rb +1 -1
  62. data/lib/puppet/provider/aix_object.rb +1 -1
  63. data/lib/puppet/provider/group/groupadd.rb +5 -2
  64. data/lib/puppet/provider/package/pkg.rb +19 -2
  65. data/lib/puppet/provider/package/puppet_gem.rb +1 -1
  66. data/lib/puppet/provider/package/puppetserver_gem.rb +1 -1
  67. data/lib/puppet/provider/package/yum.rb +1 -1
  68. data/lib/puppet/provider/service/base.rb +1 -1
  69. data/lib/puppet/provider/service/init.rb +5 -5
  70. data/lib/puppet/provider/service/launchd.rb +2 -2
  71. data/lib/puppet/provider/service/redhat.rb +1 -1
  72. data/lib/puppet/provider/service/smf.rb +3 -3
  73. data/lib/puppet/provider/service/systemd.rb +2 -2
  74. data/lib/puppet/provider/service/upstart.rb +5 -5
  75. data/lib/puppet/provider/user/aix.rb +44 -1
  76. data/lib/puppet/provider/user/directoryservice.rb +1 -1
  77. data/lib/puppet/provider/user/useradd.rb +72 -16
  78. data/lib/puppet/provider.rb +1 -1
  79. data/lib/puppet/reference/providers.rb +2 -2
  80. data/lib/puppet/resource/catalog.rb +1 -1
  81. data/lib/puppet/resource/type_collection.rb +2 -1
  82. data/lib/puppet/resource.rb +38 -5
  83. data/lib/puppet/runtime.rb +11 -1
  84. data/lib/puppet/settings/file_setting.rb +3 -8
  85. data/lib/puppet/settings.rb +2 -2
  86. data/lib/puppet/test/test_helper.rb +4 -1
  87. data/lib/puppet/transaction/persistence.rb +11 -1
  88. data/lib/puppet/transaction/report.rb +15 -1
  89. data/lib/puppet/type/exec.rb +19 -2
  90. data/lib/puppet/type/file.rb +6 -6
  91. data/lib/puppet/type/filebucket.rb +2 -2
  92. data/lib/puppet/type/group.rb +0 -1
  93. data/lib/puppet/type/resources.rb +1 -1
  94. data/lib/puppet/type/service.rb +8 -3
  95. data/lib/puppet/type/user.rb +0 -1
  96. data/lib/puppet/type.rb +1 -1
  97. data/lib/puppet/util/autoload.rb +1 -1
  98. data/lib/puppet/util/command_line.rb +1 -1
  99. data/lib/puppet/util/filetype.rb +2 -2
  100. data/lib/puppet/util/json.rb +3 -0
  101. data/lib/puppet/util/log.rb +1 -2
  102. data/lib/puppet/util/logging.rb +1 -25
  103. data/lib/puppet/util/pidlock.rb +1 -1
  104. data/lib/puppet/util/rdoc/parser/puppet_parser_core.rb +1 -1
  105. data/lib/puppet/util/suidmanager.rb +1 -2
  106. data/lib/puppet/util/tagging.rb +1 -0
  107. data/lib/puppet/util/windows/service.rb +0 -5
  108. data/lib/puppet/util/windows/user.rb +0 -1
  109. data/lib/puppet/util/windows.rb +3 -0
  110. data/lib/puppet/util.rb +4 -3
  111. data/lib/puppet/version.rb +1 -1
  112. data/lib/puppet.rb +2 -6
  113. data/locales/puppet.pot +265 -221
  114. data/man/man5/puppet.conf.5 +73 -25
  115. data/man/man8/puppet-agent.8 +4 -1
  116. data/man/man8/puppet-apply.8 +1 -1
  117. data/man/man8/puppet-catalog.8 +1 -1
  118. data/man/man8/puppet-config.8 +1 -1
  119. data/man/man8/puppet-describe.8 +1 -1
  120. data/man/man8/puppet-device.8 +1 -1
  121. data/man/man8/puppet-doc.8 +1 -1
  122. data/man/man8/puppet-epp.8 +1 -1
  123. data/man/man8/puppet-facts.8 +1 -1
  124. data/man/man8/puppet-filebucket.8 +1 -1
  125. data/man/man8/puppet-generate.8 +1 -1
  126. data/man/man8/puppet-help.8 +1 -1
  127. data/man/man8/puppet-lookup.8 +1 -1
  128. data/man/man8/puppet-module.8 +3 -3
  129. data/man/man8/puppet-node.8 +1 -1
  130. data/man/man8/puppet-parser.8 +1 -1
  131. data/man/man8/puppet-plugin.8 +1 -1
  132. data/man/man8/puppet-report.8 +1 -1
  133. data/man/man8/puppet-resource.8 +1 -1
  134. data/man/man8/puppet-script.8 +1 -1
  135. data/man/man8/puppet-ssl.8 +1 -1
  136. data/man/man8/puppet.8 +2 -2
  137. data/spec/fixtures/integration/application/agent/cached_deferred_catalog.json +2 -1
  138. data/spec/fixtures/integration/application/agent/lib/facter/agent_spec_role.rb +3 -0
  139. data/spec/fixtures/integration/l10n/envs/prod/modules/demo/Gemfile +4 -0
  140. data/spec/fixtures/integration/l10n/envs/prod/modules/demo/Rakefile +3 -0
  141. data/spec/fixtures/integration/l10n/envs/prod/modules/demo/lib/puppet/functions/l10n.rb +8 -0
  142. data/spec/fixtures/integration/l10n/envs/prod/modules/demo/locales/config.yaml +25 -0
  143. data/spec/fixtures/integration/l10n/envs/prod/modules/demo/locales/ja/puppet-l10n.po +19 -0
  144. data/spec/fixtures/integration/l10n/envs/prod/modules/demo/locales/puppet-l10n.pot +20 -0
  145. data/spec/fixtures/integration/l10n/envs/prod/modules/demo/metadata.json +8 -0
  146. data/spec/integration/application/agent_spec.rb +146 -52
  147. data/spec/integration/application/filebucket_spec.rb +5 -0
  148. data/spec/integration/configurer_spec.rb +18 -2
  149. data/spec/integration/indirector/facts/facter_spec.rb +3 -3
  150. data/spec/integration/l10n/compiler_spec.rb +37 -0
  151. data/spec/integration/parser/pcore_resource_spec.rb +10 -0
  152. data/spec/integration/transaction/report_spec.rb +1 -1
  153. data/spec/integration/type/file_spec.rb +2 -2
  154. data/spec/integration/type/package_spec.rb +6 -6
  155. data/spec/integration/util/rdoc/parser_spec.rb +1 -1
  156. data/spec/integration/util/windows/process_spec.rb +1 -9
  157. data/spec/lib/puppet_spec/modules.rb +13 -2
  158. data/spec/lib/puppet_spec/puppetserver.rb +15 -0
  159. data/spec/shared_behaviours/documentation_on_faces.rb +0 -2
  160. data/spec/shared_contexts/l10n.rb +27 -0
  161. data/spec/spec_helper.rb +1 -10
  162. data/spec/unit/application/apply_spec.rb +76 -56
  163. data/spec/unit/application/resource_spec.rb +29 -0
  164. data/spec/unit/configurer_spec.rb +353 -57
  165. data/spec/unit/environments_spec.rb +150 -1
  166. data/spec/unit/facter_impl_spec.rb +31 -0
  167. data/spec/unit/file_bucket/dipper_spec.rb +2 -2
  168. data/spec/unit/file_serving/configuration/parser_spec.rb +23 -0
  169. data/spec/unit/file_serving/configuration_spec.rb +12 -4
  170. data/spec/unit/file_serving/mount/scripts_spec.rb +69 -0
  171. data/spec/unit/file_system_spec.rb +7 -0
  172. data/spec/unit/functions/logging_spec.rb +1 -0
  173. data/spec/unit/functions/lookup_spec.rb +64 -0
  174. data/spec/unit/http/client_spec.rb +58 -1
  175. data/spec/unit/http/service/compiler_spec.rb +8 -0
  176. data/spec/unit/indirector/catalog/compiler_spec.rb +87 -0
  177. data/spec/unit/indirector/catalog/rest_spec.rb +8 -0
  178. data/spec/unit/indirector/indirection_spec.rb +10 -3
  179. data/spec/unit/interface/action_spec.rb +0 -9
  180. data/spec/unit/module_spec.rb +14 -0
  181. data/spec/unit/module_tool/applications/installer_spec.rb +39 -12
  182. data/spec/unit/network/formats_spec.rb +6 -0
  183. data/spec/unit/pops/parser/parse_containers_spec.rb +0 -11
  184. data/spec/unit/pops/serialization/to_from_hr_spec.rb +58 -0
  185. data/spec/unit/pops/serialization/to_stringified_spec.rb +5 -0
  186. data/spec/unit/pops/types/type_calculator_spec.rb +6 -0
  187. data/spec/unit/provider/package/gem_spec.rb +1 -1
  188. data/spec/unit/provider/package/pip2_spec.rb +1 -1
  189. data/spec/unit/provider/package/pip3_spec.rb +1 -1
  190. data/spec/unit/provider/package/pip_spec.rb +1 -1
  191. data/spec/unit/provider/package/pkg_spec.rb +34 -5
  192. data/spec/unit/provider/package/puppet_gem_spec.rb +1 -1
  193. data/spec/unit/provider/package/puppetserver_gem_spec.rb +1 -1
  194. data/spec/unit/provider/service/launchd_spec.rb +11 -0
  195. data/spec/unit/provider/service/systemd_spec.rb +1 -1
  196. data/spec/unit/provider/user/aix_spec.rb +100 -0
  197. data/spec/unit/provider/user/directoryservice_spec.rb +1 -1
  198. data/spec/unit/provider/user/useradd_spec.rb +43 -2
  199. data/spec/unit/provider_spec.rb +4 -4
  200. data/spec/unit/puppet_spec.rb +12 -4
  201. data/spec/unit/resource/catalog_spec.rb +14 -1
  202. data/spec/unit/resource_spec.rb +58 -2
  203. data/spec/unit/settings/file_setting_spec.rb +10 -7
  204. data/spec/unit/type/service_spec.rb +27 -0
  205. data/spec/unit/type_spec.rb +2 -2
  206. data/spec/unit/util/autoload_spec.rb +25 -8
  207. data/spec/unit/util/logging_spec.rb +2 -0
  208. data/tasks/parallel.rake +3 -3
  209. metadata +37 -94
  210. data/ext/README.environment +0 -8
  211. data/ext/dbfix.sql +0 -132
  212. data/ext/debian/README.Debian +0 -8
  213. data/ext/debian/README.source +0 -2
  214. data/ext/debian/TODO.Debian +0 -1
  215. data/ext/debian/changelog.erb +0 -1122
  216. data/ext/debian/compat +0 -1
  217. data/ext/debian/control +0 -144
  218. data/ext/debian/copyright +0 -339
  219. data/ext/debian/docs +0 -1
  220. data/ext/debian/fileserver.conf +0 -41
  221. data/ext/debian/puppet-common.dirs +0 -13
  222. data/ext/debian/puppet-common.install +0 -3
  223. data/ext/debian/puppet-common.lintian-overrides +0 -5
  224. data/ext/debian/puppet-common.manpages +0 -28
  225. data/ext/debian/puppet-common.postinst +0 -35
  226. data/ext/debian/puppet-common.postrm +0 -33
  227. data/ext/debian/puppet-el.dirs +0 -1
  228. data/ext/debian/puppet-el.emacsen-install +0 -25
  229. data/ext/debian/puppet-el.emacsen-remove +0 -11
  230. data/ext/debian/puppet-el.emacsen-startup +0 -9
  231. data/ext/debian/puppet-el.install +0 -1
  232. data/ext/debian/puppet-testsuite.install +0 -2
  233. data/ext/debian/puppet-testsuite.lintian-overrides +0 -4
  234. data/ext/debian/puppet.lintian-overrides +0 -3
  235. data/ext/debian/puppet.logrotate +0 -20
  236. data/ext/debian/puppet.postinst +0 -20
  237. data/ext/debian/puppet.postrm +0 -20
  238. data/ext/debian/puppet.preinst +0 -20
  239. data/ext/debian/puppetmaster-common.install +0 -2
  240. data/ext/debian/puppetmaster-common.manpages +0 -2
  241. data/ext/debian/puppetmaster-common.postinst +0 -6
  242. data/ext/debian/puppetmaster-passenger.dirs +0 -4
  243. data/ext/debian/puppetmaster-passenger.postinst +0 -162
  244. data/ext/debian/puppetmaster-passenger.postrm +0 -61
  245. data/ext/debian/puppetmaster.README.debian +0 -17
  246. data/ext/debian/puppetmaster.default +0 -14
  247. data/ext/debian/puppetmaster.init +0 -137
  248. data/ext/debian/puppetmaster.lintian-overrides +0 -3
  249. data/ext/debian/puppetmaster.postinst +0 -20
  250. data/ext/debian/puppetmaster.postrm +0 -5
  251. data/ext/debian/puppetmaster.preinst +0 -22
  252. data/ext/debian/rules +0 -132
  253. data/ext/debian/source/format +0 -1
  254. data/ext/debian/source/options +0 -1
  255. data/ext/debian/vim-puppet.README.Debian +0 -13
  256. data/ext/debian/vim-puppet.dirs +0 -5
  257. data/ext/debian/vim-puppet.yaml +0 -7
  258. data/ext/debian/watch +0 -2
  259. data/ext/freebsd/puppetd +0 -26
  260. data/ext/freebsd/puppetmasterd +0 -26
  261. data/ext/gentoo/conf.d/puppet +0 -5
  262. data/ext/gentoo/conf.d/puppetmaster +0 -12
  263. data/ext/gentoo/init.d/puppet +0 -38
  264. data/ext/gentoo/init.d/puppetmaster +0 -51
  265. data/ext/gentoo/puppet/fileserver.conf +0 -41
  266. data/ext/ips/puppet-agent +0 -44
  267. data/ext/ips/puppet-master +0 -44
  268. data/ext/ips/puppet.p5m.erb +0 -12
  269. data/ext/ips/puppetagent.xml +0 -42
  270. data/ext/ips/puppetmaster.xml +0 -42
  271. data/ext/ips/rules +0 -19
  272. data/ext/ips/transforms +0 -34
  273. data/ext/ldap/puppet.schema +0 -24
  274. data/ext/logcheck/puppet +0 -23
  275. data/ext/osx/file_mapping.yaml +0 -28
  276. data/ext/osx/postflight.erb +0 -109
  277. data/ext/osx/preflight.erb +0 -52
  278. data/ext/osx/prototype.plist.erb +0 -38
  279. data/ext/redhat/fileserver.conf +0 -41
  280. data/ext/redhat/logrotate +0 -21
  281. data/ext/redhat/puppet.spec.erb +0 -841
  282. data/ext/redhat/server.init +0 -128
  283. data/ext/redhat/server.sysconfig +0 -13
  284. data/ext/solaris/pkginfo +0 -6
  285. data/ext/solaris/smf/puppetd.xml +0 -77
  286. data/ext/solaris/smf/puppetmasterd.xml +0 -77
  287. data/ext/solaris/smf/svc-puppetd +0 -71
  288. data/ext/solaris/smf/svc-puppetmasterd +0 -67
  289. data/ext/suse/puppet.spec +0 -310
  290. data/ext/suse/server.init +0 -173
  291. data/ext/yaml_nodes.rb +0 -105
  292. data/spec/unit/indirector/store_configs_spec.rb +0 -7
data/locales/puppet.pot CHANGED
@@ -6,11 +6,11 @@
6
6
  #, fuzzy
7
7
  msgid ""
8
8
  msgstr ""
9
- "Project-Id-Version: Puppet automation framework 7.8.0-115-g2e290b736f\n"
9
+ "Project-Id-Version: Puppet automation framework 7.11.0-22-gd1463bbc0c\n"
10
10
  "\n"
11
11
  "Report-Msgid-Bugs-To: https://tickets.puppetlabs.com\n"
12
- "POT-Creation-Date: 2021-07-06 12:22+0000\n"
13
- "PO-Revision-Date: 2021-07-06 12:22+0000\n"
12
+ "POT-Creation-Date: 2021-09-29 16:36+0000\n"
13
+ "PO-Revision-Date: 2021-09-29 16:36+0000\n"
14
14
  "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
15
15
  "Language-Team: LANGUAGE <LL@li.org>\n"
16
16
  "Language: \n"
@@ -28,11 +28,11 @@ msgstr ""
28
28
  msgid "See https://puppet.com/docs/puppet/%{minor_version}/deprecated_language.html"
29
29
  msgstr ""
30
30
 
31
- #: ../lib/hiera/scope.rb:46 ../lib/puppet/parser/scope.rb:534
31
+ #: ../lib/hiera/scope.rb:46 ../lib/puppet/parser/scope.rb:535
32
32
  msgid "Variable: %{name}"
33
33
  msgstr ""
34
34
 
35
- #: ../lib/hiera/scope.rb:47 ../lib/hiera/scope.rb:49 ../lib/puppet/parser/scope.rb:535 ../lib/puppet/parser/scope.rb:537
35
+ #: ../lib/hiera/scope.rb:47 ../lib/hiera/scope.rb:49 ../lib/puppet/parser/scope.rb:536 ../lib/puppet/parser/scope.rb:538
36
36
  msgid "Undefined variable '%{name}'; %{reason}"
37
37
  msgstr ""
38
38
 
@@ -48,21 +48,21 @@ msgstr ""
48
48
  msgid "Config file %{hiera_config} not found, using Hiera defaults"
49
49
  msgstr ""
50
50
 
51
- #: ../lib/puppet.rb:138
51
+ #: ../lib/puppet.rb:134
52
52
  msgid "Support for ruby version %{version} is deprecated and will be removed in a future release. See https://puppet.com/docs/puppet/latest/system_requirements.html for a list of supported ruby versions."
53
53
  msgstr ""
54
54
 
55
- #: ../lib/puppet.rb:224
55
+ #: ../lib/puppet.rb:220
56
56
  msgid "The environmentpath setting cannot be empty or nil."
57
57
  msgstr ""
58
58
 
59
59
  #. TRANSLATORS: `message` is an already translated string of why SSL failed to initialize
60
- #: ../lib/puppet.rb:250
60
+ #: ../lib/puppet.rb:246
61
61
  msgid "Failed to initialize SSL: %{message}"
62
62
  msgstr ""
63
63
 
64
64
  #. TRANSLATORS: `puppet agent -t` is a command and should not be translated
65
- #: ../lib/puppet.rb:252
65
+ #: ../lib/puppet.rb:248
66
66
  msgid "Run `puppet agent -t`"
67
67
  msgstr ""
68
68
 
@@ -184,57 +184,57 @@ msgstr ""
184
184
  msgid "The puppet agent daemon"
185
185
  msgstr ""
186
186
 
187
- #: ../lib/puppet/application/agent.rb:422
187
+ #: ../lib/puppet/application/agent.rb:426
188
188
  msgid "Fingerprint asked but neither the certificate, nor the certificate request have been issued"
189
189
  msgstr ""
190
190
 
191
- #: ../lib/puppet/application/agent.rb:427
191
+ #: ../lib/puppet/application/agent.rb:431
192
192
  msgid "Failed to generate fingerprint: %{message}"
193
193
  msgstr ""
194
194
 
195
- #: ../lib/puppet/application/agent.rb:450
195
+ #: ../lib/puppet/application/agent.rb:454
196
196
  msgid "Starting Puppet client version %{version}"
197
197
  msgstr ""
198
198
 
199
- #: ../lib/puppet/application/agent.rb:466
199
+ #: ../lib/puppet/application/agent.rb:470
200
200
  msgid "The puppet agent command does not take parameters"
201
201
  msgstr ""
202
202
 
203
- #: ../lib/puppet/application/apply.rb:35
203
+ #: ../lib/puppet/application/apply.rb:37
204
204
  msgid "Apply Puppet manifests locally"
205
205
  msgstr ""
206
206
 
207
207
  #. TRANSLATORS "puppet apply" is a program command and should not be translated
208
208
  #. TRANSLATORS "puppet apply" is a program command and should not be translated
209
- #: ../lib/puppet/application/apply.rb:209 ../lib/puppet/application/apply.rb:322
209
+ #: ../lib/puppet/application/apply.rb:212 ../lib/puppet/application/apply.rb:340
210
210
  msgid "For puppet apply"
211
211
  msgstr ""
212
212
 
213
- #: ../lib/puppet/application/apply.rb:217
213
+ #: ../lib/puppet/application/apply.rb:220
214
214
  msgid "%{file} is not readable"
215
215
  msgstr ""
216
216
 
217
- #: ../lib/puppet/application/apply.rb:288 ../lib/puppet/application/script.rb:241
217
+ #: ../lib/puppet/application/apply.rb:306 ../lib/puppet/application/script.rb:241
218
218
  msgid "Exiting"
219
219
  msgstr ""
220
220
 
221
- #: ../lib/puppet/application/apply.rb:332
221
+ #: ../lib/puppet/application/apply.rb:350
222
222
  msgid "Could not deserialize catalog from %{format}: %{detail}"
223
223
  msgstr ""
224
224
 
225
- #: ../lib/puppet/application/apply.rb:353 ../lib/puppet/application/script.rb:146
225
+ #: ../lib/puppet/application/apply.rb:371 ../lib/puppet/application/script.rb:146
226
226
  msgid "Could not find facts for %{node}"
227
227
  msgstr ""
228
228
 
229
- #: ../lib/puppet/application/apply.rb:365 ../lib/puppet/application/script.rb:154
229
+ #: ../lib/puppet/application/apply.rb:383 ../lib/puppet/application/script.rb:154
230
230
  msgid "Could not find node %{node}"
231
231
  msgstr ""
232
232
 
233
- #: ../lib/puppet/application/apply.rb:378 ../lib/puppet/application/script.rb:139
233
+ #: ../lib/puppet/application/apply.rb:396 ../lib/puppet/application/script.rb:139
234
234
  msgid "Could not find file %{manifest}"
235
235
  msgstr ""
236
236
 
237
- #: ../lib/puppet/application/apply.rb:379
237
+ #: ../lib/puppet/application/apply.rb:397
238
238
  msgid "Only one file can be applied per run. Skipping %{files}"
239
239
  msgstr ""
240
240
 
@@ -426,7 +426,7 @@ msgstr ""
426
426
  msgid "Invalid parameter setting %{setting}"
427
427
  msgstr ""
428
428
 
429
- #: ../lib/puppet/application/resource.rb:240
429
+ #: ../lib/puppet/application/resource.rb:241
430
430
  msgid "Listing all file instances is not supported. Please specify a file or directory, e.g. puppet resource file /etc"
431
431
  msgstr ""
432
432
 
@@ -534,93 +534,133 @@ msgstr ""
534
534
  msgid "Not using cached catalog because its environment '%{catalog_env}' does not match '%{local_env}'"
535
535
  msgstr ""
536
536
 
537
- #: ../lib/puppet/configurer.rb:100 ../lib/puppet/configurer.rb:182
537
+ #: ../lib/puppet/configurer.rb:100 ../lib/puppet/configurer.rb:275
538
538
  msgid "Using cached catalog from environment '%{catalog_env}'"
539
539
  msgstr ""
540
540
 
541
- #: ../lib/puppet/configurer.rb:175
541
+ #: ../lib/puppet/configurer.rb:133
542
+ msgid "The current total number of facts: %{size} exceeds the number of facts limit: %{max_size}"
543
+ msgstr ""
544
+
545
+ #: ../lib/puppet/configurer.rb:137
546
+ msgid "Fact %{name} with length: '%{length}' exceeds the length limit: %{limit}"
547
+ msgstr ""
548
+
549
+ #: ../lib/puppet/configurer.rb:141
550
+ msgid "The current number of top level facts: %{size} exceeds the top facts limit: %{max_size}"
551
+ msgstr ""
552
+
553
+ #: ../lib/puppet/configurer.rb:145
554
+ msgid "Fact value '%{value}' with the value length: '%{length}' exceeds the value length limit: %{max_length}"
555
+ msgstr ""
556
+
557
+ #: ../lib/puppet/configurer.rb:149
558
+ msgid "Payload with the current size of: '%{payload}' exceeds the payload size limit: %{max_size}"
559
+ msgstr ""
560
+
561
+ #: ../lib/puppet/configurer.rb:187
562
+ msgid "The size of the payload is %{payload}"
563
+ msgstr ""
564
+
565
+ #: ../lib/puppet/configurer.rb:217
566
+ msgid "The total number of facts registered is %{number_of_facts}"
567
+ msgstr ""
568
+
569
+ #: ../lib/puppet/configurer.rb:268
542
570
  msgid "Could not retrieve catalog; skipping run"
543
571
  msgstr ""
544
572
 
545
- #: ../lib/puppet/configurer.rb:191
573
+ #: ../lib/puppet/configurer.rb:284
546
574
  msgid "Applied catalog in %{seconds} seconds"
547
575
  msgstr ""
548
576
 
549
- #: ../lib/puppet/configurer.rb:225
577
+ #: ../lib/puppet/configurer.rb:318
550
578
  msgid "Could not select a functional puppet server from server_list: '%{server_list}'"
551
579
  msgstr ""
552
580
 
553
581
  #. TRANSLATORS 'server_list' is the name of a setting and should not be translated
554
- #: ../lib/puppet/configurer.rb:239
582
+ #: ../lib/puppet/configurer.rb:332
555
583
  msgid "Selected puppet server from the `server_list` setting: %{server}:%{port}"
556
584
  msgstr ""
557
585
 
558
- #: ../lib/puppet/configurer.rb:275
586
+ #: ../lib/puppet/configurer.rb:369
559
587
  msgid "Local environment: '%{local_env}' doesn't match the environment of the cached catalog '%{catalog_env}', switching agent to '%{catalog_env}'."
560
588
  msgstr ""
561
589
 
562
- #: ../lib/puppet/configurer.rb:320
563
- msgid "Local environment: '%{local_env}' doesn't match server specified node environment '%{node_env}', switching agent to '%{node_env}'."
590
+ #: ../lib/puppet/configurer.rb:392
591
+ msgid "Environment not passed via CLI and no catalog was given, attempting to find out the last server-specified environment"
564
592
  msgstr ""
565
593
 
566
- #: ../lib/puppet/configurer.rb:335
567
- msgid "Using configured environment '%{env}'"
594
+ #: ../lib/puppet/configurer.rb:399
595
+ msgid "Could not find a usable environment in the lastrunfile. Either the file does not exist, does not have the required keys, or the values of 'initial_environment' and 'converged_environment' are identical."
568
596
  msgstr ""
569
597
 
570
- #: ../lib/puppet/configurer.rb:339
571
- msgid "Unable to fetch my node definition, but the agent run will continue:"
598
+ #: ../lib/puppet/configurer.rb:403
599
+ msgid "Using environment '%{env}'"
572
600
  msgstr ""
573
601
 
574
- #: ../lib/puppet/configurer.rb:367
602
+ #: ../lib/puppet/configurer.rb:427
575
603
  msgid "Not using catalog because its environment '%{catalog_env}' does not match agent specified environment '%{local_env}' and strict_environment_mode is set"
576
604
  msgstr ""
577
605
 
578
- #: ../lib/puppet/configurer.rb:378
606
+ #: ../lib/puppet/configurer.rb:438
579
607
  msgid "Catalog environment didn't stabilize after %{tries} fetches, aborting run"
580
608
  msgstr ""
581
609
 
582
- #: ../lib/puppet/configurer.rb:380
610
+ #: ../lib/puppet/configurer.rb:440
583
611
  msgid "Local environment: '%{local_env}' doesn't match server specified environment '%{catalog_env}', restarting agent run with environment '%{catalog_env}'"
584
612
  msgstr ""
585
613
 
586
- #: ../lib/puppet/configurer.rb:434
614
+ #: ../lib/puppet/configurer.rb:496
587
615
  msgid "Failed to apply catalog: %{detail}"
588
616
  msgstr ""
589
617
 
590
- #: ../lib/puppet/configurer.rb:463 ../lib/puppet/http/resolver/server_list.rb:64 ../lib/puppet/http/resolver/server_list.rb:68
618
+ #: ../lib/puppet/configurer.rb:527
619
+ msgid "Environment '%{environment}' not found on server, skipping initial pluginsync."
620
+ msgstr ""
621
+
622
+ #: ../lib/puppet/configurer.rb:544 ../lib/puppet/http/resolver/server_list.rb:64 ../lib/puppet/http/resolver/server_list.rb:68
591
623
  msgid "Puppet server %{host}:%{port} is unavailable: %{code} %{reason}"
592
624
  msgstr ""
593
625
 
594
626
  #. TRANSLATORS 'server_list' is the name of a setting and should not be translated
595
- #: ../lib/puppet/configurer.rb:467 ../lib/puppet/http/resolver/server_list.rb:73 ../lib/puppet/http/resolver/server_list.rb:76
627
+ #: ../lib/puppet/configurer.rb:548 ../lib/puppet/http/resolver/server_list.rb:73 ../lib/puppet/http/resolver/server_list.rb:76
596
628
  msgid "Unable to connect to server from server_list setting: %{detail}"
597
629
  msgstr ""
598
630
 
599
- #: ../lib/puppet/configurer.rb:478 ../lib/puppet/face/report.rb:47
631
+ #: ../lib/puppet/configurer.rb:564
632
+ msgid "Found last server-specified environment: %{environment}"
633
+ msgstr ""
634
+
635
+ #: ../lib/puppet/configurer.rb:567
636
+ msgid "Could not find last server-specified environment: %{detail}"
637
+ msgstr ""
638
+
639
+ #: ../lib/puppet/configurer.rb:584 ../lib/puppet/face/report.rb:47
600
640
  msgid "Could not send report: %{detail}"
601
641
  msgstr ""
602
642
 
603
- #: ../lib/puppet/configurer.rb:487
643
+ #: ../lib/puppet/configurer.rb:593
604
644
  msgid "Could not save last run local report: %{detail}"
605
645
  msgstr ""
606
646
 
607
- #: ../lib/puppet/configurer.rb:506
647
+ #: ../lib/puppet/configurer.rb:612
608
648
  msgid "Uploading facts for %{node} to %{server}"
609
649
  msgstr ""
610
650
 
611
- #: ../lib/puppet/configurer.rb:514
651
+ #: ../lib/puppet/configurer.rb:620
612
652
  msgid "Failed to submit facts: %{detail}"
613
653
  msgstr ""
614
654
 
615
- #: ../lib/puppet/configurer.rb:529
655
+ #: ../lib/puppet/configurer.rb:635
616
656
  msgid "Could not run command from %{setting}: %{detail}"
617
657
  msgstr ""
618
658
 
619
- #: ../lib/puppet/configurer.rb:547
659
+ #: ../lib/puppet/configurer.rb:664
620
660
  msgid "Could not retrieve catalog from cache: %{detail}"
621
661
  msgstr ""
622
662
 
623
- #: ../lib/puppet/configurer.rb:568
663
+ #: ../lib/puppet/configurer.rb:686
624
664
  msgid "Could not retrieve catalog from remote server: %{detail}"
625
665
  msgstr ""
626
666
 
@@ -660,7 +700,7 @@ msgstr ""
660
700
  msgid "TrustedInformation expected a certificate, but none was given."
661
701
  msgstr ""
662
702
 
663
- #: ../lib/puppet/context/trusted_information.rb:104 ../lib/puppet/parser/scope.rb:835
703
+ #: ../lib/puppet/context/trusted_information.rb:104 ../lib/puppet/parser/scope.rb:836
664
704
  msgid "Unsupported data type: '%{klass}'"
665
705
  msgstr ""
666
706
 
@@ -720,7 +760,7 @@ msgid "Invalid value '%{value}' for parameter %{name}. Allowed values are '%{all
720
760
  msgstr ""
721
761
 
722
762
  #. TRANSLATORS 'pluginsync' is a setting and should not be translated
723
- #: ../lib/puppet/defaults.rb:1919
763
+ #: ../lib/puppet/defaults.rb:1950
724
764
  msgid "Setting 'pluginsync' is deprecated."
725
765
  msgstr ""
726
766
 
@@ -1589,15 +1629,15 @@ msgstr ""
1589
1629
  msgid "Relative paths must not be fully qualified"
1590
1630
  msgstr ""
1591
1631
 
1592
- #: ../lib/puppet/file_serving/configuration.rb:55
1632
+ #: ../lib/puppet/file_serving/configuration.rb:56
1593
1633
  msgid "Cannot find file: Invalid mount '%{mount_name}'"
1594
1634
  msgstr ""
1595
1635
 
1596
- #: ../lib/puppet/file_serving/configuration.rb:56
1636
+ #: ../lib/puppet/file_serving/configuration.rb:57
1597
1637
  msgid "Cannot find file: Invalid relative path '%{path}'"
1598
1638
  msgstr ""
1599
1639
 
1600
- #: ../lib/puppet/file_serving/configuration.rb:104
1640
+ #: ../lib/puppet/file_serving/configuration.rb:106
1601
1641
  msgid "Error parsing fileserver configuration: %{detail}; using old configuration"
1602
1642
  msgstr ""
1603
1643
 
@@ -1625,11 +1665,11 @@ msgstr ""
1625
1665
  msgid "%{mount} is already mounted at %{name} at %{error_location}"
1626
1666
  msgstr ""
1627
1667
 
1628
- #: ../lib/puppet/file_serving/configuration/parser.rb:98
1668
+ #: ../lib/puppet/file_serving/configuration/parser.rb:100
1629
1669
  msgid "Removing mount \"%{mount}\": %{detail}"
1630
1670
  msgstr ""
1631
1671
 
1632
- #: ../lib/puppet/file_serving/configuration/parser.rb:102
1672
+ #: ../lib/puppet/file_serving/configuration/parser.rb:104
1633
1673
  msgid "The '%{mount}' module can not have a path. Ignoring attempt to set it"
1634
1674
  msgstr ""
1635
1675
 
@@ -1719,7 +1759,7 @@ msgstr ""
1719
1759
  msgid "No client; expanding '%{path}' with local host"
1720
1760
  msgstr ""
1721
1761
 
1722
- #: ../lib/puppet/file_serving/mount/modules.rb:8
1762
+ #: ../lib/puppet/file_serving/mount/modules.rb:8 ../lib/puppet/file_serving/mount/scripts.rb:6
1723
1763
  msgid "No module specified"
1724
1764
  msgstr ""
1725
1765
 
@@ -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
 
@@ -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
 
@@ -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
 
@@ -3210,11 +3250,11 @@ msgstr ""
3210
3250
  msgid "Resolving dependencies ..."
3211
3251
  msgstr ""
3212
3252
 
3213
- #: ../lib/puppet/module_tool/applications/installer.rb:212
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:215
3257
+ #: ../lib/puppet/module_tool/applications/installer.rb:219
3218
3258
  msgid "Installing -- do not interrupt ..."
3219
3259
  msgstr ""
3220
3260
 
@@ -3884,7 +3924,7 @@ msgstr ""
3884
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."
3885
3925
  msgstr ""
3886
3926
 
3887
- #: ../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
3888
3928
  msgid "Could not parse for environment %{env}: %{detail}"
3889
3929
  msgstr ""
3890
3930
 
@@ -4313,111 +4353,111 @@ msgstr ""
4313
4353
  msgid "Duplicate parameter '%{param}' for on %{resource}"
4314
4354
  msgstr ""
4315
4355
 
4316
- #: ../lib/puppet/parser/scope.rb:155
4356
+ #: ../lib/puppet/parser/scope.rb:156
4317
4357
  msgid "Numerical variables cannot be changed. Attempt to set $%{name}"
4318
4358
  msgstr ""
4319
4359
 
4320
- #: ../lib/puppet/parser/scope.rb:160
4360
+ #: ../lib/puppet/parser/scope.rb:161
4321
4361
  msgid "Numerical variables cannot be deleted: Attempt to delete: $%{name}"
4322
4362
  msgstr ""
4323
4363
 
4324
- #: ../lib/puppet/parser/scope.rb:214
4364
+ #: ../lib/puppet/parser/scope.rb:215
4325
4365
  msgid "%{callee}: expects a value for parameter $%{to}"
4326
4366
  msgstr ""
4327
4367
 
4328
- #: ../lib/puppet/parser/scope.rb:215
4368
+ #: ../lib/puppet/parser/scope.rb:216
4329
4369
  msgid "%{callee}: default expression for $%{from} tries to illegally access not yet evaluated $%{to}"
4330
4370
  msgstr ""
4331
4371
 
4332
- #: ../lib/puppet/parser/scope.rb:234
4372
+ #: ../lib/puppet/parser/scope.rb:235
4333
4373
  msgid "Attempt to assign variable %{name} when evaluating parameters"
4334
4374
  msgstr ""
4335
4375
 
4336
- #: ../lib/puppet/parser/scope.rb:377
4376
+ #: ../lib/puppet/parser/scope.rb:378
4337
4377
  msgid "you must pass a compiler instance to a new scope object"
4338
4378
  msgstr ""
4339
4379
 
4340
- #: ../lib/puppet/parser/scope.rb:493
4380
+ #: ../lib/puppet/parser/scope.rb:494
4341
4381
  msgid "Scope variable name %{name} is a %{klass}, not a string"
4342
4382
  msgstr ""
4343
4383
 
4344
- #: ../lib/puppet/parser/scope.rb:655
4384
+ #: ../lib/puppet/parser/scope.rb:656
4345
4385
  msgid "class %{classname} could not be found"
4346
4386
  msgstr ""
4347
4387
 
4348
- #: ../lib/puppet/parser/scope.rb:657
4388
+ #: ../lib/puppet/parser/scope.rb:658
4349
4389
  msgid "class %{classname} has not been evaluated"
4350
4390
  msgstr ""
4351
4391
 
4352
- #: ../lib/puppet/parser/scope.rb:703
4392
+ #: ../lib/puppet/parser/scope.rb:704
4353
4393
  msgid "Default already defined for %{type} { %{param} }; cannot redefine"
4354
4394
  msgstr ""
4355
4395
 
4356
- #: ../lib/puppet/parser/scope.rb:763
4396
+ #: ../lib/puppet/parser/scope.rb:764
4357
4397
  msgid "Cannot assign to a numeric match result variable '$%{name}'"
4358
4398
  msgstr ""
4359
4399
 
4360
- #: ../lib/puppet/parser/scope.rb:766
4400
+ #: ../lib/puppet/parser/scope.rb:767
4361
4401
  msgid "Scope variable name %{name} is a %{class_type}, not a string"
4362
4402
  msgstr ""
4363
4403
 
4364
- #: ../lib/puppet/parser/scope.rb:771 ../lib/puppet/parser/scope.rb:776
4404
+ #: ../lib/puppet/parser/scope.rb:772 ../lib/puppet/parser/scope.rb:777
4365
4405
  msgid "Attempt to assign to a reserved variable name: '%{name}'"
4366
4406
  msgstr ""
4367
4407
 
4368
- #: ../lib/puppet/parser/scope.rb:781
4408
+ #: ../lib/puppet/parser/scope.rb:782
4369
4409
  msgid "Cannot reassign variable '$%{name}'"
4370
4410
  msgstr ""
4371
4411
 
4372
- #: ../lib/puppet/parser/scope.rb:1012
4412
+ #: ../lib/puppet/parser/scope.rb:1013
4373
4413
  msgid "Invalid regex match data. Got a %{klass}"
4374
4414
  msgstr ""
4375
4415
 
4376
- #: ../lib/puppet/parser/scope.rb:1020
4416
+ #: ../lib/puppet/parser/scope.rb:1021
4377
4417
  msgid "Scope#find_resource_type() is no longer supported, use Puppet::Pops::Evaluator::Runtime3ResourceSupport instead"
4378
4418
  msgstr ""
4379
4419
 
4380
- #: ../lib/puppet/parser/scope.rb:1025
4420
+ #: ../lib/puppet/parser/scope.rb:1026
4381
4421
  msgid "Scope#find_builtin_resource_type() is no longer supported, use Puppet::Pops::Evaluator::Runtime3ResourceSupport instead"
4382
4422
  msgstr ""
4383
4423
 
4384
- #: ../lib/puppet/parser/scope.rb:1030
4424
+ #: ../lib/puppet/parser/scope.rb:1031
4385
4425
  msgid "Scope#find_defined_resource_type() is no longer supported, use Puppet::Pops::Evaluator::Runtime3ResourceSupport instead"
4386
4426
  msgstr ""
4387
4427
 
4388
- #: ../lib/puppet/parser/scope.rb:1044
4428
+ #: ../lib/puppet/parser/scope.rb:1045
4389
4429
  msgid "Function %{name} not defined despite being loaded!"
4390
4430
  msgstr ""
4391
4431
 
4392
- #: ../lib/puppet/parser/scope.rb:1051
4432
+ #: ../lib/puppet/parser/scope.rb:1052
4393
4433
  msgid "Scope#resolve_type_and_title() is no longer supported, use Puppet::Pops::Evaluator::Runtime3ResourceSupport instead"
4394
4434
  msgstr ""
4395
4435
 
4396
- #: ../lib/puppet/parser/scope.rb:1071
4436
+ #: ../lib/puppet/parser/scope.rb:1072
4397
4437
  msgid "Cannot use undef as a class name"
4398
4438
  msgstr ""
4399
4439
 
4400
- #: ../lib/puppet/parser/scope.rb:1073
4440
+ #: ../lib/puppet/parser/scope.rb:1074
4401
4441
  msgid "Cannot use empty string as a class name"
4402
4442
  msgstr ""
4403
4443
 
4404
4444
  #. TRANSLATORS "Class" and "Type" are Puppet keywords and should not be translated
4405
- #: ../lib/puppet/parser/scope.rb:1082
4445
+ #: ../lib/puppet/parser/scope.rb:1083
4406
4446
  msgid "Cannot use an unspecific Class[] Type"
4407
4447
  msgstr ""
4408
4448
 
4409
4449
  #. TRANSLATORS "Resource" is a class name and should not be translated
4410
- #: ../lib/puppet/parser/scope.rb:1109
4450
+ #: ../lib/puppet/parser/scope.rb:1110
4411
4451
  msgid "Cannot use an unspecific Resource[] where a Resource['class', name] is expected"
4412
4452
  msgstr ""
4413
4453
 
4414
4454
  #. TRANSLATORS "Resource" is a class name and should not be translated
4415
- #: ../lib/puppet/parser/scope.rb:1113
4455
+ #: ../lib/puppet/parser/scope.rb:1114
4416
4456
  msgid "Cannot use a Resource[%{type_name}] where a Resource['class', name] is expected"
4417
4457
  msgstr ""
4418
4458
 
4419
4459
  #. TRANSLATORS "Resource" is a class name and should not be translated
4420
- #: ../lib/puppet/parser/scope.rb:1117
4460
+ #: ../lib/puppet/parser/scope.rb:1118
4421
4461
  msgid "Cannot use an unspecific Resource['class'] where a Resource['class', name] is expected"
4422
4462
  msgstr ""
4423
4463
 
@@ -4430,15 +4470,15 @@ msgstr ""
4430
4470
  msgid "having multiple named scopes is not supported when scripting"
4431
4471
  msgstr ""
4432
4472
 
4433
- #: ../lib/puppet/parser/templatewrapper.rb:66
4473
+ #: ../lib/puppet/parser/templatewrapper.rb:67
4434
4474
  msgid "Could not find template '%{filename}'"
4435
4475
  msgstr ""
4436
4476
 
4437
- #: ../lib/puppet/parser/templatewrapper.rb:83
4477
+ #: ../lib/puppet/parser/templatewrapper.rb:84
4438
4478
  msgid "Bound template variables for %{template_source} in %%{seconds} seconds"
4439
4479
  msgstr ""
4440
4480
 
4441
- #: ../lib/puppet/parser/templatewrapper.rb:91
4481
+ #: ../lib/puppet/parser/templatewrapper.rb:92
4442
4482
  msgid "Interpolated template %{template_source} in %%{seconds} seconds"
4443
4483
  msgstr ""
4444
4484
 
@@ -5578,47 +5618,47 @@ msgstr ""
5578
5618
  msgid "Lookup of key '%{key}' failed: %{detail}"
5579
5619
  msgstr ""
5580
5620
 
5581
- #: ../lib/puppet/pops/lookup/lookup_adapter.rb:295
5621
+ #: ../lib/puppet/pops/lookup/lookup_adapter.rb:296
5582
5622
  msgid "value of %{opts} must be a hash"
5583
5623
  msgstr ""
5584
5624
 
5585
- #: ../lib/puppet/pops/lookup/lookup_adapter.rb:302
5625
+ #: ../lib/puppet/pops/lookup/lookup_adapter.rb:303
5586
5626
  msgid "all %{opts} patterns must match a key starting with module name '%{module_name}'"
5587
5627
  msgstr ""
5588
5628
 
5589
- #: ../lib/puppet/pops/lookup/lookup_adapter.rb:306
5629
+ #: ../lib/puppet/pops/lookup/lookup_adapter.rb:307
5590
5630
  msgid "all %{opts} keys must start with module name '%{module_name}'"
5591
5631
  msgstr ""
5592
5632
 
5593
- #: ../lib/puppet/pops/lookup/lookup_adapter.rb:431
5633
+ #: ../lib/puppet/pops/lookup/lookup_adapter.rb:432
5594
5634
  msgid "Defining \"data_provider\": \"%{name}\" in metadata.json is deprecated. It is ignored since a '%{config}' with version >= 5 is present"
5595
5635
  msgstr ""
5596
5636
 
5597
- #: ../lib/puppet/pops/lookup/lookup_adapter.rb:441
5637
+ #: ../lib/puppet/pops/lookup/lookup_adapter.rb:442
5598
5638
  msgid "Defining \"data_provider\": \"%{name}\" in metadata.json is deprecated."
5599
5639
  msgstr ""
5600
5640
 
5601
- #: ../lib/puppet/pops/lookup/lookup_adapter.rb:442 ../lib/puppet/pops/lookup/lookup_adapter.rb:496
5641
+ #: ../lib/puppet/pops/lookup/lookup_adapter.rb:443 ../lib/puppet/pops/lookup/lookup_adapter.rb:497
5602
5642
  msgid "A '%{hiera_config}' file should be used instead"
5603
5643
  msgstr ""
5604
5644
 
5605
- #: ../lib/puppet/pops/lookup/lookup_adapter.rb:456
5645
+ #: ../lib/puppet/pops/lookup/lookup_adapter.rb:457
5606
5646
  msgid "Environment '%{env}', cannot find module_data_provider '%{provider}'"
5607
5647
  msgstr ""
5608
5648
 
5609
- #: ../lib/puppet/pops/lookup/lookup_adapter.rb:480
5649
+ #: ../lib/puppet/pops/lookup/lookup_adapter.rb:481
5610
5650
  msgid "Defining environment_data_provider='%{provider_name}' in environment.conf is deprecated"
5611
5651
  msgstr ""
5612
5652
 
5613
- #: ../lib/puppet/pops/lookup/lookup_adapter.rb:484
5653
+ #: ../lib/puppet/pops/lookup/lookup_adapter.rb:485
5614
5654
  msgid "The environment_data_provider='%{provider_name}' setting is ignored since '%{config_path}' version >= 5"
5615
5655
  msgstr ""
5616
5656
 
5617
- #: ../lib/puppet/pops/lookup/lookup_adapter.rb:495
5657
+ #: ../lib/puppet/pops/lookup/lookup_adapter.rb:496
5618
5658
  msgid "Defining environment_data_provider='%{provider_name}' in environment.conf is deprecated."
5619
5659
  msgstr ""
5620
5660
 
5621
- #: ../lib/puppet/pops/lookup/lookup_adapter.rb:511
5661
+ #: ../lib/puppet/pops/lookup/lookup_adapter.rb:512
5622
5662
  msgid "Environment '%{env}', cannot find environment_data_provider '%{provider}'"
5623
5663
  msgstr ""
5624
5664
 
@@ -5673,11 +5713,11 @@ msgid "Unacceptable transform - found an Object without a rule: %{klass}"
5673
5713
  msgstr ""
5674
5714
 
5675
5715
  #. TRANSLATORS 'NUMBER' refers to a method name and the 'name_or_numeric' was the passed in value and should not be translated
5676
- #: ../lib/puppet/pops/model/factory.rb:812
5716
+ #: ../lib/puppet/pops/model/factory.rb:813
5677
5717
  msgid "Internal Error, NUMBER token does not contain a valid number, %{name_or_numeric}"
5678
5718
  msgstr ""
5679
5719
 
5680
- #: ../lib/puppet/pops/model/factory.rb:1121
5720
+ #: ../lib/puppet/pops/model/factory.rb:1122
5681
5721
  msgid "can only concatenate strings, got %{class_name}"
5682
5722
  msgstr ""
5683
5723
 
@@ -6247,11 +6287,11 @@ msgstr ""
6247
6287
  msgid "No AIX group exists with a group name or gid of %{group}!"
6248
6288
  msgstr ""
6249
6289
 
6250
- #: ../lib/puppet/provider/group/groupadd.rb:11 ../lib/puppet/provider/group/pw.rb:14
6290
+ #: ../lib/puppet/provider/group/groupadd.rb:14 ../lib/puppet/provider/group/pw.rb:14
6251
6291
  msgid "GID must be an integer"
6252
6292
  msgstr ""
6253
6293
 
6254
- #: ../lib/puppet/provider/group/groupadd.rb:44
6294
+ #: ../lib/puppet/provider/group/groupadd.rb:47
6255
6295
  msgid "GID %{resource} already exists, use allowdupe to force group creation"
6256
6296
  msgstr ""
6257
6297
 
@@ -6592,19 +6632,23 @@ msgstr ""
6592
6632
  msgid "Implicit version %{should} has %{n} possible matches"
6593
6633
  msgstr ""
6594
6634
 
6595
- #: ../lib/puppet/provider/package/pkg.rb:170
6635
+ #: ../lib/puppet/provider/package/pkg.rb:177
6596
6636
  msgid "Selecting version '%{version}' for implicit '%{should}'"
6597
6637
  msgstr ""
6598
6638
 
6599
- #: ../lib/puppet/provider/package/pkg.rb:175
6639
+ #: ../lib/puppet/provider/package/pkg.rb:182
6600
6640
  msgid "No version of %{name} matching %{should} is installable, even though the package is currently installed"
6601
6641
  msgstr ""
6602
6642
 
6603
- #: ../lib/puppet/provider/package/pkg.rb:194
6643
+ #: ../lib/puppet/provider/package/pkg.rb:201
6604
6644
  msgid "pkg warning: %{warnings}"
6605
6645
  msgstr ""
6606
6646
 
6607
- #: ../lib/puppet/provider/package/pkg.rb:238 ../lib/puppet/provider/package/pkg.rb:264
6647
+ #: ../lib/puppet/provider/package/pkg.rb:245
6648
+ msgid "Pkg could not install %{name} after %{tries} tries. Aborting run"
6649
+ msgstr ""
6650
+
6651
+ #: ../lib/puppet/provider/package/pkg.rb:255 ../lib/puppet/provider/package/pkg.rb:281
6608
6652
  msgid "Unable to update %{package}"
6609
6653
  msgstr ""
6610
6654
 
@@ -7067,39 +7111,39 @@ msgstr ""
7067
7111
  msgid "%{param} is a metaparameter; please choose another parameter name in the %{name} definition"
7068
7112
  msgstr ""
7069
7113
 
7070
- #: ../lib/puppet/resource/type_collection.rb:63
7114
+ #: ../lib/puppet/resource/type_collection.rb:64
7071
7115
  msgid "Class '%{klass}' is already defined%{error}; cannot redefine"
7072
7116
  msgstr ""
7073
7117
 
7074
- #: ../lib/puppet/resource/type_collection.rb:64
7118
+ #: ../lib/puppet/resource/type_collection.rb:65
7075
7119
  msgid "Node '%{klass}' is already defined%{error}; cannot be redefined as a class"
7076
7120
  msgstr ""
7077
7121
 
7078
- #: ../lib/puppet/resource/type_collection.rb:65
7122
+ #: ../lib/puppet/resource/type_collection.rb:66
7079
7123
  msgid "Definition '%{klass}' is already defined%{error}; cannot be redefined as a class"
7080
7124
  msgstr ""
7081
7125
 
7082
- #: ../lib/puppet/resource/type_collection.rb:96
7126
+ #: ../lib/puppet/resource/type_collection.rb:97
7083
7127
  msgid "Node '%{name}' is already defined%{error}; cannot redefine"
7084
7128
  msgstr ""
7085
7129
 
7086
- #: ../lib/puppet/resource/type_collection.rb:97
7130
+ #: ../lib/puppet/resource/type_collection.rb:98
7087
7131
  msgid "Class '%{klass}' is already defined%{error}; cannot be redefined as a node"
7088
7132
  msgstr ""
7089
7133
 
7090
- #: ../lib/puppet/resource/type_collection.rb:132
7134
+ #: ../lib/puppet/resource/type_collection.rb:133
7091
7135
  msgid "'%{name}' is already defined%{error} as a class; cannot redefine as a definition"
7092
7136
  msgstr ""
7093
7137
 
7094
- #: ../lib/puppet/resource/type_collection.rb:133
7138
+ #: ../lib/puppet/resource/type_collection.rb:134
7095
7139
  msgid "Definition '%{name}' is already defined%{error}; cannot be redefined"
7096
7140
  msgstr ""
7097
7141
 
7098
- #: ../lib/puppet/resource/type_collection.rb:177
7142
+ #: ../lib/puppet/resource/type_collection.rb:178
7099
7143
  msgid "Execution of config_version command `%{cmd}` failed: %{message}"
7100
7144
  msgstr ""
7101
7145
 
7102
- #: ../lib/puppet/resource/type_collection.rb:198
7146
+ #: ../lib/puppet/resource/type_collection.rb:199
7103
7147
  msgid "Not attempting to load %{type} %{fqname} as this object was missing during a prior compilation"
7104
7148
  msgstr ""
7105
7149
 
@@ -7283,11 +7327,11 @@ msgstr ""
7283
7327
  msgid "Invalid settings in environment.conf at '%{path_to_conf_file}'. The following unknown setting(s) are being ignored: %{ignored_settings}"
7284
7328
  msgstr ""
7285
7329
 
7286
- #: ../lib/puppet/settings/file_setting.rb:183
7330
+ #: ../lib/puppet/settings/file_setting.rb:178
7287
7331
  msgid "Settings parameter '%{name}' is undefined"
7288
7332
  msgstr ""
7289
7333
 
7290
- #: ../lib/puppet/settings/file_setting.rb:219
7334
+ #: ../lib/puppet/settings/file_setting.rb:214
7291
7335
  msgid "The %{parameter} parameter for the setting '%{name}' must be either 'root' or 'service', not '%{value}'"
7292
7336
  msgstr ""
7293
7337
 
@@ -7968,72 +8012,72 @@ msgstr ""
7968
8012
  msgid "Could not set %{attribute} on %{class_name}: %{detail}"
7969
8013
  msgstr ""
7970
8014
 
7971
- #: ../lib/puppet/type/exec.rb:118
8015
+ #: ../lib/puppet/type/exec.rb:121
7972
8016
  msgid "executed successfully"
7973
8017
  msgstr ""
7974
8018
 
7975
- #: ../lib/puppet/type/exec.rb:152
8019
+ #: ../lib/puppet/type/exec.rb:155
7976
8020
  msgid "Command exceeded timeout"
7977
8021
  msgstr ""
7978
8022
 
7979
- #: ../lib/puppet/type/exec.rb:181
8023
+ #: ../lib/puppet/type/exec.rb:184
7980
8024
  msgid "[command redacted] returned %{status} instead of one of [%{expected}]"
7981
8025
  msgstr ""
7982
8026
 
7983
- #: ../lib/puppet/type/exec.rb:183
8027
+ #: ../lib/puppet/type/exec.rb:186
7984
8028
  msgid "'%{cmd}' returned %{status} instead of one of [%{expected}]"
7985
8029
  msgstr ""
7986
8030
 
7987
- #: ../lib/puppet/type/exec.rb:205
8031
+ #: ../lib/puppet/type/exec.rb:216
7988
8032
  msgid "Command must be a String or Array<String>, got value of class %{klass}"
7989
8033
  msgstr ""
7990
8034
 
7991
- #: ../lib/puppet/type/exec.rb:238
8035
+ #: ../lib/puppet/type/exec.rb:249
7992
8036
  msgid "Unable to execute commands as other users on Windows"
7993
8037
  msgstr ""
7994
8038
 
7995
- #: ../lib/puppet/type/exec.rb:240
8039
+ #: ../lib/puppet/type/exec.rb:251
7996
8040
  msgid "Only root can execute commands as other users"
7997
8041
  msgstr ""
7998
8042
 
7999
- #: ../lib/puppet/type/exec.rb:296
8043
+ #: ../lib/puppet/type/exec.rb:307
8000
8044
  msgid "Invalid environment setting '%{value}'"
8001
8045
  msgstr ""
8002
8046
 
8003
- #: ../lib/puppet/type/exec.rb:309
8047
+ #: ../lib/puppet/type/exec.rb:320
8004
8048
  msgid "The umask specification is invalid: %{value}"
8005
8049
  msgstr ""
8006
8050
 
8007
- #: ../lib/puppet/type/exec.rb:325
8051
+ #: ../lib/puppet/type/exec.rb:336
8008
8052
  msgid "The timeout must be a number."
8009
8053
  msgstr ""
8010
8054
 
8011
- #: ../lib/puppet/type/exec.rb:342
8055
+ #: ../lib/puppet/type/exec.rb:353
8012
8056
  msgid "Tries must be an integer"
8013
8057
  msgstr ""
8014
8058
 
8015
- #: ../lib/puppet/type/exec.rb:346
8059
+ #: ../lib/puppet/type/exec.rb:357
8016
8060
  msgid "Tries must be an integer >= 1"
8017
8061
  msgstr ""
8018
8062
 
8019
- #: ../lib/puppet/type/exec.rb:359
8063
+ #: ../lib/puppet/type/exec.rb:370
8020
8064
  msgid "try_sleep must be a number"
8021
8065
  msgstr ""
8022
8066
 
8023
- #: ../lib/puppet/type/exec.rb:363
8067
+ #: ../lib/puppet/type/exec.rb:374
8024
8068
  msgid "try_sleep cannot be a negative number"
8025
8069
  msgstr ""
8026
8070
 
8027
8071
  #. TRANSLATORS 'creates' is a parameter name and should not be translated
8028
- #: ../lib/puppet/type/exec.rb:435
8072
+ #: ../lib/puppet/type/exec.rb:446
8029
8073
  msgid "Checking that 'creates' path '%{creates_path}' exists"
8030
8074
  msgstr ""
8031
8075
 
8032
- #: ../lib/puppet/type/exec.rb:484 ../lib/puppet/type/exec.rb:544
8076
+ #: ../lib/puppet/type/exec.rb:498 ../lib/puppet/type/exec.rb:561
8033
8077
  msgid "Check %{value} exceeded timeout"
8034
8078
  msgstr ""
8035
8079
 
8036
- #: ../lib/puppet/type/exec.rb:636
8080
+ #: ../lib/puppet/type/exec.rb:653
8037
8081
  msgid "'%{cmd}' won't be executed because of failed check '%{check}'"
8038
8082
  msgstr ""
8039
8083
 
@@ -8178,11 +8222,11 @@ msgstr ""
8178
8222
  msgid "Could not create %{type} filebucket: %{detail}"
8179
8223
  msgstr ""
8180
8224
 
8181
- #: ../lib/puppet/type/group.rb:60
8225
+ #: ../lib/puppet/type/group.rb:59
8182
8226
  msgid "GID cannot be deleted"
8183
8227
  msgstr ""
8184
8228
 
8185
- #: ../lib/puppet/type/group.rb:72
8229
+ #: ../lib/puppet/type/group.rb:71
8186
8230
  msgid "Invalid GID %{gid}"
8187
8231
  msgstr ""
8188
8232
 
@@ -8270,15 +8314,15 @@ msgstr ""
8270
8314
  msgid "%{value} is not a valid day of the week"
8271
8315
  msgstr ""
8272
8316
 
8273
- #: ../lib/puppet/type/service.rb:151 ../lib/puppet/type/user.rb:272
8317
+ #: ../lib/puppet/type/service.rb:151 ../lib/puppet/type/user.rb:271
8274
8318
  msgid "Passwords cannot include ':'"
8275
8319
  msgstr ""
8276
8320
 
8277
- #: ../lib/puppet/type/service.rb:278
8321
+ #: ../lib/puppet/type/service.rb:283
8278
8322
  msgid "\"%{value}\" is not a positive integer: the timeout parameter must be specified as a positive integer"
8279
8323
  msgstr ""
8280
8324
 
8281
- #: ../lib/puppet/type/service.rb:300
8325
+ #: ../lib/puppet/type/service.rb:305
8282
8326
  msgid "The 'logonaccount' parameter is mandatory when setting 'logonpassword'."
8283
8327
  msgstr ""
8284
8328
 
@@ -8313,81 +8357,81 @@ msgstr ""
8313
8357
  msgid "File does not exist"
8314
8358
  msgstr ""
8315
8359
 
8316
- #: ../lib/puppet/type/user.rb:183
8360
+ #: ../lib/puppet/type/user.rb:182
8317
8361
  msgid "Could not find group(s) %{groups}"
8318
8362
  msgstr ""
8319
8363
 
8320
- #: ../lib/puppet/type/user.rb:292
8364
+ #: ../lib/puppet/type/user.rb:291
8321
8365
  msgid "Password minimum age must be provided as a number."
8322
8366
  msgstr ""
8323
8367
 
8324
- #: ../lib/puppet/type/user.rb:311
8368
+ #: ../lib/puppet/type/user.rb:310
8325
8369
  msgid "Password maximum age must be provided as a number."
8326
8370
  msgstr ""
8327
8371
 
8328
- #: ../lib/puppet/type/user.rb:342
8372
+ #: ../lib/puppet/type/user.rb:341
8329
8373
  msgid "Group names must be provided, not GID numbers."
8330
8374
  msgstr ""
8331
8375
 
8332
- #: ../lib/puppet/type/user.rb:344
8376
+ #: ../lib/puppet/type/user.rb:343
8333
8377
  msgid "Group names must be provided as an array, not a comma-separated list."
8334
8378
  msgstr ""
8335
8379
 
8336
- #: ../lib/puppet/type/user.rb:345
8380
+ #: ../lib/puppet/type/user.rb:344
8337
8381
  msgid "Group names must not be empty. If you want to specify \"no groups\" pass an empty array"
8338
8382
  msgstr ""
8339
8383
 
8340
- #: ../lib/puppet/type/user.rb:438
8384
+ #: ../lib/puppet/type/user.rb:437
8341
8385
  msgid "User provider %{name} can not manage home directories"
8342
8386
  msgstr ""
8343
8387
 
8344
8388
  #. TRANSLATORS YYYY-MM-DD represents a date with a four-digit year, a two-digit month, and a two-digit day,
8345
8389
  #. TRANSLATORS separated by dashes.
8346
- #: ../lib/puppet/type/user.rb:455
8390
+ #: ../lib/puppet/type/user.rb:454
8347
8391
  msgid "Expiry dates must be YYYY-MM-DD or the string \"absent\""
8348
8392
  msgstr ""
8349
8393
 
8350
- #: ../lib/puppet/type/user.rb:522
8394
+ #: ../lib/puppet/type/user.rb:521
8351
8395
  msgid "Role names must be provided, not numbers"
8352
8396
  msgstr ""
8353
8397
 
8354
- #: ../lib/puppet/type/user.rb:524
8398
+ #: ../lib/puppet/type/user.rb:523
8355
8399
  msgid "Role names must be provided as an array, not a comma-separated list"
8356
8400
  msgstr ""
8357
8401
 
8358
- #: ../lib/puppet/type/user.rb:561
8402
+ #: ../lib/puppet/type/user.rb:560
8359
8403
  msgid "Auth names must be provided, not numbers"
8360
8404
  msgstr ""
8361
8405
 
8362
- #: ../lib/puppet/type/user.rb:563
8406
+ #: ../lib/puppet/type/user.rb:562
8363
8407
  msgid "Auth names must be provided as an array, not a comma-separated list"
8364
8408
  msgstr ""
8365
8409
 
8366
- #: ../lib/puppet/type/user.rb:587
8410
+ #: ../lib/puppet/type/user.rb:586
8367
8411
  msgid "Profile names must be provided, not numbers"
8368
8412
  msgstr ""
8369
8413
 
8370
- #: ../lib/puppet/type/user.rb:589
8414
+ #: ../lib/puppet/type/user.rb:588
8371
8415
  msgid "Profile names must be provided as an array, not a comma-separated list"
8372
8416
  msgstr ""
8373
8417
 
8374
- #: ../lib/puppet/type/user.rb:701
8418
+ #: ../lib/puppet/type/user.rb:700
8375
8419
  msgid "Ssh_authorized_key type is not available. Cannot purge SSH keys."
8376
8420
  msgstr ""
8377
8421
 
8378
- #: ../lib/puppet/type/user.rb:739
8422
+ #: ../lib/puppet/type/user.rb:738
8379
8423
  msgid "Each entry for purge_ssh_keys must be a string, not a %{klass}"
8380
8424
  msgstr ""
8381
8425
 
8382
- #: ../lib/puppet/type/user.rb:742
8426
+ #: ../lib/puppet/type/user.rb:741
8383
8427
  msgid "Paths to keyfiles must be absolute, not %{entry}"
8384
8428
  msgstr ""
8385
8429
 
8386
- #: ../lib/puppet/type/user.rb:746
8430
+ #: ../lib/puppet/type/user.rb:745
8387
8431
  msgid "purge_ssh_keys must be true, false, or an array of file names, not %{value}"
8388
8432
  msgstr ""
8389
8433
 
8390
- #: ../lib/puppet/type/user.rb:755
8434
+ #: ../lib/puppet/type/user.rb:754
8391
8435
  msgid "Class name must be provided."
8392
8436
  msgstr ""
8393
8437
 
@@ -8921,60 +8965,60 @@ msgid "Failed to set process priority to '%{priority}'"
8921
8965
  msgstr ""
8922
8966
 
8923
8967
  #. TRANSLATORS "Log.close_all" is a method name and should not be translated
8924
- #: ../lib/puppet/util/log.rb:67
8968
+ #: ../lib/puppet/util/log.rb:66
8925
8969
  msgid "Log.close_all failed to close %{destinations}"
8926
8970
  msgstr ""
8927
8971
 
8928
- #: ../lib/puppet/util/log.rb:86
8972
+ #: ../lib/puppet/util/log.rb:85
8929
8973
  msgid "Logs require a level"
8930
8974
  msgstr ""
8931
8975
 
8932
- #: ../lib/puppet/util/log.rb:87 ../lib/puppet/util/log.rb:378 ../lib/puppet/util/windows/eventlog.rb:99
8976
+ #: ../lib/puppet/util/log.rb:86 ../lib/puppet/util/log.rb:377 ../lib/puppet/util/windows/eventlog.rb:99
8933
8977
  msgid "Invalid log level %{level}"
8934
8978
  msgstr ""
8935
8979
 
8936
- #: ../lib/puppet/util/log.rb:109
8980
+ #: ../lib/puppet/util/log.rb:108
8937
8981
  msgid "Invalid loglevel %{level}"
8938
8982
  msgstr ""
8939
8983
 
8940
- #: ../lib/puppet/util/log.rb:136
8984
+ #: ../lib/puppet/util/log.rb:135
8941
8985
  msgid "Unknown destination type %{dest}"
8942
8986
  msgstr ""
8943
8987
 
8944
- #: ../lib/puppet/util/log.rb:176
8988
+ #: ../lib/puppet/util/log.rb:175
8945
8989
  msgid "Received a Log attribute with invalid encoding:%{log_message}"
8946
8990
  msgstr ""
8947
8991
 
8948
- #: ../lib/puppet/util/log.rb:178
8992
+ #: ../lib/puppet/util/log.rb:177
8949
8993
  msgid ""
8950
8994
  "Backtrace:\n"
8951
8995
  "%{backtrace}"
8952
8996
  msgstr ""
8953
8997
 
8954
- #: ../lib/puppet/util/log.rb:232
8998
+ #: ../lib/puppet/util/log.rb:231
8955
8999
  msgid "Reopening log files"
8956
9000
  msgstr ""
8957
9001
 
8958
9002
  #. TRANSLATORS 'Puppet::Util::Log' refers to a Puppet source code class
8959
- #: ../lib/puppet/util/log.rb:368
9003
+ #: ../lib/puppet/util/log.rb:367
8960
9004
  msgid "Puppet::Util::Log requires a message"
8961
9005
  msgstr ""
8962
9006
 
8963
9007
  #. TRANSLATORS 'Puppet::Util::Log' refers to a Puppet source code class
8964
- #: ../lib/puppet/util/log.rb:374
9008
+ #: ../lib/puppet/util/log.rb:373
8965
9009
  msgid "Puppet::Util::Log requires a log level"
8966
9010
  msgstr ""
8967
9011
 
8968
9012
  #. TRANSLATORS 'Puppet::Util::Log' refers to a Puppet source code class
8969
- #: ../lib/puppet/util/log.rb:376
9013
+ #: ../lib/puppet/util/log.rb:375
8970
9014
  msgid "Puppet::Util::Log requires a symbol or string"
8971
9015
  msgstr ""
8972
9016
 
8973
- #: ../lib/puppet/util/log.rb:407
9017
+ #: ../lib/puppet/util/log.rb:406
8974
9018
  msgid "Could not parse for environment %{environment}: %{msg}"
8975
9019
  msgstr ""
8976
9020
 
8977
- #: ../lib/puppet/util/log.rb:409
9021
+ #: ../lib/puppet/util/log.rb:408
8978
9022
  msgid "%{msg} on node %{node}"
8979
9023
  msgstr ""
8980
9024
 
@@ -8986,20 +9030,20 @@ msgstr ""
8986
9030
  msgid "Creating log directory %{dir}"
8987
9031
  msgstr ""
8988
9032
 
8989
- #: ../lib/puppet/util/logging.rb:81 ../lib/puppet/util/logging.rb:105
9033
+ #: ../lib/puppet/util/logging.rb:79 ../lib/puppet/util/logging.rb:103
8990
9034
  msgid "Wrapped exception:"
8991
9035
  msgstr ""
8992
9036
 
8993
9037
  #. TRANSLATORS the literals ":file", ":line", and ":key" should not be translated
8994
- #: ../lib/puppet/util/logging.rb:162
9038
+ #: ../lib/puppet/util/logging.rb:160
8995
9039
  msgid "Need either :file and :line, or :key"
8996
9040
  msgstr ""
8997
9041
 
8998
- #: ../lib/puppet/util/logging.rb:192
9042
+ #: ../lib/puppet/util/logging.rb:190
8999
9043
  msgid "(file & line not available)"
9000
9044
  msgstr ""
9001
9045
 
9002
- #: ../lib/puppet/util/logging.rb:294
9046
+ #: ../lib/puppet/util/logging.rb:270
9003
9047
  msgid "(location: %{location})"
9004
9048
  msgstr ""
9005
9049
 
@@ -9167,19 +9211,19 @@ msgstr ""
9167
9211
  msgid "Creating state file %{file}"
9168
9212
  msgstr ""
9169
9213
 
9170
- #: ../lib/puppet/util/suidmanager.rb:104
9214
+ #: ../lib/puppet/util/suidmanager.rb:103
9171
9215
  msgid "No such group %{group}"
9172
9216
  msgstr ""
9173
9217
 
9174
- #: ../lib/puppet/util/suidmanager.rb:120
9218
+ #: ../lib/puppet/util/suidmanager.rb:119
9175
9219
  msgid "No such user %{user}"
9176
9220
  msgstr ""
9177
9221
 
9178
- #: ../lib/puppet/util/suidmanager.rb:148
9222
+ #: ../lib/puppet/util/suidmanager.rb:147
9179
9223
  msgid "Invalid id type %{type}"
9180
9224
  msgstr ""
9181
9225
 
9182
- #: ../lib/puppet/util/suidmanager.rb:151
9226
+ #: ../lib/puppet/util/suidmanager.rb:150
9183
9227
  msgid "Invalid %{klass}: %{id}"
9184
9228
  msgstr ""
9185
9229
 
@@ -9219,7 +9263,7 @@ msgstr ""
9219
9263
  msgid "%{error}%{rest} in symbolic mode %{modification}"
9220
9264
  msgstr ""
9221
9265
 
9222
- #: ../lib/puppet/util/tagging.rb:27
9266
+ #: ../lib/puppet/util/tagging.rb:28
9223
9267
  msgid "Invalid tag '%{name}'"
9224
9268
  msgstr ""
9225
9269
 
@@ -9449,7 +9493,7 @@ msgstr ""
9449
9493
  msgid "An attempt to set mode %{mode} on item %{path} would result in the group, SYSTEM, to have less than Full Control rights. This attempt has been corrected to Full Control"
9450
9494
  msgstr ""
9451
9495
 
9452
- #: ../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
9496
+ #: ../lib/puppet/util/windows/security.rb:433 ../lib/puppet/util/windows/security.rb:450 ../lib/puppet/util/windows/sid.rb:159 ../lib/puppet/util/windows/sid.rb:221 ../lib/puppet/util/windows/user.rb:58
9453
9497
  msgid "Invalid SID"
9454
9498
  msgstr ""
9455
9499
 
@@ -9621,23 +9665,23 @@ msgstr ""
9621
9665
  msgid "Failed to convert string SID: %{string_sid}"
9622
9666
  msgstr ""
9623
9667
 
9624
- #: ../lib/puppet/util/windows/user.rb:54
9668
+ #: ../lib/puppet/util/windows/user.rb:53
9625
9669
  msgid "Failed to create administrators SID"
9626
9670
  msgstr ""
9627
9671
 
9628
- #: ../lib/puppet/util/windows/user.rb:64
9672
+ #: ../lib/puppet/util/windows/user.rb:63
9629
9673
  msgid "Failed to check membership"
9630
9674
  msgstr ""
9631
9675
 
9632
- #: ../lib/puppet/util/windows/user.rb:104
9676
+ #: ../lib/puppet/util/windows/user.rb:103
9633
9677
  msgid "Failed to logon user %{name}"
9634
9678
  msgstr ""
9635
9679
 
9636
- #: ../lib/puppet/util/windows/user.rb:135
9680
+ #: ../lib/puppet/util/windows/user.rb:134
9637
9681
  msgid "Failed to load user profile %{user}"
9638
9682
  msgstr ""
9639
9683
 
9640
- #: ../lib/puppet/util/windows/user.rb:141
9684
+ #: ../lib/puppet/util/windows/user.rb:140
9641
9685
  msgid "Failed to unload user profile %{user}"
9642
9686
  msgstr ""
9643
9687