puppet 6.10.1 → 6.11.0

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

Potentially problematic release.


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

Files changed (242) hide show
  1. checksums.yaml +4 -4
  2. data/Gemfile +4 -4
  3. data/Gemfile.lock +20 -12
  4. data/ext/project_data.yaml +3 -2
  5. data/ext/regexp_nodes/regexp_nodes.rb +4 -4
  6. data/ext/windows/service/daemon.rb +33 -8
  7. data/install.rb +6 -6
  8. data/lib/puppet.rb +8 -0
  9. data/lib/puppet/application.rb +1 -1
  10. data/lib/puppet/application/agent.rb +3 -0
  11. data/lib/puppet/application/apply.rb +2 -2
  12. data/lib/puppet/application/describe.rb +3 -9
  13. data/lib/puppet/application/device.rb +3 -0
  14. data/lib/puppet/application/doc.rb +1 -1
  15. data/lib/puppet/application/lookup.rb +1 -1
  16. data/lib/puppet/application/script.rb +2 -2
  17. data/lib/puppet/application/ssl.rb +25 -21
  18. data/lib/puppet/configurer.rb +42 -0
  19. data/lib/puppet/configurer/downloader.rb +2 -6
  20. data/lib/puppet/context/trusted_information.rb +42 -4
  21. data/lib/puppet/defaults.rb +19 -4
  22. data/lib/puppet/face/module/list.rb +5 -5
  23. data/lib/puppet/face/module/search.rb +1 -1
  24. data/lib/puppet/face/module/uninstall.rb +1 -1
  25. data/lib/puppet/face/module/upgrade.rb +1 -1
  26. data/lib/puppet/file_serving/http_metadata.rb +1 -1
  27. data/lib/puppet/file_system.rb +0 -8
  28. data/lib/puppet/file_system/memory_file.rb +1 -1
  29. data/lib/puppet/file_system/posix.rb +3 -2
  30. data/lib/puppet/forge.rb +3 -3
  31. data/lib/puppet/functions.rb +1 -2
  32. data/lib/puppet/gettext/module_translations.rb +1 -1
  33. data/lib/puppet/graph/rb_tree_map.rb +2 -2
  34. data/lib/puppet/graph/simple_graph.rb +4 -3
  35. data/lib/puppet/http.rb +29 -0
  36. data/lib/puppet/http/client.rb +156 -0
  37. data/lib/puppet/http/errors.rb +30 -0
  38. data/lib/puppet/http/redirector.rb +48 -0
  39. data/lib/puppet/http/resolver.rb +5 -0
  40. data/lib/puppet/http/resolver/settings.rb +5 -0
  41. data/lib/puppet/http/resolver/srv.rb +13 -0
  42. data/lib/puppet/http/response.rb +34 -0
  43. data/lib/puppet/http/retry_after_handler.rb +47 -0
  44. data/lib/puppet/http/service.rb +18 -0
  45. data/lib/puppet/http/service/ca.rb +49 -0
  46. data/lib/puppet/http/session.rb +55 -0
  47. data/lib/puppet/indirector/file_bucket_file/file.rb +1 -1
  48. data/lib/puppet/indirector/hiera.rb +2 -0
  49. data/lib/puppet/indirector/request.rb +1 -1
  50. data/lib/puppet/indirector/resource/ral.rb +1 -3
  51. data/lib/puppet/indirector/resource/validator.rb +1 -1
  52. data/lib/puppet/interface.rb +2 -1
  53. data/lib/puppet/interface/documentation.rb +1 -1
  54. data/lib/puppet/loaders.rb +0 -1
  55. data/lib/puppet/metatype/manager.rb +1 -1
  56. data/lib/puppet/module.rb +1 -1
  57. data/lib/puppet/module/task.rb +20 -4
  58. data/lib/puppet/module_tool/applications/installer.rb +1 -1
  59. data/lib/puppet/module_tool/applications/uninstaller.rb +3 -3
  60. data/lib/puppet/module_tool/metadata.rb +1 -1
  61. data/lib/puppet/module_tool/shared_behaviors.rb +4 -4
  62. data/lib/puppet/module_tool/tar/mini.rb +1 -1
  63. data/lib/puppet/network/http.rb +2 -6
  64. data/lib/puppet/network/http/api/indirected_routes.rb +12 -11
  65. data/lib/puppet/network/http/connection.rb +10 -12
  66. data/lib/puppet/network/http/pool.rb +2 -0
  67. data/lib/puppet/network/http/site.rb +5 -1
  68. data/lib/puppet/network/resolver.rb +4 -4
  69. data/lib/puppet/node/environment.rb +4 -2
  70. data/lib/puppet/pal/pal_impl.rb +2 -2
  71. data/lib/puppet/parser/ast.rb +1 -1
  72. data/lib/puppet/parser/ast/resourceparam.rb +1 -1
  73. data/lib/puppet/parser/functions.rb +1 -1
  74. data/lib/puppet/parser/scope.rb +8 -7
  75. data/lib/puppet/pops/evaluator/collectors/catalog_collector.rb +1 -1
  76. data/lib/puppet/pops/evaluator/collectors/exported_collector.rb +1 -1
  77. data/lib/puppet/pops/evaluator/external_syntax_support.rb +3 -2
  78. data/lib/puppet/pops/evaluator/runtime3_support.rb +4 -7
  79. data/lib/puppet/pops/loader/module_loaders.rb +1 -1
  80. data/lib/puppet/pops/loader/task_instantiator.rb +4 -0
  81. data/lib/puppet/pops/loaders.rb +1 -1
  82. data/lib/puppet/pops/lookup/hiera_config.rb +1 -0
  83. data/lib/puppet/pops/lookup/sub_lookup.rb +1 -1
  84. data/lib/puppet/pops/merge_strategy.rb +22 -18
  85. data/lib/puppet/pops/parser/heredoc_support.rb +1 -1
  86. data/lib/puppet/pops/parser/interpolation_support.rb +4 -4
  87. data/lib/puppet/pops/parser/locator.rb +1 -1
  88. data/lib/puppet/pops/parser/pn_parser.rb +17 -16
  89. data/lib/puppet/pops/puppet_stack.rb +52 -48
  90. data/lib/puppet/pops/types/p_sensitive_type.rb +1 -1
  91. data/lib/puppet/pops/types/p_uri_type.rb +1 -1
  92. data/lib/puppet/pops/types/string_converter.rb +10 -10
  93. data/lib/puppet/pops/types/types.rb +3 -3
  94. data/lib/puppet/property.rb +1 -1
  95. data/lib/puppet/property/ensure.rb +1 -1
  96. data/lib/puppet/provider/exec.rb +6 -2
  97. data/lib/puppet/provider/nameservice/directoryservice.rb +1 -1
  98. data/lib/puppet/provider/nameservice/pw.rb +2 -2
  99. data/lib/puppet/provider/package/apt.rb +5 -1
  100. data/lib/puppet/provider/package/dnfmodule.rb +87 -0
  101. data/lib/puppet/provider/package/dpkg.rb +31 -17
  102. data/lib/puppet/provider/package/openbsd.rb +1 -1
  103. data/lib/puppet/provider/package/pip.rb +34 -9
  104. data/lib/puppet/provider/package/portage.rb +1 -1
  105. data/lib/puppet/provider/package/rpm.rb +5 -5
  106. data/lib/puppet/provider/package/windows/package.rb +1 -1
  107. data/lib/puppet/provider/package/yum.rb +1 -1
  108. data/lib/puppet/provider/parsedfile.rb +1 -1
  109. data/lib/puppet/provider/service/daemontools.rb +9 -9
  110. data/lib/puppet/provider/service/openbsd.rb +1 -1
  111. data/lib/puppet/provider/service/rcng.rb +2 -2
  112. data/lib/puppet/provider/service/runit.rb +2 -8
  113. data/lib/puppet/provider/service/systemd.rb +10 -10
  114. data/lib/puppet/provider/user/directoryservice.rb +1 -1
  115. data/lib/puppet/provider/user/user_role_add.rb +1 -1
  116. data/lib/puppet/provider/user/useradd.rb +22 -13
  117. data/lib/puppet/provider/user/windows_adsi.rb +4 -5
  118. data/lib/puppet/reference/indirection.rb +2 -2
  119. data/lib/puppet/reference/metaparameter.rb +1 -3
  120. data/lib/puppet/reference/providers.rb +1 -1
  121. data/lib/puppet/reference/type.rb +3 -9
  122. data/lib/puppet/reports.rb +1 -1
  123. data/lib/puppet/resource.rb +1 -1
  124. data/lib/puppet/resource/catalog.rb +1 -1
  125. data/lib/puppet/rest/errors.rb +1 -0
  126. data/lib/puppet/rest/response.rb +1 -0
  127. data/lib/puppet/rest/route.rb +1 -0
  128. data/lib/puppet/rest/routes.rb +3 -0
  129. data/lib/puppet/runtime.rb +25 -0
  130. data/lib/puppet/settings.rb +3 -3
  131. data/lib/puppet/settings/environment_conf.rb +1 -0
  132. data/lib/puppet/ssl/host.rb +1 -1
  133. data/lib/puppet/ssl/oids.rb +1 -1
  134. data/lib/puppet/ssl/state_machine.rb +23 -15
  135. data/lib/puppet/test/test_helper.rb +1 -1
  136. data/lib/puppet/transaction/report.rb +1 -1
  137. data/lib/puppet/trusted_external.rb +13 -0
  138. data/lib/puppet/type.rb +1 -3
  139. data/lib/puppet/type/exec.rb +7 -3
  140. data/lib/puppet/type/file.rb +1 -2
  141. data/lib/puppet/type/file/source.rb +2 -2
  142. data/lib/puppet/type/package.rb +10 -3
  143. data/lib/puppet/type/schedule.rb +1 -1
  144. data/lib/puppet/type/service.rb +1 -1
  145. data/lib/puppet/util.rb +2 -2
  146. data/lib/puppet/util/command_line/trollop.rb +1 -1
  147. data/lib/puppet/util/http_proxy.rb +2 -10
  148. data/lib/puppet/util/log.rb +2 -2
  149. data/lib/puppet/util/log/destinations.rb +2 -2
  150. data/lib/puppet/util/logging.rb +2 -2
  151. data/lib/puppet/util/metric.rb +2 -2
  152. data/lib/puppet/util/platform.rb +15 -4
  153. data/lib/puppet/util/provider_features.rb +2 -4
  154. data/lib/puppet/util/rdoc.rb +1 -1
  155. data/lib/puppet/util/reference.rb +1 -1
  156. data/lib/puppet/util/resource_template.rb +1 -1
  157. data/lib/puppet/util/selinux.rb +3 -1
  158. data/lib/puppet/util/windows/registry.rb +7 -5
  159. data/lib/puppet/vendor.rb +1 -1
  160. data/lib/puppet/vendor/require_vendored.rb +0 -1
  161. data/lib/puppet/version.rb +1 -1
  162. data/lib/puppet/x509/cert_provider.rb +4 -1
  163. data/locales/puppet.pot +279 -203
  164. data/man/man5/puppet.conf.5 +30 -8
  165. data/man/man8/puppet-agent.8 +4 -1
  166. data/man/man8/puppet-apply.8 +1 -1
  167. data/man/man8/puppet-catalog.8 +1 -1
  168. data/man/man8/puppet-config.8 +1 -1
  169. data/man/man8/puppet-describe.8 +1 -1
  170. data/man/man8/puppet-device.8 +1 -1
  171. data/man/man8/puppet-doc.8 +1 -1
  172. data/man/man8/puppet-epp.8 +1 -1
  173. data/man/man8/puppet-facts.8 +1 -1
  174. data/man/man8/puppet-filebucket.8 +1 -1
  175. data/man/man8/puppet-generate.8 +1 -1
  176. data/man/man8/puppet-help.8 +1 -1
  177. data/man/man8/puppet-key.8 +1 -1
  178. data/man/man8/puppet-lookup.8 +1 -1
  179. data/man/man8/puppet-man.8 +1 -1
  180. data/man/man8/puppet-module.8 +1 -1
  181. data/man/man8/puppet-node.8 +1 -1
  182. data/man/man8/puppet-parser.8 +1 -1
  183. data/man/man8/puppet-plugin.8 +1 -1
  184. data/man/man8/puppet-report.8 +1 -1
  185. data/man/man8/puppet-resource.8 +1 -1
  186. data/man/man8/puppet-script.8 +1 -1
  187. data/man/man8/puppet-ssl.8 +1 -1
  188. data/man/man8/puppet-status.8 +1 -1
  189. data/man/man8/puppet.8 +2 -2
  190. data/spec/fixtures/unit/provider/package/dnfmodule/dnf-module-list-installed.txt +11 -0
  191. data/spec/integration/configurer_spec.rb +52 -0
  192. data/spec/lib/puppet/certificate_factory.rb +2 -2
  193. data/spec/spec_helper.rb +24 -0
  194. data/spec/unit/application/device_spec.rb +6 -0
  195. data/spec/unit/application/ssl_spec.rb +4 -7
  196. data/spec/unit/configurer_spec.rb +1 -0
  197. data/spec/unit/context/trusted_information_spec.rb +41 -2
  198. data/spec/unit/http/client_spec.rb +440 -0
  199. data/spec/unit/http/resolver_spec.rb +45 -0
  200. data/spec/unit/http/service/ca_spec.rb +106 -0
  201. data/spec/unit/http/service_spec.rb +32 -0
  202. data/spec/unit/http/session_spec.rb +102 -0
  203. data/spec/unit/indirector/resource/ral_spec.rb +4 -4
  204. data/spec/unit/network/http/connection_spec.rb +119 -145
  205. data/spec/unit/network/http/site_spec.rb +7 -0
  206. data/spec/unit/parser/scope_spec.rb +10 -0
  207. data/spec/unit/pops/loaders/loaders_spec.rb +13 -2
  208. data/spec/unit/pops/loaders/module_loaders_spec.rb +37 -0
  209. data/spec/unit/provider/exec_spec.rb +209 -0
  210. data/spec/unit/provider/package/dnfmodule_spec.rb +186 -0
  211. data/spec/unit/provider/package/dpkg_spec.rb +238 -78
  212. data/spec/unit/provider/package/pip_spec.rb +51 -6
  213. data/spec/unit/provider/service/daemontools_spec.rb +24 -0
  214. data/spec/unit/provider/service/runit_spec.rb +24 -0
  215. data/spec/unit/provider/service/systemd_spec.rb +25 -25
  216. data/spec/unit/provider/user/useradd_spec.rb +46 -0
  217. data/spec/unit/ssl/host_spec.rb +0 -5
  218. data/spec/unit/ssl/state_machine_spec.rb +16 -10
  219. data/spec/unit/type/exec_spec.rb +6 -12
  220. data/spec/unit/type/file_spec.rb +9 -4
  221. data/spec/unit/type/package_spec.rb +5 -0
  222. data/spec/unit/util/execution_spec.rb +16 -0
  223. data/spec/unit/util/http_proxy_spec.rb +79 -27
  224. data/spec/unit/util/log/destinations_spec.rb +7 -3
  225. metadata +45 -22
  226. data/lib/puppet/pops/loader/null_loader.rb +0 -60
  227. data/lib/puppet/vendor/deep_merge/CHANGELOG +0 -45
  228. data/lib/puppet/vendor/deep_merge/Gemfile +0 -3
  229. data/lib/puppet/vendor/deep_merge/LICENSE +0 -21
  230. data/lib/puppet/vendor/deep_merge/PUPPET_README.md +0 -6
  231. data/lib/puppet/vendor/deep_merge/README.md +0 -113
  232. data/lib/puppet/vendor/deep_merge/Rakefile +0 -19
  233. data/lib/puppet/vendor/deep_merge/deep_merge.gemspec +0 -35
  234. data/lib/puppet/vendor/deep_merge/lib/deep_merge.rb +0 -2
  235. data/lib/puppet/vendor/deep_merge/lib/deep_merge/core.rb +0 -210
  236. data/lib/puppet/vendor/deep_merge/lib/deep_merge/deep_merge_hash.rb +0 -28
  237. data/lib/puppet/vendor/deep_merge/lib/deep_merge/rails_compat.rb +0 -27
  238. data/lib/puppet/vendor/deep_merge/test/test_deep_merge.rb +0 -608
  239. data/lib/puppet/vendor/load_deep_merge.rb +0 -1
  240. data/spec/fixtures/vcr/cassettes/Puppet_Network_HTTP_Connection/when_handling_requests/_request_get/should_yield_to_the_block.yml +0 -24
  241. data/spec/fixtures/vcr/cassettes/Puppet_Network_HTTP_Connection/when_handling_requests/_request_head/should_yield_to_the_block.yml +0 -24
  242. data/spec/fixtures/vcr/cassettes/Puppet_Network_HTTP_Connection/when_handling_requests/_request_post/should_yield_to_the_block.yml +0 -24
@@ -194,9 +194,9 @@ module Logging
194
194
  # let's find the offending line; we need to jump back up the stack a few steps to find the method that called
195
195
  # the deprecated method
196
196
  if Puppet[:trace]
197
- caller()[2..-1]
197
+ caller(3)
198
198
  else
199
- [caller()[2]]
199
+ [caller(3, 1).first]
200
200
  end
201
201
  end
202
202
 
@@ -55,11 +55,11 @@ class Puppet::Util::Metric
55
55
  end
56
56
 
57
57
  def values
58
- @values.sort { |a, b| a[1] <=> b[1] }
58
+ @values.sort_by { |a| a[1] }
59
59
  end
60
60
 
61
61
  # Convert a name into a label.
62
62
  def self.labelize(name)
63
- name.to_s.capitalize.gsub("_", " ")
63
+ name.to_s.capitalize.tr("_", " ")
64
64
  end
65
65
  end
@@ -1,8 +1,8 @@
1
1
  module Puppet
2
2
  module Util
3
3
  module Platform
4
-
5
4
  FIPS_STATUS_FILE = "/proc/sys/crypto/fips_enabled".freeze
5
+ WINDOWS_FIPS_REGISTRY_KEY = 'System\\CurrentControlSet\\Control\\Lsa\\FipsAlgorithmPolicy'.freeze
6
6
 
7
7
  def windows?
8
8
  # Ruby only sets File::ALT_SEPARATOR on Windows and the Ruby standard
@@ -21,9 +21,20 @@ module Puppet
21
21
  end
22
22
  module_function :default_paths
23
23
 
24
- @fips_enabled = !windows? &&
25
- File.exist?(FIPS_STATUS_FILE) &&
26
- File.read(FIPS_STATUS_FILE, 1) == '1'
24
+ @fips_enabled = if windows?
25
+ require 'win32/registry'
26
+
27
+ begin
28
+ Win32::Registry::HKEY_LOCAL_MACHINE.open(WINDOWS_FIPS_REGISTRY_KEY) do |reg|
29
+ reg.values.first == 1
30
+ end
31
+ rescue Win32::Registry::Error
32
+ false
33
+ end
34
+ else
35
+ File.exist?(FIPS_STATUS_FILE) &&
36
+ File.read(FIPS_STATUS_FILE, 1) == '1'
37
+ end
27
38
 
28
39
  def fips_enabled?
29
40
  @fips_enabled
@@ -78,7 +78,7 @@ module Puppet::Util::ProviderFeatures
78
78
  str = ""
79
79
  @features ||= {}
80
80
  return nil if @features.empty?
81
- names = @features.keys.sort { |a,b| a.to_s <=> b.to_s }
81
+ names = @features.keys.sort_by(&:to_s)
82
82
  names.each do |name|
83
83
  doc = @features[name].docs.gsub(/\n\s+/, " ")
84
84
  str << "- *#{name}*: #{doc}\n"
@@ -127,9 +127,7 @@ module Puppet::Util::ProviderFeatures
127
127
  # Create a method that will list all functional features.
128
128
  @feature_module.send(:define_method, :features) do
129
129
  return false unless defined?(features)
130
- features.keys.find_all { |n| feature?(n) }.sort { |a,b|
131
- a.to_s <=> b.to_s
132
- }
130
+ features.keys.find_all { |n| feature?(n) }.sort_by(&:to_s)
133
131
  end
134
132
 
135
133
  # Create a method that will determine if a provided list of
@@ -31,7 +31,7 @@ module Puppet::Util::RDoc
31
31
  # uses relative_path_from that will generate errors when the slashes don't
32
32
  # properly match. This is a workaround for that issue.
33
33
  if Puppet::Util::Platform.windows? && RDoc::VERSION !~ /^[0-3]\./
34
- options += [ "--root", Dir.pwd.gsub(/\\/, '/')]
34
+ options += [ "--root", Dir.pwd.tr('\\', '/')]
35
35
  end
36
36
  options += files
37
37
 
@@ -58,7 +58,7 @@ class Puppet::Util::Reference
58
58
 
59
59
  def self.references(environment)
60
60
  instance_loader(:reference).loadall(environment)
61
- loaded_instances(:reference).sort { |a,b| a.to_s <=> b.to_s }
61
+ loaded_instances(:reference).sort_by(&:to_s)
62
62
  end
63
63
 
64
64
  attr_accessor :page, :depth, :header, :title, :dynamic
@@ -53,7 +53,7 @@ class Puppet::Util::ResourceTemplate
53
53
 
54
54
  def set_resource_variables
55
55
  @resource.to_hash.each do |param, value|
56
- var = "@#{param.to_s}"
56
+ var = "@#{param}"
57
57
  instance_variable_set(var, value)
58
58
  end
59
59
  end
@@ -206,7 +206,9 @@ module Puppet::Util::SELinux
206
206
  # If possible we use read_nonblock in a loop rather than read to work-
207
207
  # a linux kernel bug. See ticket #1963 for details.
208
208
  mountfh = File.open("/proc/mounts")
209
- mounts += mountfh.read_nonblock(1024) while true
209
+ loop do
210
+ mounts += mountfh.read_nonblock(1024)
211
+ end
210
212
  else
211
213
  # Otherwise we shell out and let cat do it for us
212
214
  mountfh = IO.popen("/bin/cat /proc/mounts")
@@ -46,11 +46,12 @@ module Puppet::Util::Windows
46
46
 
47
47
  subkey_max_len, _ = reg_query_info_key_max_lengths(key)
48
48
 
49
- begin
49
+ loop do
50
50
  subkey, filetime = reg_enum_key(key, index, subkey_max_len)
51
51
  yield subkey, filetime if !subkey.nil?
52
52
  index += 1
53
- end while !subkey.nil?
53
+ break if subkey.nil?
54
+ end
54
55
 
55
56
  index
56
57
  end
@@ -93,11 +94,12 @@ module Puppet::Util::Windows
93
94
 
94
95
  _, value_max_len = reg_query_info_key_max_lengths(key)
95
96
 
96
- begin
97
+ loop do
97
98
  subkey, type, data = reg_enum_value(key, index, value_max_len)
98
99
  yield subkey, type, data if !subkey.nil?
99
100
  index += 1
100
- end while !subkey.nil?
101
+ break if subkey.nil?
102
+ end
101
103
 
102
104
  index
103
105
  end
@@ -314,7 +316,7 @@ module Puppet::Util::Windows
314
316
 
315
317
  def sanitize(value)
316
318
  # Replace null bytes with a space
317
- value.gsub!("\x00", ' ')
319
+ value.tr!("\x00", ' ')
318
320
  value
319
321
  end
320
322
 
@@ -45,7 +45,7 @@ module Puppet
45
45
  #
46
46
  def load_vendored
47
47
  Dir.entries(vendor_dir).each do |entry|
48
- if entry.match(/load_(\w+?)\.rb$/)
48
+ if entry =~ /load_(\w+?)\.rb$/
49
49
  load_entry entry
50
50
  end
51
51
  end
@@ -3,4 +3,3 @@
3
3
 
4
4
  # The vendored library 'rgen' is loaded on demand.
5
5
  # The vendored library 'pathspec' is loaded on demand.
6
- # The vendored library 'deep_merge' is loaded on demand.
@@ -6,7 +6,7 @@
6
6
  # Raketasks and such to set the version based on the output of `git describe`
7
7
 
8
8
  module Puppet
9
- PUPPETVERSION = '6.10.1'
9
+ PUPPETVERSION = '6.11.0'
10
10
 
11
11
  ##
12
12
  # version is a public API method intended to always provide a fast and
@@ -342,7 +342,10 @@ class Puppet::X509::CertProvider
342
342
  def permissions_for_setting(name)
343
343
  setting = Puppet.settings.setting(name)
344
344
  perm = { mode: setting.mode.to_i(8) }
345
- perm.merge!(owner: setting.owner, group: setting.group) if Puppet.features.root? && !Puppet::Util::Platform.windows?
345
+ if Puppet.features.root? && !Puppet::Util::Platform.windows?
346
+ perm[:owner] = setting.owner
347
+ perm[:group] = setting.group
348
+ end
346
349
  perm
347
350
  end
348
351
  end
@@ -6,11 +6,11 @@
6
6
  #, fuzzy
7
7
  msgid ""
8
8
  msgstr ""
9
- "Project-Id-Version: Puppet automation framework 6.10.0-16-gc7a8e5e\n"
9
+ "Project-Id-Version: Puppet automation framework 6.10.1-308-g9fd2251\n"
10
10
  "\n"
11
11
  "Report-Msgid-Bugs-To: https://tickets.puppetlabs.com\n"
12
- "POT-Creation-Date: 2019-09-30 23:18+0000\n"
13
- "PO-Revision-Date: 2019-09-30 23:18+0000\n"
12
+ "POT-Creation-Date: 2019-11-14 01:31+0000\n"
13
+ "PO-Revision-Date: 2019-11-14 01:31+0000\n"
14
14
  "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
15
15
  "Language-Team: LANGUAGE <LL@li.org>\n"
16
16
  "Language: \n"
@@ -44,7 +44,7 @@ msgstr ""
44
44
  msgid "Please supply a parameter to perform a Hiera lookup"
45
45
  msgstr ""
46
46
 
47
- #: ../lib/hiera_puppet.rb:75 ../lib/puppet/indirector/hiera.rb:79
47
+ #: ../lib/hiera_puppet.rb:75 ../lib/puppet/indirector/hiera.rb:81
48
48
  msgid "Config file %{hiera_config} not found, using Hiera defaults"
49
49
  msgstr ""
50
50
 
@@ -174,7 +174,7 @@ msgstr ""
174
174
  msgid "No help available for puppet %{app_name}"
175
175
  msgstr ""
176
176
 
177
- #: ../lib/puppet/application/agent.rb:24 ../lib/puppet/application/device.rb:23
177
+ #: ../lib/puppet/application/agent.rb:24 ../lib/puppet/application/device.rb:24
178
178
  msgid "Cancelling startup"
179
179
  msgstr ""
180
180
 
@@ -182,19 +182,19 @@ msgstr ""
182
182
  msgid "The puppet agent daemon"
183
183
  msgstr ""
184
184
 
185
- #: ../lib/puppet/application/agent.rb:396
185
+ #: ../lib/puppet/application/agent.rb:399
186
186
  msgid "Fingerprint asked but neither the certificate, nor the certificate request have been issued"
187
187
  msgstr ""
188
188
 
189
- #: ../lib/puppet/application/agent.rb:401
189
+ #: ../lib/puppet/application/agent.rb:404
190
190
  msgid "Failed to generate fingerprint: %{message}"
191
191
  msgstr ""
192
192
 
193
- #: ../lib/puppet/application/agent.rb:424
193
+ #: ../lib/puppet/application/agent.rb:427
194
194
  msgid "Starting Puppet client version %{version}"
195
195
  msgstr ""
196
196
 
197
- #: ../lib/puppet/application/agent.rb:440
197
+ #: ../lib/puppet/application/agent.rb:443
198
198
  msgid "The puppet agent command does not take parameters"
199
199
  msgstr ""
200
200
 
@@ -240,55 +240,55 @@ msgstr ""
240
240
  msgid "Manage certificates and requests (Disabled)"
241
241
  msgstr ""
242
242
 
243
- #: ../lib/puppet/application/describe.rb:181
243
+ #: ../lib/puppet/application/describe.rb:175
244
244
  msgid "Display help about resource types"
245
245
  msgstr ""
246
246
 
247
- #: ../lib/puppet/application/device.rb:82
247
+ #: ../lib/puppet/application/device.rb:83
248
248
  msgid "Manage remote network devices"
249
249
  msgstr ""
250
250
 
251
- #: ../lib/puppet/application/device.rb:229
251
+ #: ../lib/puppet/application/device.rb:230
252
252
  msgid "resource command requires target"
253
253
  msgstr ""
254
254
 
255
- #: ../lib/puppet/application/device.rb:232
255
+ #: ../lib/puppet/application/device.rb:233
256
256
  msgid "facts command requires target"
257
257
  msgstr ""
258
258
 
259
- #: ../lib/puppet/application/device.rb:235
259
+ #: ../lib/puppet/application/device.rb:236
260
260
  msgid "missing argument: --target is required when using --apply"
261
261
  msgstr ""
262
262
 
263
- #: ../lib/puppet/application/device.rb:236
263
+ #: ../lib/puppet/application/device.rb:237
264
264
  msgid "%{file} does not exist, cannot apply"
265
265
  msgstr ""
266
266
 
267
- #: ../lib/puppet/application/device.rb:254
267
+ #: ../lib/puppet/application/device.rb:255
268
268
  msgid "Target device / certificate '%{target}' not found in %{config}"
269
269
  msgstr ""
270
270
 
271
- #: ../lib/puppet/application/device.rb:256
271
+ #: ../lib/puppet/application/device.rb:257
272
272
  msgid "No device found in %{config}"
273
273
  msgstr ""
274
274
 
275
- #: ../lib/puppet/application/device.rb:315
275
+ #: ../lib/puppet/application/device.rb:316
276
276
  msgid "retrieving resource: %{resource} from %{target} at %{scheme}%{url_host}%{port}%{url_path}"
277
277
  msgstr ""
278
278
 
279
- #: ../lib/puppet/application/device.rb:330
279
+ #: ../lib/puppet/application/device.rb:331
280
280
  msgid "retrieving facts from %{target} at %{scheme}%{url_host}%{port}%{url_path}"
281
281
  msgstr ""
282
282
 
283
- #: ../lib/puppet/application/device.rb:353
283
+ #: ../lib/puppet/application/device.rb:354
284
284
  msgid "starting applying configuration to %{target} at %{scheme}%{url_host}%{port}%{url_path}"
285
285
  msgstr ""
286
286
 
287
- #: ../lib/puppet/application/device.rb:391 ../lib/puppet/application/resource.rb:196
287
+ #: ../lib/puppet/application/device.rb:392 ../lib/puppet/application/resource.rb:196
288
288
  msgid "You must specify the type to display"
289
289
  msgstr ""
290
290
 
291
- #: ../lib/puppet/application/device.rb:392 ../lib/puppet/application/resource.rb:197
291
+ #: ../lib/puppet/application/device.rb:393 ../lib/puppet/application/resource.rb:197
292
292
  msgid "Could not find type %{type}"
293
293
  msgstr ""
294
294
 
@@ -459,59 +459,59 @@ msgstr ""
459
459
  msgid "Manage SSL keys and certificates for puppet SSL clients"
460
460
  msgstr ""
461
461
 
462
- #: ../lib/puppet/application/ssl.rb:102
462
+ #: ../lib/puppet/application/ssl.rb:103
463
463
  msgid "An action must be specified."
464
464
  msgstr ""
465
465
 
466
- #: ../lib/puppet/application/ssl.rb:125 ../lib/puppet/application/ssl.rb:132
466
+ #: ../lib/puppet/application/ssl.rb:126 ../lib/puppet/application/ssl.rb:133
467
467
  msgid "The certificate for '%{name}' has not yet been signed"
468
468
  msgstr ""
469
469
 
470
- #: ../lib/puppet/application/ssl.rb:143
470
+ #: ../lib/puppet/application/ssl.rb:144
471
471
  msgid "Completed SSL initialization"
472
472
  msgstr ""
473
473
 
474
- #: ../lib/puppet/application/ssl.rb:145
474
+ #: ../lib/puppet/application/ssl.rb:146
475
475
  msgid "Unknown action '%{action}'"
476
476
  msgstr ""
477
477
 
478
- #: ../lib/puppet/application/ssl.rb:153 ../lib/puppet/ssl/state_machine.rb:178
478
+ #: ../lib/puppet/application/ssl.rb:154 ../lib/puppet/ssl/state_machine.rb:180
479
479
  msgid "Creating a new EC SSL key for %{name} using curve %{curve}"
480
480
  msgstr ""
481
481
 
482
- #: ../lib/puppet/application/ssl.rb:156 ../lib/puppet/ssl/key.rb:26
482
+ #: ../lib/puppet/application/ssl.rb:157 ../lib/puppet/ssl/key.rb:26
483
483
  msgid "Creating a new SSL key for %{name}"
484
484
  msgstr ""
485
485
 
486
- #: ../lib/puppet/application/ssl.rb:165
487
- msgid "Submitted certificate request for '%{name}' to https://%{server}:%{port}"
486
+ #: ../lib/puppet/application/ssl.rb:167
487
+ msgid "Submitted certificate request for '%{name}' to %{url}"
488
488
  msgstr ""
489
489
 
490
490
  #: ../lib/puppet/application/ssl.rb:170
491
- msgid "Could not submit certificate request for '%{name}' to https://%{server}:%{port} due to a conflict on the server"
491
+ msgid "Could not submit certificate request for '%{name}' to %{url} due to a conflict on the server"
492
492
  msgstr ""
493
493
 
494
494
  #: ../lib/puppet/application/ssl.rb:172 ../lib/puppet/application/ssl.rb:175
495
495
  msgid "Failed to submit certificate request: %{message}"
496
496
  msgstr ""
497
497
 
498
- #: ../lib/puppet/application/ssl.rb:181
499
- msgid "Downloading certificate '%{name}' from https://%{server}:%{port}"
498
+ #: ../lib/puppet/application/ssl.rb:183
499
+ msgid "Downloading certificate '%{name}' from %{url}"
500
500
  msgstr ""
501
501
 
502
- #: ../lib/puppet/application/ssl.rb:188 ../lib/puppet/application/ssl.rb:196
502
+ #: ../lib/puppet/application/ssl.rb:187
503
503
  msgid "Downloaded certificate '%{name}' with fingerprint %{fingerprint}"
504
504
  msgstr ""
505
505
 
506
- #: ../lib/puppet/application/ssl.rb:204 ../lib/puppet/application/ssl.rb:207
506
+ #: ../lib/puppet/application/ssl.rb:200 ../lib/puppet/application/ssl.rb:203
507
507
  msgid "Failed to download certificate: %{message}"
508
508
  msgstr ""
509
509
 
510
- #: ../lib/puppet/application/ssl.rb:235 ../lib/puppet/application/ssl.rb:238
510
+ #: ../lib/puppet/application/ssl.rb:232 ../lib/puppet/application/ssl.rb:235
511
511
  msgid "Failed to connect to the CA to determine if certificate %{certname} has been cleaned"
512
512
  msgstr ""
513
513
 
514
- #: ../lib/puppet/application/ssl.rb:242
514
+ #: ../lib/puppet/application/ssl.rb:239
515
515
  msgid ""
516
516
  "The certificate %{certname} must be cleaned from the CA first. To fix this,\n"
517
517
  "run the following commands on the CA:\n"
@@ -600,32 +600,40 @@ msgstr ""
600
600
  msgid "Failed to apply catalog: %{detail}"
601
601
  msgstr ""
602
602
 
603
- #: ../lib/puppet/configurer.rb:409
603
+ #: ../lib/puppet/configurer.rb:417
604
604
  msgid "Puppet server %{host}:%{port} is unavailable: %{code} %{reason}"
605
605
  msgstr ""
606
606
 
607
607
  #. TRANSLATORS 'server_list' is the name of a setting and should not be translated
608
- #: ../lib/puppet/configurer.rb:413
608
+ #: ../lib/puppet/configurer.rb:421
609
609
  msgid "Unable to connect to server from server_list setting: %{detail}"
610
610
  msgstr ""
611
611
 
612
- #: ../lib/puppet/configurer.rb:425 ../lib/puppet/face/report.rb:47
612
+ #: ../lib/puppet/configurer.rb:433 ../lib/puppet/face/report.rb:47
613
613
  msgid "Could not send report: %{detail}"
614
614
  msgstr ""
615
615
 
616
- #: ../lib/puppet/configurer.rb:434
616
+ #: ../lib/puppet/configurer.rb:442
617
617
  msgid "Could not save last run local report: %{detail}"
618
618
  msgstr ""
619
619
 
620
- #: ../lib/puppet/configurer.rb:446
620
+ #: ../lib/puppet/configurer.rb:462
621
+ msgid "Uploading facts for %{node} to %{server}"
622
+ msgstr ""
623
+
624
+ #: ../lib/puppet/configurer.rb:473
625
+ msgid "Failed to submit facts: %{detail}"
626
+ msgstr ""
627
+
628
+ #: ../lib/puppet/configurer.rb:488
621
629
  msgid "Could not run command from %{setting}: %{detail}"
622
630
  msgstr ""
623
631
 
624
- #: ../lib/puppet/configurer.rb:464
632
+ #: ../lib/puppet/configurer.rb:506
625
633
  msgid "Could not retrieve catalog from cache: %{detail}"
626
634
  msgstr ""
627
635
 
628
- #: ../lib/puppet/configurer.rb:484
636
+ #: ../lib/puppet/configurer.rb:526
629
637
  msgid "Could not retrieve catalog from remote server: %{detail}"
630
638
  msgstr ""
631
639
 
@@ -657,10 +665,14 @@ msgstr ""
657
665
  msgid "Attempted to pop, but already at root of the context stack."
658
666
  msgstr ""
659
667
 
660
- #: ../lib/puppet/context/trusted_information.rb:48
668
+ #: ../lib/puppet/context/trusted_information.rb:58
661
669
  msgid "TrustedInformation expected a certificate, but none was given."
662
670
  msgstr ""
663
671
 
672
+ #: ../lib/puppet/context/trusted_information.rb:98 ../lib/puppet/parser/scope.rb:835
673
+ msgid "Unsupported data type: '%{klass}'"
674
+ msgstr ""
675
+
664
676
  #: ../lib/puppet/daemon.rb:83
665
677
  msgid "Cannot reexec unless ARGV arguments are set"
666
678
  msgstr ""
@@ -694,29 +706,29 @@ msgid "Valid values are %{values}."
694
706
  msgstr ""
695
707
 
696
708
  #. TRANSLATORS 'data_binding_terminus' is a setting and should not be translated
697
- #: ../lib/puppet/defaults.rb:495
709
+ #: ../lib/puppet/defaults.rb:494
698
710
  msgid "Setting 'data_binding_terminus' is deprecated."
699
711
  msgstr ""
700
712
 
701
713
  #. TRANSLATORS 'hiera' should not be translated
702
- #: ../lib/puppet/defaults.rb:497
714
+ #: ../lib/puppet/defaults.rb:496
703
715
  msgid "Convert custom terminus to hiera 5 API."
704
716
  msgstr ""
705
717
 
706
718
  #. TRANSLATORS 'environment_data_provider' is a setting and should not be translated
707
- #: ../lib/puppet/defaults.rb:676
719
+ #: ../lib/puppet/defaults.rb:686
708
720
  msgid "Setting 'environment_data_provider' is deprecated."
709
721
  msgstr ""
710
722
 
711
- #: ../lib/puppet/defaults.rb:757
723
+ #: ../lib/puppet/defaults.rb:767
712
724
  msgid "Certificate names must be lower case"
713
725
  msgstr ""
714
726
 
715
- #: ../lib/puppet/defaults.rb:938
727
+ #: ../lib/puppet/defaults.rb:948
716
728
  msgid "Setting 'ssl_client_ca_auth' is deprecated."
717
729
  msgstr ""
718
730
 
719
- #: ../lib/puppet/defaults.rb:1017 ../lib/puppet/settings/enum_setting.rb:13 ../lib/puppet/settings/symbolic_enum_setting.rb:14
731
+ #: ../lib/puppet/defaults.rb:1027 ../lib/puppet/settings/enum_setting.rb:13 ../lib/puppet/settings/symbolic_enum_setting.rb:14
720
732
  msgid "Invalid value '%{value}' for parameter %{name}. Allowed values are '%{allowed_values}'"
721
733
  msgstr ""
722
734
 
@@ -1970,13 +1982,13 @@ msgid ""
1970
1982
  "Parsing of type string '\"%{type_string}\"' failed with message: <%{message}>.\n"
1971
1983
  msgstr ""
1972
1984
 
1973
- #: ../lib/puppet/functions.rb:635
1985
+ #: ../lib/puppet/functions.rb:634
1974
1986
  msgid ""
1975
1987
  "Parsing of 'type \"%{assignment_string}\"' failed with message: <%{message}>.\n"
1976
1988
  "Called from <%{ruby_file_location}>"
1977
1989
  msgstr ""
1978
1990
 
1979
- #: ../lib/puppet/functions.rb:644
1991
+ #: ../lib/puppet/functions.rb:643
1980
1992
  msgid ""
1981
1993
  "Expected a type alias assignment on the form 'AliasType = T', got '%{assignment_string}'.\n"
1982
1994
  "Called from <%{ruby_file_location}>"
@@ -2188,11 +2200,11 @@ msgid "Got an event from invalid vertex %{source}"
2188
2200
  msgstr ""
2189
2201
 
2190
2202
  #. TRANSLATORS "negative or zero" refers to the count of paths
2191
- #: ../lib/puppet/graph/simple_graph.rb:199
2203
+ #: ../lib/puppet/graph/simple_graph.rb:200
2192
2204
  msgid "negative or zero max_paths"
2193
2205
  msgstr ""
2194
2206
 
2195
- #: ../lib/puppet/graph/simple_graph.rb:231
2207
+ #: ../lib/puppet/graph/simple_graph.rb:232
2196
2208
  msgid ""
2197
2209
  "Found %{num} dependency cycle:\n"
2198
2210
  msgid_plural ""
@@ -2200,15 +2212,55 @@ msgid_plural ""
2200
2212
  msgstr[0] ""
2201
2213
  msgstr[1] ""
2202
2214
 
2203
- #: ../lib/puppet/graph/simple_graph.rb:240
2215
+ #: ../lib/puppet/graph/simple_graph.rb:241
2204
2216
  msgid "Cycle graph written to %{filename}."
2205
2217
  msgstr ""
2206
2218
 
2207
2219
  #. TRANSLATORS '--graph' refers to a command line option and OmniGraffle and GraphViz are program names and should not be translated
2208
- #: ../lib/puppet/graph/simple_graph.rb:243
2220
+ #: ../lib/puppet/graph/simple_graph.rb:244
2209
2221
  msgid "Try the '--graph' option and opening the resulting '.dot' file in OmniGraffle or GraphViz"
2210
2222
  msgstr ""
2211
2223
 
2224
+ #: ../lib/puppet/http/client.rb:31
2225
+ msgid "Failed to connect to %{uri}: %{message}"
2226
+ msgstr ""
2227
+
2228
+ #: ../lib/puppet/http/client.rb:96
2229
+ msgid "Sleeping for %{interval} seconds before retrying the request"
2230
+ msgstr ""
2231
+
2232
+ #: ../lib/puppet/http/client.rb:125
2233
+ msgid "Request to %{uri} interrupted after %{elapsed} seconds"
2234
+ msgstr ""
2235
+
2236
+ #: ../lib/puppet/http/client.rb:127
2237
+ msgid "Request to %{uri} timed out after %{elapsed} seconds"
2238
+ msgstr ""
2239
+
2240
+ #: ../lib/puppet/http/client.rb:129
2241
+ msgid "Request to %{uri} failed after %{elapsed} seconds: %{message}"
2242
+ msgstr ""
2243
+
2244
+ #: ../lib/puppet/http/errors.rb:21
2245
+ msgid "Too many HTTP redirections for %{addr}"
2246
+ msgstr ""
2247
+
2248
+ #: ../lib/puppet/http/errors.rb:27
2249
+ msgid "Too many HTTP retries for %{addr}"
2250
+ msgstr ""
2251
+
2252
+ #: ../lib/puppet/http/redirector.rb:42
2253
+ msgid "Location response header is missing"
2254
+ msgstr ""
2255
+
2256
+ #: ../lib/puppet/http/redirector.rb:46
2257
+ msgid "Location URI is invalid: %{detail}"
2258
+ msgstr ""
2259
+
2260
+ #: ../lib/puppet/http/retry_after_handler.rb:44
2261
+ msgid "Failed to parse Retry-After header '%{retry_after}' as an integer or RFC 2822 date"
2262
+ msgstr ""
2263
+
2212
2264
  #: ../lib/puppet/indirector.rb:25
2213
2265
  msgid "Indirection %{indirection_name} does not exist"
2214
2266
  msgstr ""
@@ -2716,7 +2768,7 @@ msgstr ""
2716
2768
  msgid "Could not understand URL %{key}: %{detail}"
2717
2769
  msgstr ""
2718
2770
 
2719
- #: ../lib/puppet/indirector/resource/ral.rb:61
2771
+ #: ../lib/puppet/indirector/resource/ral.rb:59
2720
2772
  msgid "Could not find type %{request_type}"
2721
2773
  msgstr ""
2722
2774
 
@@ -2737,7 +2789,7 @@ msgstr ""
2737
2789
  msgid "Downgrading to PSON for future requests"
2738
2790
  msgstr ""
2739
2791
 
2740
- #: ../lib/puppet/indirector/rest.rb:265 ../lib/puppet/rest/response.rb:30
2792
+ #: ../lib/puppet/indirector/rest.rb:265 ../lib/puppet/rest/response.rb:31
2741
2793
  msgid "Error %{code} on SERVER: %{returned_message}"
2742
2794
  msgstr ""
2743
2795
 
@@ -3131,7 +3183,7 @@ msgstr ""
3131
3183
  msgid "Plan name cannot be a Puppet data type, but was '%{name}'"
3132
3184
  msgstr ""
3133
3185
 
3134
- #: ../lib/puppet/module/task.rb:24 ../lib/puppet/module/task.rb:203
3186
+ #: ../lib/puppet/module/task.rb:24 ../lib/puppet/module/task.rb:219
3135
3187
  msgid "Task names must start with a lowercase letter and be composed of only lowercase letters, numbers, and underscores"
3136
3188
  msgstr ""
3137
3189
 
@@ -3139,47 +3191,55 @@ msgstr ""
3139
3191
  msgid "Task %{task_name} not found in module %{module_name}."
3140
3192
  msgstr ""
3141
3193
 
3142
- #: ../lib/puppet/module/task.rb:91
3194
+ #: ../lib/puppet/module/task.rb:82 ../lib/puppet/module/task.rb:88
3195
+ msgid "The 'files' task metadata expects an array, got %{files}."
3196
+ msgstr ""
3197
+
3198
+ #: ../lib/puppet/module/task.rb:103
3143
3199
  msgid "Could not find module %{module_name} containing task file %{filename}"
3144
3200
  msgstr ""
3145
3201
 
3146
- #: ../lib/puppet/module/task.rb:97
3202
+ #: ../lib/puppet/module/task.rb:109
3147
3203
  msgid "Files must be saved in module directories that Puppet makes available via mount points: %{mounts}"
3148
3204
  msgstr ""
3149
3205
 
3150
- #: ../lib/puppet/module/task.rb:104
3206
+ #: ../lib/puppet/module/task.rb:116
3151
3207
  msgid "File pathnames cannot include relative paths"
3152
3208
  msgstr ""
3153
3209
 
3154
- #: ../lib/puppet/module/task.rb:109
3210
+ #: ../lib/puppet/module/task.rb:121
3155
3211
  msgid "Could not find %{path} on disk"
3156
3212
  msgstr ""
3157
3213
 
3158
- #: ../lib/puppet/module/task.rb:116
3214
+ #: ../lib/puppet/module/task.rb:128
3159
3215
  msgid "Directories specified in task metadata must include a trailing slash: %{dir}"
3160
3216
  msgstr ""
3161
3217
 
3162
- #: ../lib/puppet/module/task.rb:123
3218
+ #: ../lib/puppet/module/task.rb:135
3163
3219
  msgid "Files specified in task metadata cannot include a trailing slash: %{file}"
3164
3220
  msgstr ""
3165
3221
 
3166
- #: ../lib/puppet/module/task.rb:140
3222
+ #: ../lib/puppet/module/task.rb:152
3167
3223
  msgid "Task metadata for task %{name} does not specify implementations as an array"
3168
3224
  msgstr ""
3169
3225
 
3170
- #: ../lib/puppet/module/task.rb:147
3226
+ #: ../lib/puppet/module/task.rb:158
3227
+ msgid "Task metadata for task %{name} does not specify requirements as an array"
3228
+ msgstr ""
3229
+
3230
+ #: ../lib/puppet/module/task.rb:163
3171
3231
  msgid "Task metadata for task %{name} specifies missing implementation %{implementation}"
3172
3232
  msgstr ""
3173
3233
 
3174
- #: ../lib/puppet/module/task.rb:159
3234
+ #: ../lib/puppet/module/task.rb:175
3175
3235
  msgid "No source besides task metadata was found in directory %{directory} for task %{name}"
3176
3236
  msgstr ""
3177
3237
 
3178
- #: ../lib/puppet/module/task.rb:163
3238
+ #: ../lib/puppet/module/task.rb:179
3179
3239
  msgid "Multiple executables were found in directory %{directory} for task %{name}; define 'implementations' in metadata to differentiate between them"
3180
3240
  msgstr ""
3181
3241
 
3182
- #: ../lib/puppet/module/task.rb:217
3242
+ #: ../lib/puppet/module/task.rb:233
3183
3243
  msgid "Error reading metadata: %{message}"
3184
3244
  msgstr ""
3185
3245
 
@@ -3790,45 +3850,45 @@ msgstr ""
3790
3850
  msgid "No request key specified in %{uri}"
3791
3851
  msgstr ""
3792
3852
 
3793
- #: ../lib/puppet/network/http/api/indirected_routes.rb:129
3853
+ #: ../lib/puppet/network/http/api/indirected_routes.rb:140
3794
3854
  msgid "Could not find %{value0} %{key}"
3795
3855
  msgstr ""
3796
3856
 
3797
- #: ../lib/puppet/network/http/api/indirected_routes.rb:136
3857
+ #: ../lib/puppet/network/http/api/indirected_routes.rb:147
3798
3858
  msgid "Rendered result in %{format}"
3799
3859
  msgstr ""
3800
3860
 
3801
- #: ../lib/puppet/network/http/api/indirected_routes.rb:142
3861
+ #: ../lib/puppet/network/http/api/indirected_routes.rb:153
3802
3862
  msgid "Sent response"
3803
3863
  msgstr ""
3804
3864
 
3805
- #: ../lib/puppet/network/http/api/indirected_routes.rb:150
3865
+ #: ../lib/puppet/network/http/api/indirected_routes.rb:161
3806
3866
  msgid "Could not find %{indirection} %{key}"
3807
3867
  msgstr ""
3808
3868
 
3809
- #: ../lib/puppet/network/http/api/indirected_routes.rb:162
3869
+ #: ../lib/puppet/network/http/api/indirected_routes.rb:173
3810
3870
  msgid "Could not find instances in %{indirection} with '%{key}'"
3811
3871
  msgstr ""
3812
3872
 
3813
- #: ../lib/puppet/network/http/api/indirected_routes.rb:210 ../lib/puppet/network/http/request.rb:61
3873
+ #: ../lib/puppet/network/http/api/indirected_routes.rb:221 ../lib/puppet/network/http/request.rb:61
3814
3874
  msgid "No supported formats are acceptable (Accept: %{accepted_formats})"
3815
3875
  msgstr ""
3816
3876
 
3817
- #: ../lib/puppet/network/http/api/indirected_routes.rb:235
3877
+ #: ../lib/puppet/network/http/api/indirected_routes.rb:246
3818
3878
  msgid "The request body is invalid: %{message}"
3819
3879
  msgstr ""
3820
3880
 
3821
3881
  #. TRANSLATORS "mime-type" is a keyword and should not be translated
3822
3882
  #. TRANSLATORS "mime-type" is a keyword and should not be translated
3823
- #: ../lib/puppet/network/http/api/indirected_routes.rb:241 ../lib/puppet/network/http/request.rb:32
3883
+ #: ../lib/puppet/network/http/api/indirected_routes.rb:252 ../lib/puppet/network/http/request.rb:32
3824
3884
  msgid "Client sent a mime-type (%{header}) that doesn't correspond to a format we support"
3825
3885
  msgstr ""
3826
3886
 
3827
- #: ../lib/puppet/network/http/api/indirected_routes.rb:247
3887
+ #: ../lib/puppet/network/http/api/indirected_routes.rb:258
3828
3888
  msgid "No support for http method %{http_method}"
3829
3889
  msgstr ""
3830
3890
 
3831
- #: ../lib/puppet/network/http/api/indirected_routes.rb:252
3891
+ #: ../lib/puppet/network/http/api/indirected_routes.rb:263
3832
3892
  msgid "No support for plurality %{indirection} for %{http_method} operations"
3833
3893
  msgstr ""
3834
3894
 
@@ -3882,15 +3942,15 @@ msgstr ""
3882
3942
  msgid "Received a %{status_code} response from %{server_hostname}. Sleeping for %{retry_sleep} seconds before retrying the request."
3883
3943
  msgstr ""
3884
3944
 
3885
- #: ../lib/puppet/network/http/connection.rb:332
3945
+ #: ../lib/puppet/network/http/connection.rb:331
3886
3946
  msgid "request %{uri} interrupted after %{elapsed} seconds"
3887
3947
  msgstr ""
3888
3948
 
3889
- #: ../lib/puppet/network/http/connection.rb:334
3949
+ #: ../lib/puppet/network/http/connection.rb:333
3890
3950
  msgid "request %{uri} timed out after %{elapsed} seconds"
3891
3951
  msgstr ""
3892
3952
 
3893
- #: ../lib/puppet/network/http/connection.rb:336
3953
+ #: ../lib/puppet/network/http/connection.rb:335
3894
3954
  msgid "request %{uri} failed: %{msg}"
3895
3955
  msgstr ""
3896
3956
 
@@ -4016,7 +4076,7 @@ msgstr ""
4016
4076
  msgid "The 'disable_per_environment_manifest' setting is true, and the '%{env_name}' environment has an environment.conf manifest that conflicts with the 'default_manifest' setting."
4017
4077
  msgstr ""
4018
4078
 
4019
- #: ../lib/puppet/node/environment.rb:543 ../lib/puppet/pops/loaders.rb:298
4079
+ #: ../lib/puppet/node/environment.rb:545 ../lib/puppet/pops/loaders.rb:298
4020
4080
  msgid "Could not parse for environment %{env}: %{detail}"
4021
4081
  msgstr ""
4022
4082
 
@@ -4610,79 +4670,75 @@ msgstr ""
4610
4670
  msgid "class %{classname} has not been evaluated"
4611
4671
  msgstr ""
4612
4672
 
4613
- #: ../lib/puppet/parser/scope.rb:702
4673
+ #: ../lib/puppet/parser/scope.rb:703
4614
4674
  msgid "Default already defined for %{type} { %{param} }; cannot redefine"
4615
4675
  msgstr ""
4616
4676
 
4617
- #: ../lib/puppet/parser/scope.rb:762
4677
+ #: ../lib/puppet/parser/scope.rb:763
4618
4678
  msgid "Cannot assign to a numeric match result variable '$%{name}'"
4619
4679
  msgstr ""
4620
4680
 
4621
- #: ../lib/puppet/parser/scope.rb:765
4681
+ #: ../lib/puppet/parser/scope.rb:766
4622
4682
  msgid "Scope variable name %{name} is a %{class_type}, not a string"
4623
4683
  msgstr ""
4624
4684
 
4625
- #: ../lib/puppet/parser/scope.rb:770 ../lib/puppet/parser/scope.rb:775
4685
+ #: ../lib/puppet/parser/scope.rb:771 ../lib/puppet/parser/scope.rb:776
4626
4686
  msgid "Attempt to assign to a reserved variable name: '%{name}'"
4627
4687
  msgstr ""
4628
4688
 
4629
- #: ../lib/puppet/parser/scope.rb:780
4689
+ #: ../lib/puppet/parser/scope.rb:781
4630
4690
  msgid "Cannot reassign variable '$%{name}'"
4631
4691
  msgstr ""
4632
4692
 
4633
- #: ../lib/puppet/parser/scope.rb:834
4634
- msgid "Unsupported data type: '%{klass}'"
4635
- msgstr ""
4636
-
4637
- #: ../lib/puppet/parser/scope.rb:1011
4693
+ #: ../lib/puppet/parser/scope.rb:1012
4638
4694
  msgid "Invalid regex match data. Got a %{klass}"
4639
4695
  msgstr ""
4640
4696
 
4641
- #: ../lib/puppet/parser/scope.rb:1019
4697
+ #: ../lib/puppet/parser/scope.rb:1020
4642
4698
  msgid "Scope#find_resource_type() is no longer supported, use Puppet::Pops::Evaluator::Runtime3ResourceSupport instead"
4643
4699
  msgstr ""
4644
4700
 
4645
- #: ../lib/puppet/parser/scope.rb:1024
4701
+ #: ../lib/puppet/parser/scope.rb:1025
4646
4702
  msgid "Scope#find_builtin_resource_type() is no longer supported, use Puppet::Pops::Evaluator::Runtime3ResourceSupport instead"
4647
4703
  msgstr ""
4648
4704
 
4649
- #: ../lib/puppet/parser/scope.rb:1029
4705
+ #: ../lib/puppet/parser/scope.rb:1030
4650
4706
  msgid "Scope#find_defined_resource_type() is no longer supported, use Puppet::Pops::Evaluator::Runtime3ResourceSupport instead"
4651
4707
  msgstr ""
4652
4708
 
4653
- #: ../lib/puppet/parser/scope.rb:1043
4709
+ #: ../lib/puppet/parser/scope.rb:1044
4654
4710
  msgid "Function %{name} not defined despite being loaded!"
4655
4711
  msgstr ""
4656
4712
 
4657
- #: ../lib/puppet/parser/scope.rb:1050
4713
+ #: ../lib/puppet/parser/scope.rb:1051
4658
4714
  msgid "Scope#resolve_type_and_title() is no longer supported, use Puppet::Pops::Evaluator::Runtime3ResourceSupport instead"
4659
4715
  msgstr ""
4660
4716
 
4661
- #: ../lib/puppet/parser/scope.rb:1070
4717
+ #: ../lib/puppet/parser/scope.rb:1071
4662
4718
  msgid "Cannot use undef as a class name"
4663
4719
  msgstr ""
4664
4720
 
4665
- #: ../lib/puppet/parser/scope.rb:1072
4721
+ #: ../lib/puppet/parser/scope.rb:1073
4666
4722
  msgid "Cannot use empty string as a class name"
4667
4723
  msgstr ""
4668
4724
 
4669
4725
  #. TRANSLATORS "Class" and "Type" are Puppet keywords and should not be translated
4670
- #: ../lib/puppet/parser/scope.rb:1081
4726
+ #: ../lib/puppet/parser/scope.rb:1082
4671
4727
  msgid "Cannot use an unspecific Class[] Type"
4672
4728
  msgstr ""
4673
4729
 
4674
4730
  #. TRANSLATORS "Resource" is a class name and should not be translated
4675
- #: ../lib/puppet/parser/scope.rb:1108
4731
+ #: ../lib/puppet/parser/scope.rb:1109
4676
4732
  msgid "Cannot use an unspecific Resource[] where a Resource['class', name] is expected"
4677
4733
  msgstr ""
4678
4734
 
4679
4735
  #. TRANSLATORS "Resource" is a class name and should not be translated
4680
- #: ../lib/puppet/parser/scope.rb:1112
4736
+ #: ../lib/puppet/parser/scope.rb:1113
4681
4737
  msgid "Cannot use a Resource[%{type_name}] where a Resource['class', name] is expected"
4682
4738
  msgstr ""
4683
4739
 
4684
4740
  #. TRANSLATORS "Resource" is a class name and should not be translated
4685
- #: ../lib/puppet/parser/scope.rb:1116
4741
+ #: ../lib/puppet/parser/scope.rb:1117
4686
4742
  msgid "Cannot use an unspecific Resource['class'] where a Resource['class', name] is expected"
4687
4743
  msgstr ""
4688
4744
 
@@ -4832,7 +4888,7 @@ msgstr ""
4832
4888
  msgid "Can only delete from an Array or Hash."
4833
4889
  msgstr ""
4834
4890
 
4835
- #: ../lib/puppet/pops/evaluator/external_syntax_support.rb:22 ../lib/puppet/pops/evaluator/runtime3_support.rb:23 ../lib/puppet/pops/evaluator/runtime3_support.rb:529
4891
+ #: ../lib/puppet/pops/evaluator/external_syntax_support.rb:22 ../lib/puppet/pops/evaluator/runtime3_support.rb:23 ../lib/puppet/pops/evaluator/runtime3_support.rb:526
4836
4892
  msgid "Internal Error: Configuration of runtime error handling wrong: should have raised exception"
4837
4893
  msgstr ""
4838
4894
 
@@ -5739,7 +5795,11 @@ msgstr ""
5739
5795
  msgid "Illegal method definition of method '%{method_name}' on line %{line}' in legacy function. See %{url} for more information"
5740
5796
  msgstr ""
5741
5797
 
5742
- #: ../lib/puppet/pops/loader/task_instantiator.rb:27
5798
+ #: ../lib/puppet/pops/loader/task_instantiator.rb:22
5799
+ msgid "Failed to load metadata for task %{name}: 'parameters' must be a hash"
5800
+ msgstr ""
5801
+
5802
+ #: ../lib/puppet/pops/loader/task_instantiator.rb:31
5743
5803
  msgid "Failed to load metadata for task %{name}: %{reason}"
5744
5804
  msgstr ""
5745
5805
 
@@ -5810,11 +5870,11 @@ msgstr ""
5810
5870
  msgid "Hiera configuration recreated due to change of scope variables used in interpolation expressions"
5811
5871
  msgstr ""
5812
5872
 
5813
- #: ../lib/puppet/pops/lookup/hiera_config.rb:427
5873
+ #: ../lib/puppet/pops/lookup/hiera_config.rb:428
5814
5874
  msgid "%{config_path}: Use of 'hiera.yaml' version 3 is deprecated. It should be converted to version 5"
5815
5875
  msgstr ""
5816
5876
 
5817
- #: ../lib/puppet/pops/lookup/hiera_config.rb:527
5877
+ #: ../lib/puppet/pops/lookup/hiera_config.rb:528
5818
5878
  msgid "%{config_path}: Use of 'hiera.yaml' version 4 is deprecated. It should be converted to version 5"
5819
5879
  msgstr ""
5820
5880
 
@@ -5950,39 +6010,39 @@ msgstr ""
5950
6010
  msgid "illegal comma separated argument list"
5951
6011
  msgstr ""
5952
6012
 
5953
- #: ../lib/puppet/pops/parser/pn_parser.rb:64
6013
+ #: ../lib/puppet/pops/parser/pn_parser.rb:81
5954
6014
  msgid "unexpected end of input"
5955
6015
  msgstr ""
5956
6016
 
5957
- #: ../lib/puppet/pops/parser/pn_parser.rb:66
6017
+ #: ../lib/puppet/pops/parser/pn_parser.rb:83
5958
6018
  msgid "unexpected %{value}"
5959
6019
  msgstr ""
5960
6020
 
5961
- #: ../lib/puppet/pops/parser/pn_parser.rb:103
6021
+ #: ../lib/puppet/pops/parser/pn_parser.rb:120
5962
6022
  msgid "map key expected"
5963
6023
  msgstr ""
5964
6024
 
5965
- #: ../lib/puppet/pops/parser/pn_parser.rb:114
6025
+ #: ../lib/puppet/pops/parser/pn_parser.rb:131
5966
6026
  msgid "expected identifier to follow '('"
5967
6027
  msgstr ""
5968
6028
 
5969
- #: ../lib/puppet/pops/parser/pn_parser.rb:125
6029
+ #: ../lib/puppet/pops/parser/pn_parser.rb:142
5970
6030
  msgid "missing '%{token}' to end list"
5971
6031
  msgstr ""
5972
6032
 
5973
- #: ../lib/puppet/pops/parser/pn_parser.rb:186
6033
+ #: ../lib/puppet/pops/parser/pn_parser.rb:187
5974
6034
  msgid "expected identifier after ':'"
5975
6035
  msgstr ""
5976
6036
 
5977
- #: ../lib/puppet/pops/parser/pn_parser.rb:225
6037
+ #: ../lib/puppet/pops/parser/pn_parser.rb:226
5978
6038
  msgid "unterminated quote"
5979
6039
  msgstr ""
5980
6040
 
5981
- #: ../lib/puppet/pops/parser/pn_parser.rb:251
6041
+ #: ../lib/puppet/pops/parser/pn_parser.rb:252
5982
6042
  msgid "malformed octal quote"
5983
6043
  msgstr ""
5984
6044
 
5985
- #: ../lib/puppet/pops/parser/pn_parser.rb:266 ../lib/puppet/pops/parser/pn_parser.rb:271 ../lib/puppet/pops/parser/pn_parser.rb:275
6045
+ #: ../lib/puppet/pops/parser/pn_parser.rb:267 ../lib/puppet/pops/parser/pn_parser.rb:272 ../lib/puppet/pops/parser/pn_parser.rb:276
5986
6046
  msgid "digit expected"
5987
6047
  msgstr ""
5988
6048
 
@@ -6463,8 +6523,8 @@ msgstr ""
6463
6523
  msgid "Empty environment setting '%{var}'"
6464
6524
  msgstr ""
6465
6525
 
6466
- #: ../lib/puppet/provider/exec.rb:99
6467
- msgid "'%{command}' is not qualified and no path was specified. Please qualify the command or specify a path."
6526
+ #: ../lib/puppet/provider/exec.rb:103
6527
+ msgid "'%{exe}' is not qualified and no path was specified. Please qualify the command or specify a path."
6468
6528
  msgstr ""
6469
6529
 
6470
6530
  #: ../lib/puppet/provider/exec/posix.rb:21 ../lib/puppet/provider/exec/posix.rb:38 ../lib/puppet/provider/exec/windows.rb:40 ../lib/puppet/provider/exec/windows.rb:53
@@ -6635,19 +6695,19 @@ msgstr ""
6635
6695
  msgid "Mac OS X packages must specify a package source"
6636
6696
  msgstr ""
6637
6697
 
6638
- #: ../lib/puppet/provider/package/apt.rb:39
6698
+ #: ../lib/puppet/provider/package/apt.rb:43
6639
6699
  msgid "/etc/apt/sources.list contains a cdrom source; not installing. Use 'allowcdrom' to override this failure."
6640
6700
  msgstr ""
6641
6701
 
6642
- #: ../lib/puppet/provider/package/apt.rb:84 ../lib/puppet/provider/package/fink.rb:50
6702
+ #: ../lib/puppet/provider/package/apt.rb:88 ../lib/puppet/provider/package/fink.rb:50
6643
6703
  msgid "Could not find latest version"
6644
6704
  msgstr ""
6645
6705
 
6646
- #: ../lib/puppet/provider/package/apt.rb:95 ../lib/puppet/provider/package/fink.rb:61
6706
+ #: ../lib/puppet/provider/package/apt.rb:99 ../lib/puppet/provider/package/fink.rb:61
6647
6707
  msgid "Preseeding %{response} to debconf-set-selections"
6648
6708
  msgstr ""
6649
6709
 
6650
- #: ../lib/puppet/provider/package/apt.rb:99 ../lib/puppet/provider/package/fink.rb:65
6710
+ #: ../lib/puppet/provider/package/apt.rb:103 ../lib/puppet/provider/package/fink.rb:65
6651
6711
  msgid "No responsefile specified or non existent, not preseeding anything"
6652
6712
  msgstr ""
6653
6713
 
@@ -6679,11 +6739,19 @@ msgstr ""
6679
6739
  msgid "Cannot match %{line}"
6680
6740
  msgstr ""
6681
6741
 
6682
- #: ../lib/puppet/provider/package/dpkg.rb:85
6742
+ #: ../lib/puppet/provider/package/dnfmodule.rb:30
6743
+ msgid "Modules are not supported on DNF versions lower than 3.0.1"
6744
+ msgstr ""
6745
+
6746
+ #: ../lib/puppet/provider/package/dpkg.rb:90
6683
6747
  msgid "You cannot install dpkg packages without a source"
6684
6748
  msgstr ""
6685
6749
 
6686
- #: ../lib/puppet/provider/package/dpkg.rb:110
6750
+ #: ../lib/puppet/provider/package/dpkg.rb:115
6751
+ msgid "Could not update: You cannot install dpkg packages without a source"
6752
+ msgstr ""
6753
+
6754
+ #: ../lib/puppet/provider/package/dpkg.rb:119
6687
6755
  msgid "source doesn't contain named package, but %{name}"
6688
6756
  msgstr ""
6689
6757
 
@@ -6821,6 +6889,10 @@ msgstr ""
6821
6889
  msgid "Refusing to install package group %{resource_name}, because allow_virtual is false."
6822
6890
  msgstr ""
6823
6891
 
6892
+ #: ../lib/puppet/provider/package/pip.rb:54
6893
+ msgid "Cannot resolve pip version"
6894
+ msgstr ""
6895
+
6824
6896
  #: ../lib/puppet/provider/package/pkg.rb:53 ../lib/puppet/provider/package/pkg.rb:63
6825
6897
  msgid "Unknown format %{resource_name}: %{full_flags}[%{bad_flag}]"
6826
6898
  msgstr ""
@@ -7036,7 +7108,7 @@ msgid "Overrides file could not be read, trying again."
7036
7108
  msgstr ""
7037
7109
 
7038
7110
  #. TRANSLATORS 'runsvdir' is a linux service name and should not be translated
7039
- #: ../lib/puppet/provider/service/runit.rb:93
7111
+ #: ../lib/puppet/provider/service/runit.rb:87
7040
7112
  msgid "Waiting 5 seconds for runsvdir to discover service %{service}"
7041
7113
  msgstr ""
7042
7114
 
@@ -7103,22 +7175,22 @@ msgid "ruby-shadow doesn't support %{method}"
7103
7175
  msgstr ""
7104
7176
 
7105
7177
  #: ../lib/puppet/provider/user/windows_adsi.rb:128
7106
- msgid "The user account '%s' is disabled; puppet will not reset the password"
7178
+ msgid "The user account '%s' is disabled; The password will still be changed"
7107
7179
  msgstr ""
7108
7180
 
7109
7181
  #: ../lib/puppet/provider/user/windows_adsi.rb:130
7110
- msgid "The user account '%s' is locked out; puppet will not reset the password"
7182
+ msgid "The user account '%s' is locked out; The password will still be changed"
7111
7183
  msgstr ""
7112
7184
 
7113
7185
  #: ../lib/puppet/provider/user/windows_adsi.rb:132
7114
- msgid "The user account '%s' is expired; puppet will not reset the password"
7186
+ msgid "The user account '%s' is expired; The password will still be changed"
7115
7187
  msgstr ""
7116
7188
 
7117
7189
  #: ../lib/puppet/reference/indirection.rb:22
7118
7190
  msgid "Could not build docs for indirector %{name}, terminus %{terminus}: could not locate terminus."
7119
7191
  msgstr ""
7120
7192
 
7121
- #: ../lib/puppet/reference/metaparameter.rb:30
7193
+ #: ../lib/puppet/reference/metaparameter.rb:28
7122
7194
  msgid "incorrect metaparams: %{detail}"
7123
7195
  msgstr ""
7124
7196
 
@@ -7152,11 +7224,11 @@ msgid ""
7152
7224
  " - Missing features %{values}\n"
7153
7225
  msgstr ""
7154
7226
 
7155
- #: ../lib/puppet/reference/type.rb:81
7227
+ #: ../lib/puppet/reference/type.rb:77
7156
7228
  msgid "Could not retrieve property %{sname} on type %{type_name}"
7157
7229
  msgstr ""
7158
7230
 
7159
- #: ../lib/puppet/reference/type.rb:85
7231
+ #: ../lib/puppet/reference/type.rb:81
7160
7232
  msgid "No docs for %{type}[%{sname}]"
7161
7233
  msgstr ""
7162
7234
 
@@ -7432,19 +7504,19 @@ msgstr ""
7432
7504
  msgid "Not attempting to load %{type} %{fqname} as this object was missing during a prior compilation"
7433
7505
  msgstr ""
7434
7506
 
7435
- #: ../lib/puppet/rest/route.rb:46
7507
+ #: ../lib/puppet/rest/route.rb:47
7436
7508
  msgid "Connection to cached server and port %{server}:%{port} failed: %{message}"
7437
7509
  msgstr ""
7438
7510
 
7439
- #: ../lib/puppet/rest/routes.rb:43
7511
+ #: ../lib/puppet/rest/routes.rb:46
7440
7512
  msgid "Downloaded certificate for %{name} from %{server}"
7441
7513
  msgstr ""
7442
7514
 
7443
- #: ../lib/puppet/rest/routes.rb:73
7515
+ #: ../lib/puppet/rest/routes.rb:76
7444
7516
  msgid "Downloaded certificate revocation list for %{name} from %{server}"
7445
7517
  msgstr ""
7446
7518
 
7447
- #: ../lib/puppet/rest/routes.rb:126
7519
+ #: ../lib/puppet/rest/routes.rb:129
7448
7520
  msgid "Downloaded existing certificate request for %{name} from %{server}"
7449
7521
  msgstr ""
7450
7522
 
@@ -7820,7 +7892,7 @@ msgid ""
7820
7892
  "%{crl}"
7821
7893
  msgstr ""
7822
7894
 
7823
- #: ../lib/puppet/ssl/host.rb:391 ../lib/puppet/ssl/state_machine.rb:119
7895
+ #: ../lib/puppet/ssl/host.rb:391 ../lib/puppet/ssl/state_machine.rb:120
7824
7896
  msgid "Could not download CRLs: %{message}"
7825
7897
  msgstr ""
7826
7898
 
@@ -7936,95 +8008,99 @@ msgstr ""
7936
8008
  msgid "Certificate '%{subject}' failed verification (%{err}): %{err_utf8}"
7937
8009
  msgstr ""
7938
8010
 
7939
- #: ../lib/puppet/ssl/state_machine.rb:52
8011
+ #: ../lib/puppet/ssl/state_machine.rb:53
7940
8012
  msgid "Verified CA bundle with digest (%{digest_type}) %{actual_digest}"
7941
8013
  msgstr ""
7942
8014
 
7943
- #: ../lib/puppet/ssl/state_machine.rb:55
8015
+ #: ../lib/puppet/ssl/state_machine.rb:56
7944
8016
  msgid "CA bundle with digest (%{digest_type}) %{actual_digest} did not match expected digest %{expected_digest}"
7945
8017
  msgstr ""
7946
8018
 
7947
- #: ../lib/puppet/ssl/state_machine.rb:71
8019
+ #: ../lib/puppet/ssl/state_machine.rb:72
7948
8020
  msgid "CA certificate is missing from the server"
7949
8021
  msgstr ""
7950
8022
 
7951
- #: ../lib/puppet/ssl/state_machine.rb:73
8023
+ #: ../lib/puppet/ssl/state_machine.rb:74
7952
8024
  msgid "Could not download CA certificate: %{message}"
7953
8025
  msgstr ""
7954
8026
 
7955
- #: ../lib/puppet/ssl/state_machine.rb:117
8027
+ #: ../lib/puppet/ssl/state_machine.rb:118
7956
8028
  msgid "CRL is missing from the server"
7957
8029
  msgstr ""
7958
8030
 
7959
- #: ../lib/puppet/ssl/state_machine.rb:126
8031
+ #: ../lib/puppet/ssl/state_machine.rb:127
7960
8032
  msgid "Refreshing CRL"
7961
8033
  msgstr ""
7962
8034
 
7963
- #: ../lib/puppet/ssl/state_machine.rb:132
8035
+ #: ../lib/puppet/ssl/state_machine.rb:133
7964
8036
  msgid "CRL is unmodified, using existing CRL"
7965
8037
  msgstr ""
7966
8038
 
7967
- #: ../lib/puppet/ssl/state_machine.rb:134 ../lib/puppet/ssl/state_machine.rb:140
8039
+ #: ../lib/puppet/ssl/state_machine.rb:135 ../lib/puppet/ssl/state_machine.rb:141
7968
8040
  msgid "Failed to refresh CRL, using existing CRL: %{message}"
7969
8041
  msgstr ""
7970
8042
 
7971
- #: ../lib/puppet/ssl/state_machine.rb:164
8043
+ #: ../lib/puppet/ssl/state_machine.rb:166
7972
8044
  msgid "Loading/generating private key"
7973
8045
  msgstr ""
7974
8046
 
7975
- #: ../lib/puppet/ssl/state_machine.rb:181
8047
+ #: ../lib/puppet/ssl/state_machine.rb:183
7976
8048
  msgid "Creating a new RSA SSL key for %{name}"
7977
8049
  msgstr ""
7978
8050
 
7979
- #: ../lib/puppet/ssl/state_machine.rb:211
8051
+ #: ../lib/puppet/ssl/state_machine.rb:213
7980
8052
  msgid "Generating and submitting a CSR"
7981
8053
  msgstr ""
7982
8054
 
7983
- #: ../lib/puppet/ssl/state_machine.rb:221
8055
+ #: ../lib/puppet/ssl/state_machine.rb:224
7984
8056
  msgid "Failed to submit the CSR, HTTP response was %{code}"
7985
8057
  msgstr ""
7986
8058
 
7987
- #: ../lib/puppet/ssl/state_machine.rb:230
8059
+ #: ../lib/puppet/ssl/state_machine.rb:233
7988
8060
  msgid "Downloading client certificate"
7989
8061
  msgstr ""
7990
8062
 
7991
- #: ../lib/puppet/ssl/state_machine.rb:245
8063
+ #: ../lib/puppet/ssl/state_machine.rb:239
8064
+ msgid "Downloaded certificate for %{name} from %{url}"
8065
+ msgstr ""
8066
+
8067
+ #: ../lib/puppet/ssl/state_machine.rb:250
7992
8068
  msgid "Failed to parse certificate: %{message}"
7993
8069
  msgstr ""
7994
8070
 
7995
- #: ../lib/puppet/ssl/state_machine.rb:248
8071
+ #: ../lib/puppet/ssl/state_machine.rb:253
7996
8072
  msgid "Certificate for %{certname} has not been signed yet"
7997
8073
  msgstr ""
7998
8074
 
7999
- #: ../lib/puppet/ssl/state_machine.rb:249
8075
+ #: ../lib/puppet/ssl/state_machine.rb:254
8000
8076
  msgid "Couldn't fetch certificate from CA server; you might still need to sign this agent's certificate (%{name})."
8001
8077
  msgstr ""
8002
8078
 
8003
- #: ../lib/puppet/ssl/state_machine.rb:252
8079
+ #: ../lib/puppet/ssl/state_machine.rb:257
8004
8080
  msgid "Failed to retrieve certificate for %{certname}: %{message}"
8005
8081
  msgstr ""
8006
8082
 
8007
- #: ../lib/puppet/ssl/state_machine.rb:268
8083
+ #: ../lib/puppet/ssl/state_machine.rb:273
8008
8084
  msgid "Exiting now because the waitforcert setting is set to 0."
8009
8085
  msgstr ""
8010
8086
 
8011
- #: ../lib/puppet/ssl/state_machine.rb:271
8087
+ #: ../lib/puppet/ssl/state_machine.rb:276
8012
8088
  msgid "Couldn't fetch certificate from CA server; you might still need to sign this agent's certificate (%{name}). Exiting now because the maxwaitforcert timeout has been exceeded."
8013
8089
  msgstr ""
8014
8090
 
8015
- #: ../lib/puppet/ssl/state_machine.rb:274
8091
+ #: ../lib/puppet/ssl/state_machine.rb:279
8016
8092
  msgid "Will try again in %{time} seconds."
8017
8093
  msgstr ""
8018
8094
 
8019
- #: ../lib/puppet/ssl/state_machine.rb:371
8095
+ #: ../lib/puppet/ssl/state_machine.rb:379
8020
8096
  msgid "Verified client certificate '%{subject}' fingerprint %{digest}"
8021
8097
  msgstr ""
8022
8098
 
8023
- #: ../lib/puppet/ssl/state_machine.rb:373
8099
+ #: ../lib/puppet/ssl/state_machine.rb:381
8024
8100
  msgid "Verified CA certificate '%{subject}' fingerprint %{digest}"
8025
8101
  msgstr ""
8026
8102
 
8027
- #: ../lib/puppet/ssl/state_machine.rb:413
8103
+ #: ../lib/puppet/ssl/state_machine.rb:421
8028
8104
  msgid "Another puppet instance is already running; exiting"
8029
8105
  msgstr ""
8030
8106
 
@@ -8313,31 +8389,31 @@ msgstr ""
8313
8389
  msgid "Could not find parent provider %{parent} of %{name}"
8314
8390
  msgstr ""
8315
8391
 
8316
- #: ../lib/puppet/type.rb:1974
8392
+ #: ../lib/puppet/type.rb:1972
8317
8393
  msgid "Invalid %{resource} provider '%{provider_class}'"
8318
8394
  msgstr ""
8319
8395
 
8320
- #: ../lib/puppet/type.rb:2059
8396
+ #: ../lib/puppet/type.rb:2057
8321
8397
  msgid "Could not find %{name} provider of %{provider}"
8322
8398
  msgstr ""
8323
8399
 
8324
- #: ../lib/puppet/type.rb:2177
8400
+ #: ../lib/puppet/type.rb:2175
8325
8401
  msgid "You cannot add relationships without a catalog"
8326
8402
  msgstr ""
8327
8403
 
8328
- #: ../lib/puppet/type.rb:2481
8404
+ #: ../lib/puppet/type.rb:2479
8329
8405
  msgid "Unable to mark '%{name}' as sensitive: %{name} is a parameter and not a property, and cannot be automatically redacted."
8330
8406
  msgstr ""
8331
8407
 
8332
- #: ../lib/puppet/type.rb:2484
8408
+ #: ../lib/puppet/type.rb:2482
8333
8409
  msgid "Unable to mark '%{name}' as sensitive: the property itself was not assigned a value."
8334
8410
  msgstr ""
8335
8411
 
8336
- #: ../lib/puppet/type.rb:2486
8412
+ #: ../lib/puppet/type.rb:2484
8337
8413
  msgid "Unable to mark '%{name}' as sensitive: the property itself is not defined on %{type}."
8338
8414
  msgstr ""
8339
8415
 
8340
- #: ../lib/puppet/type.rb:2544
8416
+ #: ../lib/puppet/type.rb:2542
8341
8417
  msgid "Could not set %{attribute} on %{class_name}: %{detail}"
8342
8418
  msgstr ""
8343
8419
 
@@ -8349,64 +8425,64 @@ msgstr ""
8349
8425
  msgid "Command exceeded timeout"
8350
8426
  msgstr ""
8351
8427
 
8352
- #: ../lib/puppet/type/exec.rb:177
8428
+ #: ../lib/puppet/type/exec.rb:181
8353
8429
  msgid "[command redacted] returned %{status} instead of one of [%{expected}]"
8354
8430
  msgstr ""
8355
8431
 
8356
- #: ../lib/puppet/type/exec.rb:179
8432
+ #: ../lib/puppet/type/exec.rb:183
8357
8433
  msgid "'%{cmd}' returned %{status} instead of one of [%{expected}]"
8358
8434
  msgstr ""
8359
8435
 
8360
- #: ../lib/puppet/type/exec.rb:200
8436
+ #: ../lib/puppet/type/exec.rb:204
8361
8437
  msgid "Command must be a String, got value of class %{klass}"
8362
8438
  msgstr ""
8363
8439
 
8364
- #: ../lib/puppet/type/exec.rb:232
8440
+ #: ../lib/puppet/type/exec.rb:236
8365
8441
  msgid "Unable to execute commands as other users on Windows"
8366
8442
  msgstr ""
8367
8443
 
8368
- #: ../lib/puppet/type/exec.rb:234
8444
+ #: ../lib/puppet/type/exec.rb:238
8369
8445
  msgid "Only root can execute commands as other users"
8370
8446
  msgstr ""
8371
8447
 
8372
- #: ../lib/puppet/type/exec.rb:290
8448
+ #: ../lib/puppet/type/exec.rb:294
8373
8449
  msgid "Invalid environment setting '%{value}'"
8374
8450
  msgstr ""
8375
8451
 
8376
- #: ../lib/puppet/type/exec.rb:303
8452
+ #: ../lib/puppet/type/exec.rb:307
8377
8453
  msgid "The umask specification is invalid: %{value}"
8378
8454
  msgstr ""
8379
8455
 
8380
- #: ../lib/puppet/type/exec.rb:319
8456
+ #: ../lib/puppet/type/exec.rb:323
8381
8457
  msgid "The timeout must be a number."
8382
8458
  msgstr ""
8383
8459
 
8384
- #: ../lib/puppet/type/exec.rb:336
8460
+ #: ../lib/puppet/type/exec.rb:340
8385
8461
  msgid "Tries must be an integer"
8386
8462
  msgstr ""
8387
8463
 
8388
- #: ../lib/puppet/type/exec.rb:340
8464
+ #: ../lib/puppet/type/exec.rb:344
8389
8465
  msgid "Tries must be an integer >= 1"
8390
8466
  msgstr ""
8391
8467
 
8392
- #: ../lib/puppet/type/exec.rb:353
8468
+ #: ../lib/puppet/type/exec.rb:357
8393
8469
  msgid "try_sleep must be a number"
8394
8470
  msgstr ""
8395
8471
 
8396
- #: ../lib/puppet/type/exec.rb:357
8472
+ #: ../lib/puppet/type/exec.rb:361
8397
8473
  msgid "try_sleep cannot be a negative number"
8398
8474
  msgstr ""
8399
8475
 
8400
8476
  #. TRANSLATORS 'creates' is a parameter name and should not be translated
8401
- #: ../lib/puppet/type/exec.rb:429
8477
+ #: ../lib/puppet/type/exec.rb:433
8402
8478
  msgid "Checking that 'creates' path '%{creates_path}' exists"
8403
8479
  msgstr ""
8404
8480
 
8405
- #: ../lib/puppet/type/exec.rb:474 ../lib/puppet/type/exec.rb:530
8481
+ #: ../lib/puppet/type/exec.rb:478 ../lib/puppet/type/exec.rb:534
8406
8482
  msgid "Check %{value} exceeded timeout"
8407
8483
  msgstr ""
8408
8484
 
8409
- #: ../lib/puppet/type/exec.rb:619
8485
+ #: ../lib/puppet/type/exec.rb:623
8410
8486
  msgid "'%{cmd}' won't be executed because of failed check '%{check}'"
8411
8487
  msgstr ""
8412
8488
 
@@ -8462,38 +8538,38 @@ msgstr ""
8462
8538
  msgid "Could not find filebucket %{backup} specified in backup"
8463
8539
  msgstr ""
8464
8540
 
8465
- #: ../lib/puppet/type/file.rb:764
8541
+ #: ../lib/puppet/type/file.rb:763
8466
8542
  msgid "Could not back up file of type %{current_type}"
8467
8543
  msgstr ""
8468
8544
 
8469
- #: ../lib/puppet/type/file.rb:779
8545
+ #: ../lib/puppet/type/file.rb:778
8470
8546
  msgid "Could not remove files of type %{current_type}"
8471
8547
  msgstr ""
8472
8548
 
8473
8549
  #. TRANSLATORS "source_permissions => ignore" should not be translated
8474
- #: ../lib/puppet/type/file.rb:790
8550
+ #: ../lib/puppet/type/file.rb:789
8475
8551
  msgid "Copying owner/mode/group from the source file on Windows is not supported; use source_permissions => ignore."
8476
8552
  msgstr ""
8477
8553
 
8478
8554
  #. TRANSLATORS "stat" is a program name and should not be translated
8479
- #: ../lib/puppet/type/file.rb:871 ../lib/puppet/type/tidy.rb:352
8555
+ #: ../lib/puppet/type/file.rb:870 ../lib/puppet/type/tidy.rb:352
8480
8556
  msgid "Could not stat; permission denied"
8481
8557
  msgstr ""
8482
8558
 
8483
- #: ../lib/puppet/type/file.rb:874
8559
+ #: ../lib/puppet/type/file.rb:873
8484
8560
  msgid "Could not stat; invalid pathname"
8485
8561
  msgstr ""
8486
8562
 
8487
- #: ../lib/puppet/type/file.rb:1002
8563
+ #: ../lib/puppet/type/file.rb:1001
8488
8564
  msgid "Not removing directory; use 'force' to override"
8489
8565
  msgstr ""
8490
8566
 
8491
8567
  #. TRANSLATORS refers to a file which could not be backed up
8492
- #: ../lib/puppet/type/file.rb:1027
8568
+ #: ../lib/puppet/type/file.rb:1026
8493
8569
  msgid "Could not back up; will not remove"
8494
8570
  msgstr ""
8495
8571
 
8496
- #: ../lib/puppet/type/file.rb:1041
8572
+ #: ../lib/puppet/type/file.rb:1040
8497
8573
  msgid "File written to disk did not match checksum; discarding changes (%{content_checksum} vs %{newsum})"
8498
8574
  msgstr ""
8499
8575
 
@@ -9259,7 +9335,7 @@ msgstr ""
9259
9335
  msgid "Could not write crontab for %{path}: %{detail}"
9260
9336
  msgstr ""
9261
9337
 
9262
- #: ../lib/puppet/util/http_proxy.rb:223
9338
+ #: ../lib/puppet/util/http_proxy.rb:215
9263
9339
  msgid "Too many HTTP redirections for %{uri}"
9264
9340
  msgstr ""
9265
9341
 
@@ -9535,7 +9611,7 @@ msgstr ""
9535
9611
  msgid "Could not open SELinux category translation file %{path}."
9536
9612
  msgstr ""
9537
9613
 
9538
- #: ../lib/puppet/util/selinux.rb:248
9614
+ #: ../lib/puppet/util/selinux.rb:250
9539
9615
  msgid "got a relative path in SELinux find_fs: %{path}"
9540
9616
  msgstr ""
9541
9617
 
@@ -9775,39 +9851,39 @@ msgstr ""
9775
9851
  msgid "Failed to open registry key '%{key}\\%{path}'"
9776
9852
  msgstr ""
9777
9853
 
9778
- #: ../lib/puppet/util/windows/registry.rb:128
9854
+ #: ../lib/puppet/util/windows/registry.rb:130
9779
9855
  msgid "Failed to enumerate %{key} registry keys at index %{index}"
9780
9856
  msgstr ""
9781
9857
 
9782
- #: ../lib/puppet/util/windows/registry.rb:159
9858
+ #: ../lib/puppet/util/windows/registry.rb:161
9783
9859
  msgid "Failed to enumerate %{key} registry values at index %{index}"
9784
9860
  msgstr ""
9785
9861
 
9786
- #: ../lib/puppet/util/windows/registry.rb:189
9862
+ #: ../lib/puppet/util/windows/registry.rb:191
9787
9863
  msgid "Failed to query registry %{key} for sizes"
9788
9864
  msgstr ""
9789
9865
 
9790
- #: ../lib/puppet/util/windows/registry.rb:225
9866
+ #: ../lib/puppet/util/windows/registry.rb:227
9791
9867
  msgid "Type mismatch (expect %{rtype} but %{type} present)"
9792
9868
  msgstr ""
9793
9869
 
9794
- #: ../lib/puppet/util/windows/registry.rb:247
9870
+ #: ../lib/puppet/util/windows/registry.rb:249
9795
9871
  msgid "Type %{type} is not supported."
9796
9872
  msgstr ""
9797
9873
 
9798
- #: ../lib/puppet/util/windows/registry.rb:252
9874
+ #: ../lib/puppet/util/windows/registry.rb:254
9799
9875
  msgid "A value in the registry key %{parent_key_name}%{key} is corrupt or invalid"
9800
9876
  msgstr ""
9801
9877
 
9802
- #: ../lib/puppet/util/windows/registry.rb:274
9878
+ #: ../lib/puppet/util/windows/registry.rb:276
9803
9879
  msgid "Failed to read registry value %{value} at %{key}"
9804
9880
  msgstr ""
9805
9881
 
9806
- #: ../lib/puppet/util/windows/registry.rb:292
9882
+ #: ../lib/puppet/util/windows/registry.rb:294
9807
9883
  msgid "Failed to delete registry value %{name} at %{key}"
9808
9884
  msgstr ""
9809
9885
 
9810
- #: ../lib/puppet/util/windows/registry.rb:307
9886
+ #: ../lib/puppet/util/windows/registry.rb:309
9811
9887
  msgid "Failed to delete registry key %{name} at %{key}"
9812
9888
  msgstr ""
9813
9889