puppet 6.0.10-x86-mingw32 → 6.1.0-x86-mingw32

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

Potentially problematic release.


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

Files changed (748) hide show
  1. checksums.yaml +4 -4
  2. data/Gemfile +1 -0
  3. data/Gemfile.lock +31 -27
  4. data/Guardfile.example +76 -0
  5. data/LICENSE +189 -4
  6. data/MAINTAINERS +47 -0
  7. data/README.md +3 -3
  8. data/lib/hiera/scope.rb +0 -7
  9. data/lib/puppet.rb +6 -5
  10. data/lib/puppet/application.rb +3 -3
  11. data/lib/puppet/application/cert.rb +2 -2
  12. data/lib/puppet/application/device.rb +83 -109
  13. data/lib/puppet/application/filebucket.rb +1 -10
  14. data/lib/puppet/application/ssl.rb +0 -2
  15. data/lib/puppet/configurer.rb +9 -10
  16. data/lib/puppet/confine/false.rb +1 -7
  17. data/lib/puppet/confine/true.rb +1 -7
  18. data/lib/puppet/defaults.rb +39 -51
  19. data/lib/puppet/forge.rb +1 -4
  20. data/lib/puppet/functions/abs.rb +1 -1
  21. data/lib/puppet/functions/call.rb +1 -2
  22. data/lib/puppet/functions/new.rb +1 -1
  23. data/lib/puppet/indirector/request.rb +15 -26
  24. data/lib/puppet/network/http/connection.rb +12 -32
  25. data/lib/puppet/network/http/factory.rb +0 -5
  26. data/lib/puppet/pal/catalog_compiler.rb +96 -0
  27. data/lib/puppet/pal/compiler.rb +221 -0
  28. data/lib/puppet/pal/function_signature.rb +52 -0
  29. data/lib/puppet/pal/json_catalog_encoder.rb +67 -0
  30. data/lib/puppet/pal/pal_api.rb +15 -0
  31. data/lib/puppet/pal/pal_impl.rb +523 -0
  32. data/lib/puppet/pal/plan_signature.rb +71 -0
  33. data/lib/puppet/pal/script_compiler.rb +71 -0
  34. data/lib/puppet/pal/task_signature.rb +58 -0
  35. data/lib/puppet/parser/functions/generate.rb +7 -6
  36. data/lib/puppet/plugins/configuration.rb +5 -1
  37. data/lib/puppet/pops/evaluator/evaluator_impl.rb +5 -1
  38. data/lib/puppet/pops/evaluator/external_syntax_support.rb +3 -3
  39. data/lib/puppet/pops/issues.rb +0 -4
  40. data/lib/puppet/pops/loader/ruby_legacy_function_instantiator.rb +4 -60
  41. data/lib/puppet/pops/model/factory.rb +4 -38
  42. data/lib/puppet/pops/model/pn_transformer.rb +0 -5
  43. data/lib/puppet/pops/parser/egrammar.ra +2 -2
  44. data/lib/puppet/pops/parser/heredoc_support.rb +7 -17
  45. data/lib/puppet/pops/parser/lexer2.rb +1 -6
  46. data/lib/puppet/pops/parser/locator.rb +86 -106
  47. data/lib/puppet/pops/parser/parser_support.rb +2 -11
  48. data/lib/puppet/pops/types/string_converter.rb +7 -2
  49. data/lib/puppet/pops/types/type_mismatch_describer.rb +1 -1
  50. data/lib/puppet/pops/types/types.rb +3 -5
  51. data/lib/puppet/pops/validation/checker4_0.rb +13 -0
  52. data/lib/puppet/provider.rb +2 -1
  53. data/lib/puppet/provider/exec.rb +6 -1
  54. data/lib/puppet/provider/file/windows.rb +1 -49
  55. data/lib/puppet/provider/group/windows_adsi.rb +1 -4
  56. data/lib/puppet/provider/package.rb +0 -2
  57. data/lib/puppet/provider/package/dpkg.rb +2 -15
  58. data/lib/puppet/provider/package/gem.rb +42 -102
  59. data/lib/puppet/provider/package/pip.rb +111 -135
  60. data/lib/puppet/provider/package/pip3.rb +1 -1
  61. data/lib/puppet/provider/package/pkgng.rb +37 -21
  62. data/lib/puppet/provider/package/puppet_gem.rb +1 -1
  63. data/lib/puppet/provider/package/rpm.rb +16 -27
  64. data/lib/puppet/provider/package/windows.rb +1 -5
  65. data/lib/puppet/provider/package/yum.rb +1 -2
  66. data/lib/puppet/provider/service/systemd.rb +17 -0
  67. data/lib/puppet/provider/service/upstart.rb +5 -17
  68. data/lib/puppet/provider/service/windows.rb +8 -3
  69. data/lib/puppet/provider/user/directoryservice.rb +4 -16
  70. data/lib/puppet/provider/user/useradd.rb +13 -16
  71. data/lib/puppet/resource.rb +3 -1
  72. data/lib/puppet/rest/client.rb +83 -0
  73. data/lib/puppet/rest/route.rb +1 -1
  74. data/lib/puppet/settings.rb +5 -10
  75. data/lib/puppet/settings/server_list_setting.rb +0 -9
  76. data/lib/puppet/ssl/host.rb +11 -0
  77. data/lib/puppet/ssl/validator/default_validator.rb +0 -31
  78. data/lib/puppet/syntax_checkers/epp.rb +34 -0
  79. data/lib/puppet/syntax_checkers/pp.rb +34 -0
  80. data/lib/puppet/transaction.rb +7 -12
  81. data/lib/puppet/transaction/event_manager.rb +5 -1
  82. data/lib/puppet/transaction/resource_harness.rb +0 -1
  83. data/lib/puppet/type.rb +6 -0
  84. data/lib/puppet/type/exec.rb +5 -27
  85. data/lib/puppet/type/file/mode.rb +1 -6
  86. data/lib/puppet/type/file/source.rb +1 -0
  87. data/lib/puppet/type/filebucket.rb +8 -12
  88. data/lib/puppet/type/package.rb +11 -44
  89. data/lib/puppet/type/schedule.rb +0 -4
  90. data/lib/puppet/type/service.rb +12 -0
  91. data/lib/puppet/type/user.rb +1 -1
  92. data/lib/puppet/util/command_line.rb +1 -5
  93. data/lib/puppet/util/connection.rb +6 -15
  94. data/lib/puppet/util/http_proxy.rb +2 -3
  95. data/lib/puppet/util/log.rb +2 -7
  96. data/lib/puppet/util/pidlock.rb +1 -15
  97. data/lib/puppet/util/windows/process.rb +5 -73
  98. data/lib/puppet/util/windows/registry.rb +1 -7
  99. data/lib/puppet/util/windows/security.rb +8 -29
  100. data/lib/puppet/util/windows/service.rb +33 -27
  101. data/lib/puppet/util/windows/user.rb +4 -14
  102. data/lib/puppet/version.rb +1 -1
  103. data/lib/puppet_pal.rb +5 -1132
  104. data/locales/ja/puppet.po +297 -363
  105. data/locales/puppet.pot +445 -517
  106. data/man/man5/puppet.conf.5 +12 -20
  107. data/man/man8/puppet-agent.8 +1 -1
  108. data/man/man8/puppet-apply.8 +1 -1
  109. data/man/man8/puppet-catalog.8 +1 -1
  110. data/man/man8/puppet-config.8 +1 -1
  111. data/man/man8/puppet-describe.8 +1 -1
  112. data/man/man8/puppet-device.8 +1 -1
  113. data/man/man8/puppet-doc.8 +1 -1
  114. data/man/man8/puppet-epp.8 +1 -1
  115. data/man/man8/puppet-facts.8 +1 -1
  116. data/man/man8/puppet-filebucket.8 +2 -6
  117. data/man/man8/puppet-generate.8 +1 -1
  118. data/man/man8/puppet-help.8 +1 -1
  119. data/man/man8/puppet-key.8 +1 -1
  120. data/man/man8/puppet-lookup.8 +1 -1
  121. data/man/man8/puppet-man.8 +1 -1
  122. data/man/man8/puppet-module.8 +1 -1
  123. data/man/man8/puppet-node.8 +1 -1
  124. data/man/man8/puppet-parser.8 +1 -1
  125. data/man/man8/puppet-plugin.8 +1 -1
  126. data/man/man8/puppet-report.8 +1 -1
  127. data/man/man8/puppet-resource.8 +1 -1
  128. data/man/man8/puppet-script.8 +1 -1
  129. data/man/man8/puppet-ssl.8 +1 -1
  130. data/man/man8/puppet-status.8 +1 -1
  131. data/man/man8/puppet.8 +2 -2
  132. data/spec/fixtures/unit/provider/package/pkgng/pkg.query +7 -1
  133. data/spec/fixtures/unit/provider/package/pkgng/pkg.query.zsh +1 -0
  134. data/spec/integration/agent/logging_spec.rb +7 -5
  135. data/spec/integration/application/apply_spec.rb +16 -18
  136. data/spec/integration/application/doc_spec.rb +2 -1
  137. data/spec/integration/application/lookup_spec.rb +5 -5
  138. data/spec/integration/configurer_spec.rb +6 -5
  139. data/spec/integration/defaults_spec.rb +6 -5
  140. data/spec/integration/directory_environments_spec.rb +1 -1
  141. data/spec/integration/faces/config_spec.rb +4 -3
  142. data/spec/integration/faces/documentation_spec.rb +1 -0
  143. data/spec/integration/faces/plugin_spec.rb +1 -1
  144. data/spec/integration/file_bucket/file_spec.rb +4 -2
  145. data/spec/integration/file_serving/content_spec.rb +1 -0
  146. data/spec/integration/file_serving/fileset_spec.rb +1 -0
  147. data/spec/integration/file_serving/metadata_spec.rb +1 -0
  148. data/spec/integration/file_serving/terminus_helper_spec.rb +1 -0
  149. data/spec/integration/indirector/catalog/compiler_spec.rb +11 -10
  150. data/spec/integration/indirector/direct_file_server_spec.rb +1 -1
  151. data/spec/integration/indirector/facts/facter_spec.rb +5 -4
  152. data/spec/integration/indirector/file_content/file_server_spec.rb +8 -7
  153. data/spec/integration/indirector/file_metadata/file_server_spec.rb +8 -7
  154. data/spec/integration/network/authconfig_spec.rb +24 -23
  155. data/spec/integration/network/formats_spec.rb +1 -0
  156. data/spec/integration/node/environment_spec.rb +1 -0
  157. data/spec/integration/node/facts_spec.rb +10 -9
  158. data/spec/integration/node_spec.rb +7 -6
  159. data/spec/integration/parser/catalog_spec.rb +5 -1
  160. data/spec/integration/parser/collection_spec.rb +2 -1
  161. data/spec/integration/parser/compiler_spec.rb +6 -6
  162. data/spec/integration/parser/scope_spec.rb +1 -1
  163. data/spec/integration/parser/undef_param_spec.rb +1 -1
  164. data/spec/integration/provider/service/init_spec.rb +5 -4
  165. data/spec/integration/provider/service/systemd_spec.rb +2 -0
  166. data/spec/integration/provider/service/windows_spec.rb +2 -1
  167. data/spec/integration/reference/providers_spec.rb +2 -1
  168. data/spec/integration/reports_spec.rb +2 -1
  169. data/spec/integration/resource/catalog_spec.rb +17 -14
  170. data/spec/integration/resource/type_collection_spec.rb +5 -4
  171. data/spec/integration/ssl/certificate_request_spec.rb +1 -0
  172. data/spec/integration/ssl/host_spec.rb +2 -1
  173. data/spec/integration/ssl/key_spec.rb +1 -0
  174. data/spec/integration/test/test_helper_spec.rb +1 -0
  175. data/spec/integration/transaction/report_spec.rb +11 -6
  176. data/spec/integration/transaction_spec.rb +19 -18
  177. data/spec/integration/type/exec_spec.rb +1 -0
  178. data/spec/integration/type/file_spec.rb +33 -13
  179. data/spec/integration/type/package_spec.rb +24 -20
  180. data/spec/integration/type/tidy_spec.rb +2 -1
  181. data/spec/integration/type_spec.rb +1 -0
  182. data/spec/integration/util/autoload_spec.rb +2 -1
  183. data/spec/integration/util/rdoc/parser_spec.rb +1 -0
  184. data/spec/integration/util/settings_spec.rb +1 -0
  185. data/spec/integration/util/windows/adsi_spec.rb +5 -3
  186. data/spec/integration/util/windows/principal_spec.rb +1 -0
  187. data/spec/integration/util/windows/process_spec.rb +6 -4
  188. data/spec/integration/util/windows/registry_spec.rb +51 -93
  189. data/spec/integration/util/windows/security_spec.rb +4 -2
  190. data/spec/integration/util/windows/user_spec.rb +20 -37
  191. data/spec/integration/util_spec.rb +7 -4
  192. data/spec/lib/puppet_spec/compiler.rb +1 -1
  193. data/spec/lib/puppet_spec/files.rb +1 -0
  194. data/spec/lib/puppet_spec/module_tool/shared_functions.rb +1 -1
  195. data/spec/lib/puppet_spec/scope.rb +2 -1
  196. data/spec/shared_behaviours/all_parsedfile_providers.rb +1 -1
  197. data/spec/shared_behaviours/file_server_terminus.rb +9 -8
  198. data/spec/shared_behaviours/file_serving.rb +8 -6
  199. data/spec/shared_behaviours/file_serving_model.rb +5 -3
  200. data/spec/shared_behaviours/hiera_indirections.rb +4 -3
  201. data/spec/shared_behaviours/iterative_functions.rb +1 -0
  202. data/spec/shared_behaviours/memory_terminus.rb +2 -2
  203. data/spec/shared_examples/rhel_package_provider.rb +70 -112
  204. data/spec/spec_helper.rb +2 -11
  205. data/spec/unit/agent/disabler_spec.rb +5 -4
  206. data/spec/unit/agent/locker_spec.rb +13 -12
  207. data/spec/unit/agent_spec.rb +85 -80
  208. data/spec/unit/application/agent_spec.rb +93 -88
  209. data/spec/unit/application/apply_spec.rb +83 -82
  210. data/spec/unit/application/config_spec.rb +1 -0
  211. data/spec/unit/application/describe_spec.rb +7 -6
  212. data/spec/unit/application/device_spec.rb +419 -395
  213. data/spec/unit/application/doc_spec.rb +46 -44
  214. data/spec/unit/application/face_base_spec.rb +62 -61
  215. data/spec/unit/application/facts_spec.rb +4 -3
  216. data/spec/unit/application/filebucket_spec.rb +74 -66
  217. data/spec/unit/application/indirection_base_spec.rb +6 -8
  218. data/spec/unit/application/lookup_spec.rb +26 -26
  219. data/spec/unit/application/resource_spec.rb +48 -42
  220. data/spec/unit/application/ssl_spec.rb +3 -8
  221. data/spec/unit/application_spec.rb +98 -86
  222. data/spec/unit/capability_spec.rb +6 -6
  223. data/spec/unit/certificate_factory_spec.rb +5 -3
  224. data/spec/unit/configurer/downloader_spec.rb +21 -20
  225. data/spec/unit/configurer/fact_handler_spec.rb +3 -2
  226. data/spec/unit/configurer/plugin_handler_spec.rb +8 -41
  227. data/spec/unit/configurer_spec.rb +198 -194
  228. data/spec/unit/confine/exists_spec.rb +15 -17
  229. data/spec/unit/confine/false_spec.rb +6 -32
  230. data/spec/unit/confine/feature_spec.rb +5 -7
  231. data/spec/unit/confine/true_spec.rb +6 -32
  232. data/spec/unit/confine/variable_spec.rb +15 -14
  233. data/spec/unit/confine_collection_spec.rb +29 -28
  234. data/spec/unit/confine_spec.rb +14 -13
  235. data/spec/unit/confiner_spec.rb +11 -10
  236. data/spec/unit/context/trusted_information_spec.rb +1 -1
  237. data/spec/unit/daemon_spec.rb +36 -35
  238. data/spec/unit/data_providers/function_data_provider_spec.rb +1 -0
  239. data/spec/unit/data_providers/hiera_data_provider_spec.rb +1 -0
  240. data/spec/unit/datatypes_spec.rb +4 -3
  241. data/spec/unit/defaults_spec.rb +27 -18
  242. data/spec/unit/environments_spec.rb +7 -7
  243. data/spec/unit/etc_spec.rb +32 -30
  244. data/spec/unit/external/pson_spec.rb +1 -0
  245. data/spec/unit/face/catalog_spec.rb +1 -0
  246. data/spec/unit/face/config_spec.rb +35 -31
  247. data/spec/unit/face/epp_face_spec.rb +4 -3
  248. data/spec/unit/face/facts_spec.rb +6 -5
  249. data/spec/unit/face/generate_spec.rb +5 -4
  250. data/spec/unit/face/help_spec.rb +8 -7
  251. data/spec/unit/face/key_spec.rb +1 -0
  252. data/spec/unit/face/man_spec.rb +2 -1
  253. data/spec/unit/face/module/install_spec.rb +5 -3
  254. data/spec/unit/face/module/list_spec.rb +12 -2
  255. data/spec/unit/face/module/search_spec.rb +9 -11
  256. data/spec/unit/face/module/uninstall_spec.rb +8 -4
  257. data/spec/unit/face/node_spec.rb +24 -23
  258. data/spec/unit/face/parser_spec.rb +18 -3
  259. data/spec/unit/face/plugin_spec.rb +9 -36
  260. data/spec/unit/face/status_spec.rb +1 -0
  261. data/spec/unit/file_bucket/dipper_spec.rb +20 -24
  262. data/spec/unit/file_bucket/file_spec.rb +2 -0
  263. data/spec/unit/file_serving/base_spec.rb +15 -14
  264. data/spec/unit/file_serving/configuration/parser_spec.rb +28 -27
  265. data/spec/unit/file_serving/configuration_spec.rb +66 -63
  266. data/spec/unit/file_serving/content_spec.rb +11 -10
  267. data/spec/unit/file_serving/fileset_spec.rb +58 -63
  268. data/spec/unit/file_serving/http_metadata_spec.rb +7 -8
  269. data/spec/unit/file_serving/metadata_spec.rb +36 -36
  270. data/spec/unit/file_serving/mount/file_spec.rb +32 -31
  271. data/spec/unit/file_serving/mount/locales_spec.rb +24 -23
  272. data/spec/unit/file_serving/mount/modules_spec.rb +15 -14
  273. data/spec/unit/file_serving/mount/pluginfacts_spec.rb +24 -23
  274. data/spec/unit/file_serving/mount/plugins_spec.rb +24 -23
  275. data/spec/unit/file_serving/mount/tasks_spec.rb +15 -14
  276. data/spec/unit/file_serving/mount_spec.rb +1 -0
  277. data/spec/unit/file_serving/terminus_helper_spec.rb +42 -37
  278. data/spec/unit/file_serving/terminus_selector_spec.rb +13 -12
  279. data/spec/unit/file_system/uniquefile_spec.rb +4 -4
  280. data/spec/unit/file_system_spec.rb +2 -2
  281. data/spec/unit/forge/errors_spec.rb +1 -1
  282. data/spec/unit/forge/forge_spec.rb +16 -17
  283. data/spec/unit/forge/module_release_spec.rb +18 -18
  284. data/spec/unit/forge/repository_spec.rb +30 -29
  285. data/spec/unit/forge_spec.rb +11 -15
  286. data/spec/unit/functions/binary_file_spec.rb +3 -3
  287. data/spec/unit/functions/contain_spec.rb +2 -0
  288. data/spec/unit/functions/defined_spec.rb +1 -0
  289. data/spec/unit/functions/epp_spec.rb +2 -2
  290. data/spec/unit/functions/find_file_spec.rb +7 -7
  291. data/spec/unit/functions/include_spec.rb +4 -0
  292. data/spec/unit/functions/lookup_fixture_spec.rb +1 -0
  293. data/spec/unit/functions/lookup_spec.rb +2 -1
  294. data/spec/unit/functions/module_directory_spec.rb +12 -12
  295. data/spec/unit/functions/new_spec.rb +0 -15
  296. data/spec/unit/functions/require_spec.rb +3 -0
  297. data/spec/unit/functions/shared.rb +8 -5
  298. data/spec/unit/functions/versioncmp_spec.rb +2 -1
  299. data/spec/unit/functions4_spec.rb +10 -9
  300. data/spec/unit/gettext/config_spec.rb +4 -4
  301. data/spec/unit/gettext/module_loading_spec.rb +7 -7
  302. data/spec/unit/graph/rb_tree_map_spec.rb +2 -0
  303. data/spec/unit/graph/relationship_graph_spec.rb +2 -1
  304. data/spec/unit/graph/simple_graph_spec.rb +10 -9
  305. data/spec/unit/hiera/scope_spec.rb +0 -7
  306. data/spec/unit/hiera_puppet_spec.rb +20 -20
  307. data/spec/unit/indirector/catalog/compiler_spec.rb +149 -147
  308. data/spec/unit/indirector/catalog/json_spec.rb +2 -1
  309. data/spec/unit/indirector/catalog/msgpack_spec.rb +1 -0
  310. data/spec/unit/indirector/catalog/rest_spec.rb +1 -0
  311. data/spec/unit/indirector/catalog/store_configs_spec.rb +1 -0
  312. data/spec/unit/indirector/catalog/yaml_spec.rb +1 -0
  313. data/spec/unit/indirector/certificate/file_spec.rb +1 -0
  314. data/spec/unit/indirector/certificate/rest_spec.rb +10 -8
  315. data/spec/unit/indirector/certificate_request/file_spec.rb +1 -0
  316. data/spec/unit/indirector/certificate_request/rest_spec.rb +1 -0
  317. data/spec/unit/indirector/direct_file_server_spec.rb +18 -17
  318. data/spec/unit/indirector/envelope_spec.rb +2 -1
  319. data/spec/unit/indirector/exec_spec.rb +5 -4
  320. data/spec/unit/indirector/face_spec.rb +9 -9
  321. data/spec/unit/indirector/facts/facter_spec.rb +43 -37
  322. data/spec/unit/indirector/facts/network_device_spec.rb +9 -8
  323. data/spec/unit/indirector/facts/rest_spec.rb +8 -7
  324. data/spec/unit/indirector/facts/store_configs_spec.rb +1 -0
  325. data/spec/unit/indirector/facts/yaml_spec.rb +1 -0
  326. data/spec/unit/indirector/file_bucket_file/file_spec.rb +4 -3
  327. data/spec/unit/indirector/file_bucket_file/rest_spec.rb +1 -0
  328. data/spec/unit/indirector/file_bucket_file/selector_spec.rb +5 -4
  329. data/spec/unit/indirector/file_content/file_server_spec.rb +1 -0
  330. data/spec/unit/indirector/file_content/file_spec.rb +1 -0
  331. data/spec/unit/indirector/file_content/rest_spec.rb +1 -0
  332. data/spec/unit/indirector/file_content/selector_spec.rb +1 -0
  333. data/spec/unit/indirector/file_metadata/file_server_spec.rb +1 -0
  334. data/spec/unit/indirector/file_metadata/file_spec.rb +13 -12
  335. data/spec/unit/indirector/file_metadata/rest_spec.rb +1 -0
  336. data/spec/unit/indirector/file_metadata/selector_spec.rb +1 -0
  337. data/spec/unit/indirector/file_server_spec.rb +87 -87
  338. data/spec/unit/indirector/indirection_spec.rb +226 -242
  339. data/spec/unit/indirector/json_spec.rb +9 -7
  340. data/spec/unit/indirector/key/file_spec.rb +22 -21
  341. data/spec/unit/indirector/memory_spec.rb +7 -6
  342. data/spec/unit/indirector/msgpack_spec.rb +9 -7
  343. data/spec/unit/indirector/node/exec_spec.rb +3 -2
  344. data/spec/unit/indirector/node/memory_spec.rb +4 -2
  345. data/spec/unit/indirector/node/msgpack_spec.rb +1 -0
  346. data/spec/unit/indirector/node/plain_spec.rb +4 -2
  347. data/spec/unit/indirector/node/rest_spec.rb +1 -0
  348. data/spec/unit/indirector/node/store_configs_spec.rb +1 -0
  349. data/spec/unit/indirector/node/yaml_spec.rb +1 -0
  350. data/spec/unit/indirector/none_spec.rb +5 -5
  351. data/spec/unit/indirector/plain_spec.rb +8 -7
  352. data/spec/unit/indirector/report/msgpack_spec.rb +1 -0
  353. data/spec/unit/indirector/report/processor_spec.rb +22 -21
  354. data/spec/unit/indirector/report/rest_spec.rb +12 -11
  355. data/spec/unit/indirector/report/yaml_spec.rb +1 -0
  356. data/spec/unit/indirector/request_spec.rb +12 -11
  357. data/spec/unit/indirector/resource/ral_spec.rb +54 -47
  358. data/spec/unit/indirector/resource/store_configs_spec.rb +1 -0
  359. data/spec/unit/indirector/rest_spec.rb +110 -113
  360. data/spec/unit/indirector/ssl_file_spec.rb +65 -64
  361. data/spec/unit/indirector/status/local_spec.rb +1 -0
  362. data/spec/unit/indirector/status/rest_spec.rb +1 -0
  363. data/spec/unit/indirector/store_configs_spec.rb +1 -0
  364. data/spec/unit/indirector/terminus_spec.rb +27 -27
  365. data/spec/unit/indirector/yaml_spec.rb +6 -5
  366. data/spec/unit/indirector_spec.rb +2 -1
  367. data/spec/unit/info_service_spec.rb +1 -1
  368. data/spec/unit/interface/action_builder_spec.rb +1 -0
  369. data/spec/unit/interface/action_manager_spec.rb +1 -0
  370. data/spec/unit/interface/action_spec.rb +3 -2
  371. data/spec/unit/interface/documentation_spec.rb +1 -0
  372. data/spec/unit/interface/face_collection_spec.rb +12 -19
  373. data/spec/unit/interface_spec.rb +3 -3
  374. data/spec/unit/man_spec.rb +4 -3
  375. data/spec/unit/module_spec.rb +51 -46
  376. data/spec/unit/module_tool/applications/installer_spec.rb +11 -10
  377. data/spec/unit/module_tool/applications/searcher_spec.rb +3 -3
  378. data/spec/unit/module_tool/applications/uninstaller_spec.rb +2 -1
  379. data/spec/unit/module_tool/applications/unpacker_spec.rb +13 -13
  380. data/spec/unit/module_tool/applications/upgrader_spec.rb +5 -5
  381. data/spec/unit/module_tool/install_directory_spec.rb +8 -8
  382. data/spec/unit/module_tool/installed_modules_spec.rb +3 -3
  383. data/spec/unit/module_tool/tar/gnu_spec.rb +6 -6
  384. data/spec/unit/module_tool/tar/mini_spec.rb +12 -12
  385. data/spec/unit/module_tool/tar_spec.rb +13 -12
  386. data/spec/unit/module_tool_spec.rb +12 -7
  387. data/spec/unit/network/auth_config_parser_spec.rb +13 -11
  388. data/spec/unit/network/authconfig_spec.rb +18 -17
  389. data/spec/unit/network/authorization_spec.rb +5 -4
  390. data/spec/unit/network/authstore_spec.rb +1 -0
  391. data/spec/unit/network/format_handler_spec.rb +1 -0
  392. data/spec/unit/network/format_spec.rb +10 -9
  393. data/spec/unit/network/format_support_spec.rb +29 -28
  394. data/spec/unit/network/formats_spec.rb +5 -4
  395. data/spec/unit/network/http/api/indirected_routes_spec.rb +29 -24
  396. data/spec/unit/network/http/api/master/v3/authorization_spec.rb +2 -2
  397. data/spec/unit/network/http/api/master/v3/environment_spec.rb +1 -1
  398. data/spec/unit/network/http/api/master/v3/environments_spec.rb +7 -6
  399. data/spec/unit/network/http/api_spec.rb +2 -0
  400. data/spec/unit/network/http/compression_spec.rb +22 -21
  401. data/spec/unit/network/http/connection_spec.rb +121 -30
  402. data/spec/unit/network/http/factory_spec.rb +6 -11
  403. data/spec/unit/network/http/handler_spec.rb +18 -9
  404. data/spec/unit/network/http/nocache_pool_spec.rb +7 -6
  405. data/spec/unit/network/http/pool_spec.rb +29 -28
  406. data/spec/unit/network/http/request_spec.rb +2 -0
  407. data/spec/unit/network/http/response_spec.rb +13 -11
  408. data/spec/unit/network/http/route_spec.rb +1 -0
  409. data/spec/unit/network/http/session_spec.rb +2 -1
  410. data/spec/unit/network/http/site_spec.rb +1 -0
  411. data/spec/unit/network/http_pool_spec.rb +9 -18
  412. data/spec/unit/network/http_spec.rb +1 -0
  413. data/spec/unit/network/resolver_spec.rb +26 -25
  414. data/spec/unit/network/rights_spec.rb +53 -52
  415. data/spec/unit/node/environment_spec.rb +15 -14
  416. data/spec/unit/node/facts_spec.rb +7 -5
  417. data/spec/unit/node_spec.rb +10 -4
  418. data/spec/unit/other/selinux_spec.rb +1 -0
  419. data/spec/unit/parameter/boolean_spec.rb +2 -1
  420. data/spec/unit/parameter/package_options_spec.rb +2 -1
  421. data/spec/unit/parameter/path_spec.rb +1 -0
  422. data/spec/unit/parameter/value_collection_spec.rb +1 -0
  423. data/spec/unit/parameter/value_spec.rb +1 -0
  424. data/spec/unit/parameter_spec.rb +9 -9
  425. data/spec/unit/parser/ast/block_expression_spec.rb +8 -6
  426. data/spec/unit/parser/ast/leaf_spec.rb +21 -20
  427. data/spec/unit/parser/compiler_spec.rb +96 -84
  428. data/spec/unit/parser/environment_compiler_spec.rb +8 -7
  429. data/spec/unit/parser/files_spec.rb +1 -0
  430. data/spec/unit/parser/functions/create_resources_spec.rb +1 -1
  431. data/spec/unit/parser/functions/digest_spec.rb +1 -0
  432. data/spec/unit/parser/functions/fail_spec.rb +2 -1
  433. data/spec/unit/parser/functions/file_spec.rb +14 -13
  434. data/spec/unit/parser/functions/fqdn_rand_spec.rb +6 -5
  435. data/spec/unit/parser/functions/generate_spec.rb +8 -7
  436. data/spec/unit/parser/functions/inline_template_spec.rb +1 -0
  437. data/spec/unit/parser/functions/regsubst_spec.rb +1 -0
  438. data/spec/unit/parser/functions/scanf_spec.rb +1 -0
  439. data/spec/unit/parser/functions/shellquote_spec.rb +1 -0
  440. data/spec/unit/parser/functions/split_spec.rb +1 -0
  441. data/spec/unit/parser/functions/sprintf_spec.rb +1 -0
  442. data/spec/unit/parser/functions/tag_spec.rb +2 -1
  443. data/spec/unit/parser/functions/tagged_spec.rb +3 -2
  444. data/spec/unit/parser/functions/template_spec.rb +13 -13
  445. data/spec/unit/parser/functions/versioncmp_spec.rb +2 -1
  446. data/spec/unit/parser/functions_spec.rb +7 -6
  447. data/spec/unit/parser/relationship_spec.rb +1 -0
  448. data/spec/unit/parser/resource_spec.rb +42 -42
  449. data/spec/unit/parser/scope_spec.rb +35 -39
  450. data/spec/unit/parser/templatewrapper_spec.rb +12 -11
  451. data/spec/unit/parser/type_loader_spec.rb +19 -17
  452. data/spec/unit/pops/adaptable_spec.rb +1 -0
  453. data/spec/unit/pops/benchmark_spec.rb +1 -0
  454. data/spec/unit/pops/evaluator/access_ops_spec.rb +1 -0
  455. data/spec/unit/pops/evaluator/arithmetic_ops_spec.rb +1 -0
  456. data/spec/unit/pops/evaluator/basic_expressions_spec.rb +1 -0
  457. data/spec/unit/pops/evaluator/collections_ops_spec.rb +1 -0
  458. data/spec/unit/pops/evaluator/comparison_ops_spec.rb +1 -0
  459. data/spec/unit/pops/evaluator/conditionals_spec.rb +1 -0
  460. data/spec/unit/pops/evaluator/evaluating_parser_spec.rb +47 -10
  461. data/spec/unit/pops/evaluator/logical_ops_spec.rb +1 -0
  462. data/spec/unit/pops/evaluator/runtime3_converter_spec.rb +1 -0
  463. data/spec/unit/pops/evaluator/string_interpolation_spec.rb +1 -0
  464. data/spec/unit/pops/evaluator/variables_spec.rb +1 -0
  465. data/spec/unit/pops/factory_spec.rb +4 -3
  466. data/spec/unit/pops/issues_spec.rb +20 -19
  467. data/spec/unit/pops/loaders/loader_spec.rb +4 -8
  468. data/spec/unit/pops/loaders/loaders_spec.rb +31 -101
  469. data/spec/unit/pops/lookup/context_spec.rb +1 -0
  470. data/spec/unit/pops/lookup/interpolation_spec.rb +3 -2
  471. data/spec/unit/pops/merge_strategy_spec.rb +1 -0
  472. data/spec/unit/pops/migration_spec.rb +5 -3
  473. data/spec/unit/pops/model/model_spec.rb +1 -0
  474. data/spec/unit/pops/model/pn_transformer_spec.rb +1 -4
  475. data/spec/unit/pops/parser/locator_spec.rb +6 -48
  476. data/spec/unit/pops/parser/parse_application_spec.rb +1 -0
  477. data/spec/unit/pops/parser/parse_basic_expressions_spec.rb +1 -0
  478. data/spec/unit/pops/parser/parse_calls_spec.rb +1 -0
  479. data/spec/unit/pops/parser/parse_capabilities_spec.rb +1 -0
  480. data/spec/unit/pops/parser/parse_conditionals_spec.rb +1 -0
  481. data/spec/unit/pops/parser/parse_containers_spec.rb +1 -0
  482. data/spec/unit/pops/parser/parse_heredoc_spec.rb +15 -111
  483. data/spec/unit/pops/parser/parse_plan_spec.rb +1 -0
  484. data/spec/unit/pops/parser/parse_resource_spec.rb +1 -0
  485. data/spec/unit/pops/parser/parse_site_spec.rb +1 -0
  486. data/spec/unit/pops/parser/pn_parser_spec.rb +1 -0
  487. data/spec/unit/pops/pn_spec.rb +1 -0
  488. data/spec/unit/pops/resource/resource_type_impl_spec.rb +1 -0
  489. data/spec/unit/pops/serialization/serialization_spec.rb +1 -1
  490. data/spec/unit/pops/serialization/to_from_hr_spec.rb +1 -1
  491. data/spec/unit/pops/types/recursion_guard_spec.rb +10 -10
  492. data/spec/unit/pops/types/ruby_generator_spec.rb +2 -2
  493. data/spec/unit/pops/types/string_converter_spec.rb +5 -1
  494. data/spec/unit/pops/types/type_asserter_spec.rb +2 -2
  495. data/spec/unit/pops/types/type_calculator_spec.rb +30 -30
  496. data/spec/unit/pops/types/type_mismatch_describer_spec.rb +0 -9
  497. data/spec/unit/pops/types/type_parser_spec.rb +13 -13
  498. data/spec/unit/pops/validator/validator_spec.rb +2 -1
  499. data/spec/unit/pops/visitor_spec.rb +1 -0
  500. data/spec/unit/property/boolean_spec.rb +1 -1
  501. data/spec/unit/property/ensure_spec.rb +1 -0
  502. data/spec/unit/property/keyvalue_spec.rb +34 -32
  503. data/spec/unit/property/list_spec.rb +27 -26
  504. data/spec/unit/property/ordered_list_spec.rb +14 -10
  505. data/spec/unit/property_spec.rb +43 -42
  506. data/spec/unit/provider/aix_object_spec.rb +45 -47
  507. data/spec/unit/provider/command_spec.rb +9 -9
  508. data/spec/unit/provider/exec/posix_spec.rb +31 -6
  509. data/spec/unit/provider/exec/shell_spec.rb +1 -0
  510. data/spec/unit/provider/exec/windows_spec.rb +4 -2
  511. data/spec/unit/provider/exec_spec.rb +1 -0
  512. data/spec/unit/provider/file/posix_spec.rb +24 -22
  513. data/spec/unit/provider/file/windows_spec.rb +17 -15
  514. data/spec/unit/provider/group/aix_spec.rb +2 -3
  515. data/spec/unit/provider/group/groupadd_spec.rb +26 -30
  516. data/spec/unit/provider/group/ldap_spec.rb +18 -18
  517. data/spec/unit/provider/group/pw_spec.rb +11 -11
  518. data/spec/unit/provider/group/windows_adsi_spec.rb +53 -59
  519. data/spec/unit/provider/ldap_spec.rb +62 -61
  520. data/spec/unit/provider/nameservice/directoryservice_spec.rb +36 -35
  521. data/spec/unit/provider/nameservice_spec.rb +40 -38
  522. data/spec/unit/provider/package/aix_spec.rb +15 -15
  523. data/spec/unit/provider/package/appdmg_spec.rb +13 -13
  524. data/spec/unit/provider/package/apt_spec.rb +27 -44
  525. data/spec/unit/provider/package/aptitude_spec.rb +7 -6
  526. data/spec/unit/provider/package/aptrpm_spec.rb +12 -7
  527. data/spec/unit/provider/package/base_spec.rb +4 -4
  528. data/spec/unit/provider/package/dnf_spec.rb +20 -18
  529. data/spec/unit/provider/package/dpkg_spec.rb +53 -70
  530. data/spec/unit/provider/package/freebsd_spec.rb +11 -11
  531. data/spec/unit/provider/package/gem_spec.rb +55 -132
  532. data/spec/unit/provider/package/hpux_spec.rb +8 -8
  533. data/spec/unit/provider/package/macports_spec.rb +42 -46
  534. data/spec/unit/provider/package/nim_spec.rb +39 -30
  535. data/spec/unit/provider/package/openbsd_spec.rb +39 -36
  536. data/spec/unit/provider/package/opkg_spec.rb +26 -23
  537. data/spec/unit/provider/package/pacman_spec.rb +118 -97
  538. data/spec/unit/provider/package/pip3_spec.rb +0 -17
  539. data/spec/unit/provider/package/pip_spec.rb +106 -95
  540. data/spec/unit/provider/package/pkg_spec.rb +109 -109
  541. data/spec/unit/provider/package/pkgdmg_spec.rb +63 -65
  542. data/spec/unit/provider/package/pkgin_spec.rb +8 -10
  543. data/spec/unit/provider/package/pkgng_spec.rb +31 -22
  544. data/spec/unit/provider/package/pkgutil_spec.rb +49 -45
  545. data/spec/unit/provider/package/portage_spec.rb +74 -70
  546. data/spec/unit/provider/package/puppet_gem_spec.rb +13 -37
  547. data/spec/unit/provider/package/rpm_spec.rb +76 -154
  548. data/spec/unit/provider/package/sun_spec.rb +18 -16
  549. data/spec/unit/provider/package/tdnf_spec.rb +2 -2
  550. data/spec/unit/provider/package/up2date_spec.rb +4 -2
  551. data/spec/unit/provider/package/urpmi_spec.rb +17 -15
  552. data/spec/unit/provider/package/windows/exe_package_spec.rb +15 -12
  553. data/spec/unit/provider/package/windows/msi_package_spec.rb +22 -19
  554. data/spec/unit/provider/package/windows/package_spec.rb +42 -37
  555. data/spec/unit/provider/package/windows_spec.rb +32 -47
  556. data/spec/unit/provider/package/yum_spec.rb +7 -7
  557. data/spec/unit/provider/package/zypper_spec.rb +87 -87
  558. data/spec/unit/provider/parsedfile_spec.rb +45 -44
  559. data/spec/unit/provider/service/base_spec.rb +5 -4
  560. data/spec/unit/provider/service/bsd_spec.rb +29 -27
  561. data/spec/unit/provider/service/daemontools_spec.rb +35 -35
  562. data/spec/unit/provider/service/debian_spec.rb +38 -38
  563. data/spec/unit/provider/service/freebsd_spec.rb +18 -18
  564. data/spec/unit/provider/service/gentoo_spec.rb +55 -50
  565. data/spec/unit/provider/service/init_spec.rb +52 -53
  566. data/spec/unit/provider/service/launchd_spec.rb +116 -138
  567. data/spec/unit/provider/service/openbsd_spec.rb +50 -50
  568. data/spec/unit/provider/service/openrc_spec.rb +45 -43
  569. data/spec/unit/provider/service/openwrt_spec.rb +31 -26
  570. data/spec/unit/provider/service/rcng_spec.rb +14 -14
  571. data/spec/unit/provider/service/redhat_spec.rb +43 -45
  572. data/spec/unit/provider/service/runit_spec.rb +27 -29
  573. data/spec/unit/provider/service/smf_spec.rb +66 -74
  574. data/spec/unit/provider/service/src_spec.rb +47 -46
  575. data/spec/unit/provider/service/systemd_spec.rb +136 -109
  576. data/spec/unit/provider/service/upstart_spec.rb +93 -77
  577. data/spec/unit/provider/service/windows_spec.rb +41 -33
  578. data/spec/unit/provider/user/aix_spec.rb +31 -31
  579. data/spec/unit/provider/user/directoryservice_spec.rb +114 -146
  580. data/spec/unit/provider/user/hpux_spec.rb +16 -16
  581. data/spec/unit/provider/user/ldap_spec.rb +57 -57
  582. data/spec/unit/provider/user/openbsd_spec.rb +12 -10
  583. data/spec/unit/provider/user/pw_spec.rb +35 -37
  584. data/spec/unit/provider/user/user_role_add_spec.rb +93 -93
  585. data/spec/unit/provider/user/useradd_spec.rb +92 -93
  586. data/spec/unit/provider/user/windows_adsi_spec.rb +60 -59
  587. data/spec/unit/provider_spec.rb +35 -35
  588. data/spec/unit/puppet_pal_2pec.rb +5 -4
  589. data/spec/unit/puppet_pal_spec.rb +1 -0
  590. data/spec/unit/puppet_spec.rb +7 -6
  591. data/spec/unit/relationship_spec.rb +1 -0
  592. data/spec/unit/reports/http_spec.rb +23 -21
  593. data/spec/unit/reports/store_spec.rb +4 -3
  594. data/spec/unit/reports_spec.rb +14 -12
  595. data/spec/unit/resource/capability_finder_spec.rb +17 -15
  596. data/spec/unit/resource/catalog_spec.rb +68 -72
  597. data/spec/unit/resource/status_spec.rb +8 -6
  598. data/spec/unit/resource/type_collection_spec.rb +18 -17
  599. data/spec/unit/resource/type_spec.rb +35 -34
  600. data/spec/unit/resource_spec.rb +63 -36
  601. data/spec/unit/rest/client_spec.rb +135 -0
  602. data/spec/unit/rest/route_spec.rb +6 -6
  603. data/spec/unit/scheduler/job_spec.rb +1 -0
  604. data/spec/unit/scheduler/scheduler_spec.rb +1 -0
  605. data/spec/unit/scheduler/splay_job_spec.rb +2 -1
  606. data/spec/unit/settings/array_setting_spec.rb +1 -1
  607. data/spec/unit/settings/autosign_setting_spec.rb +9 -9
  608. data/spec/unit/settings/certificate_revocation_setting_spec.rb +1 -1
  609. data/spec/unit/settings/config_file_spec.rb +1 -0
  610. data/spec/unit/settings/directory_setting_spec.rb +7 -2
  611. data/spec/unit/settings/duration_setting_spec.rb +2 -1
  612. data/spec/unit/settings/enum_setting_spec.rb +1 -1
  613. data/spec/unit/settings/environment_conf_spec.rb +6 -4
  614. data/spec/unit/settings/file_setting_spec.rb +46 -44
  615. data/spec/unit/settings/path_setting_spec.rb +2 -1
  616. data/spec/unit/settings/priority_setting_spec.rb +2 -1
  617. data/spec/unit/settings/string_setting_spec.rb +15 -14
  618. data/spec/unit/settings/terminus_setting_spec.rb +2 -1
  619. data/spec/unit/settings/value_translator_spec.rb +1 -0
  620. data/spec/unit/settings_spec.rb +224 -253
  621. data/spec/unit/ssl/base_spec.rb +15 -14
  622. data/spec/unit/ssl/certificate_request_spec.rb +58 -62
  623. data/spec/unit/ssl/certificate_spec.rb +25 -23
  624. data/spec/unit/ssl/digest_spec.rb +1 -0
  625. data/spec/unit/ssl/host_spec.rb +149 -166
  626. data/spec/unit/ssl/key_spec.rb +31 -30
  627. data/spec/unit/ssl/validator_spec.rb +39 -40
  628. data/spec/unit/task_spec.rb +45 -44
  629. data/spec/unit/transaction/additional_resource_generator_spec.rb +5 -3
  630. data/spec/unit/transaction/event_manager_spec.rb +88 -87
  631. data/spec/unit/transaction/event_spec.rb +15 -16
  632. data/spec/unit/transaction/persistence_spec.rb +17 -16
  633. data/spec/unit/transaction/report_spec.rb +12 -11
  634. data/spec/unit/transaction/resource_harness_spec.rb +31 -52
  635. data/spec/unit/transaction_spec.rb +87 -140
  636. data/spec/unit/type/component_spec.rb +1 -0
  637. data/spec/unit/type/exec_spec.rb +50 -101
  638. data/spec/unit/type/file/checksum_spec.rb +10 -9
  639. data/spec/unit/type/file/checksum_value_spec.rb +32 -31
  640. data/spec/unit/type/file/content_spec.rb +61 -58
  641. data/spec/unit/type/file/ctime_spec.rb +1 -0
  642. data/spec/unit/type/file/ensure_spec.rb +13 -12
  643. data/spec/unit/type/file/group_spec.rb +7 -5
  644. data/spec/unit/type/file/mode_spec.rb +6 -4
  645. data/spec/unit/type/file/mtime_spec.rb +1 -0
  646. data/spec/unit/type/file/owner_spec.rb +8 -6
  647. data/spec/unit/type/file/selinux_spec.rb +19 -17
  648. data/spec/unit/type/file/source_spec.rb +101 -104
  649. data/spec/unit/type/file/type_spec.rb +1 -0
  650. data/spec/unit/type/file_spec.rb +185 -195
  651. data/spec/unit/type/filebucket_spec.rb +10 -11
  652. data/spec/unit/type/group_spec.rb +8 -6
  653. data/spec/unit/type/noop_metaparam_spec.rb +2 -1
  654. data/spec/unit/type/package/package_settings_spec.rb +23 -44
  655. data/spec/unit/type/package_spec.rb +57 -56
  656. data/spec/unit/type/resources_spec.rb +74 -72
  657. data/spec/unit/type/schedule_spec.rb +26 -24
  658. data/spec/unit/type/service_spec.rb +75 -49
  659. data/spec/unit/type/stage_spec.rb +1 -0
  660. data/spec/unit/type/tidy_spec.rb +62 -61
  661. data/spec/unit/type/user_spec.rb +25 -24
  662. data/spec/unit/type/whit_spec.rb +1 -0
  663. data/spec/unit/type_spec.rb +54 -55
  664. data/spec/unit/util/at_fork_spec.rb +19 -18
  665. data/spec/unit/util/autoload_spec.rb +56 -55
  666. data/spec/unit/util/backups_spec.rb +35 -34
  667. data/spec/unit/util/character_encoding_spec.rb +5 -5
  668. data/spec/unit/util/checksums_spec.rb +39 -38
  669. data/spec/unit/util/colors_spec.rb +2 -1
  670. data/spec/unit/util/command_line_spec.rb +20 -40
  671. data/spec/unit/util/constant_inflector_spec.rb +1 -0
  672. data/spec/unit/util/diff_spec.rb +8 -7
  673. data/spec/unit/util/errors_spec.rb +1 -0
  674. data/spec/unit/util/execution_spec.rb +163 -187
  675. data/spec/unit/util/execution_stub_spec.rb +1 -0
  676. data/spec/unit/util/feature_spec.rb +14 -21
  677. data/spec/unit/util/filetype_spec.rb +49 -49
  678. data/spec/unit/util/http_proxy_spec.rb +12 -12
  679. data/spec/unit/util/inifile_spec.rb +31 -26
  680. data/spec/unit/util/json_lockfile_spec.rb +5 -3
  681. data/spec/unit/util/ldap/connection_spec.rb +25 -26
  682. data/spec/unit/util/ldap/generator_spec.rb +1 -0
  683. data/spec/unit/util/ldap/manager_spec.rb +101 -102
  684. data/spec/unit/util/lockfile_spec.rb +1 -0
  685. data/spec/unit/util/log/destinations_spec.rb +33 -30
  686. data/spec/unit/util/log_spec.rb +34 -48
  687. data/spec/unit/util/logging_spec.rb +72 -58
  688. data/spec/unit/util/metric_spec.rb +1 -0
  689. data/spec/unit/util/monkey_patches_spec.rb +9 -7
  690. data/spec/unit/util/multi_match_spec.rb +1 -0
  691. data/spec/unit/util/network_device/config_spec.rb +1 -0
  692. data/spec/unit/util/network_device/transport/base_spec.rb +6 -5
  693. data/spec/unit/util/network_device_spec.rb +9 -7
  694. data/spec/unit/util/package_spec.rb +1 -0
  695. data/spec/unit/util/pidlock_spec.rb +15 -60
  696. data/spec/unit/util/plist_spec.rb +33 -40
  697. data/spec/unit/util/posix_spec.rb +51 -54
  698. data/spec/unit/util/rdoc_spec.rb +10 -9
  699. data/spec/unit/util/reference_spec.rb +1 -0
  700. data/spec/unit/util/resource_template_spec.rb +20 -20
  701. data/spec/unit/util/retry_action_spec.rb +8 -7
  702. data/spec/unit/util/rubygems_spec.rb +8 -7
  703. data/spec/unit/util/run_mode_spec.rb +4 -3
  704. data/spec/unit/util/selinux_spec.rb +72 -79
  705. data/spec/unit/util/splayer_spec.rb +9 -8
  706. data/spec/unit/util/ssl_spec.rb +1 -0
  707. data/spec/unit/util/storage_spec.rb +23 -22
  708. data/spec/unit/util/suidmanager_spec.rb +54 -45
  709. data/spec/unit/util/symbolic_file_mode_spec.rb +1 -0
  710. data/spec/unit/util/tag_set_spec.rb +1 -0
  711. data/spec/unit/util/tagging_spec.rb +1 -0
  712. data/spec/unit/util/terminal_spec.rb +10 -9
  713. data/spec/unit/util/user_attr_spec.rb +2 -1
  714. data/spec/unit/util/warnings_spec.rb +4 -3
  715. data/spec/unit/util/watcher/periodic_watcher_spec.rb +2 -2
  716. data/spec/unit/util/watcher_spec.rb +21 -51
  717. data/spec/unit/util/windows/access_control_entry_spec.rb +1 -0
  718. data/spec/unit/util/windows/access_control_list_spec.rb +1 -0
  719. data/spec/unit/util/windows/adsi_spec.rb +138 -136
  720. data/spec/unit/util/windows/api_types_spec.rb +1 -0
  721. data/spec/unit/util/windows/eventlog_spec.rb +12 -9
  722. data/spec/unit/util/windows/file_spec.rb +1 -0
  723. data/spec/unit/util/windows/root_certs_spec.rb +1 -0
  724. data/spec/unit/util/windows/security_descriptor_spec.rb +2 -0
  725. data/spec/unit/util/windows/service_spec.rb +103 -100
  726. data/spec/unit/util/windows/sid_spec.rb +13 -11
  727. data/spec/unit/util/windows/string_spec.rb +1 -0
  728. data/spec/unit/util_spec.rb +57 -55
  729. data/spec/unit/version_spec.rb +6 -6
  730. metadata +20 -32
  731. data/CODEOWNERS +0 -30
  732. data/ext/autotest/Rakefile +0 -8
  733. data/ext/autotest/config +0 -43
  734. data/ext/autotest/readme.rst +0 -16
  735. data/lib/puppet/confine/boolean.rb +0 -45
  736. data/lib/puppet/provider/package_targetable.rb +0 -68
  737. data/spec/fixtures/unit/pops/loaders/loaders/mix_4x_and_3x_functions/usee/lib/puppet/parser/functions/bad_func_load2.rb +0 -11
  738. data/spec/fixtures/unit/pops/loaders/loaders/mix_4x_and_3x_functions/usee/lib/puppet/parser/functions/bad_func_load3.rb +0 -11
  739. data/spec/fixtures/unit/pops/loaders/loaders/mix_4x_and_3x_functions/usee/lib/puppet/parser/functions/bad_func_load4.rb +0 -11
  740. data/spec/fixtures/unit/pops/loaders/loaders/mix_4x_and_3x_functions/usee/lib/puppet/parser/functions/bad_func_load5.rb +0 -12
  741. data/spec/fixtures/unit/pops/loaders/loaders/mix_4x_and_3x_functions/usee/lib/puppet/parser/functions/good_func_load.rb +0 -9
  742. data/spec/fixtures/unit/provider/package/pkgng/pkg.info +0 -7
  743. data/spec/fixtures/unit/provider/package/pkgng/pkg.query_absent +0 -1
  744. data/spec/integration/network/http_pool_spec.rb +0 -120
  745. data/spec/integration/provider/file/windows_spec.rb +0 -162
  746. data/spec/lib/puppet_spec/https.rb +0 -166
  747. data/spec/unit/settings/server_list_setting_spec.rb +0 -21
  748. data/spec/watchr.rb +0 -137
@@ -1,16 +1,16 @@
1
1
  # SOME DESCRIPTIVE TITLE.
2
- # Copyright (C) 2019 Puppet, Inc.
2
+ # Copyright (C) 2018 Puppet, Inc.
3
3
  # This file is distributed under the same license as the Puppet automation framework package.
4
- # FIRST AUTHOR <EMAIL@ADDRESS>, 2019.
4
+ # FIRST AUTHOR <EMAIL@ADDRESS>, 2018.
5
5
  #
6
6
  #, fuzzy
7
7
  msgid ""
8
8
  msgstr ""
9
- "Project-Id-Version: Puppet automation framework 6.0.9-65-gc4f22cb\n"
9
+ "Project-Id-Version: Puppet automation framework 6.0.4-203-g3db83f5\n"
10
10
  "\n"
11
11
  "Report-Msgid-Bugs-To: https://tickets.puppetlabs.com\n"
12
- "POT-Creation-Date: 2019-05-28 23:50+0000\n"
13
- "PO-Revision-Date: 2019-05-28 23:50+0000\n"
12
+ "POT-Creation-Date: 2018-12-07 19:18+0000\n"
13
+ "PO-Revision-Date: 2018-12-07 19:18+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:535
31
+ #: ../lib/hiera/scope.rb:43 ../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:536 ../lib/puppet/parser/scope.rb:538
35
+ #: ../lib/hiera/scope.rb:44 ../lib/hiera/scope.rb:46 ../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,6 +48,10 @@ msgstr ""
48
48
  msgid "Config file %{hiera_config} not found, using Hiera defaults"
49
49
  msgstr ""
50
50
 
51
+ #: ../lib/puppet.rb:4
52
+ msgid "Puppet %{version} requires ruby 2.3.0 or greater."
53
+ msgstr ""
54
+
51
55
  #: ../lib/puppet.rb:130
52
56
  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
57
  msgstr ""
@@ -156,15 +160,11 @@ msgstr ""
156
160
  msgid "No valid command or main"
157
161
  msgstr ""
158
162
 
159
- #: ../lib/puppet/application.rb:428
160
- msgid "Could not set logdest to %{dest}."
161
- msgstr ""
162
-
163
163
  #: ../lib/puppet/application.rb:504
164
164
  msgid "No help available for puppet %{app_name}"
165
165
  msgstr ""
166
166
 
167
- #: ../lib/puppet/application/agent.rb:24 ../lib/puppet/application/device.rb:23
167
+ #: ../lib/puppet/application/agent.rb:24 ../lib/puppet/application/device.rb:22
168
168
  msgid "Cancelling startup"
169
169
  msgstr ""
170
170
 
@@ -234,51 +234,51 @@ msgstr ""
234
234
  msgid "Display help about resource types"
235
235
  msgstr ""
236
236
 
237
- #: ../lib/puppet/application/device.rb:82
237
+ #: ../lib/puppet/application/device.rb:77
238
238
  msgid "Manage remote network devices"
239
239
  msgstr ""
240
240
 
241
- #: ../lib/puppet/application/device.rb:226
241
+ #: ../lib/puppet/application/device.rb:216
242
242
  msgid "resource command requires target"
243
243
  msgstr ""
244
244
 
245
- #: ../lib/puppet/application/device.rb:229
245
+ #: ../lib/puppet/application/device.rb:219
246
246
  msgid "facts command requires target"
247
247
  msgstr ""
248
248
 
249
- #: ../lib/puppet/application/device.rb:232
249
+ #: ../lib/puppet/application/device.rb:222
250
250
  msgid "missing argument: --target is required when using --apply"
251
251
  msgstr ""
252
252
 
253
- #: ../lib/puppet/application/device.rb:233
253
+ #: ../lib/puppet/application/device.rb:223
254
254
  msgid "%{file} does not exist, cannot apply"
255
255
  msgstr ""
256
256
 
257
- #: ../lib/puppet/application/device.rb:250
257
+ #: ../lib/puppet/application/device.rb:239
258
258
  msgid "Target device / certificate '%{target}' not found in %{config}"
259
259
  msgstr ""
260
260
 
261
- #: ../lib/puppet/application/device.rb:252
261
+ #: ../lib/puppet/application/device.rb:241
262
262
  msgid "No device found in %{config}"
263
263
  msgstr ""
264
264
 
265
- #: ../lib/puppet/application/device.rb:304
265
+ #: ../lib/puppet/application/device.rb:263
266
266
  msgid "retrieving resource: %{resource} from %{target} at %{scheme}%{url_host}%{port}%{url_path}"
267
267
  msgstr ""
268
268
 
269
- #: ../lib/puppet/application/device.rb:319
269
+ #: ../lib/puppet/application/device.rb:278
270
270
  msgid "retrieving facts from %{target} at %{scheme}%{url_host}%{port}%{url_path}"
271
271
  msgstr ""
272
272
 
273
- #: ../lib/puppet/application/device.rb:342
273
+ #: ../lib/puppet/application/device.rb:303
274
274
  msgid "starting applying configuration to %{target} at %{scheme}%{url_host}%{port}%{url_path}"
275
275
  msgstr ""
276
276
 
277
- #: ../lib/puppet/application/device.rb:380 ../lib/puppet/application/resource.rb:196
277
+ #: ../lib/puppet/application/device.rb:340 ../lib/puppet/application/resource.rb:196
278
278
  msgid "You must specify the type to display"
279
279
  msgstr ""
280
280
 
281
- #: ../lib/puppet/application/device.rb:381 ../lib/puppet/application/resource.rb:197
281
+ #: ../lib/puppet/application/device.rb:341 ../lib/puppet/application/resource.rb:197
282
282
  msgid "Could not find type %{type}"
283
283
  msgstr ""
284
284
 
@@ -344,41 +344,30 @@ msgstr ""
344
344
  msgid "Store and retrieve files in a filebucket"
345
345
  msgstr ""
346
346
 
347
- #: ../lib/puppet/application/filebucket.rb:208
347
+ #: ../lib/puppet/application/filebucket.rb:203
348
348
  msgid "You must specify a file to back up"
349
349
  msgstr ""
350
350
 
351
- #: ../lib/puppet/application/filebucket.rb:212
351
+ #: ../lib/puppet/application/filebucket.rb:207
352
352
  msgid "%{file}: no such file"
353
353
  msgstr ""
354
354
 
355
- #: ../lib/puppet/application/filebucket.rb:216
355
+ #: ../lib/puppet/application/filebucket.rb:211
356
356
  msgid "%{file}: cannot read file"
357
357
  msgstr ""
358
358
 
359
- #: ../lib/puppet/application/filebucket.rb:238 ../lib/puppet/application/filebucket.rb:261
359
+ #: ../lib/puppet/application/filebucket.rb:233 ../lib/puppet/application/filebucket.rb:256
360
360
  msgid "Need exactly two arguments: filebucket diff <file_a> <file_b>"
361
361
  msgstr ""
362
362
 
363
- #: ../lib/puppet/application/filebucket.rb:258
363
+ #: ../lib/puppet/application/filebucket.rb:253
364
364
  msgid "Comparing %{checksum_a} %{checksum_b} %{file_a} %{file_b}"
365
365
  msgstr ""
366
366
 
367
- #: ../lib/puppet/application/filebucket.rb:272
367
+ #: ../lib/puppet/application/filebucket.rb:267
368
368
  msgid "Cancelling"
369
369
  msgstr ""
370
370
 
371
- #. TRANSLATORS 'server_list' is the name of a setting and should not be translated
372
- #: ../lib/puppet/application/filebucket.rb:293
373
- msgid "Selected server from first entry of the `server_list` setting: %{server}:%{port}"
374
- msgstr ""
375
-
376
- #. TRANSLATORS 'server' is the name of a setting and should not be translated
377
- #. TRANSLATORS 'server' is the name of a setting and should not be translated
378
- #: ../lib/puppet/application/filebucket.rb:300 ../lib/puppet/indirector/request.rb:213
379
- msgid "Selected server from the `server` setting: %{server}"
380
- msgstr ""
381
-
382
371
  #: ../lib/puppet/application/lookup.rb:8
383
372
  msgid "Run 'puppet lookup --help' for more details"
384
373
  msgstr ""
@@ -517,7 +506,7 @@ msgid ""
517
506
  " puppet ssl clean\n"
518
507
  msgstr ""
519
508
 
520
- #: ../lib/puppet/application/ssl.rb:213
509
+ #: ../lib/puppet/application/ssl.rb:214
521
510
  msgid "Removed %{label} %{path}"
522
511
  msgstr ""
523
512
 
@@ -557,73 +546,71 @@ msgstr ""
557
546
  msgid "Applied catalog in %{seconds} seconds"
558
547
  msgstr ""
559
548
 
560
- #: ../lib/puppet/configurer.rb:230
561
- msgid "Could not select a functional puppet master from server_list: '%{server_list}'"
549
+ #: ../lib/puppet/configurer.rb:231
550
+ msgid "Selected puppet server: %{server}:%{port}"
562
551
  msgstr ""
563
552
 
564
- #. TRANSLATORS 'server_list' is the name of a setting and should not be translated
565
- #: ../lib/puppet/configurer.rb:233
566
- msgid "Selected puppet server from the `server_list` setting: %{server}:%{port}"
553
+ #: ../lib/puppet/configurer.rb:234
554
+ msgid "Could not select a functional puppet server"
567
555
  msgstr ""
568
556
 
569
- #: ../lib/puppet/configurer.rb:265
557
+ #: ../lib/puppet/configurer.rb:264
570
558
  msgid "Local environment: '%{local_env}' doesn't match the environment of the cached catalog '%{catalog_env}', switching agent to '%{catalog_env}'."
571
559
  msgstr ""
572
560
 
573
- #: ../lib/puppet/configurer.rb:310
561
+ #: ../lib/puppet/configurer.rb:309
574
562
  msgid "Local environment: '%{local_env}' doesn't match server specified node environment '%{node_env}', switching agent to '%{node_env}'."
575
563
  msgstr ""
576
564
 
577
- #: ../lib/puppet/configurer.rb:315
565
+ #: ../lib/puppet/configurer.rb:314
578
566
  msgid "Using configured environment '%{env}'"
579
567
  msgstr ""
580
568
 
581
- #: ../lib/puppet/configurer.rb:319
569
+ #: ../lib/puppet/configurer.rb:318
582
570
  msgid "Unable to fetch my node definition, but the agent run will continue:"
583
571
  msgstr ""
584
572
 
585
- #: ../lib/puppet/configurer.rb:347
573
+ #: ../lib/puppet/configurer.rb:346
586
574
  msgid "Not using catalog because its environment '%{catalog_env}' does not match agent specified environment '%{local_env}' and strict_environment_mode is set"
587
575
  msgstr ""
588
576
 
589
- #: ../lib/puppet/configurer.rb:358
577
+ #: ../lib/puppet/configurer.rb:357
590
578
  msgid "Catalog environment didn't stabilize after %{tries} fetches, aborting run"
591
579
  msgstr ""
592
580
 
593
- #: ../lib/puppet/configurer.rb:360
581
+ #: ../lib/puppet/configurer.rb:359
594
582
  msgid "Local environment: '%{local_env}' doesn't match server specified environment '%{catalog_env}', restarting agent run with environment '%{catalog_env}'"
595
583
  msgstr ""
596
584
 
597
- #: ../lib/puppet/configurer.rb:379
585
+ #: ../lib/puppet/configurer.rb:378
598
586
  msgid "Failed to apply catalog: %{detail}"
599
587
  msgstr ""
600
588
 
601
- #: ../lib/puppet/configurer.rb:403
589
+ #: ../lib/puppet/configurer.rb:402
602
590
  msgid "Puppet server %{host}:%{port} is unavailable: %{code} %{reason}"
603
591
  msgstr ""
604
592
 
605
- #. TRANSLATORS 'server_list' is the name of a setting and should not be translated
606
- #: ../lib/puppet/configurer.rb:407
607
- msgid "Unable to connect to server from server_list setting: %{detail}"
593
+ #: ../lib/puppet/configurer.rb:406
594
+ msgid "Puppet server %{host}:%{port} is unreachable"
608
595
  msgstr ""
609
596
 
610
- #: ../lib/puppet/configurer.rb:419 ../lib/puppet/face/report.rb:47
597
+ #: ../lib/puppet/configurer.rb:418 ../lib/puppet/face/report.rb:47
611
598
  msgid "Could not send report: %{detail}"
612
599
  msgstr ""
613
600
 
614
- #: ../lib/puppet/configurer.rb:428
601
+ #: ../lib/puppet/configurer.rb:427
615
602
  msgid "Could not save last run local report: %{detail}"
616
603
  msgstr ""
617
604
 
618
- #: ../lib/puppet/configurer.rb:440
605
+ #: ../lib/puppet/configurer.rb:439
619
606
  msgid "Could not run command from %{setting}: %{detail}"
620
607
  msgstr ""
621
608
 
622
- #: ../lib/puppet/configurer.rb:458
609
+ #: ../lib/puppet/configurer.rb:457
623
610
  msgid "Could not retrieve catalog from cache: %{detail}"
624
611
  msgstr ""
625
612
 
626
- #: ../lib/puppet/configurer.rb:478
613
+ #: ../lib/puppet/configurer.rb:477
627
614
  msgid "Could not retrieve catalog from remote server: %{detail}"
628
615
  msgstr ""
629
616
 
@@ -706,18 +693,26 @@ msgid "Convert custom terminus to hiera 5 API."
706
693
  msgstr ""
707
694
 
708
695
  #. TRANSLATORS 'environment_data_provider' is a setting and should not be translated
709
- #: ../lib/puppet/defaults.rb:670
696
+ #: ../lib/puppet/defaults.rb:650
710
697
  msgid "Setting 'environment_data_provider' is deprecated."
711
698
  msgstr ""
712
699
 
713
- #: ../lib/puppet/defaults.rb:751
700
+ #: ../lib/puppet/defaults.rb:731
714
701
  msgid "Certificate names must be lower case"
715
702
  msgstr ""
716
703
 
717
- #: ../lib/puppet/defaults.rb:982 ../lib/puppet/settings/enum_setting.rb:13 ../lib/puppet/settings/symbolic_enum_setting.rb:14
704
+ #: ../lib/puppet/defaults.rb:961 ../lib/puppet/settings/enum_setting.rb:13 ../lib/puppet/settings/symbolic_enum_setting.rb:14
718
705
  msgid "Invalid value '%{value}' for parameter %{name}. Allowed values are '%{allowed_values}'"
719
706
  msgstr ""
720
707
 
708
+ #: ../lib/puppet/defaults.rb:1458 ../lib/puppet/defaults.rb:1473
709
+ msgid "Attempted to set both server and server_list."
710
+ msgstr ""
711
+
712
+ #: ../lib/puppet/defaults.rb:1459 ../lib/puppet/defaults.rb:1474
713
+ msgid "Server setting will not be used."
714
+ msgstr ""
715
+
721
716
  #: ../lib/puppet/error.rb:69
722
717
  msgid "Could not parse for environment %{environment}: %{message}"
723
718
  msgstr ""
@@ -1803,23 +1798,23 @@ msgstr ""
1803
1798
  msgid "The current user does not have the necessary permission to manage symlinks."
1804
1799
  msgstr ""
1805
1800
 
1806
- #: ../lib/puppet/forge.rb:139
1801
+ #: ../lib/puppet/forge.rb:136
1807
1802
  msgid "Malformed dependency: %{name}."
1808
1803
  msgstr ""
1809
1804
 
1810
- #: ../lib/puppet/forge.rb:140
1805
+ #: ../lib/puppet/forge.rb:137
1811
1806
  msgid "Exception was: %{detail}"
1812
1807
  msgstr ""
1813
1808
 
1814
- #: ../lib/puppet/forge.rb:206
1809
+ #: ../lib/puppet/forge.rb:203
1815
1810
  msgid "Downloaded release for %{name} did not match expected checksum"
1816
1811
  msgstr ""
1817
1812
 
1818
- #: ../lib/puppet/forge.rb:214 ../lib/puppet/module_tool/applications/unpacker.rb:58 ../lib/puppet/module_tool/local_tarball.rb:86
1813
+ #: ../lib/puppet/forge.rb:211 ../lib/puppet/module_tool/applications/unpacker.rb:58 ../lib/puppet/module_tool/local_tarball.rb:86
1819
1814
  msgid "Could not extract contents of module archive: %{message}"
1820
1815
  msgstr ""
1821
1816
 
1822
- #: ../lib/puppet/forge.rb:231
1817
+ #: ../lib/puppet/forge.rb:228
1823
1818
  msgid "Cannot consider release %{name}-%{version}: %{error}"
1824
1819
  msgstr ""
1825
1820
 
@@ -2667,22 +2662,7 @@ msgstr ""
2667
2662
  msgid "Error connecting to %{srv_server}:%{srv_port}: %{message}"
2668
2663
  msgstr ""
2669
2664
 
2670
- #. TRANSLATORS 'server_list' is the name of a setting and should not be translated
2671
- #: ../lib/puppet/indirector/request.rb:209
2672
- msgid "Selected server from first entry of the `server_list` setting: %{server}"
2673
- msgstr ""
2674
-
2675
- #. TRANSLATORS 'server_list' is the name of a setting and should not be translated
2676
- #: ../lib/puppet/indirector/request.rb:225
2677
- msgid "Selected port from the first entry of the `server_list` setting: %{port}"
2678
- msgstr ""
2679
-
2680
- #. TRANSLATORS 'masterport' is the name of a setting and should not be translated
2681
- #: ../lib/puppet/indirector/request.rb:229
2682
- msgid "Selected port from the `masterport` setting: %{port}"
2683
- msgstr ""
2684
-
2685
- #: ../lib/puppet/indirector/request.rb:260
2665
+ #: ../lib/puppet/indirector/request.rb:249
2686
2666
  msgid "Could not understand URL %{key}: %{detail}"
2687
2667
  msgstr ""
2688
2668
 
@@ -3814,36 +3794,28 @@ msgstr ""
3814
3794
  msgid "Unrecognized option(s): %{opts}"
3815
3795
  msgstr ""
3816
3796
 
3817
- #: ../lib/puppet/network/http/connection.rb:209
3797
+ #: ../lib/puppet/network/http/connection.rb:203
3818
3798
  msgid "Too many HTTP redirections for %{host}:%{port}"
3819
3799
  msgstr ""
3820
3800
 
3821
3801
  #. TRANSLATORS: Used in the phrase:
3822
3802
  #. "Received a response from the remote server."
3823
- #: ../lib/puppet/network/http/connection.rb:239
3803
+ #: ../lib/puppet/network/http/connection.rb:233
3824
3804
  msgid "the remote server"
3825
3805
  msgstr ""
3826
3806
 
3827
- #: ../lib/puppet/network/http/connection.rb:243
3807
+ #: ../lib/puppet/network/http/connection.rb:237
3828
3808
  msgid "Received a %{status_code} response from %{server_hostname}, but the Retry-After header value of \"%{retry_after}\" could not be converted to an integer or RFC 2822 date."
3829
3809
  msgstr ""
3830
3810
 
3831
- #: ../lib/puppet/network/http/connection.rb:254
3811
+ #: ../lib/puppet/network/http/connection.rb:248
3832
3812
  msgid "Received a %{status_code} response from %{server_hostname}. Sleeping for %{retry_sleep} seconds before retrying the request."
3833
3813
  msgstr ""
3834
3814
 
3835
- #: ../lib/puppet/network/http/connection.rb:316
3815
+ #: ../lib/puppet/network/http/connection.rb:304
3836
3816
  msgid "request %{uri} interrupted after %{elapsed} seconds"
3837
3817
  msgstr ""
3838
3818
 
3839
- #: ../lib/puppet/network/http/connection.rb:318
3840
- msgid "request %{uri} timed out after %{elapsed} seconds"
3841
- msgstr ""
3842
-
3843
- #: ../lib/puppet/network/http/connection.rb:320
3844
- msgid "request %{uri} failed: %{msg}"
3845
- msgstr ""
3846
-
3847
3819
  #: ../lib/puppet/network/http/error.rb:23
3848
3820
  msgid "Not Acceptable: %{message}"
3849
3821
  msgstr ""
@@ -3960,6 +3932,85 @@ msgstr ""
3960
3932
  msgid "Could not parse for environment %{env}: %{detail}"
3961
3933
  msgstr ""
3962
3934
 
3935
+ #: ../lib/puppet/pal/compiler.rb:86
3936
+ msgid "The argument 'puppet_code' must be a String, got %{type}"
3937
+ msgstr ""
3938
+
3939
+ #. TRANSLATORS, the 'ast' is the name of a parameter, do not translate
3940
+ #: ../lib/puppet/pal/compiler.rb:128
3941
+ msgid "The given 'ast' does not represent a literal value"
3942
+ msgstr ""
3943
+
3944
+ #: ../lib/puppet/pal/compiler.rb:140
3945
+ msgid "The argument 'code_string' must be a String, got %{type}"
3946
+ msgstr ""
3947
+
3948
+ #: ../lib/puppet/pal/compiler.rb:153
3949
+ msgid "The argument 'file' must be a String, got %{type}"
3950
+ msgstr ""
3951
+
3952
+ #: ../lib/puppet/pal/compiler.rb:190
3953
+ msgid "Given data_type value is not a data type, got '%{type}'"
3954
+ msgstr ""
3955
+
3956
+ #. TRANSLATORS 'type' and 'title' are internal parameter names - do not translate
3957
+ #: ../lib/puppet/pal/json_catalog_encoder.rb:52
3958
+ msgid "Both type and title must be given"
3959
+ msgstr ""
3960
+
3961
+ #. TRANSLATORS: do not translate the variable names in this error message
3962
+ #. TRANSLATORS: do not translate the variable names in this error message
3963
+ #: ../lib/puppet/pal/pal_impl.rb:73 ../lib/puppet/pal/pal_impl.rb:166
3964
+ msgid "manifest_file or code_string cannot be given when configured_by_env is true"
3965
+ msgstr ""
3966
+
3967
+ #: ../lib/puppet/pal/pal_impl.rb:206
3968
+ msgid "temporary environment name"
3969
+ msgstr ""
3970
+
3971
+ #. TRANSLATORS: do not translate variable name string in these assertions
3972
+ #: ../lib/puppet/pal/pal_impl.rb:211
3973
+ msgid "A block must be given to 'in_tmp_environment'"
3974
+ msgstr ""
3975
+
3976
+ #. TRANSLATORS terms in the assertions below are names of terms in code
3977
+ #: ../lib/puppet/pal/pal_impl.rb:265
3978
+ msgid "A block must be given to 'in_environment'"
3979
+ msgstr ""
3980
+
3981
+ #. TRANSLATORS 'in_environment' is a name, do not translate
3982
+ #: ../lib/puppet/pal/pal_impl.rb:270
3983
+ msgid "The environment directory '%{env_dir}' does not exist"
3984
+ msgstr ""
3985
+
3986
+ #: ../lib/puppet/pal/pal_impl.rb:293
3987
+ msgid "No directory found for the environment '%{env_name}' on the path '%{envpath}'"
3988
+ msgstr ""
3989
+
3990
+ #: ../lib/puppet/pal/pal_impl.rb:347
3991
+ msgid "Given variables must be a hash, got %{type}"
3992
+ msgstr ""
3993
+
3994
+ #: ../lib/puppet/pal/pal_impl.rb:353
3995
+ msgid "Given variable '%{varname}' has illegal name"
3996
+ msgstr ""
3997
+
3998
+ #: ../lib/puppet/pal/pal_impl.rb:357
3999
+ msgid "Given value for '%{varname}' has illegal type - got: %{type}"
4000
+ msgstr ""
4001
+
4002
+ #: ../lib/puppet/pal/pal_impl.rb:497
4003
+ msgid "Puppet Pal: %{what}"
4004
+ msgstr ""
4005
+
4006
+ #: ../lib/puppet/pal/pal_impl.rb:511
4007
+ msgid "Cannot use '%{a_term}' and '%{b_term}' at the same time"
4008
+ msgstr ""
4009
+
4010
+ #: ../lib/puppet/pal/pal_impl.rb:518
4011
+ msgid "A block must be given"
4012
+ msgstr ""
4013
+
3963
4014
  #: ../lib/puppet/parameter.rb:345
3964
4015
  msgid "No resource set for %{name}"
3965
4016
  msgstr ""
@@ -4310,19 +4361,19 @@ msgid "Could not find any files from %{values}"
4310
4361
  msgstr ""
4311
4362
 
4312
4363
  #. TRANSLATORS "fully qualified" refers to a fully qualified file system path
4313
- #: ../lib/puppet/parser/functions/generate.rb:15
4364
+ #: ../lib/puppet/parser/functions/generate.rb:16
4314
4365
  msgid "Generators must be fully qualified"
4315
4366
  msgstr ""
4316
4367
 
4317
- #: ../lib/puppet/parser/functions/generate.rb:24
4368
+ #: ../lib/puppet/parser/functions/generate.rb:25
4318
4369
  msgid "Generators can only contain alphanumerics, file separators, and dashes"
4319
4370
  msgstr ""
4320
4371
 
4321
- #: ../lib/puppet/parser/functions/generate.rb:28
4372
+ #: ../lib/puppet/parser/functions/generate.rb:29
4322
4373
  msgid "Can not use generators with '..' in them."
4323
4374
  msgstr ""
4324
4375
 
4325
- #: ../lib/puppet/parser/functions/generate.rb:34
4376
+ #: ../lib/puppet/parser/functions/generate.rb:35
4326
4377
  msgid "Failed to execute generator %{generator}: %{detail}"
4327
4378
  msgstr ""
4328
4379
 
@@ -4677,19 +4728,19 @@ msgstr ""
4677
4728
  msgid "break() from context where this is illegal"
4678
4729
  msgstr ""
4679
4730
 
4680
- #: ../lib/puppet/pops/evaluator/evaluator_impl.rb:1218
4731
+ #: ../lib/puppet/pops/evaluator/evaluator_impl.rb:1222
4681
4732
  msgid "Can only append Array or Hash to a Hash"
4682
4733
  msgstr ""
4683
4734
 
4684
- #: ../lib/puppet/pops/evaluator/evaluator_impl.rb:1222
4735
+ #: ../lib/puppet/pops/evaluator/evaluator_impl.rb:1226
4685
4736
  msgid "An URI can only be merged with an URI or String"
4686
4737
  msgstr ""
4687
4738
 
4688
- #: ../lib/puppet/pops/evaluator/evaluator_impl.rb:1225
4739
+ #: ../lib/puppet/pops/evaluator/evaluator_impl.rb:1229
4689
4740
  msgid "Can only append Binary to a Binary"
4690
4741
  msgstr ""
4691
4742
 
4692
- #: ../lib/puppet/pops/evaluator/evaluator_impl.rb:1258
4743
+ #: ../lib/puppet/pops/evaluator/evaluator_impl.rb:1262
4693
4744
  msgid "Can only delete from an Array or Hash."
4694
4745
  msgstr ""
4695
4746
 
@@ -5314,154 +5365,150 @@ msgid "An escape char for @() may only appear once. Got '%{escapes}'"
5314
5365
  msgstr ""
5315
5366
 
5316
5367
  #: ../lib/puppet/pops/issues.rb:764
5317
- msgid "Heredoc with text in the margin is not allowed (line %{heredoc_line} in this heredoc)"
5318
- msgstr ""
5319
-
5320
- #: ../lib/puppet/pops/issues.rb:768
5321
5368
  msgid "Illegal %{format} Byte Order mark at beginning of input: %{bom} - remove these from the puppet source"
5322
5369
  msgstr ""
5323
5370
 
5324
- #: ../lib/puppet/pops/issues.rb:772
5371
+ #: ../lib/puppet/pops/issues.rb:768
5325
5372
  msgid "No such file or directory: %{file}"
5326
5373
  msgstr ""
5327
5374
 
5328
- #: ../lib/puppet/pops/issues.rb:776
5375
+ #: ../lib/puppet/pops/issues.rb:772
5329
5376
  msgid "%{file} is not a file"
5330
5377
  msgstr ""
5331
5378
 
5332
- #: ../lib/puppet/pops/issues.rb:781
5379
+ #: ../lib/puppet/pops/issues.rb:777
5333
5380
  msgid "%{expression} resulted in a value outside of Puppet Integer max range, got '%{value}'"
5334
5381
  msgstr ""
5335
5382
 
5336
- #: ../lib/puppet/pops/issues.rb:783
5383
+ #: ../lib/puppet/pops/issues.rb:779
5337
5384
  msgid "%{expression} resulted in a value outside of Puppet Integer min range, got '%{value}'"
5338
5385
  msgstr ""
5339
5386
 
5340
- #: ../lib/puppet/pops/issues.rb:788
5387
+ #: ../lib/puppet/pops/issues.rb:784
5341
5388
  msgid "This runtime does not support hiera.yaml version %{version}"
5342
5389
  msgstr ""
5343
5390
 
5344
- #: ../lib/puppet/pops/issues.rb:792
5391
+ #: ../lib/puppet/pops/issues.rb:788
5345
5392
  msgid "hiera.yaml version 3 cannot be used in %{location}"
5346
5393
  msgstr ""
5347
5394
 
5348
- #: ../lib/puppet/pops/issues.rb:796
5395
+ #: ../lib/puppet/pops/issues.rb:792
5349
5396
  msgid "hiera.yaml version 4 cannot be used in the global layer"
5350
5397
  msgstr ""
5351
5398
 
5352
- #: ../lib/puppet/pops/issues.rb:800
5399
+ #: ../lib/puppet/pops/issues.rb:796
5353
5400
  msgid "Undefined variable '%{name}'"
5354
5401
  msgstr ""
5355
5402
 
5356
- #: ../lib/puppet/pops/issues.rb:804
5403
+ #: ../lib/puppet/pops/issues.rb:800
5357
5404
  msgid "Backend '%{name}' is defined more than once."
5358
5405
  msgstr ""
5359
5406
 
5360
- #: ../lib/puppet/pops/issues.rb:807 ../lib/puppet/pops/issues.rb:820
5407
+ #: ../lib/puppet/pops/issues.rb:803 ../lib/puppet/pops/issues.rb:816
5361
5408
  msgid "First defined at %{error_location}"
5362
5409
  msgstr ""
5363
5410
 
5364
- #: ../lib/puppet/pops/issues.rb:813
5411
+ #: ../lib/puppet/pops/issues.rb:809
5365
5412
  msgid "No data provider is registered for backend '%{name}'"
5366
5413
  msgstr ""
5367
5414
 
5368
- #: ../lib/puppet/pops/issues.rb:817
5415
+ #: ../lib/puppet/pops/issues.rb:813
5369
5416
  msgid "Hierarchy name '%{name}' defined more than once."
5370
5417
  msgstr ""
5371
5418
 
5372
- #: ../lib/puppet/pops/issues.rb:826
5419
+ #: ../lib/puppet/pops/issues.rb:822
5373
5420
  msgid "'hiera3_backend' is only allowed in the global layer"
5374
5421
  msgstr ""
5375
5422
 
5376
- #: ../lib/puppet/pops/issues.rb:830
5423
+ #: ../lib/puppet/pops/issues.rb:826
5377
5424
  msgid "'default_hierarchy' is only allowed in the module layer"
5378
5425
  msgstr ""
5379
5426
 
5380
- #: ../lib/puppet/pops/issues.rb:834
5427
+ #: ../lib/puppet/pops/issues.rb:830
5381
5428
  msgid "Use \"data_hash: %{function_name}_data\" instead of \"hiera3_backend: %{function_name}\""
5382
5429
  msgstr ""
5383
5430
 
5384
- #: ../lib/puppet/pops/issues.rb:838
5431
+ #: ../lib/puppet/pops/issues.rb:834
5385
5432
  msgid "One of %{keys} must be defined in hierarchy '%{name}'"
5386
5433
  msgstr ""
5387
5434
 
5388
- #: ../lib/puppet/pops/issues.rb:842 ../lib/puppet/pops/issues.rb:850
5435
+ #: ../lib/puppet/pops/issues.rb:838 ../lib/puppet/pops/issues.rb:846
5389
5436
  msgid "Only one of %{keys} can be defined in hierarchy '%{name}'"
5390
5437
  msgstr ""
5391
5438
 
5392
- #: ../lib/puppet/pops/issues.rb:846
5439
+ #: ../lib/puppet/pops/issues.rb:842
5393
5440
  msgid "Only one of %{keys} can be defined in defaults"
5394
5441
  msgstr ""
5395
5442
 
5396
- #: ../lib/puppet/pops/issues.rb:854
5443
+ #: ../lib/puppet/pops/issues.rb:850
5397
5444
  msgid "Option key '%{key}' used in hierarchy '%{name}' is reserved by Puppet"
5398
5445
  msgstr ""
5399
5446
 
5400
- #: ../lib/puppet/pops/issues.rb:858
5447
+ #: ../lib/puppet/pops/issues.rb:854
5401
5448
  msgid "Option key '%{key}' used in defaults is reserved by Puppet"
5402
5449
  msgstr ""
5403
5450
 
5404
- #: ../lib/puppet/pops/issues.rb:862
5451
+ #: ../lib/puppet/pops/issues.rb:858
5405
5452
  msgid "Unable to find '%{function_type}' function named '%{function_name}'"
5406
5453
  msgstr ""
5407
5454
 
5408
- #: ../lib/puppet/pops/issues.rb:866
5455
+ #: ../lib/puppet/pops/issues.rb:862
5409
5456
  msgid "'alias' interpolation is only permitted if the expression is equal to the entire string"
5410
5457
  msgstr ""
5411
5458
 
5412
- #: ../lib/puppet/pops/issues.rb:870
5459
+ #: ../lib/puppet/pops/issues.rb:866
5413
5460
  msgid "Unknown interpolation method '%{name}'"
5414
5461
  msgstr ""
5415
5462
 
5416
- #: ../lib/puppet/pops/issues.rb:874
5463
+ #: ../lib/puppet/pops/issues.rb:870
5417
5464
  msgid "Interpolation using method syntax is not allowed in this context"
5418
5465
  msgstr ""
5419
5466
 
5420
- #: ../lib/puppet/pops/issues.rb:878
5467
+ #: ../lib/puppet/pops/issues.rb:874
5421
5468
  msgid "Endless recursion detected when attempting to serialize value of class %{type_name}"
5422
5469
  msgstr ""
5423
5470
 
5424
- #: ../lib/puppet/pops/issues.rb:882
5471
+ #: ../lib/puppet/pops/issues.rb:878
5425
5472
  msgid "%{path} contains the special value default. It will be converted to the String 'default'"
5426
5473
  msgstr ""
5427
5474
 
5428
- #: ../lib/puppet/pops/issues.rb:886
5475
+ #: ../lib/puppet/pops/issues.rb:882
5429
5476
  msgid "%{path} contains %{klass} value. It will be converted to the String '%{value}'"
5430
5477
  msgstr ""
5431
5478
 
5432
- #: ../lib/puppet/pops/issues.rb:890
5479
+ #: ../lib/puppet/pops/issues.rb:886
5433
5480
  msgid "%{path} contains a hash with %{klass} key. It will be converted to the String '%{value}'"
5434
5481
  msgstr ""
5435
5482
 
5436
- #: ../lib/puppet/pops/issues.rb:894
5483
+ #: ../lib/puppet/pops/issues.rb:890
5437
5484
  msgid "The feature '%{feature}' is only available when compiling a catalog"
5438
5485
  msgstr ""
5439
5486
 
5440
- #: ../lib/puppet/pops/issues.rb:898
5487
+ #: ../lib/puppet/pops/issues.rb:894
5441
5488
  msgid "The catalog operation '%{operation}' is only available when compiling a catalog"
5442
5489
  msgstr ""
5443
5490
 
5444
- #: ../lib/puppet/pops/issues.rb:902
5491
+ #: ../lib/puppet/pops/issues.rb:898
5445
5492
  msgid "%{expr} is only available when compiling a catalog"
5446
5493
  msgstr ""
5447
5494
 
5448
- #: ../lib/puppet/pops/issues.rb:906
5495
+ #: ../lib/puppet/pops/issues.rb:902
5449
5496
  msgid "The task operation '%{operation}' is not available when compiling a catalog"
5450
5497
  msgstr ""
5451
5498
 
5452
- #: ../lib/puppet/pops/issues.rb:910
5499
+ #: ../lib/puppet/pops/issues.rb:906
5453
5500
  msgid "%{expr} is not available when compiling a catalog"
5454
5501
  msgstr ""
5455
5502
 
5456
- #: ../lib/puppet/pops/issues.rb:914
5503
+ #: ../lib/puppet/pops/issues.rb:910
5457
5504
  msgid "The 'bolt' library is required to %{action}"
5458
5505
  msgstr ""
5459
5506
 
5460
- #: ../lib/puppet/pops/issues.rb:918
5507
+ #: ../lib/puppet/pops/issues.rb:914
5461
5508
  msgid "Task not found: %{type_name}"
5462
5509
  msgstr ""
5463
5510
 
5464
- #: ../lib/puppet/pops/issues.rb:922
5511
+ #: ../lib/puppet/pops/issues.rb:918
5465
5512
  msgid "Failed to load: %{type_name}"
5466
5513
  msgstr ""
5467
5514
 
@@ -5579,23 +5626,19 @@ msgstr ""
5579
5626
  msgid "The code loaded from %{source_ref} did not produce a Function class when evaluated. Got '%{klass}'"
5580
5627
  msgstr ""
5581
5628
 
5582
- #: ../lib/puppet/pops/loader/ruby_legacy_function_instantiator.rb:24
5629
+ #: ../lib/puppet/pops/loader/ruby_legacy_function_instantiator.rb:17
5583
5630
  msgid "The code loaded from %{source_ref} does not seem to be a Puppet 3x API function - no 'newfunction' call."
5584
5631
  msgstr ""
5585
5632
 
5586
- #. TRANSLATORS - the word 'newfunction' should not be translated as it is a method name.
5587
- #: ../lib/puppet/pops/loader/ruby_legacy_function_instantiator.rb:46
5633
+ #. TRANSLATORS - the word 'newfunction' shoud not be translated as it is a method name.
5634
+ #: ../lib/puppet/pops/loader/ruby_legacy_function_instantiator.rb:37
5588
5635
  msgid "Illegal legacy function definition! The code loaded from %{source_ref} did not return the result of calling 'newfunction'. Got '%{klass}'"
5589
5636
  msgstr ""
5590
5637
 
5591
- #: ../lib/puppet/pops/loader/ruby_legacy_function_instantiator.rb:49
5638
+ #: ../lib/puppet/pops/loader/ruby_legacy_function_instantiator.rb:40
5592
5639
  msgid "The code loaded from %{source_ref} produced mis-matched name, expected 'function_%{type_name}', got '%{created_name}'"
5593
5640
  msgstr ""
5594
5641
 
5595
- #: ../lib/puppet/pops/loader/ruby_legacy_function_instantiator.rb:92
5596
- msgid "Illegal method definition of method '%{method_name}' on line %{line}' in legacy function. See %{url} for more information"
5597
- msgstr ""
5598
-
5599
5642
  #: ../lib/puppet/pops/loader/task_instantiator.rb:27
5600
5643
  msgid "Failed to load metadata for task %{name}: %{reason}"
5601
5644
  msgstr ""
@@ -5791,19 +5834,19 @@ msgid "Unacceptable transform - found an Object without a rule: %{klass}"
5791
5834
  msgstr ""
5792
5835
 
5793
5836
  #. TRANSLATORS 'NUMBER' refers to a method name and the 'name_or_numeric' was the passed in value and should not be translated
5794
- #: ../lib/puppet/pops/model/factory.rb:848
5837
+ #: ../lib/puppet/pops/model/factory.rb:814
5795
5838
  msgid "Internal Error, NUMBER token does not contain a valid number, %{name_or_numeric}"
5796
5839
  msgstr ""
5797
5840
 
5798
- #: ../lib/puppet/pops/model/factory.rb:1164
5841
+ #: ../lib/puppet/pops/model/factory.rb:1130
5799
5842
  msgid "can only concatenate strings, got %{class_name}"
5800
5843
  msgstr ""
5801
5844
 
5802
- #: ../lib/puppet/pops/parser/parser_support.rb:204
5845
+ #: ../lib/puppet/pops/parser/parser_support.rb:195
5803
5846
  msgid "attempt to pass argument list to the function '%{name}' which cannot be called without parentheses"
5804
5847
  msgstr ""
5805
5848
 
5806
- #: ../lib/puppet/pops/parser/parser_support.rb:206
5849
+ #: ../lib/puppet/pops/parser/parser_support.rb:197
5807
5850
  msgid "illegal comma separated argument list"
5808
5851
  msgstr ""
5809
5852
 
@@ -5843,7 +5886,7 @@ msgstr ""
5843
5886
  msgid "digit expected"
5844
5887
  msgstr ""
5845
5888
 
5846
- #: ../lib/puppet/pops/resource/resource_type_impl.rb:167 ../lib/puppet/type.rb:428
5889
+ #: ../lib/puppet/pops/resource/resource_type_impl.rb:167 ../lib/puppet/type.rb:434
5847
5890
  msgid "you must specify title patterns when there are two or more key attributes"
5848
5891
  msgstr ""
5849
5892
 
@@ -6123,65 +6166,65 @@ msgstr ""
6123
6166
  msgid "Unknown type <%{type}>"
6124
6167
  msgstr ""
6125
6168
 
6126
- #: ../lib/puppet/pops/types/types.rb:930
6169
+ #: ../lib/puppet/pops/types/types.rb:928
6127
6170
  msgid "The string '%{str}' cannot be converted to Numeric"
6128
6171
  msgstr ""
6129
6172
 
6130
- #: ../lib/puppet/pops/types/types.rb:933
6173
+ #: ../lib/puppet/pops/types/types.rb:931
6131
6174
  msgid "Value of type %{type} cannot be converted to Numeric"
6132
6175
  msgstr ""
6133
6176
 
6134
- #: ../lib/puppet/pops/types/types.rb:1171
6177
+ #: ../lib/puppet/pops/types/types.rb:1169
6135
6178
  msgid "The string '%{str}' cannot be converted to Integer"
6136
6179
  msgstr ""
6137
6180
 
6138
- #: ../lib/puppet/pops/types/types.rb:1174
6181
+ #: ../lib/puppet/pops/types/types.rb:1172
6139
6182
  msgid "Value of type %{type} cannot be converted to Integer"
6140
6183
  msgstr ""
6141
6184
 
6142
- #: ../lib/puppet/pops/types/types.rb:1182
6185
+ #: ../lib/puppet/pops/types/types.rb:1180
6143
6186
  msgid "Illegal radix: %{radix}, expected 2, 8, 10, 16, or default"
6144
6187
  msgstr ""
6145
6188
 
6146
- #: ../lib/puppet/pops/types/types.rb:1295
6189
+ #: ../lib/puppet/pops/types/types.rb:1293
6147
6190
  msgid "The string '%{str}' cannot be converted to Float"
6148
6191
  msgstr ""
6149
6192
 
6150
- #: ../lib/puppet/pops/types/types.rb:1298
6193
+ #: ../lib/puppet/pops/types/types.rb:1296
6151
6194
  msgid "Value of type %{type} cannot be converted to Float"
6152
6195
  msgstr ""
6153
6196
 
6154
6197
  #. TRANSLATORS 'PStringType#initialize' is a class and method name and should not be translated
6155
- #: ../lib/puppet/pops/types/types.rb:1515
6198
+ #: ../lib/puppet/pops/types/types.rb:1513
6156
6199
  msgid "Passing more than one argument to PStringType#initialize is deprecated"
6157
6200
  msgstr ""
6158
6201
 
6159
6202
  #. TRANSLATORS 'PStringType#values' and '#value' are classes and method names and should not be translated
6160
- #: ../lib/puppet/pops/types/types.rb:1569
6203
+ #: ../lib/puppet/pops/types/types.rb:1567
6161
6204
  msgid "Method PStringType#values is deprecated. Use #value instead"
6162
6205
  msgstr ""
6163
6206
 
6164
- #: ../lib/puppet/pops/types/types.rb:1894
6207
+ #: ../lib/puppet/pops/types/types.rb:1892
6165
6208
  msgid "The string '%{str}' cannot be converted to Boolean"
6166
6209
  msgstr ""
6167
6210
 
6168
- #: ../lib/puppet/pops/types/types.rb:1897
6211
+ #: ../lib/puppet/pops/types/types.rb:1895
6169
6212
  msgid "Value of type %{type} cannot be converted to Boolean"
6170
6213
  msgstr ""
6171
6214
 
6172
- #: ../lib/puppet/pops/types/types.rb:2625
6215
+ #: ../lib/puppet/pops/types/types.rb:2623
6173
6216
  msgid "Value of type %{type} cannot be converted to Array"
6174
6217
  msgstr ""
6175
6218
 
6176
- #: ../lib/puppet/pops/types/types.rb:2695
6219
+ #: ../lib/puppet/pops/types/types.rb:2693
6177
6220
  msgid "Puppet::Pops::Types::PHashType#element_type is deprecated, use #value_type instead"
6178
6221
  msgstr ""
6179
6222
 
6180
- #: ../lib/puppet/pops/types/types.rb:2832
6223
+ #: ../lib/puppet/pops/types/types.rb:2830
6181
6224
  msgid "odd number of arguments for Hash"
6182
6225
  msgstr ""
6183
6226
 
6184
- #: ../lib/puppet/pops/types/types.rb:2843
6227
+ #: ../lib/puppet/pops/types/types.rb:2841
6185
6228
  msgid "Value of type %{type} cannot be converted to Hash"
6186
6229
  msgstr ""
6187
6230
 
@@ -6265,7 +6308,7 @@ msgid "No command %{command} defined for provider %{provider}"
6265
6308
  msgstr ""
6266
6309
 
6267
6310
  #: ../lib/puppet/provider.rb:398
6268
- msgid "To support listing resources of this type the '%{provider}' provider needs to implement an 'instances' class method returning the current set of resources. We recommend porting your module to the simpler Resource API instead: https://puppet.com/search/docs?keys=resource+api"
6311
+ msgid "Provider %{provider} has not defined the 'instances' class method"
6269
6312
  msgstr ""
6270
6313
 
6271
6314
  #: ../lib/puppet/provider.rb:470
@@ -6316,7 +6359,11 @@ msgstr ""
6316
6359
  msgid "Overriding environment setting '%{var}' with '%{value}'"
6317
6360
  msgstr ""
6318
6361
 
6319
- #: ../lib/puppet/provider/exec.rb:91
6362
+ #: ../lib/puppet/provider/exec.rb:30
6363
+ msgid "Empty environment setting '%{var}'"
6364
+ msgstr ""
6365
+
6366
+ #: ../lib/puppet/provider/exec.rb:96
6320
6367
  msgid "'%{command}' is not qualified and no path was specified. Please qualify the command or specify a path."
6321
6368
  msgstr ""
6322
6369
 
@@ -6348,19 +6395,14 @@ msgstr ""
6348
6395
  msgid "Failed to set group to '%{should}': %{detail}"
6349
6396
  msgstr ""
6350
6397
 
6351
- #: ../lib/puppet/provider/file/posix.rb:131 ../lib/puppet/provider/file/windows.rb:78
6398
+ #: ../lib/puppet/provider/file/posix.rb:131 ../lib/puppet/provider/file/windows.rb:76
6352
6399
  msgid "failed to set mode %{mode} on %{path}: %{message}"
6353
6400
  msgstr ""
6354
6401
 
6355
- #: ../lib/puppet/provider/file/windows.rb:87
6402
+ #: ../lib/puppet/provider/file/windows.rb:85
6356
6403
  msgid "Can only manage owner, group, and mode on filesystems that support Windows ACLs, such as NTFS"
6357
6404
  msgstr ""
6358
6405
 
6359
- #. TRANSLATORS 'SYSTEM' is a Windows name and should not be translated
6360
- #: ../lib/puppet/provider/file/windows.rb:129
6361
- msgid "%{resource_name}: %{mode_part_type} set to SYSTEM. SYSTEM permissions cannot be set below FullControl ('7')"
6362
- msgstr ""
6363
-
6364
6406
  #: ../lib/puppet/provider/group/aix.rb:47
6365
6407
  msgid "No AIX group exists with a group name or gid of %{group}!"
6366
6408
  msgstr ""
@@ -6536,7 +6578,7 @@ msgstr ""
6536
6578
  msgid "You cannot install dpkg packages without a source"
6537
6579
  msgstr ""
6538
6580
 
6539
- #: ../lib/puppet/provider/package/dpkg.rb:107
6581
+ #: ../lib/puppet/provider/package/dpkg.rb:108
6540
6582
  msgid "source doesn't contain named package, but %{name}"
6541
6583
  msgstr ""
6542
6584
 
@@ -6544,27 +6586,27 @@ msgstr ""
6544
6586
  msgid "source is defined but does not have trailing slash, ignoring %{source}"
6545
6587
  msgstr ""
6546
6588
 
6547
- #: ../lib/puppet/provider/package/gem.rb:84
6589
+ #: ../lib/puppet/provider/package/gem.rb:42
6548
6590
  msgid "Could not list gems: %{detail}"
6549
6591
  msgstr ""
6550
6592
 
6551
- #: ../lib/puppet/provider/package/gem.rb:110
6593
+ #: ../lib/puppet/provider/package/gem.rb:68
6552
6594
  msgid "Could not match %{desc}"
6553
6595
  msgstr ""
6554
6596
 
6555
- #: ../lib/puppet/provider/package/gem.rb:158
6597
+ #: ../lib/puppet/provider/package/gem.rb:109
6556
6598
  msgid "Invalid source '%{uri}': %{detail}"
6557
6599
  msgstr ""
6558
6600
 
6559
- #: ../lib/puppet/provider/package/gem.rb:169
6601
+ #: ../lib/puppet/provider/package/gem.rb:120
6560
6602
  msgid "puppet:// URLs are not supported as gem sources"
6561
6603
  msgstr ""
6562
6604
 
6563
- #: ../lib/puppet/provider/package/gem.rb:185
6605
+ #: ../lib/puppet/provider/package/gem.rb:136
6564
6606
  msgid "Could not install: %{output}"
6565
6607
  msgstr ""
6566
6608
 
6567
- #: ../lib/puppet/provider/package/gem.rb:211
6609
+ #: ../lib/puppet/provider/package/gem.rb:161
6568
6610
  msgid "Could not uninstall: %{output}"
6569
6611
  msgstr ""
6570
6612
 
@@ -6787,19 +6829,19 @@ msgstr ""
6787
6829
  msgid "Package %{name} was not present after trying to install it"
6788
6830
  msgstr ""
6789
6831
 
6790
- #: ../lib/puppet/provider/package/windows.rb:97
6832
+ #: ../lib/puppet/provider/package/windows.rb:93
6791
6833
  msgid "The package %{operation}ed successfully and the system is rebooting now."
6792
6834
  msgstr ""
6793
6835
 
6794
- #: ../lib/puppet/provider/package/windows.rb:99
6836
+ #: ../lib/puppet/provider/package/windows.rb:95
6795
6837
  msgid "The package %{operation}ed successfully, but the system must be rebooted."
6796
6838
  msgstr ""
6797
6839
 
6798
- #: ../lib/puppet/provider/package/windows.rb:101
6840
+ #: ../lib/puppet/provider/package/windows.rb:97
6799
6841
  msgid "Failed to %{operation}"
6800
6842
  msgstr ""
6801
6843
 
6802
- #: ../lib/puppet/provider/package/windows.rb:107
6844
+ #: ../lib/puppet/provider/package/windows.rb:103
6803
6845
  msgid "The source parameter cannot be empty when using the Windows provider."
6804
6846
  msgstr ""
6805
6847
 
@@ -6835,14 +6877,6 @@ msgstr ""
6835
6877
  msgid "Failed to update to version %{should}, got version %{version} instead"
6836
6878
  msgstr ""
6837
6879
 
6838
- #: ../lib/puppet/provider/package_targetable.rb:53
6839
- msgid "Provider %{name} package command is not functional on this host"
6840
- msgstr ""
6841
-
6842
- #: ../lib/puppet/provider/package_targetable.rb:56
6843
- msgid "Provider %{name} package command '%{cmd}' does not exist on this host"
6844
- msgstr ""
6845
-
6846
6880
  #: ../lib/puppet/provider/parsedfile.rb:52
6847
6881
  msgid "Invalid filetype %{type}"
6848
6882
  msgstr ""
@@ -6905,31 +6939,31 @@ msgstr ""
6905
6939
  msgid "The %{service} service is incomplete so its status will be reported as :stopped. See `svcs -xv %{fmri}` for more details."
6906
6940
  msgstr ""
6907
6941
 
6908
- #: ../lib/puppet/provider/service/windows.rb:22
6942
+ #: ../lib/puppet/provider/service/windows.rb:23
6909
6943
  msgid "Cannot enable %{resource_name}, error was: %{detail}"
6910
6944
  msgstr ""
6911
6945
 
6912
- #: ../lib/puppet/provider/service/windows.rb:28
6946
+ #: ../lib/puppet/provider/service/windows.rb:29
6913
6947
  msgid "Cannot disable %{resource_name}, error was: %{detail}"
6914
6948
  msgstr ""
6915
6949
 
6916
- #: ../lib/puppet/provider/service/windows.rb:34
6950
+ #: ../lib/puppet/provider/service/windows.rb:35
6917
6951
  msgid "Cannot enable %{resource_name} for manual start, error was: %{detail}"
6918
6952
  msgstr ""
6919
6953
 
6920
- #: ../lib/puppet/provider/service/windows.rb:52
6954
+ #: ../lib/puppet/provider/service/windows.rb:53
6921
6955
  msgid "Unknown start type: %{start_type}"
6922
6956
  msgstr ""
6923
6957
 
6924
- #: ../lib/puppet/provider/service/windows.rb:55
6958
+ #: ../lib/puppet/provider/service/windows.rb:56
6925
6959
  msgid "Cannot get start type %{resource_name}, error was: %{detail}"
6926
6960
  msgstr ""
6927
6961
 
6928
- #: ../lib/puppet/provider/service/windows.rb:69
6962
+ #: ../lib/puppet/provider/service/windows.rb:70
6929
6963
  msgid "Will not start disabled service %{resource_name} without managing enable. Specify 'enable => false' to override."
6930
6964
  msgstr ""
6931
6965
 
6932
- #: ../lib/puppet/provider/service/windows.rb:101
6966
+ #: ../lib/puppet/provider/service/windows.rb:102
6933
6967
  msgid "Unknown service state '%{current_state}' for service '%{resource_name}'"
6934
6968
  msgstr ""
6935
6969
 
@@ -7071,11 +7105,11 @@ msgstr ""
7071
7105
  msgid "no parameter named '%{name}'"
7072
7106
  msgstr ""
7073
7107
 
7074
- #: ../lib/puppet/resource.rb:609
7108
+ #: ../lib/puppet/resource.rb:611
7075
7109
  msgid "No title provided and %{type} is not a valid resource reference"
7076
7110
  msgstr ""
7077
7111
 
7078
- #: ../lib/puppet/resource.rb:682
7112
+ #: ../lib/puppet/resource.rb:684
7079
7113
  msgid "No set of title patterns matched the title \"%{title}\"."
7080
7114
  msgstr ""
7081
7115
 
@@ -7161,7 +7195,7 @@ msgstr ""
7161
7195
  msgid "Could not find resource %{resource} when converting %{message} resources"
7162
7196
  msgstr ""
7163
7197
 
7164
- #: ../lib/puppet/resource/status.rb:139 ../lib/puppet/transaction.rb:266
7198
+ #: ../lib/puppet/resource/status.rb:139 ../lib/puppet/transaction.rb:264
7165
7199
  msgid "Could not evaluate: %{detail}"
7166
7200
  msgstr ""
7167
7201
 
@@ -7305,57 +7339,53 @@ msgstr ""
7305
7339
  msgid "Using --configprint is deprecated. Use 'puppet config <subcommand>' instead."
7306
7340
  msgstr ""
7307
7341
 
7308
- #: ../lib/puppet/settings.rb:599
7309
- msgid "Could not load %{file}: %{detail}"
7310
- msgstr ""
7311
-
7312
- #: ../lib/puppet/settings.rb:700
7342
+ #: ../lib/puppet/settings.rb:695
7313
7343
  msgid "Invalid setting type '%{type}'"
7314
7344
  msgstr ""
7315
7345
 
7316
- #: ../lib/puppet/settings.rb:844
7346
+ #: ../lib/puppet/settings.rb:839
7317
7347
  msgid "Unknown searchpath case: %{source_type} for the %{source} settings path element."
7318
7348
  msgstr ""
7319
7349
 
7320
- #: ../lib/puppet/settings.rb:906
7350
+ #: ../lib/puppet/settings.rb:901
7321
7351
  msgid "setting definition for '%{name}' is not a hash!"
7322
7352
  msgstr ""
7323
7353
 
7324
- #: ../lib/puppet/settings.rb:911
7354
+ #: ../lib/puppet/settings.rb:906
7325
7355
  msgid "Setting %{name} is already defined"
7326
7356
  msgstr ""
7327
7357
 
7328
- #: ../lib/puppet/settings.rb:915
7358
+ #: ../lib/puppet/settings.rb:910
7329
7359
  msgid "Setting %{name} is already using short name '%{short}'"
7330
7360
  msgstr ""
7331
7361
 
7332
- #: ../lib/puppet/settings.rb:1172
7362
+ #: ../lib/puppet/settings.rb:1167
7333
7363
  msgid "Setting %{name} is deprecated."
7334
7364
  msgstr ""
7335
7365
 
7336
7366
  #. TRANSLATORS 'puppet.conf' is a file name and should not be translated
7337
- #: ../lib/puppet/settings.rb:1177
7367
+ #: ../lib/puppet/settings.rb:1172
7338
7368
  msgid "Setting %{name} is deprecated in puppet.conf."
7339
7369
  msgstr ""
7340
7370
 
7341
- #: ../lib/puppet/settings.rb:1344
7371
+ #: ../lib/puppet/settings.rb:1339
7342
7372
  msgid "Error converting value for param '%{name}': %{detail}"
7343
7373
  msgstr ""
7344
7374
 
7345
- #: ../lib/puppet/settings.rb:1368
7375
+ #: ../lib/puppet/settings.rb:1363
7346
7376
  msgid "Could not find value for %{expression}"
7347
7377
  msgstr ""
7348
7378
 
7349
7379
  #. TRANSLATORS '$environment' is a Puppet specific variable and should not be translated
7350
- #: ../lib/puppet/settings.rb:1378
7380
+ #: ../lib/puppet/settings.rb:1373
7351
7381
  msgid "You cannot interpolate $environment within '%{setting_name}' when using directory environments."
7352
7382
  msgstr ""
7353
7383
 
7354
- #: ../lib/puppet/settings.rb:1379
7384
+ #: ../lib/puppet/settings.rb:1374
7355
7385
  msgid "Its value will remain %{value}."
7356
7386
  msgstr ""
7357
7387
 
7358
- #: ../lib/puppet/settings.rb:1410
7388
+ #: ../lib/puppet/settings.rb:1405
7359
7389
  msgid "Attempt to assign a value to unknown setting %{name}"
7360
7390
  msgstr ""
7361
7391
 
@@ -7477,7 +7507,7 @@ msgstr ""
7477
7507
  msgid "Invalid priority format '%{value}' for parameter: %{name}"
7478
7508
  msgstr ""
7479
7509
 
7480
- #: ../lib/puppet/settings/server_list_setting.rb:25
7510
+ #: ../lib/puppet/settings/server_list_setting.rb:16
7481
7511
  msgid "Expected an Array of String, got a %{klass}"
7482
7512
  msgstr ""
7483
7513
 
@@ -7585,15 +7615,15 @@ msgstr ""
7585
7615
  msgid "unexpected attributes %{keys} in %{path}"
7586
7616
  msgstr ""
7587
7617
 
7588
- #: ../lib/puppet/ssl/host.rb:154
7618
+ #: ../lib/puppet/ssl/host.rb:165
7589
7619
  msgid "No certificate to validate."
7590
7620
  msgstr ""
7591
7621
 
7592
- #: ../lib/puppet/ssl/host.rb:155
7622
+ #: ../lib/puppet/ssl/host.rb:166
7593
7623
  msgid "No private key with which to validate certificate with fingerprint: %{fingerprint}"
7594
7624
  msgstr ""
7595
7625
 
7596
- #: ../lib/puppet/ssl/host.rb:157
7626
+ #: ../lib/puppet/ssl/host.rb:168
7597
7627
  msgid ""
7598
7628
  "The certificate retrieved from the master does not match the agent's private key. Did you forget to run as root?\n"
7599
7629
  "Certificate fingerprint: %{fingerprint}\n"
@@ -7605,7 +7635,7 @@ msgid ""
7605
7635
  " 2. puppet %{puppet_params}\n"
7606
7636
  msgstr ""
7607
7637
 
7608
- #: ../lib/puppet/ssl/host.rb:239
7638
+ #: ../lib/puppet/ssl/host.rb:250
7609
7639
  msgid ""
7610
7640
  "The local CSR does not match the agent's public key.\n"
7611
7641
  "CSR fingerprint: %{fingerprint}\n"
@@ -7617,7 +7647,7 @@ msgid ""
7617
7647
  " 2. puppet %{puppet_params}\n"
7618
7648
  msgstr ""
7619
7649
 
7620
- #: ../lib/puppet/ssl/host.rb:255
7650
+ #: ../lib/puppet/ssl/host.rb:266
7621
7651
  msgid ""
7622
7652
  "The CSR retrieved from the master does not match the agent's public key.\n"
7623
7653
  "CSR fingerprint: %{fingerprint}\n"
@@ -7631,73 +7661,73 @@ msgid ""
7631
7661
  " 2. puppet %{puppet_params}\n"
7632
7662
  msgstr ""
7633
7663
 
7634
- #: ../lib/puppet/ssl/host.rb:309 ../lib/puppet/ssl/host.rb:330
7664
+ #: ../lib/puppet/ssl/host.rb:320 ../lib/puppet/ssl/host.rb:341
7635
7665
  msgid "Could not request certificate: %{message}"
7636
7666
  msgstr ""
7637
7667
 
7638
- #: ../lib/puppet/ssl/host.rb:311
7668
+ #: ../lib/puppet/ssl/host.rb:322
7639
7669
  msgid "Exiting; failed to retrieve certificate and waitforcert is disabled"
7640
7670
  msgstr ""
7641
7671
 
7642
- #: ../lib/puppet/ssl/host.rb:320
7672
+ #: ../lib/puppet/ssl/host.rb:331
7643
7673
  msgid "Exiting; no certificate found and waitforcert is disabled"
7644
7674
  msgstr ""
7645
7675
 
7646
- #: ../lib/puppet/ssl/host.rb:328
7676
+ #: ../lib/puppet/ssl/host.rb:339
7647
7677
  msgid "Did not receive certificate"
7648
7678
  msgstr ""
7649
7679
 
7650
- #: ../lib/puppet/ssl/host.rb:368
7680
+ #: ../lib/puppet/ssl/host.rb:379
7651
7681
  msgid "Response from the CA did not contain a valid certificate request: %{message}"
7652
7682
  msgstr ""
7653
7683
 
7654
- #: ../lib/puppet/ssl/host.rb:374
7684
+ #: ../lib/puppet/ssl/host.rb:385
7655
7685
  msgid "Could not download certificate request: %{message}"
7656
7686
  msgstr ""
7657
7687
 
7658
- #: ../lib/puppet/ssl/host.rb:401
7688
+ #: ../lib/puppet/ssl/host.rb:412
7659
7689
  msgid ""
7660
7690
  "Failed attempting to load CRL from %{crl_path}! The CRL below caused the error '%{error}':\n"
7661
7691
  "%{crl}"
7662
7692
  msgstr ""
7663
7693
 
7664
- #: ../lib/puppet/ssl/host.rb:429
7694
+ #: ../lib/puppet/ssl/host.rb:440
7665
7695
  msgid "The CA certificate at %{file_path} is invalid: %{message}"
7666
7696
  msgstr ""
7667
7697
 
7668
- #: ../lib/puppet/ssl/host.rb:453
7698
+ #: ../lib/puppet/ssl/host.rb:464
7669
7699
  msgid "No valid PEM-encoded certificates."
7670
7700
  msgstr ""
7671
7701
 
7672
- #: ../lib/puppet/ssl/host.rb:460
7702
+ #: ../lib/puppet/ssl/host.rb:471
7673
7703
  msgid "Could not parse certificate: %{message}"
7674
7704
  msgstr ""
7675
7705
 
7676
- #: ../lib/puppet/ssl/host.rb:483
7706
+ #: ../lib/puppet/ssl/host.rb:494
7677
7707
  msgid "Could not download CRLs: %{message}"
7678
7708
  msgstr ""
7679
7709
 
7680
- #: ../lib/puppet/ssl/host.rb:502
7710
+ #: ../lib/puppet/ssl/host.rb:513
7681
7711
  msgid "Response from the CA did not contain a valid CA certificate: %{message}"
7682
7712
  msgstr ""
7683
7713
 
7684
- #: ../lib/puppet/ssl/host.rb:505
7714
+ #: ../lib/puppet/ssl/host.rb:516
7685
7715
  msgid "Could not download CA certificate: %{message}"
7686
7716
  msgstr ""
7687
7717
 
7688
- #: ../lib/puppet/ssl/host.rb:545
7718
+ #: ../lib/puppet/ssl/host.rb:556
7689
7719
  msgid "The certificate at %{file_path} is invalid. Could not load."
7690
7720
  msgstr ""
7691
7721
 
7692
- #: ../lib/puppet/ssl/host.rb:566
7722
+ #: ../lib/puppet/ssl/host.rb:577
7693
7723
  msgid "Response from the CA did not contain a valid certificate for %{cert_name}."
7694
7724
  msgstr ""
7695
7725
 
7696
- #: ../lib/puppet/ssl/host.rb:570
7726
+ #: ../lib/puppet/ssl/host.rb:581
7697
7727
  msgid "No certificate for %{cert_name} on CA"
7698
7728
  msgstr ""
7699
7729
 
7700
- #: ../lib/puppet/ssl/host.rb:573
7730
+ #: ../lib/puppet/ssl/host.rb:584
7701
7731
  msgid "Could not download host certificate: %{message}"
7702
7732
  msgstr ""
7703
7733
 
@@ -7725,18 +7755,6 @@ msgstr ""
7725
7755
  msgid "Error registering ssl custom OIDs mapping from file '%{custom_oid_file}': %{err}"
7726
7756
  msgstr ""
7727
7757
 
7728
- #: ../lib/puppet/ssl/validator/default_validator.rb:95 ../lib/puppet/util/ssl.rb:81
7729
- msgid "expected one of %{certnames}"
7730
- msgstr ""
7731
-
7732
- #: ../lib/puppet/ssl/validator/default_validator.rb:97 ../lib/puppet/util/ssl.rb:83
7733
- msgid "expected %{certname}"
7734
- msgstr ""
7735
-
7736
- #: ../lib/puppet/ssl/validator/default_validator.rb:100 ../lib/puppet/util/ssl.rb:86
7737
- msgid "Server hostname '%{host}' did not match server certificate; %{expected_certnames}"
7738
- msgstr ""
7739
-
7740
7758
  #: ../lib/puppet/syntax_checkers/base64.rb:18
7741
7759
  msgid "Base64 syntax checker: the text to check must be a String."
7742
7760
  msgstr ""
@@ -7757,6 +7775,22 @@ msgstr ""
7757
7775
  msgid "Base64 syntax checker: Cannot parse invalid Base64 string - contains letters outside strict base 64 range (or whitespace)"
7758
7776
  msgstr ""
7759
7777
 
7778
+ #: ../lib/puppet/syntax_checkers/epp.rb:17
7779
+ msgid "EPP syntax checker: the text to check must be a String."
7780
+ msgstr ""
7781
+
7782
+ #: ../lib/puppet/syntax_checkers/epp.rb:18
7783
+ msgid "EPP syntax checker: the syntax identifier must be a String, e.g. pp"
7784
+ msgstr ""
7785
+
7786
+ #: ../lib/puppet/syntax_checkers/epp.rb:19
7787
+ msgid "EPP syntax checker: invalid Acceptor, got: '%{klass}'."
7788
+ msgstr ""
7789
+
7790
+ #: ../lib/puppet/syntax_checkers/epp.rb:25
7791
+ msgid "EPP syntax checker: \"%{message}\""
7792
+ msgstr ""
7793
+
7760
7794
  #: ../lib/puppet/syntax_checkers/json.rb:17
7761
7795
  msgid "Json syntax checker: the text to check must be a String."
7762
7796
  msgstr ""
@@ -7773,64 +7807,80 @@ msgstr ""
7773
7807
  msgid "JSON syntax checker: Cannot parse invalid JSON string. \"%{message}\""
7774
7808
  msgstr ""
7775
7809
 
7776
- #: ../lib/puppet/transaction.rb:86
7810
+ #: ../lib/puppet/syntax_checkers/pp.rb:17
7811
+ msgid "PP syntax checker: the text to check must be a String."
7812
+ msgstr ""
7813
+
7814
+ #: ../lib/puppet/syntax_checkers/pp.rb:18
7815
+ msgid "PP syntax checker: the syntax identifier must be a String, e.g. pp"
7816
+ msgstr ""
7817
+
7818
+ #: ../lib/puppet/syntax_checkers/pp.rb:19
7819
+ msgid "PP syntax checker: invalid Acceptor, got: '%{klass}'."
7820
+ msgstr ""
7821
+
7822
+ #: ../lib/puppet/syntax_checkers/pp.rb:25
7823
+ msgid "PP syntax checker: \"%{message}\""
7824
+ msgstr ""
7825
+
7826
+ #: ../lib/puppet/transaction.rb:84
7777
7827
  msgid "Some pre-run checks failed"
7778
7828
  msgstr ""
7779
7829
 
7780
- #: ../lib/puppet/transaction.rb:102
7830
+ #: ../lib/puppet/transaction.rb:100
7781
7831
  msgid "Applying configuration version '%{version}'"
7782
7832
  msgstr ""
7783
7833
 
7784
- #: ../lib/puppet/transaction.rb:125
7834
+ #: ../lib/puppet/transaction.rb:123
7785
7835
  msgid "Provider %{name} is not functional on this host"
7786
7836
  msgstr ""
7787
7837
 
7788
- #: ../lib/puppet/transaction.rb:141
7838
+ #: ../lib/puppet/transaction.rb:139
7789
7839
  msgid "Could not find a suitable provider for %{type}"
7790
7840
  msgstr ""
7791
7841
 
7792
- #: ../lib/puppet/transaction.rb:148
7842
+ #: ../lib/puppet/transaction.rb:146
7793
7843
  msgid "post_resource_eval failed for provider %{provider}"
7794
7844
  msgstr ""
7795
7845
 
7796
- #: ../lib/puppet/transaction.rb:165
7846
+ #: ../lib/puppet/transaction.rb:163
7797
7847
  msgid "resource is part of a dependency cycle"
7798
7848
  msgstr ""
7799
7849
 
7800
- #: ../lib/puppet/transaction.rb:167
7850
+ #: ../lib/puppet/transaction.rb:165
7801
7851
  msgid "One or more resource dependency cycles detected in graph"
7802
7852
  msgstr ""
7803
7853
 
7804
- #: ../lib/puppet/transaction.rb:180
7854
+ #: ../lib/puppet/transaction.rb:178
7805
7855
  msgid "Somehow left a component in the relationship graph"
7806
7856
  msgstr ""
7807
7857
 
7808
- #: ../lib/puppet/transaction.rb:182
7858
+ #: ../lib/puppet/transaction.rb:180
7809
7859
  msgid "Starting to evaluate the resource"
7810
7860
  msgstr ""
7811
7861
 
7812
- #: ../lib/puppet/transaction.rb:184
7862
+ #: ../lib/puppet/transaction.rb:182
7813
7863
  msgid "Evaluated in %{seconds} seconds"
7814
7864
  msgstr ""
7815
7865
 
7816
- #: ../lib/puppet/transaction.rb:297
7866
+ #: ../lib/puppet/transaction.rb:295
7817
7867
  msgid "Dependency %{dep} has failures: %{status}"
7818
7868
  msgstr ""
7819
7869
 
7820
- #: ../lib/puppet/transaction.rb:318
7870
+ #: ../lib/puppet/transaction.rb:315
7821
7871
  msgid "Prefetch failed for %{type_name} provider '%{name}'"
7822
7872
  msgstr ""
7823
7873
 
7824
7874
  #. TRANSLATORS `prefetch` is a function name and should not be translated
7825
- #: ../lib/puppet/transaction.rb:363 ../lib/puppet/transaction.rb:366
7875
+ #: ../lib/puppet/transaction.rb:365
7826
7876
  msgid "Could not prefetch %{type_name} provider '%{name}': %{detail}"
7827
7877
  msgstr ""
7828
7878
 
7829
- #: ../lib/puppet/transaction.rb:399
7879
+ #: ../lib/puppet/transaction.rb:394
7830
7880
  msgid "Skipping because of failed dependencies"
7831
7881
  msgstr ""
7832
7882
 
7833
- #: ../lib/puppet/transaction.rb:404
7883
+ #: ../lib/puppet/transaction.rb:399
7834
7884
  msgid "Skipping because provider prefetch failed"
7835
7885
  msgstr ""
7836
7886
 
@@ -7869,11 +7919,11 @@ msgid_plural "Triggered '%{callback}' from %{count} events"
7869
7919
  msgstr[0] ""
7870
7920
  msgstr[1] ""
7871
7921
 
7872
- #: ../lib/puppet/transaction/event_manager.rb:157
7922
+ #: ../lib/puppet/transaction/event_manager.rb:154
7873
7923
  msgid "Failed to call %{callback}: %{detail}"
7874
7924
  msgstr ""
7875
7925
 
7876
- #: ../lib/puppet/transaction/event_manager.rb:172
7926
+ #: ../lib/puppet/transaction/event_manager.rb:164
7877
7927
  msgid "Would have triggered '%{callback}' from %{count} event"
7878
7928
  msgid_plural "Would have triggered '%{callback}' from %{count} events"
7879
7929
  msgstr[0] ""
@@ -7919,97 +7969,97 @@ msgstr ""
7919
7969
  msgid "could not create change error message for %{name}"
7920
7970
  msgstr ""
7921
7971
 
7922
- #: ../lib/puppet/transaction/resource_harness.rb:215
7972
+ #: ../lib/puppet/transaction/resource_harness.rb:214
7923
7973
  msgid "audit change: previously recorded value %s has been changed to %s"
7924
7974
  msgstr ""
7925
7975
 
7926
- #: ../lib/puppet/transaction/resource_harness.rb:225
7976
+ #: ../lib/puppet/transaction/resource_harness.rb:224
7927
7977
  msgid " (previously recorded value was %s)"
7928
7978
  msgstr ""
7929
7979
 
7930
- #: ../lib/puppet/transaction/resource_harness.rb:232
7980
+ #: ../lib/puppet/transaction/resource_harness.rb:231
7931
7981
  msgid "current_value %s, should be %s (noop)"
7932
7982
  msgstr ""
7933
7983
 
7934
- #: ../lib/puppet/transaction/resource_harness.rb:241
7984
+ #: ../lib/puppet/transaction/resource_harness.rb:240
7935
7985
  msgid "changed %s to %s"
7936
7986
  msgstr ""
7937
7987
 
7938
- #: ../lib/puppet/transaction/resource_harness.rb:264
7988
+ #: ../lib/puppet/transaction/resource_harness.rb:263
7939
7989
  msgid "audit change: newly-recorded value %s"
7940
7990
  msgstr ""
7941
7991
 
7942
- #: ../lib/puppet/type.rb:503
7992
+ #: ../lib/puppet/type.rb:509
7943
7993
  msgid "Options must be a hash, not %{type}"
7944
7994
  msgstr ""
7945
7995
 
7946
- #: ../lib/puppet/type.rb:506
7996
+ #: ../lib/puppet/type.rb:512
7947
7997
  msgid "Class %{class_name} already has a property named %{property}"
7948
7998
  msgstr ""
7949
7999
 
7950
- #: ../lib/puppet/type.rb:592
8000
+ #: ../lib/puppet/type.rb:598
7951
8001
  msgid "Class %{class_name} has not defined parameters"
7952
8002
  msgstr ""
7953
8003
 
7954
- #: ../lib/puppet/type.rb:676
8004
+ #: ../lib/puppet/type.rb:682
7955
8005
  msgid "Parameter %{name} failed on %{ref}: %{detail}"
7956
8006
  msgstr ""
7957
8007
 
7958
- #: ../lib/puppet/type.rb:699
8008
+ #: ../lib/puppet/type.rb:705
7959
8009
  msgid "Undefined attribute '%{attribute}' in %{name}"
7960
8010
  msgstr ""
7961
8011
 
7962
8012
  #. TRANSLATORS 'is' is a variable name and should not be translated
7963
8013
  #. TRANSLATORS 'is' is a variable name and should not be translated
7964
- #: ../lib/puppet/type.rb:1023 ../lib/puppet/type.rb:1034
8014
+ #: ../lib/puppet/type.rb:1029 ../lib/puppet/type.rb:1040
7965
8015
  msgid "The 'is' value is not in the 'is' array for '%{name}'"
7966
8016
  msgstr ""
7967
8017
 
7968
- #: ../lib/puppet/type.rb:1160
8018
+ #: ../lib/puppet/type.rb:1166
7969
8019
  msgid "%{name} has no providers and has not overridden 'instances'"
7970
8020
  msgstr ""
7971
8021
 
7972
- #: ../lib/puppet/type.rb:1419
8022
+ #: ../lib/puppet/type.rb:1425
7973
8023
  msgid "Cannot add aliases without a catalog"
7974
8024
  msgstr ""
7975
8025
 
7976
- #: ../lib/puppet/type.rb:1498
8026
+ #: ../lib/puppet/type.rb:1504
7977
8027
  msgid "Could not find %{description} %{ref} for %{resource}"
7978
8028
  msgstr ""
7979
8029
 
7980
- #: ../lib/puppet/type.rb:1771
8030
+ #: ../lib/puppet/type.rb:1777
7981
8031
  msgid "Found multiple default providers for %{name}: %{provider_list}; using %{selected_provider}"
7982
8032
  msgstr ""
7983
8033
 
7984
- #: ../lib/puppet/type.rb:1856
8034
+ #: ../lib/puppet/type.rb:1862
7985
8035
  msgid "Could not find parent provider %{parent} of %{name}"
7986
8036
  msgstr ""
7987
8037
 
7988
- #: ../lib/puppet/type.rb:1932
8038
+ #: ../lib/puppet/type.rb:1938
7989
8039
  msgid "Invalid %{resource} provider '%{provider_class}'"
7990
8040
  msgstr ""
7991
8041
 
7992
- #: ../lib/puppet/type.rb:2015
8042
+ #: ../lib/puppet/type.rb:2021
7993
8043
  msgid "Could not find %{name} provider of %{provider}"
7994
8044
  msgstr ""
7995
8045
 
7996
- #: ../lib/puppet/type.rb:2132
8046
+ #: ../lib/puppet/type.rb:2138
7997
8047
  msgid "You cannot add relationships without a catalog"
7998
8048
  msgstr ""
7999
8049
 
8000
- #: ../lib/puppet/type.rb:2439
8050
+ #: ../lib/puppet/type.rb:2445
8001
8051
  msgid "Unable to mark '%{name}' as sensitive: %{name} is a parameter and not a property, and cannot be automatically redacted."
8002
8052
  msgstr ""
8003
8053
 
8004
- #: ../lib/puppet/type.rb:2442
8054
+ #: ../lib/puppet/type.rb:2448
8005
8055
  msgid "Unable to mark '%{name}' as sensitive: the property itself was not assigned a value."
8006
8056
  msgstr ""
8007
8057
 
8008
- #: ../lib/puppet/type.rb:2444
8058
+ #: ../lib/puppet/type.rb:2450
8009
8059
  msgid "Unable to mark '%{name}' as sensitive: the property itself is not defined on %{type}."
8010
8060
  msgstr ""
8011
8061
 
8012
- #: ../lib/puppet/type.rb:2502
8062
+ #: ../lib/puppet/type.rb:2508
8013
8063
  msgid "Could not set %{attribute} on %{class_name}: %{detail}"
8014
8064
  msgstr ""
8015
8065
 
@@ -8073,10 +8123,6 @@ msgstr ""
8073
8123
  msgid "Check %{value} exceeded timeout"
8074
8124
  msgstr ""
8075
8125
 
8076
- #: ../lib/puppet/type/exec.rb:589
8077
- msgid "'%{cmd}' won't be executed because of failed check '%{check}'"
8078
- msgstr ""
8079
-
8080
8126
  #: ../lib/puppet/type/file.rb:56
8081
8127
  msgid "File paths must be fully qualified, not '%{path}'"
8082
8128
  msgstr ""
@@ -8197,28 +8243,24 @@ msgstr ""
8197
8243
  msgid "Ensure set to :present but file type is %{file_type} so no content will be synced"
8198
8244
  msgstr ""
8199
8245
 
8200
- #: ../lib/puppet/type/file/mode.rb:125
8201
- msgid "Not managing symlink mode"
8202
- msgstr ""
8203
-
8204
8246
  #: ../lib/puppet/type/file/source.rb:135
8205
8247
  msgid "No source for content was stored with the metadata"
8206
8248
  msgstr ""
8207
8249
 
8208
8250
  #. TRANSLATORS "source_permissions" is a parameter name and should not be translated
8209
- #: ../lib/puppet/type/file/source.rb:362
8251
+ #: ../lib/puppet/type/file/source.rb:363
8210
8252
  msgid "The `source_permissions` parameter is deprecated. Explicitly set `owner`, `group`, and `mode`."
8211
8253
  msgstr ""
8212
8254
 
8213
- #: ../lib/puppet/type/filebucket.rb:73
8255
+ #: ../lib/puppet/type/filebucket.rb:69
8214
8256
  msgid "You can only have one filebucket path"
8215
8257
  msgstr ""
8216
8258
 
8217
- #: ../lib/puppet/type/filebucket.rb:77
8259
+ #: ../lib/puppet/type/filebucket.rb:73
8218
8260
  msgid "Filebucket paths must be absolute"
8219
8261
  msgstr ""
8220
8262
 
8221
- #: ../lib/puppet/type/filebucket.rb:113
8263
+ #: ../lib/puppet/type/filebucket.rb:109
8222
8264
  msgid "Could not create %{type} filebucket: %{detail}"
8223
8265
  msgstr ""
8224
8266
 
@@ -8230,15 +8272,15 @@ msgstr ""
8230
8272
  msgid "Invalid GID %{gid}"
8231
8273
  msgstr ""
8232
8274
 
8233
- #: ../lib/puppet/type/package.rb:116 ../lib/puppet/type/package.rb:130
8275
+ #: ../lib/puppet/type/package.rb:114 ../lib/puppet/type/package.rb:128
8234
8276
  msgid "Could not update: %{detail}"
8235
8277
  msgstr ""
8236
8278
 
8237
- #: ../lib/puppet/type/package.rb:165
8279
+ #: ../lib/puppet/type/package.rb:163
8238
8280
  msgid "Could not get latest version: %{detail}"
8239
8281
  msgstr ""
8240
8282
 
8241
- #: ../lib/puppet/type/package.rb:265
8283
+ #: ../lib/puppet/type/package.rb:263
8242
8284
  msgid "Name must be a String not %{klass}"
8243
8285
  msgstr ""
8244
8286
 
@@ -8282,22 +8324,26 @@ msgstr ""
8282
8324
  msgid "Invalid minute '%{n}'"
8283
8325
  msgstr ""
8284
8326
 
8285
- #: ../lib/puppet/type/schedule.rb:282
8327
+ #: ../lib/puppet/type/schedule.rb:278
8286
8328
  msgid "Repeat must be a number"
8287
8329
  msgstr ""
8288
8330
 
8289
- #: ../lib/puppet/type/schedule.rb:291
8331
+ #: ../lib/puppet/type/schedule.rb:287
8290
8332
  msgid "Repeat must be 1 unless periodmatch is 'distance', not '%{period}'"
8291
8333
  msgstr ""
8292
8334
 
8293
- #: ../lib/puppet/type/schedule.rb:335
8335
+ #: ../lib/puppet/type/schedule.rb:331
8294
8336
  msgid "%{value} is not a valid day of the week"
8295
8337
  msgstr ""
8296
8338
 
8297
- #: ../lib/puppet/type/service.rb:89
8339
+ #: ../lib/puppet/type/service.rb:91
8298
8340
  msgid "Setting enable to manual is only supported on Microsoft Windows."
8299
8341
  msgstr ""
8300
8342
 
8343
+ #: ../lib/puppet/type/service.rb:247
8344
+ msgid "\"%{value}\" is not a positive integer: the timeout parameter must be specified as a positive integer"
8345
+ msgstr ""
8346
+
8301
8347
  #: ../lib/puppet/type/tidy.rb:85
8302
8348
  msgid "Tidy can't use matches with recurse 0, false, or undef"
8303
8349
  msgstr ""
@@ -8574,19 +8620,19 @@ msgstr ""
8574
8620
  msgid "Already a generated class named %{klassname}"
8575
8621
  msgstr ""
8576
8622
 
8577
- #: ../lib/puppet/util/command_line.rb:71
8623
+ #: ../lib/puppet/util/command_line.rb:67
8578
8624
  msgid "Could not initialize global default settings"
8579
8625
  msgstr ""
8580
8626
 
8581
- #: ../lib/puppet/util/command_line.rb:169
8627
+ #: ../lib/puppet/util/command_line.rb:166
8582
8628
  msgid "Error: Could not parse application options: invalid option: %{opt}"
8583
8629
  msgstr ""
8584
8630
 
8585
- #: ../lib/puppet/util/command_line.rb:172
8631
+ #: ../lib/puppet/util/command_line.rb:169
8586
8632
  msgid "See 'puppet help' for help on available puppet subcommands"
8587
8633
  msgstr ""
8588
8634
 
8589
- #: ../lib/puppet/util/command_line.rb:185
8635
+ #: ../lib/puppet/util/command_line.rb:182
8590
8636
  msgid "Error: Unknown Puppet subcommand '%{cmd}'"
8591
8637
  msgstr ""
8592
8638
 
@@ -8735,37 +8781,6 @@ msgstr ""
8735
8781
  msgid "Trollop::die can only be called after Trollop::options"
8736
8782
  msgstr ""
8737
8783
 
8738
- #: ../lib/puppet/util/connection.rb:25
8739
- msgid "Selected server from the %{setting} setting: %{server}"
8740
- msgstr ""
8741
-
8742
- #. TRANSLATORS 'server_list' is the name of a setting and should not be translated
8743
- #: ../lib/puppet/util/connection.rb:31
8744
- msgid "Dynamically-bound server lookup failed; using first entry from the `server_list` setting: %{server}"
8745
- msgstr ""
8746
-
8747
- #: ../lib/puppet/util/connection.rb:35
8748
- msgid "Dynamically-bound server lookup failed, falling back to %{setting} setting: %{server}"
8749
- msgstr ""
8750
-
8751
- #: ../lib/puppet/util/connection.rb:56
8752
- msgid "Selected port from the %{setting} setting: %{port}"
8753
- msgstr ""
8754
-
8755
- #. TRANSLATORS 'server_list' is the name of a setting and should not be translated
8756
- #: ../lib/puppet/util/connection.rb:66
8757
- msgid "Dynamically-bound port lookup failed; using first entry from the `server_list` setting: %{port}"
8758
- msgstr ""
8759
-
8760
- #. TRANSLATORS 'masterport' is the name of a setting and should not be translated
8761
- #: ../lib/puppet/util/connection.rb:70
8762
- msgid "Dynamically-bound port lookup failed; falling back to `masterport` setting: %{port}"
8763
- msgstr ""
8764
-
8765
- #: ../lib/puppet/util/connection.rb:75
8766
- msgid "Dynamically-bound port lookup failed; falling back to %{setting} setting: %{port}"
8767
- msgstr ""
8768
-
8769
8784
  #: ../lib/puppet/util/diff.rb:28
8770
8785
  msgid "Cannot provide diff without the diff/lcs Ruby library"
8771
8786
  msgstr ""
@@ -8922,7 +8937,7 @@ msgstr ""
8922
8937
  msgid "Could not write crontab for %{path}: %{detail}"
8923
8938
  msgstr ""
8924
8939
 
8925
- #: ../lib/puppet/util/http_proxy.rb:206
8940
+ #: ../lib/puppet/util/http_proxy.rb:205
8926
8941
  msgid "Too many HTTP redirections for %{uri}"
8927
8942
  msgstr ""
8928
8943
 
@@ -8992,7 +9007,7 @@ msgstr ""
8992
9007
  msgid "Logs require a level"
8993
9008
  msgstr ""
8994
9009
 
8995
- #: ../lib/puppet/util/log.rb:87 ../lib/puppet/util/log.rb:375 ../lib/puppet/util/windows/eventlog.rb:99
9010
+ #: ../lib/puppet/util/log.rb:87 ../lib/puppet/util/log.rb:370 ../lib/puppet/util/windows/eventlog.rb:99
8996
9011
  msgid "Invalid log level %{level}"
8997
9012
  msgstr ""
8998
9013
 
@@ -9004,40 +9019,40 @@ msgstr ""
9004
9019
  msgid "Unknown destination type %{dest}"
9005
9020
  msgstr ""
9006
9021
 
9007
- #: ../lib/puppet/util/log.rb:176
9022
+ #: ../lib/puppet/util/log.rb:171
9008
9023
  msgid "Received a Log attribute with invalid encoding:%{log_message}"
9009
9024
  msgstr ""
9010
9025
 
9011
- #: ../lib/puppet/util/log.rb:178
9026
+ #: ../lib/puppet/util/log.rb:173
9012
9027
  msgid ""
9013
9028
  "Backtrace:\n"
9014
9029
  "%{backtrace}"
9015
9030
  msgstr ""
9016
9031
 
9017
- #: ../lib/puppet/util/log.rb:232
9032
+ #: ../lib/puppet/util/log.rb:227
9018
9033
  msgid "Reopening log files"
9019
9034
  msgstr ""
9020
9035
 
9021
9036
  #. TRANSLATORS 'Puppet::Util::Log' refers to a Puppet source code class
9022
- #: ../lib/puppet/util/log.rb:365
9037
+ #: ../lib/puppet/util/log.rb:360
9023
9038
  msgid "Puppet::Util::Log requires a message"
9024
9039
  msgstr ""
9025
9040
 
9026
9041
  #. TRANSLATORS 'Puppet::Util::Log' refers to a Puppet source code class
9027
- #: ../lib/puppet/util/log.rb:371
9042
+ #: ../lib/puppet/util/log.rb:366
9028
9043
  msgid "Puppet::Util::Log requires a log level"
9029
9044
  msgstr ""
9030
9045
 
9031
9046
  #. TRANSLATORS 'Puppet::Util::Log' refers to a Puppet source code class
9032
- #: ../lib/puppet/util/log.rb:373
9047
+ #: ../lib/puppet/util/log.rb:368
9033
9048
  msgid "Puppet::Util::Log requires a symbol or string"
9034
9049
  msgstr ""
9035
9050
 
9036
- #: ../lib/puppet/util/log.rb:404
9051
+ #: ../lib/puppet/util/log.rb:399
9037
9052
  msgid "Could not parse for environment %{environment}: %{msg}"
9038
9053
  msgstr ""
9039
9054
 
9040
- #: ../lib/puppet/util/log.rb:406
9055
+ #: ../lib/puppet/util/log.rb:401
9041
9056
  msgid "%{msg} on node %{node}"
9042
9057
  msgstr ""
9043
9058
 
@@ -9206,6 +9221,18 @@ msgstr ""
9206
9221
  msgid "Sleeping for %{time} seconds (splay is enabled)"
9207
9222
  msgstr ""
9208
9223
 
9224
+ #: ../lib/puppet/util/ssl.rb:81
9225
+ msgid "expected one of %{certnames}"
9226
+ msgstr ""
9227
+
9228
+ #: ../lib/puppet/util/ssl.rb:83
9229
+ msgid "expected %{certname}"
9230
+ msgstr ""
9231
+
9232
+ #: ../lib/puppet/util/ssl.rb:86
9233
+ msgid "Server hostname '%{host}' did not match server certificate; %{expected_certnames}"
9234
+ msgstr ""
9235
+
9209
9236
  #: ../lib/puppet/util/storage.rb:53
9210
9237
  msgid "Checksumfile %{filename} is not a file, ignoring"
9211
9238
  msgstr ""
@@ -9406,27 +9433,27 @@ msgstr ""
9406
9433
  msgid "Failed to call LookupAccountSidW with bytes: %{sid_bytes}"
9407
9434
  msgstr ""
9408
9435
 
9409
- #: ../lib/puppet/util/windows/process.rb:46
9436
+ #: ../lib/puppet/util/windows/process.rb:44
9410
9437
  msgid "Failed to get child process exit code"
9411
9438
  msgstr ""
9412
9439
 
9413
- #: ../lib/puppet/util/windows/process.rb:285
9440
+ #: ../lib/puppet/util/windows/process.rb:237
9414
9441
  msgid "GetVersionEx failed"
9415
9442
  msgstr ""
9416
9443
 
9417
- #: ../lib/puppet/util/windows/process.rb:314
9444
+ #: ../lib/puppet/util/windows/process.rb:266
9418
9445
  msgid "Discarding environment variable %{string} which contains invalid bytes"
9419
9446
  msgstr ""
9420
9447
 
9421
- #: ../lib/puppet/util/windows/process.rb:330
9448
+ #: ../lib/puppet/util/windows/process.rb:282
9422
9449
  msgid "environment variable name must not be nil or empty"
9423
9450
  msgstr ""
9424
9451
 
9425
- #: ../lib/puppet/util/windows/process.rb:335
9452
+ #: ../lib/puppet/util/windows/process.rb:287
9426
9453
  msgid "Failed to remove environment variable: %{name}"
9427
9454
  msgstr ""
9428
9455
 
9429
- #: ../lib/puppet/util/windows/process.rb:340
9456
+ #: ../lib/puppet/util/windows/process.rb:292
9430
9457
  msgid "Failed to set environment variable: %{name}"
9431
9458
  msgstr ""
9432
9459
 
@@ -9483,172 +9510,152 @@ msgid "Failed to get volume information"
9483
9510
  msgstr ""
9484
9511
 
9485
9512
  #. TRANSLATORS 'SYSTEM' is a Windows name and should not be translated
9486
- #: ../lib/puppet/util/windows/security.rb:337
9487
- msgid "Setting control rights for %{path} owner SYSTEM to less than Full Control rights. Setting SYSTEM rights to less than Full Control may have unintented consequences for operations on this file"
9488
- msgstr ""
9489
-
9490
- #. TRANSLATORS 'SYSTEM' is a Windows name and should not be translated
9491
- #: ../lib/puppet/util/windows/security.rb:340
9492
- msgid "%{path} owner and group both set to user SYSTEM, but group is not managed directly: SYSTEM user rights will be set to FullControl by group"
9493
- msgstr ""
9494
-
9495
- #. TRANSLATORS 'SYSTEM' is a Windows name and should not be translated
9496
- #: ../lib/puppet/util/windows/security.rb:343
9513
+ #: ../lib/puppet/util/windows/security.rb:332
9497
9514
  msgid "An attempt to set mode %{mode} on item %{path} would result in the owner, SYSTEM, to have less than Full Control rights. This attempt has been corrected to Full Control"
9498
9515
  msgstr ""
9499
9516
 
9500
9517
  #. TRANSLATORS 'SYSTEM' is a Windows name and should not be translated
9501
- #: ../lib/puppet/util/windows/security.rb:353
9502
- msgid "Setting control rights for %{path} group SYSTEM to less than Full Control rights. Setting SYSTEM rights to less than Full Control may have unintented consequences for operations on this file"
9503
- msgstr ""
9504
-
9505
- #. TRANSLATORS 'SYSTEM' is a Windows name and should not be translated
9506
- #: ../lib/puppet/util/windows/security.rb:356
9507
- msgid "%{path} owner and group both set to user SYSTEM, but owner is not managed directly: SYSTEM user rights will be set to FullControl by owner"
9508
- msgstr ""
9509
-
9510
- #. TRANSLATORS 'SYSTEM' is a Windows name and should not be translated
9511
- #: ../lib/puppet/util/windows/security.rb:359
9518
+ #: ../lib/puppet/util/windows/security.rb:338
9512
9519
  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"
9513
9520
  msgstr ""
9514
9521
 
9515
- #: ../lib/puppet/util/windows/security.rb:430 ../lib/puppet/util/windows/security.rb:447 ../lib/puppet/util/windows/sid.rb:154 ../lib/puppet/util/windows/sid.rb:216 ../lib/puppet/util/windows/user.rb:43
9522
+ #: ../lib/puppet/util/windows/security.rb:409 ../lib/puppet/util/windows/security.rb:426 ../lib/puppet/util/windows/sid.rb:154 ../lib/puppet/util/windows/sid.rb:216 ../lib/puppet/util/windows/user.rb:43
9516
9523
  msgid "Invalid SID"
9517
9524
  msgstr ""
9518
9525
 
9519
- #: ../lib/puppet/util/windows/security.rb:434 ../lib/puppet/util/windows/security.rb:451
9526
+ #: ../lib/puppet/util/windows/security.rb:413 ../lib/puppet/util/windows/security.rb:430
9520
9527
  msgid "Failed to add access control entry"
9521
9528
  msgstr ""
9522
9529
 
9523
- #: ../lib/puppet/util/windows/security.rb:462 ../lib/puppet/util/windows/security.rb:644
9530
+ #: ../lib/puppet/util/windows/security.rb:441 ../lib/puppet/util/windows/security.rb:623
9524
9531
  msgid "Invalid DACL"
9525
9532
  msgstr ""
9526
9533
 
9527
- #: ../lib/puppet/util/windows/security.rb:485
9534
+ #: ../lib/puppet/util/windows/security.rb:464
9528
9535
  msgid "Unsupported access control entry type: 0x%{type}"
9529
9536
  msgstr ""
9530
9537
 
9531
- #: ../lib/puppet/util/windows/security.rb:519
9538
+ #: ../lib/puppet/util/windows/security.rb:498
9532
9539
  msgid "Failed to open '%{path}'"
9533
9540
  msgstr ""
9534
9541
 
9535
- #: ../lib/puppet/util/windows/security.rb:566
9542
+ #: ../lib/puppet/util/windows/security.rb:545
9536
9543
  msgid "Failed to adjust process privileges"
9537
9544
  msgstr ""
9538
9545
 
9539
- #: ../lib/puppet/util/windows/security.rb:596
9546
+ #: ../lib/puppet/util/windows/security.rb:575
9540
9547
  msgid "Failed to get security information"
9541
9548
  msgstr ""
9542
9549
 
9543
- #: ../lib/puppet/util/windows/security.rb:607
9550
+ #: ../lib/puppet/util/windows/security.rb:586
9544
9551
  msgid "Failed to get security descriptor control"
9545
9552
  msgstr ""
9546
9553
 
9547
- #: ../lib/puppet/util/windows/security.rb:640
9554
+ #: ../lib/puppet/util/windows/security.rb:619
9548
9555
  msgid "Failed to initialize ACL"
9549
9556
  msgstr ""
9550
9557
 
9551
- #: ../lib/puppet/util/windows/security.rb:679
9558
+ #: ../lib/puppet/util/windows/security.rb:658
9552
9559
  msgid "Failed to set security information"
9553
9560
  msgstr ""
9554
9561
 
9555
- #: ../lib/puppet/util/windows/service.rb:300
9556
- msgid "Starting the %{service_name} service"
9562
+ #: ../lib/puppet/util/windows/service.rb:301
9563
+ msgid "Starting the %{service_name} service. Timeout set to: %{timeout} seconds"
9557
9564
  msgstr ""
9558
9565
 
9559
- #: ../lib/puppet/util/windows/service.rb:310
9566
+ #: ../lib/puppet/util/windows/service.rb:311
9560
9567
  msgid "Failed to start the service"
9561
9568
  msgstr ""
9562
9569
 
9563
- #: ../lib/puppet/util/windows/service.rb:314
9570
+ #: ../lib/puppet/util/windows/service.rb:315
9564
9571
  msgid "Successfully started the %{service_name} service"
9565
9572
  msgstr ""
9566
9573
 
9567
- #: ../lib/puppet/util/windows/service.rb:322
9568
- msgid "Stopping the %{service_name} service"
9574
+ #: ../lib/puppet/util/windows/service.rb:324
9575
+ msgid "Stopping the %{service_name} service. Timeout set to: %{timeout} seconds"
9569
9576
  msgstr ""
9570
9577
 
9571
- #: ../lib/puppet/util/windows/service.rb:330
9578
+ #: ../lib/puppet/util/windows/service.rb:332
9572
9579
  msgid "Successfully stopped the %{service_name} service"
9573
9580
  msgstr ""
9574
9581
 
9575
- #: ../lib/puppet/util/windows/service.rb:338
9576
- msgid "Resuming the %{service_name} service"
9582
+ #: ../lib/puppet/util/windows/service.rb:341
9583
+ msgid "Resuming the %{service_name} service. Timeout set to: %{timeout} seconds"
9577
9584
  msgstr ""
9578
9585
 
9579
- #: ../lib/puppet/util/windows/service.rb:354
9586
+ #: ../lib/puppet/util/windows/service.rb:357
9580
9587
  msgid "Successfully resumed the %{service_name} service"
9581
9588
  msgstr ""
9582
9589
 
9583
- #: ../lib/puppet/util/windows/service.rb:370
9590
+ #: ../lib/puppet/util/windows/service.rb:372
9584
9591
  msgid "Unknown Service state '%{current_state}' for '%{service_name}'"
9585
9592
  msgstr ""
9586
9593
 
9587
- #: ../lib/puppet/util/windows/service.rb:388
9594
+ #: ../lib/puppet/util/windows/service.rb:389
9588
9595
  msgid "Unknown start type '%{start_type}' for '%{service_name}'"
9589
9596
  msgstr ""
9590
9597
 
9591
- #: ../lib/puppet/util/windows/service.rb:403
9598
+ #: ../lib/puppet/util/windows/service.rb:404
9592
9599
  msgid "Unknown start type %{start_type}"
9593
9600
  msgstr ""
9594
9601
 
9595
- #: ../lib/puppet/util/windows/service.rb:424
9602
+ #: ../lib/puppet/util/windows/service.rb:425
9596
9603
  msgid "Failed to update service configuration"
9597
9604
  msgstr ""
9598
9605
 
9599
- #: ../lib/puppet/util/windows/service.rb:484
9606
+ #: ../lib/puppet/util/windows/service.rb:485
9600
9607
  msgid "Failed to fetch services"
9601
9608
  msgstr ""
9602
9609
 
9603
- #: ../lib/puppet/util/windows/service.rb:533
9610
+ #: ../lib/puppet/util/windows/service.rb:534
9604
9611
  msgid "Failed to open a handle to the service"
9605
9612
  msgstr ""
9606
9613
 
9607
- #: ../lib/puppet/util/windows/service.rb:550
9614
+ #: ../lib/puppet/util/windows/service.rb:551
9608
9615
  msgid "Failed to open a handle to the service control manager"
9609
9616
  msgstr ""
9610
9617
 
9611
- #: ../lib/puppet/util/windows/service.rb:572
9618
+ #: ../lib/puppet/util/windows/service.rb:575
9612
9619
  msgid "The service is already in the %{final_state} state. No further work needs to be done."
9613
9620
  msgstr ""
9614
9621
 
9615
- #: ../lib/puppet/util/windows/service.rb:584
9622
+ #: ../lib/puppet/util/windows/service.rb:587
9616
9623
  msgid "The service must be in one of the %{valid_initial_states} states to perform this transition. It is currently in the %{current_state} state."
9617
9624
  msgstr ""
9618
9625
 
9619
- #: ../lib/puppet/util/windows/service.rb:595
9626
+ #: ../lib/puppet/util/windows/service.rb:598
9620
9627
  msgid "There is already a pending transition to the %{final_state} state for the %{service_name} service."
9621
9628
  msgstr ""
9622
9629
 
9623
- #: ../lib/puppet/util/windows/service.rb:611
9630
+ #: ../lib/puppet/util/windows/service.rb:614
9624
9631
  msgid "The service is in the %{pending_state} state, which is an unsafe pending state."
9625
9632
  msgstr ""
9626
9633
 
9627
- #: ../lib/puppet/util/windows/service.rb:616
9634
+ #: ../lib/puppet/util/windows/service.rb:619
9628
9635
  msgid "Transitioning the %{service_name} service from %{initial_state} to %{final_state}"
9629
9636
  msgstr ""
9630
9637
 
9631
- #: ../lib/puppet/util/windows/service.rb:620
9638
+ #: ../lib/puppet/util/windows/service.rb:623
9632
9639
  msgid "Waiting for the transition to finish"
9633
9640
  msgstr ""
9634
9641
 
9635
- #: ../lib/puppet/util/windows/service.rb:625
9642
+ #: ../lib/puppet/util/windows/service.rb:627
9636
9643
  msgid "Failed to transition the %{service_name} service to the %{final_state} state. Detail: %{detail}"
9637
9644
  msgstr ""
9638
9645
 
9639
- #: ../lib/puppet/util/windows/service.rb:664 ../lib/puppet/util/windows/service.rb:700
9646
+ #: ../lib/puppet/util/windows/service.rb:666 ../lib/puppet/util/windows/service.rb:702
9640
9647
  msgid "Service query failed"
9641
9648
  msgstr ""
9642
9649
 
9643
- #: ../lib/puppet/util/windows/service.rb:717
9650
+ #: ../lib/puppet/util/windows/service.rb:719
9644
9651
  msgid "Failed to send the %{control_signal} signal to the service. Its current state is %{current_state}. Reason for failure:"
9645
9652
  msgstr ""
9646
9653
 
9647
- #: ../lib/puppet/util/windows/service.rb:751
9654
+ #: ../lib/puppet/util/windows/service.rb:754
9648
9655
  msgid "The service transitioned to the %{pending_state} state."
9649
9656
  msgstr ""
9650
9657
 
9651
- #: ../lib/puppet/util/windows/service.rb:765
9658
+ #: ../lib/puppet/util/windows/service.rb:764
9652
9659
  msgid "Timed out while waiting for the service to transition from %{initial_state} to %{final_state} OR from %{initial_state} to %{pending_state} to %{final_state}. The service's current state is %{current_state}."
9653
9660
  msgstr ""
9654
9661
 
@@ -9656,11 +9663,11 @@ msgstr ""
9656
9663
  msgid "Waiting for the pending transition to the %{final_state} state to finish."
9657
9664
  msgstr ""
9658
9665
 
9659
- #: ../lib/puppet/util/windows/service.rb:793
9666
+ #: ../lib/puppet/util/windows/service.rb:792
9660
9667
  msgid "Unexpected transition to the %{current_state} state while waiting for the pending transition from %{pending_state} to %{final_state} to finish."
9661
9668
  msgstr ""
9662
9669
 
9663
- #: ../lib/puppet/util/windows/service.rb:807
9670
+ #: ../lib/puppet/util/windows/service.rb:806
9664
9671
  msgid "Timed out while waiting for the pending transition from %{pending_state} to %{final_state} to finish. The current state is %{current_state}."
9665
9672
  msgstr ""
9666
9673
 
@@ -9703,82 +9710,3 @@ msgstr ""
9703
9710
  #: ../lib/puppet/util/yaml.rb:47
9704
9711
  msgid "Puppet::Util::Yaml.load_file is deprecated. Use safe_load_file instead."
9705
9712
  msgstr ""
9706
-
9707
- #: ../lib/puppet_pal.rb:112
9708
- msgid "The argument 'puppet_code' must be a String, got %{type}"
9709
- msgstr ""
9710
-
9711
- #. TRANSLATORS, the 'ast' is the name of a parameter, do not translate
9712
- #: ../lib/puppet_pal.rb:154
9713
- msgid "The given 'ast' does not represent a literal value"
9714
- msgstr ""
9715
-
9716
- #: ../lib/puppet_pal.rb:166
9717
- msgid "The argument 'code_string' must be a String, got %{type}"
9718
- msgstr ""
9719
-
9720
- #: ../lib/puppet_pal.rb:179
9721
- msgid "The argument 'file' must be a String, got %{type}"
9722
- msgstr ""
9723
-
9724
- #: ../lib/puppet_pal.rb:216
9725
- msgid "Given data_type value is not a data type, got '%{type}'"
9726
- msgstr ""
9727
-
9728
- #. TRANSLATORS 'type' and 'title' are internal parameter names - do not translate
9729
- #: ../lib/puppet_pal.rb:455
9730
- msgid "Both type and title must be given"
9731
- msgstr ""
9732
-
9733
- #. TRANSLATORS: do not translate the variable names in this error message
9734
- #. TRANSLATORS: do not translate the variable names in this error message
9735
- #: ../lib/puppet_pal.rb:684 ../lib/puppet_pal.rb:777
9736
- msgid "manifest_file or code_string cannot be given when configured_by_env is true"
9737
- msgstr ""
9738
-
9739
- #: ../lib/puppet_pal.rb:817
9740
- msgid "temporary environment name"
9741
- msgstr ""
9742
-
9743
- #. TRANSLATORS: do not translate variable name string in these assertions
9744
- #: ../lib/puppet_pal.rb:822
9745
- msgid "A block must be given to 'in_tmp_environment'"
9746
- msgstr ""
9747
-
9748
- #. TRANSLATORS terms in the assertions below are names of terms in code
9749
- #: ../lib/puppet_pal.rb:876
9750
- msgid "A block must be given to 'in_environment'"
9751
- msgstr ""
9752
-
9753
- #. TRANSLATORS 'in_environment' is a name, do not translate
9754
- #: ../lib/puppet_pal.rb:881
9755
- msgid "The environment directory '%{env_dir}' does not exist"
9756
- msgstr ""
9757
-
9758
- #: ../lib/puppet_pal.rb:904
9759
- msgid "No directory found for the environment '%{env_name}' on the path '%{envpath}'"
9760
- msgstr ""
9761
-
9762
- #: ../lib/puppet_pal.rb:958
9763
- msgid "Given variables must be a hash, got %{type}"
9764
- msgstr ""
9765
-
9766
- #: ../lib/puppet_pal.rb:964
9767
- msgid "Given variable '%{varname}' has illegal name"
9768
- msgstr ""
9769
-
9770
- #: ../lib/puppet_pal.rb:968
9771
- msgid "Given value for '%{varname}' has illegal type - got: %{type}"
9772
- msgstr ""
9773
-
9774
- #: ../lib/puppet_pal.rb:1108
9775
- msgid "Puppet Pal: %{what}"
9776
- msgstr ""
9777
-
9778
- #: ../lib/puppet_pal.rb:1122
9779
- msgid "Cannot use '%{a_term}' and '%{b_term}' at the same time"
9780
- msgstr ""
9781
-
9782
- #: ../lib/puppet_pal.rb:1129
9783
- msgid "A block must be given"
9784
- msgstr ""