machinery-tool 1.16.4 → 1.17.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (97) hide show
  1. checksums.yaml +4 -4
  2. data/.git_revision +1 -1
  3. data/NEWS +10 -0
  4. data/filters/default_filters.json +21 -20
  5. data/html/assets/machinery-base.js +4 -0
  6. data/html/index.html.haml +1 -1
  7. data/html/partials/changed_managed_files.html.haml +2 -2
  8. data/html/partials/compare/changed_managed_file_list.html.haml +2 -2
  9. data/html/partials/compare/changed_managed_files.html.haml +3 -3
  10. data/html/partials/compare/config_file_list.html.haml +2 -2
  11. data/html/partials/compare/config_files.html.haml +3 -3
  12. data/html/partials/compare/packages.html.haml +21 -4
  13. data/html/partials/compare/repositories.html.haml +10 -7
  14. data/html/partials/compare/repository_list_apt.html.haml +15 -0
  15. data/html/partials/compare/repository_list_yum.html.haml +35 -0
  16. data/html/partials/compare/{repository_list.html.haml → repository_list_zypp.html.haml} +0 -0
  17. data/html/partials/compare/service_list.html.haml +1 -1
  18. data/html/partials/compare/services.html.haml +3 -3
  19. data/html/partials/compare/unmanaged_file_list.html.haml +2 -2
  20. data/html/partials/compare/unmanaged_files.html.haml +1 -1
  21. data/html/partials/config_files.html.haml +39 -41
  22. data/html/partials/repositories.html.haml +1 -23
  23. data/html/partials/repositories_apt.html.haml +15 -0
  24. data/html/partials/repositories_yum.html.haml +30 -0
  25. data/html/partials/repositories_zypp.html.haml +24 -0
  26. data/html/partials/services.html.haml +2 -2
  27. data/html/partials/unmanaged_files.html.haml +2 -2
  28. data/inspect_helpers/dpkg_unmanaged_files.sh +47 -0
  29. data/inspect_helpers/yum_repositories.py +3 -5
  30. data/lib/analyze_config_file_diffs_task.rb +11 -1
  31. data/lib/array.rb +97 -35
  32. data/lib/autoyast.rb +13 -2
  33. data/lib/cli.rb +10 -2
  34. data/lib/config.rb +4 -4
  35. data/lib/dpkg_database.rb +68 -0
  36. data/lib/element_filter.rb +2 -0
  37. data/lib/file_diff.rb +2 -2
  38. data/lib/file_scope.rb +10 -49
  39. data/lib/file_validator.rb +10 -4
  40. data/lib/filter.rb +6 -6
  41. data/lib/filter_option_parser.rb +1 -1
  42. data/lib/kiwi_config.rb +13 -10
  43. data/lib/machinery.rb +2 -0
  44. data/lib/machinery_helper.rb +1 -1
  45. data/lib/managed_files_database.rb +200 -0
  46. data/lib/object.rb +5 -3
  47. data/lib/remote_system.rb +43 -10
  48. data/lib/renderer.rb +3 -4
  49. data/lib/rpm_database.rb +7 -183
  50. data/lib/scope_file_access_archive.rb +3 -3
  51. data/lib/scope_file_access_flat.rb +1 -1
  52. data/lib/server.rb +7 -2
  53. data/lib/system.rb +50 -22
  54. data/lib/system_description.rb +3 -3
  55. data/lib/version.rb +1 -1
  56. data/lib/workload_mapper.rb +2 -2
  57. data/machinery-helper/machinery_helper.go +252 -178
  58. data/machinery-helper/machinery_helper_test.go +121 -121
  59. data/machinery-helper/mountpoints.go +28 -28
  60. data/machinery-helper/tar.go +105 -104
  61. data/machinery-helper/version.go +1 -1
  62. data/man/generated/machinery.1.gz +0 -0
  63. data/man/generated/machinery.1.html +19 -8
  64. data/plugins/changed_managed_files/changed_managed_files_inspector.rb +3 -3
  65. data/plugins/changed_managed_files/changed_managed_files_model.rb +3 -1
  66. data/plugins/changed_managed_files/changed_managed_files_renderer.rb +2 -2
  67. data/plugins/changed_managed_files/schema/system-description-changed-managed-files.schema-v6.json +168 -0
  68. data/plugins/config_files/config_files_inspector.rb +4 -4
  69. data/plugins/config_files/config_files_model.rb +3 -1
  70. data/plugins/config_files/config_files_renderer.rb +2 -2
  71. data/plugins/config_files/schema/system-description-config-files.schema-v6.json +160 -0
  72. data/plugins/environment/schema/system-description-environment.schema-v6.json +17 -0
  73. data/plugins/groups/schema/system-description-groups.schema-v6.json +49 -0
  74. data/plugins/os/schema/system-description-os.schema-v6.json +21 -0
  75. data/plugins/packages/packages_inspector.rb +76 -6
  76. data/plugins/packages/packages_model.rb +31 -12
  77. data/plugins/packages/packages_renderer.rb +5 -2
  78. data/plugins/packages/schema/system-description-packages.schema-v6.json +115 -0
  79. data/plugins/patterns/patterns_inspector.rb +26 -2
  80. data/plugins/patterns/schema/system-description-patterns.schema-v6.json +58 -0
  81. data/plugins/repositories/repositories_inspector.rb +41 -14
  82. data/plugins/repositories/repositories_model.rb +55 -12
  83. data/plugins/repositories/repositories_renderer.rb +23 -7
  84. data/plugins/repositories/schema/system-description-repositories.schema-v6.json +165 -0
  85. data/plugins/services/schema/system-description-services.schema-v6.json +93 -0
  86. data/plugins/services/services_inspector.rb +88 -22
  87. data/plugins/services/services_model.rb +9 -15
  88. data/plugins/services/services_renderer.rb +2 -2
  89. data/plugins/unmanaged_files/schema/system-description-unmanaged-files.schema-v6.json +162 -0
  90. data/plugins/unmanaged_files/unmanaged_files_inspector.rb +80 -30
  91. data/plugins/unmanaged_files/unmanaged_files_model.rb +22 -18
  92. data/plugins/unmanaged_files/unmanaged_files_renderer.rb +3 -3
  93. data/plugins/users/schema/system-description-users.schema-v6.json +86 -0
  94. data/schema/migrations/migrate5to6.rb +101 -0
  95. data/schema/system-description-global.schema-v6.json +43 -0
  96. metadata +24 -4
  97. data/html/assets/landing_page/landing_page.js +0 -10
@@ -19,9 +19,21 @@ class UnmanagedFile < Machinery::SystemFile
19
19
  end
20
20
 
21
21
  class UnmanagedFileList < Machinery::Array
22
+ end
23
+
24
+ class UnmanagedFilesScope < FileScope
25
+ include Machinery::Scope
26
+ include ScopeFileAccessArchive
27
+
28
+ has_attributes :extracted
22
29
  has_elements class: UnmanagedFile
23
30
 
24
31
  def compare_with(other)
32
+ if extracted != other.extracted
33
+ Machinery::Ui.warn("Warning: Comparing extracted with unextracted" \
34
+ " unmanaged files. Only common attributes are considered.")
35
+ end
36
+
25
37
  self_hash = elements.inject({}) { |hash, e| hash[e.name] = e; hash }
26
38
  other_hash = other.elements.inject({}) { |hash, e| hash[e.name] = e; hash }
27
39
 
@@ -39,11 +51,18 @@ class UnmanagedFileList < Machinery::Array
39
51
  end
40
52
  changed = Machinery::Scope.extract_changed_elements(only_self, only_other, :name)
41
53
 
54
+ if self.attributes == other.attributes
55
+ common_attributes = self.attributes
56
+ else
57
+ only_self_attributes = self.attributes
58
+ only_other_attributes = other.attributes
59
+ end
60
+
42
61
  [
43
- self.class.new(only_self),
44
- self.class.new(only_other),
62
+ self.class.new(only_self, only_self_attributes || {}),
63
+ self.class.new(only_other, only_other_attributes || {}),
45
64
  changed,
46
- self.class.new(both)
65
+ self.class.new(both, common_attributes || {})
47
66
  ].map { |e| e.empty? ? nil : e }
48
67
  end
49
68
 
@@ -56,18 +75,3 @@ class UnmanagedFileList < Machinery::Array
56
75
  end
57
76
  end
58
77
  end
59
-
60
- class UnmanagedFilesScope < FileScope
61
- include Machinery::Scope
62
- include ScopeFileAccessArchive
63
- has_property :files, class: UnmanagedFileList
64
-
65
- def compare_with(other)
66
- if extracted != other.extracted
67
- Machinery::Ui.warn("Warning: Comparing extracted with unextracted" \
68
- " unmanaged files. Only common attributes are considered.")
69
- end
70
-
71
- super
72
- end
73
- end
@@ -22,14 +22,14 @@ class UnmanagedFilesRenderer < Renderer
22
22
  list do
23
23
  file_status = description["unmanaged_files"].extracted
24
24
 
25
- if description["unmanaged_files"].files.empty?
25
+ if description["unmanaged_files"].elements.empty?
26
26
  puts "There are no unmanaged files."
27
27
  elsif !file_status.nil?
28
28
  puts "Files extracted: #{file_status ? "yes" : "no"}"
29
29
  end
30
30
 
31
- if description["unmanaged_files"].files
32
- description["unmanaged_files"].files.each do |p|
31
+ if description["unmanaged_files"]
32
+ description["unmanaged_files"].each do |p|
33
33
  if description["unmanaged_files"].extracted
34
34
  item "#{p.name} (#{p.type})" do
35
35
  puts "User/Group: #{p.user}:#{p.group}" if p.user || p.group
@@ -0,0 +1,86 @@
1
+ {
2
+ "$schema": "http://json-schema.org/draft-04/schema#",
3
+
4
+ "type": "object",
5
+ "required": [
6
+ "_elements"
7
+ ],
8
+ "properties": {
9
+ "_attributes": {
10
+ "type": "object"
11
+ },
12
+ "_elements": {
13
+ "type": "array",
14
+ "items": {
15
+ "type": "object",
16
+ "required": [
17
+ "name",
18
+ "password",
19
+ "uid",
20
+ "gid",
21
+ "comment",
22
+ "home",
23
+ "shell"
24
+ ],
25
+ "properties": {
26
+ "name": {
27
+ "type": "string",
28
+ "minLength": 1
29
+ },
30
+ "password": {
31
+ "type": "string"
32
+ },
33
+ "uid": {
34
+ "type": [
35
+ "integer",
36
+ "null"
37
+ ],
38
+ "minimum": 0
39
+ },
40
+ "gid": {
41
+ "type": [
42
+ "integer",
43
+ "null"
44
+ ],
45
+ "minimum": 0
46
+ },
47
+ "comment": {
48
+ "type": "string"
49
+ },
50
+ "home": {
51
+ "type": "string"
52
+ },
53
+ "shell": {
54
+ "type": "string"
55
+ },
56
+ "encrypted_password": {
57
+ "type": "string"
58
+ },
59
+ "last_changed_date": {
60
+ "type": "integer"
61
+ },
62
+ "min_days": {
63
+ "type": "integer",
64
+ "minimum": 0
65
+ },
66
+ "max_days": {
67
+ "type": "integer",
68
+ "minimum": 0
69
+ },
70
+ "warn_days": {
71
+ "type": "integer",
72
+ "minimum": 0
73
+ },
74
+ "disable_days": {
75
+ "type": "integer",
76
+ "minimum": 0
77
+ },
78
+ "disabled_date": {
79
+ "type": "integer"
80
+ }
81
+ }
82
+ }
83
+ }
84
+ }
85
+ }
86
+
@@ -0,0 +1,101 @@
1
+ # Copyright (c) 2013-2014 SUSE LLC
2
+ #
3
+ # This program is free software; you can redistribute it and/or
4
+ # modify it under the terms of version 3 of the GNU General Public License as
5
+ # published by the Free Software Foundation.
6
+ #
7
+ # This program is distributed in the hope that it will be useful,
8
+ # but WITHOUT ANY WARRANTY; without even the implied warranty of
9
+ # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
10
+ # GNU General Public License for more details.
11
+ #
12
+ # You should have received a copy of the GNU General Public License
13
+ # along with this program; if not, contact SUSE LLC.
14
+ #
15
+ # To contact SUSE about this file by physical or electronic mail,
16
+ # you may find current contact information at www.suse.com
17
+
18
+ class Migrate5To6 < Migration
19
+ desc <<-EOT
20
+ Schema version 6 adds support for Ubuntu 14.04 systems.
21
+ There are now three types of repositories: zypper, yum and apt
22
+ EOT
23
+
24
+ def migrate
25
+ if @hash.key?("packages")
26
+ @hash["packages"] = {
27
+ "_attributes" => {
28
+ "package_system" => "rpm"
29
+ },
30
+ "_elements" => @hash["packages"]
31
+ }
32
+ end
33
+
34
+ if @hash.key?("repositories")
35
+ if @hash["repositories"].first
36
+ repository_system = @hash["repositories"].first["package_manager"]
37
+ else
38
+ repository_system = "zypp"
39
+ end
40
+
41
+ @hash["repositories"] = {
42
+ "_attributes" => {
43
+ "repository_system" => repository_system
44
+ },
45
+ "_elements" => @hash["repositories"].map do |repository|
46
+ repository.delete("package_manager")
47
+ if repository_system == "yum"
48
+ repository["gpgkey"] = []
49
+ repository["mirrorlist"] = ""
50
+ repository["url"] = [repository["url"]]
51
+ end
52
+ repository
53
+ end
54
+ }
55
+ end
56
+
57
+ ["changed_managed_files", "config_files", "unmanaged_files"].each do |scope|
58
+ next unless @hash.key?(scope)
59
+
60
+ @hash[scope] = {
61
+ "_attributes" => {
62
+ "extracted" => @hash[scope]["extracted"]
63
+ },
64
+ "_elements" => @hash[scope]["files"]
65
+ }
66
+ end
67
+
68
+ if @hash.key?("services")
69
+ @hash["services"] = {
70
+ "_attributes" => {
71
+ "init_system" => @hash["services"]["init_system"]
72
+ },
73
+ "_elements" => @hash["services"]["services"]
74
+ }
75
+
76
+ if @hash.key?("os") && @hash["os"]["name"] == "Red Hat Enterprise Linux Server" &&
77
+ @hash["os"]["version"].start_with?("6.")
78
+
79
+ @hash["services"]["_attributes"]["init_system"] = "upstart"
80
+
81
+ @hash["services"]["_elements"].each { |service| service["legacy_sysv"] = true }
82
+ end
83
+ end
84
+
85
+ ["users", "patterns"].each do |scope|
86
+ next unless @hash.key?(scope)
87
+
88
+ @hash[scope] = {
89
+ "_elements" => @hash[scope]
90
+ }
91
+ end
92
+
93
+ if @hash.key?("groups")
94
+ @hash["groups"] = {
95
+ "_elements" => @hash["groups"]
96
+ }
97
+ end
98
+
99
+ @hash
100
+ end
101
+ end
@@ -0,0 +1,43 @@
1
+ {
2
+ "$schema": "http://json-schema.org/draft-04/schema#",
3
+
4
+ "type": "object",
5
+ "required": ["meta"],
6
+ "properties": {
7
+ "meta": {
8
+ "required": ["format_version"],
9
+ "properties": {
10
+ "format_version": {
11
+ "type": "integer",
12
+ "minimum": 1
13
+ },
14
+ "filters": {
15
+ "type": "object",
16
+ "required": ["inspect"],
17
+ "properties": {
18
+ "inspect": {
19
+ "type": "array",
20
+ "items": {
21
+ "type": "string"
22
+ }
23
+ }
24
+ }
25
+ }
26
+ },
27
+ "additionalProperties": {
28
+ "type": "object",
29
+ "required": ["modified", "hostname"],
30
+ "properties": {
31
+ "modified": {
32
+ "type": "string",
33
+ "format": "date-time"
34
+ },
35
+ "hostname": {
36
+ "type": "string",
37
+ "format": "hostname"
38
+ }
39
+ }
40
+ }
41
+ }
42
+ }
43
+ }
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: machinery-tool
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.16.4
4
+ version: 1.17.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - SUSE
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2016-01-14 00:00:00.000000000 Z
11
+ date: 2016-01-25 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: cheetah
@@ -254,7 +254,6 @@ files:
254
254
  - html/assets/file_loader.gif
255
255
  - html/assets/jquery-2.1.1.min.js
256
256
  - html/assets/jquery.searcher.min.js
257
- - html/assets/landing_page/landing_page.js
258
257
  - html/assets/machinery-base.css
259
258
  - html/assets/machinery-base.js
260
259
  - html/assets/machinery.css
@@ -282,7 +281,9 @@ files:
282
281
  - html/partials/compare/pattern_list.html.haml
283
282
  - html/partials/compare/patterns.html.haml
284
283
  - html/partials/compare/repositories.html.haml
285
- - html/partials/compare/repository_list.html.haml
284
+ - html/partials/compare/repository_list_apt.html.haml
285
+ - html/partials/compare/repository_list_yum.html.haml
286
+ - html/partials/compare/repository_list_zypp.html.haml
286
287
  - html/partials/compare/service_list.html.haml
287
288
  - html/partials/compare/services.html.haml
288
289
  - html/partials/compare/summary.html.haml
@@ -297,11 +298,15 @@ files:
297
298
  - html/partials/packages.html.haml
298
299
  - html/partials/patterns.html.haml
299
300
  - html/partials/repositories.html.haml
301
+ - html/partials/repositories_apt.html.haml
302
+ - html/partials/repositories_yum.html.haml
303
+ - html/partials/repositories_zypp.html.haml
300
304
  - html/partials/scope_header.html.haml
301
305
  - html/partials/services.html.haml
302
306
  - html/partials/unmanaged_files.html.haml
303
307
  - html/partials/users.html.haml
304
308
  - inspect_helpers/changed_files.sh
309
+ - inspect_helpers/dpkg_unmanaged_files.sh
305
310
  - inspect_helpers/yum_repositories.py
306
311
  - lib/analyze_config_file_diffs_task.rb
307
312
  - lib/array.rb
@@ -320,6 +325,7 @@ files:
320
325
  - lib/current_user.rb
321
326
  - lib/deploy_task.rb
322
327
  - lib/docker_system.rb
328
+ - lib/dpkg_database.rb
323
329
  - lib/element_filter.rb
324
330
  - lib/exceptions.rb
325
331
  - lib/export_task.rb
@@ -344,6 +350,7 @@ files:
344
350
  - lib/machinery_helper.rb
345
351
  - lib/machinery_logger.rb
346
352
  - lib/man_task.rb
353
+ - lib/managed_files_database.rb
347
354
  - lib/manifest.rb
348
355
  - lib/migration.rb
349
356
  - lib/mountpoints.rb
@@ -395,6 +402,7 @@ files:
395
402
  - plugins/changed_managed_files/schema/system-description-changed-managed-files.schema-v3.json
396
403
  - plugins/changed_managed_files/schema/system-description-changed-managed-files.schema-v4.json
397
404
  - plugins/changed_managed_files/schema/system-description-changed-managed-files.schema-v5.json
405
+ - plugins/changed_managed_files/schema/system-description-changed-managed-files.schema-v6.json
398
406
  - plugins/config_files/config_files.yml
399
407
  - plugins/config_files/config_files_inspector.rb
400
408
  - plugins/config_files/config_files_model.rb
@@ -404,10 +412,12 @@ files:
404
412
  - plugins/config_files/schema/system-description-config-files.schema-v3.json
405
413
  - plugins/config_files/schema/system-description-config-files.schema-v4.json
406
414
  - plugins/config_files/schema/system-description-config-files.schema-v5.json
415
+ - plugins/config_files/schema/system-description-config-files.schema-v6.json
407
416
  - plugins/environment/environment.md
408
417
  - plugins/environment/environment_inspector.rb
409
418
  - plugins/environment/environment_model.rb
410
419
  - plugins/environment/schema/system-description-environment.schema-v5.json
420
+ - plugins/environment/schema/system-description-environment.schema-v6.json
411
421
  - plugins/groups/groups.yml
412
422
  - plugins/groups/groups_inspector.rb
413
423
  - plugins/groups/groups_model.rb
@@ -417,6 +427,7 @@ files:
417
427
  - plugins/groups/schema/system-description-groups.schema-v3.json
418
428
  - plugins/groups/schema/system-description-groups.schema-v4.json
419
429
  - plugins/groups/schema/system-description-groups.schema-v5.json
430
+ - plugins/groups/schema/system-description-groups.schema-v6.json
420
431
  - plugins/os/os.yml
421
432
  - plugins/os/os_inspector.rb
422
433
  - plugins/os/os_model.rb
@@ -426,6 +437,7 @@ files:
426
437
  - plugins/os/schema/system-description-os.schema-v3.json
427
438
  - plugins/os/schema/system-description-os.schema-v4.json
428
439
  - plugins/os/schema/system-description-os.schema-v5.json
440
+ - plugins/os/schema/system-description-os.schema-v6.json
429
441
  - plugins/packages/packages.yml
430
442
  - plugins/packages/packages_inspector.rb
431
443
  - plugins/packages/packages_model.rb
@@ -435,6 +447,7 @@ files:
435
447
  - plugins/packages/schema/system-description-packages.schema-v3.json
436
448
  - plugins/packages/schema/system-description-packages.schema-v4.json
437
449
  - plugins/packages/schema/system-description-packages.schema-v5.json
450
+ - plugins/packages/schema/system-description-packages.schema-v6.json
438
451
  - plugins/patterns/patterns.yml
439
452
  - plugins/patterns/patterns_inspector.rb
440
453
  - plugins/patterns/patterns_model.rb
@@ -444,6 +457,7 @@ files:
444
457
  - plugins/patterns/schema/system-description-patterns.schema-v3.json
445
458
  - plugins/patterns/schema/system-description-patterns.schema-v4.json
446
459
  - plugins/patterns/schema/system-description-patterns.schema-v5.json
460
+ - plugins/patterns/schema/system-description-patterns.schema-v6.json
447
461
  - plugins/repositories/repositories.yml
448
462
  - plugins/repositories/repositories_inspector.rb
449
463
  - plugins/repositories/repositories_model.rb
@@ -453,11 +467,13 @@ files:
453
467
  - plugins/repositories/schema/system-description-repositories.schema-v3.json
454
468
  - plugins/repositories/schema/system-description-repositories.schema-v4.json
455
469
  - plugins/repositories/schema/system-description-repositories.schema-v5.json
470
+ - plugins/repositories/schema/system-description-repositories.schema-v6.json
456
471
  - plugins/services/schema/system-description-services.schema-v1.json
457
472
  - plugins/services/schema/system-description-services.schema-v2.json
458
473
  - plugins/services/schema/system-description-services.schema-v3.json
459
474
  - plugins/services/schema/system-description-services.schema-v4.json
460
475
  - plugins/services/schema/system-description-services.schema-v5.json
476
+ - plugins/services/schema/system-description-services.schema-v6.json
461
477
  - plugins/services/services.yml
462
478
  - plugins/services/services_inspector.rb
463
479
  - plugins/services/services_model.rb
@@ -467,6 +483,7 @@ files:
467
483
  - plugins/unmanaged_files/schema/system-description-unmanaged-files.schema-v3.json
468
484
  - plugins/unmanaged_files/schema/system-description-unmanaged-files.schema-v4.json
469
485
  - plugins/unmanaged_files/schema/system-description-unmanaged-files.schema-v5.json
486
+ - plugins/unmanaged_files/schema/system-description-unmanaged-files.schema-v6.json
470
487
  - plugins/unmanaged_files/unmanaged_files.yml
471
488
  - plugins/unmanaged_files/unmanaged_files_inspector.rb
472
489
  - plugins/unmanaged_files/unmanaged_files_model.rb
@@ -476,6 +493,7 @@ files:
476
493
  - plugins/users/schema/system-description-users.schema-v3.json
477
494
  - plugins/users/schema/system-description-users.schema-v4.json
478
495
  - plugins/users/schema/system-description-users.schema-v5.json
496
+ - plugins/users/schema/system-description-users.schema-v6.json
479
497
  - plugins/users/users.yml
480
498
  - plugins/users/users_inspector.rb
481
499
  - plugins/users/users_model.rb
@@ -484,11 +502,13 @@ files:
484
502
  - schema/migrations/migrate2to3.rb
485
503
  - schema/migrations/migrate3to4.rb
486
504
  - schema/migrations/migrate4to5.rb
505
+ - schema/migrations/migrate5to6.rb
487
506
  - schema/system-description-global.schema-v1.json
488
507
  - schema/system-description-global.schema-v2.json
489
508
  - schema/system-description-global.schema-v3.json
490
509
  - schema/system-description-global.schema-v4.json
491
510
  - schema/system-description-global.schema-v5.json
511
+ - schema/system-description-global.schema-v6.json
492
512
  - tools/helper_builder.rb
493
513
  - workload_mapper/docker-registry/clue.rb
494
514
  - workload_mapper/docker-registry/compose-template.yml