puppet 5.3.4 → 5.3.5

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 (42) hide show
  1. data/CONTRIBUTING.md +15 -15
  2. data/Gemfile +3 -0
  3. data/README.md +11 -11
  4. data/Rakefile +7 -5
  5. data/ext/project_data.yaml +6 -4
  6. data/lib/puppet/application/agent.rb +1 -3
  7. data/lib/puppet/application/apply.rb +1 -3
  8. data/lib/puppet/application/cert.rb +4 -1
  9. data/lib/puppet/configurer.rb +17 -4
  10. data/lib/puppet/configurer/downloader_factory.rb +1 -1
  11. data/lib/puppet/defaults.rb +1 -1
  12. data/lib/puppet/environments.rb +1 -1
  13. data/lib/puppet/functions/strftime.rb +1 -1
  14. data/lib/puppet/indirector/file_content/http.rb +3 -1
  15. data/lib/puppet/indirector/indirection.rb +3 -3
  16. data/lib/puppet/indirector/request.rb +6 -2
  17. data/lib/puppet/module_tool/tar/mini.rb +2 -2
  18. data/lib/puppet/node.rb +4 -3
  19. data/lib/puppet/pops/evaluator/evaluator_impl.rb +1 -1
  20. data/lib/puppet/pops/resource/resource_type_impl.rb +1 -1
  21. data/lib/puppet/pops/types/tree_iterators.rb +5 -1
  22. data/lib/puppet/provider/package/dnf.rb +1 -1
  23. data/lib/puppet/provider/package/gem.rb +1 -1
  24. data/lib/puppet/type/tidy.rb +8 -1
  25. data/lib/puppet/util/http_proxy.rb +4 -2
  26. data/lib/puppet/version.rb +1 -1
  27. data/locales/ja/puppet.po +38 -38
  28. data/locales/puppet.pot +37 -37
  29. data/spec/integration/parser/pcore_resource_spec.rb +1 -1
  30. data/spec/unit/application/agent_spec.rb +0 -9
  31. data/spec/unit/application/apply_spec.rb +0 -9
  32. data/spec/unit/application/cert_spec.rb +28 -1
  33. data/spec/unit/configurer/downloader_factory_spec.rb +1 -1
  34. data/spec/unit/configurer_spec.rb +14 -0
  35. data/spec/unit/functions/strftime_spec.rb +2 -2
  36. data/spec/unit/functions/tree_each_spec.rb +49 -0
  37. data/spec/unit/indirector/indirection_spec.rb +24 -2
  38. data/spec/unit/node_spec.rb +9 -0
  39. data/spec/unit/provider/package/gem_spec.rb +10 -0
  40. data/spec/unit/type/tidy_spec.rb +14 -0
  41. data/spec/unit/util/http_proxy_spec.rb +20 -0
  42. metadata +3368 -3374
@@ -58,7 +58,7 @@ Puppet::Type.type(:package).provide :gem, :parent => Puppet::Provider::Package d
58
58
 
59
59
  if desc =~ /^(\S+)\s+\((.+)\)/
60
60
  gem_name = $1
61
- versions = $2.split(/,\s*/)
61
+ versions = $2.sub('default: ', '').split(/,\s*/)
62
62
  {
63
63
  :name => gem_name,
64
64
  :ensure => versions.map{|v| v.split[0]},
@@ -224,7 +224,14 @@ Puppet::Type.newtype(:tidy) do
224
224
  # Make a file resource to remove a given file.
225
225
  def mkfile(path)
226
226
  # Force deletion, so directories actually get deleted.
227
- Puppet::Type.type(:file).new :path => path, :backup => self[:backup], :ensure => :absent, :force => true
227
+ parameters = {
228
+ :path => path, :backup => self[:backup],
229
+ :ensure => :absent, :force => true
230
+ }
231
+
232
+ parameters[:noop] = self[:noop] unless self[:noop].nil?
233
+
234
+ Puppet::Type.type(:file).new(parameters)
228
235
  end
229
236
 
230
237
  def retrieve
@@ -157,8 +157,10 @@ module Puppet::Util::HttpProxy
157
157
  proxy
158
158
  end
159
159
 
160
- # Retrieve a document through HTTP(s), following redirects if necessary.
161
- #
160
+ # Retrieve a document through HTTP(s), following redirects if necessary. The
161
+ # returned response body may be compressed, and it is the caller's
162
+ # responsibility to decompress it based on the 'content-encoding' header.
163
+ #
162
164
  # Based on the the client implementation in the HTTP pool.
163
165
  #
164
166
  # @see Puppet::Network::HTTP::Connection#request_with_redirects
@@ -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 = '5.3.4'
9
+ PUPPETVERSION = '5.3.5'
10
10
 
11
11
  ##
12
12
  # version is a public API method intended to always provide a fast and
@@ -6,11 +6,11 @@
6
6
  #, fuzzy
7
7
  msgid ""
8
8
  msgstr ""
9
- "Project-Id-Version: Puppet automation framework 5.3.3-305-gc78696b\n"
9
+ "Project-Id-Version: Puppet automation framework 5.3.3-362-gf61e966\n"
10
10
  "\n"
11
11
  "Report-Msgid-Bugs-To: https://tickets.puppetlabs.com\n"
12
- "POT-Creation-Date: 2018-01-18 17:52+0000\n"
13
- "PO-Revision-Date: 2018-01-18 17:52+0000\n"
12
+ "POT-Creation-Date: 2018-01-26 22:31+0000\n"
13
+ "PO-Revision-Date: 2018-01-26 22:31+0000\n"
14
14
  "Last-Translator: Erwin Hom <erwin.hom@puppet.com>, 2018\n"
15
15
  "Language-Team: Japanese (Japan) (https://www.transifex.com/puppet/teams/29089/ja_JP/)\n"
16
16
  "MIME-Version: 1.0\n"
@@ -2351,10 +2351,10 @@ msgstr ""
2351
2351
  #: ../lib/puppet/functions/strftime.rb:39
2352
2352
  msgid ""
2353
2353
  "The argument signature (String format, [String timezone]) is deprecated for "
2354
- "#strfime. See #strftime documentation and Timespan type for more info"
2354
+ "#strftime. See #strftime documentation and Timespan type for more info"
2355
2355
  msgstr ""
2356
2356
  "引数署名(文字列フォーマット、[String "
2357
- "timezone])は、#strfimeでは廃止予定です。詳細については、#strftimeマニュアルとTimespanタイプを参照してください。"
2357
+ "timezone])は、#strftimeでは廃止予定です。詳細については、#strftimeマニュアルとTimespanタイプを参照してください。"
2358
2358
 
2359
2359
  #: ../lib/puppet/generate/models/type/type.rb:46
2360
2360
  msgid "title patterns that use procs are not supported."
@@ -4511,26 +4511,26 @@ msgstr "アンリッスンできません -- 現在リッスンしていませ
4511
4511
  msgid "No name provided in serialized data"
4512
4512
  msgstr "シリアライズされたデータで名前が提供されていません。"
4513
4513
 
4514
- #: ../lib/puppet/node.rb:92
4514
+ #: ../lib/puppet/node.rb:100
4515
4515
  msgid "Node names cannot be nil"
4516
4516
  msgstr "ノード名は空にできません。"
4517
4517
 
4518
- #: ../lib/puppet/node.rb:128
4518
+ #: ../lib/puppet/node.rb:136
4519
4519
  msgid "Could not retrieve facts for %{name}: %{detail}"
4520
4520
  msgstr "%{name}のfactsを取得できませんでした: %{detail}"
4521
4521
 
4522
- #: ../lib/puppet/node.rb:143
4522
+ #: ../lib/puppet/node.rb:154
4523
4523
  msgid ""
4524
4524
  "The node parameter '%{param_name}' for node '%{node_name}' was already set "
4525
4525
  "to '%{value}'. It could not be set to '%{desired_value}'"
4526
4526
  msgstr ""
4527
4527
  "ノード'%{node_name}'のノードパラメータ'%{param_name}'は、すでに'%{value}'に設定されています。'%{desired_value}'に設定できませんでした。"
4528
4528
 
4529
- #: ../lib/puppet/node.rb:184
4529
+ #: ../lib/puppet/node.rb:193
4530
4530
  msgid "Host is missing hostname and/or domain: %{name}"
4531
4531
  msgstr "ホストがホスト名またはドメインを見つけられません: %{name}"
4532
4532
 
4533
- #: ../lib/puppet/node.rb:216
4533
+ #: ../lib/puppet/node.rb:225
4534
4534
  msgid "Trusted node data modified for node %{name}"
4535
4535
  msgstr "ノード%{name}の信頼できるノードデータが修正されました。"
4536
4536
 
@@ -5105,50 +5105,50 @@ msgstr "変数: %{name}"
5105
5105
  msgid "Undefined variable '%{name}'; %{reason}"
5106
5106
  msgstr "定義されていない変数'%{name}'; %{reason}"
5107
5107
 
5108
- #: ../lib/puppet/parser/scope.rb:659
5108
+ #: ../lib/puppet/parser/scope.rb:657
5109
5109
  msgid "class %{classname} could not be found"
5110
5110
  msgstr "クラス%{classname}が見つかりませんでした。"
5111
5111
 
5112
- #: ../lib/puppet/parser/scope.rb:660
5112
+ #: ../lib/puppet/parser/scope.rb:658
5113
5113
  msgid "class %{classname} has not been evaluated"
5114
5114
  msgstr "クラス%{classname}は検証されていません。"
5115
5115
 
5116
- #: ../lib/puppet/parser/scope.rb:705
5116
+ #: ../lib/puppet/parser/scope.rb:703
5117
5117
  msgid "Default already defined for %{type} { %{param} }; cannot redefine"
5118
5118
  msgstr "%{type} { %{param} }のデフォルトはすでに定義されています; 再定義はできません。"
5119
5119
 
5120
- #: ../lib/puppet/parser/scope.rb:762
5120
+ #: ../lib/puppet/parser/scope.rb:760
5121
5121
  msgid "Cannot assign to a numeric match result variable '$%{name}'"
5122
5122
  msgstr "数字の一致結果変数'$%{name}'に割り当てることはできません。"
5123
5123
 
5124
- #: ../lib/puppet/parser/scope.rb:765
5124
+ #: ../lib/puppet/parser/scope.rb:763
5125
5125
  msgid "Scope variable name %{name} is a %{class_type}, not a string"
5126
5126
  msgstr "範囲変数名%{name}は%{class_type}であり、文字列ではありません。"
5127
5127
 
5128
- #: ../lib/puppet/parser/scope.rb:770 ../lib/puppet/parser/scope.rb:775
5128
+ #: ../lib/puppet/parser/scope.rb:768 ../lib/puppet/parser/scope.rb:773
5129
5129
  msgid "Attempt to assign to a reserved variable name: '%{name}'"
5130
5130
  msgstr "予約されている変数名: '%{name}'に割り当てようとしています。"
5131
5131
 
5132
- #: ../lib/puppet/parser/scope.rb:780
5132
+ #: ../lib/puppet/parser/scope.rb:778
5133
5133
  msgid "Cannot reassign variable '$%{name}'"
5134
5134
  msgstr "変数'$%{name}'の再割り当てはできません。"
5135
5135
 
5136
- #: ../lib/puppet/parser/scope.rb:834
5136
+ #: ../lib/puppet/parser/scope.rb:832
5137
5137
  msgid "Unsupported data type: '%{klass}'"
5138
5138
  msgstr "サポートされていないデータタイプ: '%{klass}'"
5139
5139
 
5140
- #: ../lib/puppet/parser/scope.rb:992
5140
+ #: ../lib/puppet/parser/scope.rb:990
5141
5141
  msgid "Invalid regex match data. Got a %{klass}"
5142
5142
  msgstr "正規表現一致データが正しくありません。%{klass}が与えられています。"
5143
5143
 
5144
- #: ../lib/puppet/parser/scope.rb:1000
5144
+ #: ../lib/puppet/parser/scope.rb:998
5145
5145
  msgid ""
5146
5146
  "Scope#find_resource_type() is no longer supported, use "
5147
5147
  "Puppet::Pops::Evaluator::Runtime3ResourceSupport instead"
5148
5148
  msgstr ""
5149
5149
  "Scope#find_resource_type()のサポートは終了しました。代わりにPuppet::Pops::Evaluator::Runtime3ResourceSupporを使用してください。"
5150
5150
 
5151
- #: ../lib/puppet/parser/scope.rb:1005
5151
+ #: ../lib/puppet/parser/scope.rb:1003
5152
5152
  msgid ""
5153
5153
  "Scope#find_builtin_resource_type() is no longer supported, use "
5154
5154
  "Puppet::Pops::Evaluator::Runtime3ResourceSupport instead"
@@ -5156,18 +5156,18 @@ msgstr ""
5156
5156
  "Scope#find_builtin_resource_type()のサポートは終了しました。代わりにPuppet::Pops::Evaluator::Runtime3ResourceSupport"
5157
5157
  " insteadを使用してください。"
5158
5158
 
5159
- #: ../lib/puppet/parser/scope.rb:1010
5159
+ #: ../lib/puppet/parser/scope.rb:1008
5160
5160
  msgid ""
5161
5161
  "Scope#find_defined_resource_type() is no longer supported, use "
5162
5162
  "Puppet::Pops::Evaluator::Runtime3ResourceSupport instead"
5163
5163
  msgstr ""
5164
5164
  "Scope#find_defined_resource_type()のサポートは終了しました。代わりにPuppet::Pops::Evaluator::Runtime3ResourceSupportを使用してください。"
5165
5165
 
5166
- #: ../lib/puppet/parser/scope.rb:1024
5166
+ #: ../lib/puppet/parser/scope.rb:1022
5167
5167
  msgid "Function %{name} not defined despite being loaded!"
5168
5168
  msgstr "関数%{name}は読み込まれていますが、定義されていません。"
5169
5169
 
5170
- #: ../lib/puppet/parser/scope.rb:1031
5170
+ #: ../lib/puppet/parser/scope.rb:1029
5171
5171
  msgid ""
5172
5172
  "Scope#resolve_type_and_title() is no longer supported, use "
5173
5173
  "Puppet::Pops::Evaluator::Runtime3ResourceSupport instead"
@@ -5176,26 +5176,26 @@ msgstr ""
5176
5176
 
5177
5177
  #. TRANSLATORS "Class" and "Type" are Puppet keywords and should not be
5178
5178
  #. translated
5179
- #: ../lib/puppet/parser/scope.rb:1059
5179
+ #: ../lib/puppet/parser/scope.rb:1057
5180
5180
  msgid "Cannot use an unspecific Class[] Type"
5181
5181
  msgstr "指定されていないClass[] Typeは使用できません。"
5182
5182
 
5183
5183
  #. TRANSLATORS "Resource" is a class name and should not be translated
5184
- #: ../lib/puppet/parser/scope.rb:1086
5184
+ #: ../lib/puppet/parser/scope.rb:1084
5185
5185
  msgid ""
5186
5186
  "Cannot use an unspecific Resource[] where a Resource['class', name] is "
5187
5187
  "expected"
5188
5188
  msgstr "Resource['class', name]が要求されている場合は、指定されていないResource[]は使用できません。"
5189
5189
 
5190
5190
  #. TRANSLATORS "Resource" is a class name and should not be translated
5191
- #: ../lib/puppet/parser/scope.rb:1090
5191
+ #: ../lib/puppet/parser/scope.rb:1088
5192
5192
  msgid ""
5193
5193
  "Cannot use a Resource[%{type_name}] where a Resource['class', name] is "
5194
5194
  "expected"
5195
5195
  msgstr "Resource['class', name]が要求されている場合は、Resource[%{type_name}]を使用できません。"
5196
5196
 
5197
5197
  #. TRANSLATORS "Resource" is a class name and should not be translated
5198
- #: ../lib/puppet/parser/scope.rb:1094
5198
+ #: ../lib/puppet/parser/scope.rb:1092
5199
5199
  msgid ""
5200
5200
  "Cannot use an unspecific Resource['class'] where a Resource['class', name] "
5201
5201
  "is expected"
@@ -10254,31 +10254,31 @@ msgstr "Trollop::dieは、Trollop::optionsの後にのみ呼び出せます。"
10254
10254
  msgid "Cannot provide diff without the diff/lcs Ruby library"
10255
10255
  msgstr "diff/lcs Rubyライブラリなしで比較することはできません。"
10256
10256
 
10257
- #: ../lib/puppet/util/errors.rb:43
10257
+ #: ../lib/puppet/util/errors.rb:49
10258
10258
  msgid "(file: %{file}, line: %{line}, column: %{column})"
10259
10259
  msgstr "(ファイル: %{file}、行: %{line}、列: %{column})"
10260
10260
 
10261
- #: ../lib/puppet/util/errors.rb:45
10261
+ #: ../lib/puppet/util/errors.rb:51
10262
10262
  msgid "(file: %{file}, line: %{line})"
10263
10263
  msgstr "(ファイル: %{file}、行: %{line})"
10264
10264
 
10265
- #: ../lib/puppet/util/errors.rb:47
10265
+ #: ../lib/puppet/util/errors.rb:53
10266
10266
  msgid "(line: %{line}, column: %{column})"
10267
10267
  msgstr "(行: %{line}、列: %{column})"
10268
10268
 
10269
- #: ../lib/puppet/util/errors.rb:49
10269
+ #: ../lib/puppet/util/errors.rb:55
10270
10270
  msgid "(line: %{line})"
10271
10271
  msgstr "(行: %{line})"
10272
10272
 
10273
- #: ../lib/puppet/util/errors.rb:51
10273
+ #: ../lib/puppet/util/errors.rb:57
10274
10274
  msgid "(file: %{file})"
10275
10275
  msgstr "(ファイル: %{file})"
10276
10276
 
10277
- #: ../lib/puppet/util/errors.rb:77 ../lib/puppet/util/errors.rb:78
10277
+ #: ../lib/puppet/util/errors.rb:90 ../lib/puppet/util/errors.rb:91
10278
10278
  msgid "unknown"
10279
10279
  msgstr "不明"
10280
10280
 
10281
- #: ../lib/puppet/util/errors.rb:108
10281
+ #: ../lib/puppet/util/errors.rb:121
10282
10282
  msgid "%{klass} failed with error %{error_type}: %{detail}"
10283
10283
  msgstr "エラー%{error_type}により%{klass}に失敗しました: %{detail}"
10284
10284
 
@@ -10938,15 +10938,15 @@ msgstr "ReportEventWはWindowsイベントログにイベントをレポート
10938
10938
  msgid "(Win32 error: %{detail})"
10939
10939
  msgstr "(Win32エラー: %{detail})"
10940
10940
 
10941
- #: ../lib/puppet/util/windows/file.rb:158
10941
+ #: ../lib/puppet/util/windows/file.rb:162
10942
10942
  msgid "Failed to set file attributes"
10943
10943
  msgstr "ファイル属性の設定に失敗しました。"
10944
10944
 
10945
- #: ../lib/puppet/util/windows/file.rb:207
10945
+ #: ../lib/puppet/util/windows/file.rb:237
10946
10946
  msgid "out_buffer is required"
10947
10947
  msgstr "out_bufferが必要です。"
10948
10948
 
10949
- #: ../lib/puppet/util/windows/file.rb:288
10949
+ #: ../lib/puppet/util/windows/file.rb:324
10950
10950
  msgid "Failed to call GetLongPathName"
10951
10951
  msgstr "GetLongPathNameのコールに失敗しました。"
10952
10952
 
@@ -6,11 +6,11 @@
6
6
  #, fuzzy
7
7
  msgid ""
8
8
  msgstr ""
9
- "Project-Id-Version: Puppet automation framework 5.3.3-305-gc78696b\n"
9
+ "Project-Id-Version: Puppet automation framework 5.3.3-362-gf61e966\n"
10
10
  "\n"
11
11
  "Report-Msgid-Bugs-To: https://tickets.puppetlabs.com\n"
12
- "POT-Creation-Date: 2018-01-18 17:52+0000\n"
13
- "PO-Revision-Date: 2018-01-18 17:52+0000\n"
12
+ "POT-Creation-Date: 2018-01-26 22:31+0000\n"
13
+ "PO-Revision-Date: 2018-01-26 22: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"
@@ -2110,7 +2110,7 @@ msgid "slice(): block must define one parameter, or the same number of parameter
2110
2110
  msgstr ""
2111
2111
 
2112
2112
  #: ../lib/puppet/functions/strftime.rb:39
2113
- msgid "The argument signature (String format, [String timezone]) is deprecated for #strfime. See #strftime documentation and Timespan type for more info"
2113
+ msgid "The argument signature (String format, [String timezone]) is deprecated for #strftime. See #strftime documentation and Timespan type for more info"
2114
2114
  msgstr ""
2115
2115
 
2116
2116
  #: ../lib/puppet/generate/models/type/type.rb:46
@@ -4000,23 +4000,23 @@ msgstr ""
4000
4000
  msgid "No name provided in serialized data"
4001
4001
  msgstr ""
4002
4002
 
4003
- #: ../lib/puppet/node.rb:92
4003
+ #: ../lib/puppet/node.rb:100
4004
4004
  msgid "Node names cannot be nil"
4005
4005
  msgstr ""
4006
4006
 
4007
- #: ../lib/puppet/node.rb:128
4007
+ #: ../lib/puppet/node.rb:136
4008
4008
  msgid "Could not retrieve facts for %{name}: %{detail}"
4009
4009
  msgstr ""
4010
4010
 
4011
- #: ../lib/puppet/node.rb:143
4011
+ #: ../lib/puppet/node.rb:154
4012
4012
  msgid "The node parameter '%{param_name}' for node '%{node_name}' was already set to '%{value}'. It could not be set to '%{desired_value}'"
4013
4013
  msgstr ""
4014
4014
 
4015
- #: ../lib/puppet/node.rb:184
4015
+ #: ../lib/puppet/node.rb:193
4016
4016
  msgid "Host is missing hostname and/or domain: %{name}"
4017
4017
  msgstr ""
4018
4018
 
4019
- #: ../lib/puppet/node.rb:216
4019
+ #: ../lib/puppet/node.rb:225
4020
4020
  msgid "Trusted node data modified for node %{name}"
4021
4021
  msgstr ""
4022
4022
 
@@ -4531,79 +4531,79 @@ msgstr ""
4531
4531
  msgid "Undefined variable '%{name}'; %{reason}"
4532
4532
  msgstr ""
4533
4533
 
4534
- #: ../lib/puppet/parser/scope.rb:659
4534
+ #: ../lib/puppet/parser/scope.rb:657
4535
4535
  msgid "class %{classname} could not be found"
4536
4536
  msgstr ""
4537
4537
 
4538
- #: ../lib/puppet/parser/scope.rb:660
4538
+ #: ../lib/puppet/parser/scope.rb:658
4539
4539
  msgid "class %{classname} has not been evaluated"
4540
4540
  msgstr ""
4541
4541
 
4542
- #: ../lib/puppet/parser/scope.rb:705
4542
+ #: ../lib/puppet/parser/scope.rb:703
4543
4543
  msgid "Default already defined for %{type} { %{param} }; cannot redefine"
4544
4544
  msgstr ""
4545
4545
 
4546
- #: ../lib/puppet/parser/scope.rb:762
4546
+ #: ../lib/puppet/parser/scope.rb:760
4547
4547
  msgid "Cannot assign to a numeric match result variable '$%{name}'"
4548
4548
  msgstr ""
4549
4549
 
4550
- #: ../lib/puppet/parser/scope.rb:765
4550
+ #: ../lib/puppet/parser/scope.rb:763
4551
4551
  msgid "Scope variable name %{name} is a %{class_type}, not a string"
4552
4552
  msgstr ""
4553
4553
 
4554
- #: ../lib/puppet/parser/scope.rb:770 ../lib/puppet/parser/scope.rb:775
4554
+ #: ../lib/puppet/parser/scope.rb:768 ../lib/puppet/parser/scope.rb:773
4555
4555
  msgid "Attempt to assign to a reserved variable name: '%{name}'"
4556
4556
  msgstr ""
4557
4557
 
4558
- #: ../lib/puppet/parser/scope.rb:780
4558
+ #: ../lib/puppet/parser/scope.rb:778
4559
4559
  msgid "Cannot reassign variable '$%{name}'"
4560
4560
  msgstr ""
4561
4561
 
4562
- #: ../lib/puppet/parser/scope.rb:834
4562
+ #: ../lib/puppet/parser/scope.rb:832
4563
4563
  msgid "Unsupported data type: '%{klass}'"
4564
4564
  msgstr ""
4565
4565
 
4566
- #: ../lib/puppet/parser/scope.rb:992
4566
+ #: ../lib/puppet/parser/scope.rb:990
4567
4567
  msgid "Invalid regex match data. Got a %{klass}"
4568
4568
  msgstr ""
4569
4569
 
4570
- #: ../lib/puppet/parser/scope.rb:1000
4570
+ #: ../lib/puppet/parser/scope.rb:998
4571
4571
  msgid "Scope#find_resource_type() is no longer supported, use Puppet::Pops::Evaluator::Runtime3ResourceSupport instead"
4572
4572
  msgstr ""
4573
4573
 
4574
- #: ../lib/puppet/parser/scope.rb:1005
4574
+ #: ../lib/puppet/parser/scope.rb:1003
4575
4575
  msgid "Scope#find_builtin_resource_type() is no longer supported, use Puppet::Pops::Evaluator::Runtime3ResourceSupport instead"
4576
4576
  msgstr ""
4577
4577
 
4578
- #: ../lib/puppet/parser/scope.rb:1010
4578
+ #: ../lib/puppet/parser/scope.rb:1008
4579
4579
  msgid "Scope#find_defined_resource_type() is no longer supported, use Puppet::Pops::Evaluator::Runtime3ResourceSupport instead"
4580
4580
  msgstr ""
4581
4581
 
4582
- #: ../lib/puppet/parser/scope.rb:1024
4582
+ #: ../lib/puppet/parser/scope.rb:1022
4583
4583
  msgid "Function %{name} not defined despite being loaded!"
4584
4584
  msgstr ""
4585
4585
 
4586
- #: ../lib/puppet/parser/scope.rb:1031
4586
+ #: ../lib/puppet/parser/scope.rb:1029
4587
4587
  msgid "Scope#resolve_type_and_title() is no longer supported, use Puppet::Pops::Evaluator::Runtime3ResourceSupport instead"
4588
4588
  msgstr ""
4589
4589
 
4590
4590
  #. TRANSLATORS "Class" and "Type" are Puppet keywords and should not be translated
4591
- #: ../lib/puppet/parser/scope.rb:1059
4591
+ #: ../lib/puppet/parser/scope.rb:1057
4592
4592
  msgid "Cannot use an unspecific Class[] Type"
4593
4593
  msgstr ""
4594
4594
 
4595
4595
  #. TRANSLATORS "Resource" is a class name and should not be translated
4596
- #: ../lib/puppet/parser/scope.rb:1086
4596
+ #: ../lib/puppet/parser/scope.rb:1084
4597
4597
  msgid "Cannot use an unspecific Resource[] where a Resource['class', name] is expected"
4598
4598
  msgstr ""
4599
4599
 
4600
4600
  #. TRANSLATORS "Resource" is a class name and should not be translated
4601
- #: ../lib/puppet/parser/scope.rb:1090
4601
+ #: ../lib/puppet/parser/scope.rb:1088
4602
4602
  msgid "Cannot use a Resource[%{type_name}] where a Resource['class', name] is expected"
4603
4603
  msgstr ""
4604
4604
 
4605
4605
  #. TRANSLATORS "Resource" is a class name and should not be translated
4606
- #: ../lib/puppet/parser/scope.rb:1094
4606
+ #: ../lib/puppet/parser/scope.rb:1092
4607
4607
  msgid "Cannot use an unspecific Resource['class'] where a Resource['class', name] is expected"
4608
4608
  msgstr ""
4609
4609
 
@@ -8885,31 +8885,31 @@ msgstr ""
8885
8885
  msgid "Cannot provide diff without the diff/lcs Ruby library"
8886
8886
  msgstr ""
8887
8887
 
8888
- #: ../lib/puppet/util/errors.rb:43
8888
+ #: ../lib/puppet/util/errors.rb:49
8889
8889
  msgid "(file: %{file}, line: %{line}, column: %{column})"
8890
8890
  msgstr ""
8891
8891
 
8892
- #: ../lib/puppet/util/errors.rb:45
8892
+ #: ../lib/puppet/util/errors.rb:51
8893
8893
  msgid "(file: %{file}, line: %{line})"
8894
8894
  msgstr ""
8895
8895
 
8896
- #: ../lib/puppet/util/errors.rb:47
8896
+ #: ../lib/puppet/util/errors.rb:53
8897
8897
  msgid "(line: %{line}, column: %{column})"
8898
8898
  msgstr ""
8899
8899
 
8900
- #: ../lib/puppet/util/errors.rb:49
8900
+ #: ../lib/puppet/util/errors.rb:55
8901
8901
  msgid "(line: %{line})"
8902
8902
  msgstr ""
8903
8903
 
8904
- #: ../lib/puppet/util/errors.rb:51
8904
+ #: ../lib/puppet/util/errors.rb:57
8905
8905
  msgid "(file: %{file})"
8906
8906
  msgstr ""
8907
8907
 
8908
- #: ../lib/puppet/util/errors.rb:77 ../lib/puppet/util/errors.rb:78
8908
+ #: ../lib/puppet/util/errors.rb:90 ../lib/puppet/util/errors.rb:91
8909
8909
  msgid "unknown"
8910
8910
  msgstr ""
8911
8911
 
8912
- #: ../lib/puppet/util/errors.rb:108
8912
+ #: ../lib/puppet/util/errors.rb:121
8913
8913
  msgid "%{klass} failed with error %{error_type}: %{detail}"
8914
8914
  msgstr ""
8915
8915
 
@@ -9544,15 +9544,15 @@ msgstr ""
9544
9544
  msgid "(Win32 error: %{detail})"
9545
9545
  msgstr ""
9546
9546
 
9547
- #: ../lib/puppet/util/windows/file.rb:158
9547
+ #: ../lib/puppet/util/windows/file.rb:162
9548
9548
  msgid "Failed to set file attributes"
9549
9549
  msgstr ""
9550
9550
 
9551
- #: ../lib/puppet/util/windows/file.rb:207
9551
+ #: ../lib/puppet/util/windows/file.rb:237
9552
9552
  msgid "out_buffer is required"
9553
9553
  msgstr ""
9554
9554
 
9555
- #: ../lib/puppet/util/windows/file.rb:288
9555
+ #: ../lib/puppet/util/windows/file.rb:324
9556
9556
  msgid "Failed to call GetLongPathName"
9557
9557
  msgstr ""
9558
9558