machinery-tool 1.0.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +7 -0
- data/COPYING +674 -0
- data/NEWS +143 -0
- data/bin/machinery +29 -0
- data/helpers/changed_managed_files.sh +32 -0
- data/helpers/filter-packages-for-build.yaml +6 -0
- data/html/assets/arrow_down.png +0 -0
- data/html/assets/arrow_up.png +0 -0
- data/html/assets/bootstrap-popover.js +113 -0
- data/html/assets/bootstrap-tooltip.js +457 -0
- data/html/assets/bootstrap.min.css +5 -0
- data/html/assets/collapse.js +174 -0
- data/html/assets/hogan-3.0.2.min.mustache.js +5 -0
- data/html/assets/jquery-2.1.1.min.js +4 -0
- data/html/assets/logo-changed-managed-files-small.png +0 -0
- data/html/assets/logo-changed-managed-files.png +0 -0
- data/html/assets/logo-config-files-small.png +0 -0
- data/html/assets/logo-config-files.png +0 -0
- data/html/assets/logo-groups-small.png +0 -0
- data/html/assets/logo-groups.png +0 -0
- data/html/assets/logo-os-small.png +0 -0
- data/html/assets/logo-os.png +0 -0
- data/html/assets/logo-packages-small.png +0 -0
- data/html/assets/logo-packages.png +0 -0
- data/html/assets/logo-patterns-small.png +0 -0
- data/html/assets/logo-patterns.png +0 -0
- data/html/assets/logo-repositories-small.png +0 -0
- data/html/assets/logo-repositories.png +0 -0
- data/html/assets/logo-services-small.png +0 -0
- data/html/assets/logo-services.png +0 -0
- data/html/assets/logo-unmanaged-files-small.png +0 -0
- data/html/assets/logo-unmanaged-files.png +0 -0
- data/html/assets/logo-users-small.png +0 -0
- data/html/assets/logo-users.png +0 -0
- data/html/assets/machinery-base.css +5767 -0
- data/html/assets/machinery.css +131 -0
- data/html/assets/machinery.js +148 -0
- data/html/assets/transition.js +59 -0
- data/html/assets/wheels_horizontal.png +0 -0
- data/html/index.html.haml +468 -0
- data/kiwi_helpers/kiwi_export_readme.md +22 -0
- data/kiwi_helpers/merge_users_and_groups.pl.erb +231 -0
- data/kiwi_helpers/unmanaged_files_build_excludes +5 -0
- data/lib/analyze_config_file_diffs_task.rb +130 -0
- data/lib/array.rb +98 -0
- data/lib/build_task.rb +124 -0
- data/lib/changed_rpm_files_helper.rb +96 -0
- data/lib/cli.rb +600 -0
- data/lib/compare_task.rb +68 -0
- data/lib/config.rb +33 -0
- data/lib/config_base.rb +117 -0
- data/lib/config_task.rb +56 -0
- data/lib/constants.rb +24 -0
- data/lib/copy_task.rb +22 -0
- data/lib/current_user.rb +23 -0
- data/lib/deploy_task.rb +89 -0
- data/lib/exceptions.rb +113 -0
- data/lib/generate_html_task.rb +22 -0
- data/lib/helper.rb +22 -0
- data/lib/hint.rb +39 -0
- data/lib/html.rb +103 -0
- data/lib/inspect_task.rb +93 -0
- data/lib/inspector.rb +65 -0
- data/lib/kiwi_config.rb +356 -0
- data/lib/kiwi_export_task.rb +36 -0
- data/lib/list_task.rb +64 -0
- data/lib/local_system.rb +127 -0
- data/lib/logged_cheetah.rb +25 -0
- data/lib/machinery.rb +85 -0
- data/lib/machinery_logger.rb +47 -0
- data/lib/migration.rb +128 -0
- data/lib/mountpoints.rb +72 -0
- data/lib/object.rb +138 -0
- data/lib/os.rb +78 -0
- data/lib/remote_system.rb +114 -0
- data/lib/remove_task.rb +43 -0
- data/lib/renderer.rb +243 -0
- data/lib/renderer_helper.rb +26 -0
- data/lib/rpm.rb +52 -0
- data/lib/scope_mixin.rb +38 -0
- data/lib/show_task.rb +65 -0
- data/lib/system.rb +81 -0
- data/lib/system_description.rb +228 -0
- data/lib/system_description_store.rb +167 -0
- data/lib/system_description_validator.rb +216 -0
- data/lib/tarball.rb +82 -0
- data/lib/ui.rb +74 -0
- data/lib/upgrade_format_task.rb +55 -0
- data/lib/validate_task.rb +23 -0
- data/lib/version.rb +22 -0
- data/lib/zypper.rb +70 -0
- data/man/generated/machinery.1.gz +0 -0
- data/man/generated/machinery.1.html +1056 -0
- data/plugins/docs/changed_managed_files.md +2 -0
- data/plugins/docs/config_files.md +5 -0
- data/plugins/docs/groups.md +2 -0
- data/plugins/docs/os.md +2 -0
- data/plugins/docs/packages.md +2 -0
- data/plugins/docs/patterns.md +5 -0
- data/plugins/docs/repositories.md +24 -0
- data/plugins/docs/services.md +6 -0
- data/plugins/docs/unmanaged_files.md +13 -0
- data/plugins/docs/users.md +3 -0
- data/plugins/inspect/changed_managed_files_inspector.rb +109 -0
- data/plugins/inspect/config_files_inspector.rb +117 -0
- data/plugins/inspect/groups_inspector.rb +46 -0
- data/plugins/inspect/os_inspector.rb +116 -0
- data/plugins/inspect/packages_inspector.rb +46 -0
- data/plugins/inspect/patterns_inspector.rb +67 -0
- data/plugins/inspect/repositories_inspector.rb +107 -0
- data/plugins/inspect/services_inspector.rb +88 -0
- data/plugins/inspect/unmanaged_files_inspector.rb +393 -0
- data/plugins/inspect/users_inspector.rb +87 -0
- data/plugins/model/changed_managed_files_model.rb +29 -0
- data/plugins/model/config_files_model.rb +29 -0
- data/plugins/model/groups_model.rb +26 -0
- data/plugins/model/os_model.rb +20 -0
- data/plugins/model/packages_model.rb +26 -0
- data/plugins/model/patterns_model.rb +26 -0
- data/plugins/model/repositories_model.rb +26 -0
- data/plugins/model/services_model.rb +48 -0
- data/plugins/model/unmanaged_files_model.rb +29 -0
- data/plugins/model/users_model.rb +26 -0
- data/plugins/schema/v1/system-description-changed-managed-files.schema.json +83 -0
- data/plugins/schema/v1/system-description-config-files.schema.json +83 -0
- data/plugins/schema/v1/system-description-groups.schema.json +30 -0
- data/plugins/schema/v1/system-description-os.schema.json +21 -0
- data/plugins/schema/v1/system-description-packages.schema.json +34 -0
- data/plugins/schema/v1/system-description-patterns.schema.json +24 -0
- data/plugins/schema/v1/system-description-repositories.schema.json +41 -0
- data/plugins/schema/v1/system-description-services.schema.json +30 -0
- data/plugins/schema/v1/system-description-unmanaged-files.schema.json +105 -0
- data/plugins/schema/v1/system-description-users.schema.json +61 -0
- data/plugins/schema/v2/system-description-changed-managed-files.schema.json +92 -0
- data/plugins/schema/v2/system-description-config-files.schema.json +92 -0
- data/plugins/schema/v2/system-description-groups.schema.json +30 -0
- data/plugins/schema/v2/system-description-os.schema.json +21 -0
- data/plugins/schema/v2/system-description-packages.schema.json +34 -0
- data/plugins/schema/v2/system-description-patterns.schema.json +24 -0
- data/plugins/schema/v2/system-description-repositories.schema.json +41 -0
- data/plugins/schema/v2/system-description-services.schema.json +30 -0
- data/plugins/schema/v2/system-description-unmanaged-files.schema.json +138 -0
- data/plugins/schema/v2/system-description-users.schema.json +61 -0
- data/plugins/show/changed_managed_files_renderer.rb +46 -0
- data/plugins/show/config_files_renderer.rb +62 -0
- data/plugins/show/groups_renderer.rb +36 -0
- data/plugins/show/os_renderer.rb +31 -0
- data/plugins/show/packages_renderer.rb +32 -0
- data/plugins/show/patterns_renderer.rb +32 -0
- data/plugins/show/repositories_renderer.rb +38 -0
- data/plugins/show/services_renderer.rb +32 -0
- data/plugins/show/unmanaged_files_renderer.rb +42 -0
- data/plugins/show/users_renderer.rb +35 -0
- data/schema/migrations/migrate1to2.rb +56 -0
- data/schema/v1/system-description-global.schema.json +31 -0
- data/schema/v2/system-description-global.schema.json +31 -0
- metadata +370 -0
|
@@ -0,0 +1,31 @@
|
|
|
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
|
+
},
|
|
15
|
+
"additionalProperties": {
|
|
16
|
+
"type": "object",
|
|
17
|
+
"required": ["modified", "hostname"],
|
|
18
|
+
"properties": {
|
|
19
|
+
"modified": {
|
|
20
|
+
"type": "string",
|
|
21
|
+
"format": "date-time"
|
|
22
|
+
},
|
|
23
|
+
"hostname": {
|
|
24
|
+
"type": "string",
|
|
25
|
+
"format": "hostname"
|
|
26
|
+
}
|
|
27
|
+
}
|
|
28
|
+
}
|
|
29
|
+
}
|
|
30
|
+
}
|
|
31
|
+
}
|
|
@@ -0,0 +1,31 @@
|
|
|
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
|
+
},
|
|
15
|
+
"additionalProperties": {
|
|
16
|
+
"type": "object",
|
|
17
|
+
"required": ["modified", "hostname"],
|
|
18
|
+
"properties": {
|
|
19
|
+
"modified": {
|
|
20
|
+
"type": "string",
|
|
21
|
+
"format": "date-time"
|
|
22
|
+
},
|
|
23
|
+
"hostname": {
|
|
24
|
+
"type": "string",
|
|
25
|
+
"format": "hostname"
|
|
26
|
+
}
|
|
27
|
+
}
|
|
28
|
+
}
|
|
29
|
+
}
|
|
30
|
+
}
|
|
31
|
+
}
|
metadata
ADDED
|
@@ -0,0 +1,370 @@
|
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
|
2
|
+
name: machinery-tool
|
|
3
|
+
version: !ruby/object:Gem::Version
|
|
4
|
+
version: 1.0.2
|
|
5
|
+
platform: ruby
|
|
6
|
+
authors:
|
|
7
|
+
- SUSE
|
|
8
|
+
autorequire:
|
|
9
|
+
bindir: bin
|
|
10
|
+
cert_chain: []
|
|
11
|
+
date: 2014-11-03 00:00:00.000000000 Z
|
|
12
|
+
dependencies:
|
|
13
|
+
- !ruby/object:Gem::Dependency
|
|
14
|
+
name: cheetah
|
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
|
16
|
+
requirements:
|
|
17
|
+
- - '>='
|
|
18
|
+
- !ruby/object:Gem::Version
|
|
19
|
+
version: 0.4.0
|
|
20
|
+
type: :runtime
|
|
21
|
+
prerelease: false
|
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
23
|
+
requirements:
|
|
24
|
+
- - '>='
|
|
25
|
+
- !ruby/object:Gem::Version
|
|
26
|
+
version: 0.4.0
|
|
27
|
+
- !ruby/object:Gem::Dependency
|
|
28
|
+
name: json
|
|
29
|
+
requirement: !ruby/object:Gem::Requirement
|
|
30
|
+
requirements:
|
|
31
|
+
- - '>='
|
|
32
|
+
- !ruby/object:Gem::Version
|
|
33
|
+
version: 1.8.0
|
|
34
|
+
type: :runtime
|
|
35
|
+
prerelease: false
|
|
36
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
37
|
+
requirements:
|
|
38
|
+
- - '>='
|
|
39
|
+
- !ruby/object:Gem::Version
|
|
40
|
+
version: 1.8.0
|
|
41
|
+
- !ruby/object:Gem::Dependency
|
|
42
|
+
name: abstract_method
|
|
43
|
+
requirement: !ruby/object:Gem::Requirement
|
|
44
|
+
requirements:
|
|
45
|
+
- - '>='
|
|
46
|
+
- !ruby/object:Gem::Version
|
|
47
|
+
version: 1.2.1
|
|
48
|
+
type: :runtime
|
|
49
|
+
prerelease: false
|
|
50
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
51
|
+
requirements:
|
|
52
|
+
- - '>='
|
|
53
|
+
- !ruby/object:Gem::Version
|
|
54
|
+
version: 1.2.1
|
|
55
|
+
- !ruby/object:Gem::Dependency
|
|
56
|
+
name: nokogiri
|
|
57
|
+
requirement: !ruby/object:Gem::Requirement
|
|
58
|
+
requirements:
|
|
59
|
+
- - '>='
|
|
60
|
+
- !ruby/object:Gem::Version
|
|
61
|
+
version: 1.6.0
|
|
62
|
+
type: :runtime
|
|
63
|
+
prerelease: false
|
|
64
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
65
|
+
requirements:
|
|
66
|
+
- - '>='
|
|
67
|
+
- !ruby/object:Gem::Version
|
|
68
|
+
version: 1.6.0
|
|
69
|
+
- !ruby/object:Gem::Dependency
|
|
70
|
+
name: gli
|
|
71
|
+
requirement: !ruby/object:Gem::Requirement
|
|
72
|
+
requirements:
|
|
73
|
+
- - ~>
|
|
74
|
+
- !ruby/object:Gem::Version
|
|
75
|
+
version: 2.11.0
|
|
76
|
+
type: :runtime
|
|
77
|
+
prerelease: false
|
|
78
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
79
|
+
requirements:
|
|
80
|
+
- - ~>
|
|
81
|
+
- !ruby/object:Gem::Version
|
|
82
|
+
version: 2.11.0
|
|
83
|
+
- !ruby/object:Gem::Dependency
|
|
84
|
+
name: json-schema
|
|
85
|
+
requirement: !ruby/object:Gem::Requirement
|
|
86
|
+
requirements:
|
|
87
|
+
- - ~>
|
|
88
|
+
- !ruby/object:Gem::Version
|
|
89
|
+
version: 2.2.4
|
|
90
|
+
type: :runtime
|
|
91
|
+
prerelease: false
|
|
92
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
93
|
+
requirements:
|
|
94
|
+
- - ~>
|
|
95
|
+
- !ruby/object:Gem::Version
|
|
96
|
+
version: 2.2.4
|
|
97
|
+
- !ruby/object:Gem::Dependency
|
|
98
|
+
name: haml
|
|
99
|
+
requirement: !ruby/object:Gem::Requirement
|
|
100
|
+
requirements:
|
|
101
|
+
- - ~>
|
|
102
|
+
- !ruby/object:Gem::Version
|
|
103
|
+
version: 4.0.5
|
|
104
|
+
type: :runtime
|
|
105
|
+
prerelease: false
|
|
106
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
107
|
+
requirements:
|
|
108
|
+
- - ~>
|
|
109
|
+
- !ruby/object:Gem::Version
|
|
110
|
+
version: 4.0.5
|
|
111
|
+
- !ruby/object:Gem::Dependency
|
|
112
|
+
name: kramdown
|
|
113
|
+
requirement: !ruby/object:Gem::Requirement
|
|
114
|
+
requirements:
|
|
115
|
+
- - ~>
|
|
116
|
+
- !ruby/object:Gem::Version
|
|
117
|
+
version: 1.3.3
|
|
118
|
+
type: :runtime
|
|
119
|
+
prerelease: false
|
|
120
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
121
|
+
requirements:
|
|
122
|
+
- - ~>
|
|
123
|
+
- !ruby/object:Gem::Version
|
|
124
|
+
version: 1.3.3
|
|
125
|
+
- !ruby/object:Gem::Dependency
|
|
126
|
+
name: tilt
|
|
127
|
+
requirement: !ruby/object:Gem::Requirement
|
|
128
|
+
requirements:
|
|
129
|
+
- - '>='
|
|
130
|
+
- !ruby/object:Gem::Version
|
|
131
|
+
version: '2.0'
|
|
132
|
+
type: :runtime
|
|
133
|
+
prerelease: false
|
|
134
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
135
|
+
requirements:
|
|
136
|
+
- - '>='
|
|
137
|
+
- !ruby/object:Gem::Version
|
|
138
|
+
version: '2.0'
|
|
139
|
+
- !ruby/object:Gem::Dependency
|
|
140
|
+
name: ronn
|
|
141
|
+
requirement: !ruby/object:Gem::Requirement
|
|
142
|
+
requirements:
|
|
143
|
+
- - '>='
|
|
144
|
+
- !ruby/object:Gem::Version
|
|
145
|
+
version: 0.7.3
|
|
146
|
+
type: :development
|
|
147
|
+
prerelease: false
|
|
148
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
149
|
+
requirements:
|
|
150
|
+
- - '>='
|
|
151
|
+
- !ruby/object:Gem::Version
|
|
152
|
+
version: 0.7.3
|
|
153
|
+
- !ruby/object:Gem::Dependency
|
|
154
|
+
name: rake
|
|
155
|
+
requirement: !ruby/object:Gem::Requirement
|
|
156
|
+
requirements:
|
|
157
|
+
- - '>='
|
|
158
|
+
- !ruby/object:Gem::Version
|
|
159
|
+
version: '0'
|
|
160
|
+
type: :development
|
|
161
|
+
prerelease: false
|
|
162
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
163
|
+
requirements:
|
|
164
|
+
- - '>='
|
|
165
|
+
- !ruby/object:Gem::Version
|
|
166
|
+
version: '0'
|
|
167
|
+
- !ruby/object:Gem::Dependency
|
|
168
|
+
name: packaging_rake_tasks
|
|
169
|
+
requirement: !ruby/object:Gem::Requirement
|
|
170
|
+
requirements:
|
|
171
|
+
- - '>='
|
|
172
|
+
- !ruby/object:Gem::Version
|
|
173
|
+
version: '0'
|
|
174
|
+
type: :development
|
|
175
|
+
prerelease: false
|
|
176
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
177
|
+
requirements:
|
|
178
|
+
- - '>='
|
|
179
|
+
- !ruby/object:Gem::Version
|
|
180
|
+
version: '0'
|
|
181
|
+
description: Machinery is a systems management toolkit for Linux. It supports configuration
|
|
182
|
+
discovery, system validation, and service migration. It's based on the idea of a
|
|
183
|
+
universal system description.
|
|
184
|
+
email:
|
|
185
|
+
- machinery@lists.suse.com
|
|
186
|
+
executables:
|
|
187
|
+
- machinery
|
|
188
|
+
extensions: []
|
|
189
|
+
extra_rdoc_files: []
|
|
190
|
+
files:
|
|
191
|
+
- lib/analyze_config_file_diffs_task.rb
|
|
192
|
+
- lib/array.rb
|
|
193
|
+
- lib/changed_rpm_files_helper.rb
|
|
194
|
+
- lib/compare_task.rb
|
|
195
|
+
- lib/copy_task.rb
|
|
196
|
+
- lib/current_user.rb
|
|
197
|
+
- lib/generate_html_task.rb
|
|
198
|
+
- lib/inspect_task.rb
|
|
199
|
+
- lib/inspector.rb
|
|
200
|
+
- lib/kiwi_export_task.rb
|
|
201
|
+
- lib/list_task.rb
|
|
202
|
+
- lib/logged_cheetah.rb
|
|
203
|
+
- lib/machinery_logger.rb
|
|
204
|
+
- lib/migration.rb
|
|
205
|
+
- lib/remove_task.rb
|
|
206
|
+
- lib/renderer.rb
|
|
207
|
+
- lib/renderer_helper.rb
|
|
208
|
+
- lib/rpm.rb
|
|
209
|
+
- lib/scope_mixin.rb
|
|
210
|
+
- lib/system_description.rb
|
|
211
|
+
- lib/tarball.rb
|
|
212
|
+
- lib/upgrade_format_task.rb
|
|
213
|
+
- lib/validate_task.rb
|
|
214
|
+
- lib/zypper.rb
|
|
215
|
+
- lib/config.rb
|
|
216
|
+
- lib/config_base.rb
|
|
217
|
+
- lib/constants.rb
|
|
218
|
+
- lib/hint.rb
|
|
219
|
+
- lib/html.rb
|
|
220
|
+
- lib/machinery.rb
|
|
221
|
+
- lib/system_description_validator.rb
|
|
222
|
+
- lib/object.rb
|
|
223
|
+
- lib/system_description_store.rb
|
|
224
|
+
- lib/build_task.rb
|
|
225
|
+
- lib/deploy_task.rb
|
|
226
|
+
- lib/exceptions.rb
|
|
227
|
+
- lib/helper.rb
|
|
228
|
+
- lib/local_system.rb
|
|
229
|
+
- lib/mountpoints.rb
|
|
230
|
+
- lib/os.rb
|
|
231
|
+
- lib/show_task.rb
|
|
232
|
+
- lib/system.rb
|
|
233
|
+
- lib/ui.rb
|
|
234
|
+
- lib/cli.rb
|
|
235
|
+
- lib/config_task.rb
|
|
236
|
+
- lib/kiwi_config.rb
|
|
237
|
+
- lib/remote_system.rb
|
|
238
|
+
- lib/version.rb
|
|
239
|
+
- plugins/docs/changed_managed_files.md
|
|
240
|
+
- plugins/docs/config_files.md
|
|
241
|
+
- plugins/docs/groups.md
|
|
242
|
+
- plugins/docs/os.md
|
|
243
|
+
- plugins/docs/packages.md
|
|
244
|
+
- plugins/docs/patterns.md
|
|
245
|
+
- plugins/docs/repositories.md
|
|
246
|
+
- plugins/docs/services.md
|
|
247
|
+
- plugins/docs/unmanaged_files.md
|
|
248
|
+
- plugins/docs/users.md
|
|
249
|
+
- plugins/inspect/changed_managed_files_inspector.rb
|
|
250
|
+
- plugins/inspect/config_files_inspector.rb
|
|
251
|
+
- plugins/inspect/packages_inspector.rb
|
|
252
|
+
- plugins/inspect/patterns_inspector.rb
|
|
253
|
+
- plugins/inspect/services_inspector.rb
|
|
254
|
+
- plugins/inspect/unmanaged_files_inspector.rb
|
|
255
|
+
- plugins/inspect/groups_inspector.rb
|
|
256
|
+
- plugins/inspect/os_inspector.rb
|
|
257
|
+
- plugins/inspect/users_inspector.rb
|
|
258
|
+
- plugins/inspect/repositories_inspector.rb
|
|
259
|
+
- plugins/model/os_model.rb
|
|
260
|
+
- plugins/model/changed_managed_files_model.rb
|
|
261
|
+
- plugins/model/config_files_model.rb
|
|
262
|
+
- plugins/model/groups_model.rb
|
|
263
|
+
- plugins/model/packages_model.rb
|
|
264
|
+
- plugins/model/patterns_model.rb
|
|
265
|
+
- plugins/model/repositories_model.rb
|
|
266
|
+
- plugins/model/services_model.rb
|
|
267
|
+
- plugins/model/unmanaged_files_model.rb
|
|
268
|
+
- plugins/model/users_model.rb
|
|
269
|
+
- plugins/schema/v1/system-description-changed-managed-files.schema.json
|
|
270
|
+
- plugins/schema/v1/system-description-config-files.schema.json
|
|
271
|
+
- plugins/schema/v1/system-description-groups.schema.json
|
|
272
|
+
- plugins/schema/v1/system-description-os.schema.json
|
|
273
|
+
- plugins/schema/v1/system-description-packages.schema.json
|
|
274
|
+
- plugins/schema/v1/system-description-patterns.schema.json
|
|
275
|
+
- plugins/schema/v1/system-description-repositories.schema.json
|
|
276
|
+
- plugins/schema/v1/system-description-services.schema.json
|
|
277
|
+
- plugins/schema/v1/system-description-unmanaged-files.schema.json
|
|
278
|
+
- plugins/schema/v1/system-description-users.schema.json
|
|
279
|
+
- plugins/schema/v2/system-description-groups.schema.json
|
|
280
|
+
- plugins/schema/v2/system-description-os.schema.json
|
|
281
|
+
- plugins/schema/v2/system-description-packages.schema.json
|
|
282
|
+
- plugins/schema/v2/system-description-patterns.schema.json
|
|
283
|
+
- plugins/schema/v2/system-description-repositories.schema.json
|
|
284
|
+
- plugins/schema/v2/system-description-services.schema.json
|
|
285
|
+
- plugins/schema/v2/system-description-users.schema.json
|
|
286
|
+
- plugins/schema/v2/system-description-changed-managed-files.schema.json
|
|
287
|
+
- plugins/schema/v2/system-description-config-files.schema.json
|
|
288
|
+
- plugins/schema/v2/system-description-unmanaged-files.schema.json
|
|
289
|
+
- plugins/show/changed_managed_files_renderer.rb
|
|
290
|
+
- plugins/show/config_files_renderer.rb
|
|
291
|
+
- plugins/show/groups_renderer.rb
|
|
292
|
+
- plugins/show/os_renderer.rb
|
|
293
|
+
- plugins/show/packages_renderer.rb
|
|
294
|
+
- plugins/show/patterns_renderer.rb
|
|
295
|
+
- plugins/show/repositories_renderer.rb
|
|
296
|
+
- plugins/show/services_renderer.rb
|
|
297
|
+
- plugins/show/unmanaged_files_renderer.rb
|
|
298
|
+
- plugins/show/users_renderer.rb
|
|
299
|
+
- bin/machinery
|
|
300
|
+
- man/generated/machinery.1.gz
|
|
301
|
+
- man/generated/machinery.1.html
|
|
302
|
+
- NEWS
|
|
303
|
+
- COPYING
|
|
304
|
+
- helpers/changed_managed_files.sh
|
|
305
|
+
- helpers/filter-packages-for-build.yaml
|
|
306
|
+
- kiwi_helpers/kiwi_export_readme.md
|
|
307
|
+
- kiwi_helpers/merge_users_and_groups.pl.erb
|
|
308
|
+
- kiwi_helpers/unmanaged_files_build_excludes
|
|
309
|
+
- schema/migrations/migrate1to2.rb
|
|
310
|
+
- schema/v1/system-description-global.schema.json
|
|
311
|
+
- schema/v2/system-description-global.schema.json
|
|
312
|
+
- html/assets/arrow_down.png
|
|
313
|
+
- html/assets/arrow_up.png
|
|
314
|
+
- html/assets/bootstrap-popover.js
|
|
315
|
+
- html/assets/bootstrap-tooltip.js
|
|
316
|
+
- html/assets/bootstrap.min.css
|
|
317
|
+
- html/assets/collapse.js
|
|
318
|
+
- html/assets/hogan-3.0.2.min.mustache.js
|
|
319
|
+
- html/assets/jquery-2.1.1.min.js
|
|
320
|
+
- html/assets/logo-changed-managed-files-small.png
|
|
321
|
+
- html/assets/logo-changed-managed-files.png
|
|
322
|
+
- html/assets/logo-config-files-small.png
|
|
323
|
+
- html/assets/logo-config-files.png
|
|
324
|
+
- html/assets/logo-groups-small.png
|
|
325
|
+
- html/assets/logo-groups.png
|
|
326
|
+
- html/assets/logo-os-small.png
|
|
327
|
+
- html/assets/logo-os.png
|
|
328
|
+
- html/assets/logo-packages-small.png
|
|
329
|
+
- html/assets/logo-packages.png
|
|
330
|
+
- html/assets/logo-patterns-small.png
|
|
331
|
+
- html/assets/logo-patterns.png
|
|
332
|
+
- html/assets/logo-repositories-small.png
|
|
333
|
+
- html/assets/logo-repositories.png
|
|
334
|
+
- html/assets/logo-services-small.png
|
|
335
|
+
- html/assets/logo-services.png
|
|
336
|
+
- html/assets/logo-unmanaged-files-small.png
|
|
337
|
+
- html/assets/logo-unmanaged-files.png
|
|
338
|
+
- html/assets/logo-users-small.png
|
|
339
|
+
- html/assets/logo-users.png
|
|
340
|
+
- html/assets/machinery-base.css
|
|
341
|
+
- html/assets/transition.js
|
|
342
|
+
- html/assets/wheels_horizontal.png
|
|
343
|
+
- html/assets/machinery.css
|
|
344
|
+
- html/assets/machinery.js
|
|
345
|
+
- html/index.html.haml
|
|
346
|
+
homepage: https://github.com/SUSE/machinery/
|
|
347
|
+
licenses:
|
|
348
|
+
- GPL-3.0
|
|
349
|
+
metadata: {}
|
|
350
|
+
post_install_message:
|
|
351
|
+
rdoc_options: []
|
|
352
|
+
require_paths:
|
|
353
|
+
- lib
|
|
354
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
|
355
|
+
requirements:
|
|
356
|
+
- - '>='
|
|
357
|
+
- !ruby/object:Gem::Version
|
|
358
|
+
version: 1.9.2
|
|
359
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
360
|
+
requirements:
|
|
361
|
+
- - '>='
|
|
362
|
+
- !ruby/object:Gem::Version
|
|
363
|
+
version: 1.3.6
|
|
364
|
+
requirements: []
|
|
365
|
+
rubyforge_project:
|
|
366
|
+
rubygems_version: 2.0.3
|
|
367
|
+
signing_key:
|
|
368
|
+
specification_version: 4
|
|
369
|
+
summary: Systems management toolkit
|
|
370
|
+
test_files: []
|