machinery-tool 1.12.0 → 1.13.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (64) hide show
  1. checksums.yaml +4 -4
  2. data/NEWS +20 -0
  3. data/export_helpers/containerize_readme.md +28 -11
  4. data/html/comparison.html.haml +3 -3
  5. data/lib/build_task.rb +8 -6
  6. data/lib/cli.rb +69 -17
  7. data/lib/compare_task.rb +1 -1
  8. data/lib/config_base.rb +1 -1
  9. data/lib/config_task.rb +4 -1
  10. data/lib/containerize_task.rb +15 -1
  11. data/lib/containerized_app.rb +27 -0
  12. data/lib/hint.rb +18 -6
  13. data/lib/html.rb +17 -0
  14. data/lib/inspect_task.rb +6 -0
  15. data/lib/inspector.rb +2 -1
  16. data/lib/kiwi_config.rb +14 -1
  17. data/lib/logged_cheetah.rb +1 -20
  18. data/lib/machinery.rb +1 -0
  19. data/lib/remote_system.rb +2 -1
  20. data/lib/scope.rb +22 -2
  21. data/lib/serve_html_task.rb +1 -1
  22. data/lib/show_task.rb +1 -1
  23. data/lib/system.rb +6 -0
  24. data/lib/system_description.rb +4 -3
  25. data/lib/version.rb +1 -1
  26. data/lib/workload_mapper.rb +1 -0
  27. data/man/generated/machinery.1.gz +0 -0
  28. data/man/generated/machinery.1.html +16 -4
  29. data/plugins/changed_managed_files/schema/system-description-changed-managed-files.schema-v5.json +126 -0
  30. data/plugins/config_files/schema/system-description-config-files.schema-v5.json +126 -0
  31. data/plugins/environment/environment.md +1 -0
  32. data/plugins/environment/environment_inspector.rb +50 -0
  33. data/plugins/environment/environment_model.rb +22 -0
  34. data/plugins/environment/schema/system-description-environment.schema-v5.json +13 -0
  35. data/plugins/groups/schema/system-description-groups.schema-v5.json +30 -0
  36. data/plugins/os/os_model.rb +4 -0
  37. data/plugins/os/schema/system-description-os.schema-v5.json +21 -0
  38. data/plugins/packages/schema/system-description-packages.schema-v5.json +34 -0
  39. data/plugins/patterns/schema/system-description-patterns.schema-v5.json +24 -0
  40. data/plugins/repositories/schema/system-description-repositories.schema-v5.json +45 -0
  41. data/plugins/services/schema/system-description-services.schema-v5.json +30 -0
  42. data/plugins/unmanaged_files/schema/system-description-unmanaged-files.schema-v5.json +144 -0
  43. data/plugins/unmanaged_files/unmanaged_files_inspector.rb +45 -23
  44. data/plugins/users/schema/system-description-users.schema-v5.json +61 -0
  45. data/schema/migrations/migrate4to5.rb +28 -0
  46. data/schema/system-description-global.schema-v5.json +43 -0
  47. data/workload_mapper/docker-registry/clue.rb +14 -0
  48. data/workload_mapper/docker-registry/compose-template.yml +5 -0
  49. data/workload_mapper/docker-registry/container/Dockerfile +12 -0
  50. data/workload_mapper/mariadb/clue.rb +5 -0
  51. data/workload_mapper/mariadb/compose-template.yml +9 -0
  52. data/workload_mapper/mariadb/container/Dockerfile +13 -0
  53. data/workload_mapper/mariadb/container/scripts/config_mariadb.sh +49 -0
  54. data/workload_mapper/mariadb/container/scripts/start.sh +11 -0
  55. data/workload_mapper/rails/clue.rb +16 -0
  56. data/workload_mapper/rails/compose-template.yml +5 -0
  57. data/workload_mapper/rails/config/config/database.yml +7 -0
  58. data/workload_mapper/rails/container/Dockerfile +48 -0
  59. data/workload_mapper/rails/container/apache2/httpd.conf.local +5 -0
  60. data/workload_mapper/rails/container/apache2/listen.conf +1 -0
  61. data/workload_mapper/rails/container/apache2/rails_app_vhost.conf +13 -0
  62. data/workload_mapper/rails/container/apache2/sysconfig_apache2 +280 -0
  63. data/workload_mapper/rails/setup/setup.rb.erb +72 -0
  64. metadata +248 -214
@@ -0,0 +1,5 @@
1
+ LoadModule passenger_module /usr/lib64/ruby/gems/2.1.0/gems/passenger-5.0.7/buildout/apache2/mod_passenger.so
2
+ <IfModule mod_passenger.c>
3
+ PassengerRoot /usr/lib64/ruby/gems/2.1.0/gems/passenger-5.0.7
4
+ PassengerDefaultRuby /usr/bin/ruby.ruby2.1
5
+ </IfModule>
@@ -0,0 +1 @@
1
+ Listen 3000
@@ -0,0 +1,13 @@
1
+ <VirtualHost *:3000>
2
+ # !!! Be sure to point DocumentRoot to 'public'!
3
+ DocumentRoot /srv/www/rails/public
4
+ <Directory /srv/www/rails/public>
5
+ # This relaxes Apache security settings.
6
+ AllowOverride all
7
+ # MultiViews must be turned off.
8
+ Options -MultiViews
9
+ # Uncomment this if you're on Apache >= 2.4:
10
+ Require all granted
11
+ PassengerAppEnv development
12
+ </Directory>
13
+ </VirtualHost>
@@ -0,0 +1,280 @@
1
+ ## Path: Network/WWW/Apache2
2
+ ## Description: Configuration for Apache 2
3
+
4
+ ## Type: string
5
+ ## Default: ""
6
+ ## ServiceRestart: apache2
7
+ #
8
+ # Here you can name files, separated by spaces, that should be Include'd from
9
+ # httpd.conf.
10
+ #
11
+ # This allows you to add e.g. VirtualHost statements without touching
12
+ # /etc/apache2/httpd.conf itself, which makes upgrading easier.
13
+ #
14
+ APACHE_CONF_INCLUDE_FILES="/etc/apache2/httpd.conf.local"
15
+
16
+ ## Type: string
17
+ ## Default: ""
18
+ ## ServiceRestart: apache2
19
+ #
20
+ # Here you can name directories, separated by spaces, that should be Include'd
21
+ # from httpd.conf.
22
+ #
23
+ # All files contained in these directories will be recursively included by apache.
24
+ # If a pattern like *.conf is appended, apache will use it.
25
+ #
26
+ # Examples: "/etc/apache2/my_conf/"
27
+ # "/etc/apache2/virtual_hosts/*.conf"
28
+ # "local/*.conf /srv/www/virtual/"
29
+ #
30
+ APACHE_CONF_INCLUDE_DIRS=""
31
+
32
+ ## Type: string
33
+ ## Default: "actions alias auth_basic authz_host authn_file authz_groupfile authz_default authz_user autoindex cgi dir env expires include log_config mime negotiation setenvif ssl suexec userdir php5"
34
+ ## ServiceRestart: apache2
35
+ #
36
+ # [It might look silly to not simply edit httpd.conf for the LoadModule statements.
37
+ # However, since the LoadModule statements might need an absolute path to the modules,
38
+ # switching between MPMs can be quite a hassle. It's easier to just give the names here.]
39
+ #
40
+ # * list of all modules shipped with the base distribution:
41
+ #
42
+ # actions alias allowmethods asis auth_basic auth_digest auth_form
43
+ # authn_anon authn_core authn_dbd authn_dbm authn_file authn_socache
44
+ # authnz_ldap authz_core authz_dbd authz_dbm authz_groupfile authz_host
45
+ # authz_owner authz_user autoindex bucketeer buffer cache cache_disk
46
+ # cache_socache case_filter case_filter_in cgi charset_lite data dav
47
+ # dav_fs dav_lock dbd deflate dialup dir dumpio echo env expires ext_filter
48
+ # file_cache filter headers heartmonitor include info lbmethod_bybusyness
49
+ # lbmethod_byrequests lbmethod_bytraffic lbmethod_heartbeat ldap
50
+ # log_config log_debug log_forensic logio lua macro mime mime_magic
51
+ # negotiation optional_fn_export optional_fn_import optional_hook_export
52
+ # optional_hook_import proxy proxy_ajp proxy_balancer proxy_connect
53
+ # proxy_express proxy_fcgi proxy_fdpass proxy_ftp proxy_html proxy_http
54
+ # proxy_scgi proxy_wstunnel ratelimit reflector remoteip reqtimeout request
55
+ # rewrite sed session session_cookie session_crypto session_dbd setenvif
56
+ # slotmem_plain slotmem_shm socache_dbm socache_memcache socache_shmcb
57
+ # speling ssl status substitute suexec unique_id userdir usertrack version
58
+ # vhost_alias watchdog xml2enc
59
+ #
60
+ # see http:///httpd.apache.org/docs/2.4/mod/ !
61
+ #
62
+ # * It pays to use IfDefine statements... like
63
+ # <IfModule mod_xyz.c>
64
+ # ....
65
+ # </IfModule>
66
+ #
67
+ # * In the APACHE_MODULES variable, you can use mod_xyz or just xyz syntax.
68
+ # You may also name an absolute path if you like.
69
+ #
70
+ # * NOTE ON SSL: before you can use mod_ssl, you need a server certificate.
71
+ # A test certificate can be created by (as root):
72
+ # cd /usr/share/doc/packages/apache2; /bin/sh ./mkcert.sh make --no-print-directory /usr/bin/openssl /usr/sbin/ test
73
+ # Please feel free to have a look at the mkcert.sh script to see how certificates can be created.
74
+ # Also, you need to set the ServerName inside the <VirtualHost _default_:443>
75
+ # block to the fully qualified domain name (see /etc/HOSTNAME).
76
+ # * if your server certificate is protected by a passphrase you should increase the
77
+ # APACHE_START_TIMEOUT (see above)
78
+ # * to finally enable ssl support, you need to add 'SSL' to APACHE_SERVER_FLAGS
79
+ # below.
80
+ #
81
+ # * modules listed here will be ignored if they are not installed
82
+ #
83
+ #
84
+ # EXAMPLES:
85
+ #
86
+ # fairly minimal
87
+ # APACHE_MODULES="authz_host alias auth dir log_config mime setenvif"
88
+ #
89
+ # apache's default installation
90
+ # APACHE_MODULES="authz_host actions alias asis auth autoindex cgi dir imap include log_config mime negotiation setenvif status userdir"
91
+ # your settings
92
+ APACHE_MODULES="actions alias auth_basic authn_file authz_host authz_groupfile authz_user autoindex cgi dir env expires include log_config mime negotiation setenvif ssl socache_shmcb userdir php5 reqtimeout authn_core authz_core"
93
+
94
+
95
+ ## Type: string
96
+ ## Default: ""
97
+ ## ServiceRestart: apache2
98
+ #
99
+ # Additional server flags:
100
+ #
101
+ # Put here any server flags ("Defines") that you want to hand over to
102
+ # httpd at start time, or other command line flags.
103
+ #
104
+ # Background: Any directives within an <IfDefine flag>...</IfDefine>
105
+ # section are only processed if the flag is defined.
106
+ # This allows to write configuration which is active only in a
107
+ # special cases, like during server maintenance, or for testing
108
+ # something temporarily.
109
+ #
110
+ # Notably, to enable ssl support, 'SSL' needs to be added here.
111
+ # To enable the server-status, 'STATUS' needs to be added here.
112
+ #
113
+ # It does not matter if you write flag1, -D flag1 or -Dflag1.
114
+ # Multiple flags can be given as "-D flag1 -D flag2" or simply "flag1 flag2".
115
+ #
116
+ # Specifying such flags here is equivalent to giving them on the commandline.
117
+ # (e.g. via rcapache2 start -DReverseProxy)
118
+ #
119
+ # Example:
120
+ # "SSL STATUS AWSTATS SVN_VIEWCVS no_subversion_today"
121
+ #
122
+ APACHE_SERVER_FLAGS=""
123
+
124
+ ## Type: string
125
+ ## Default: ""
126
+ ## ServiceRestart: apache2
127
+ #
128
+ # Which config file do you want to use?
129
+ # (if not set, /etc/apache2/httpd.conf is used.)
130
+ # It is unusual to need to use this setting.
131
+ #
132
+ # Note about ulimits:
133
+ # if you want to set ulimits, e.g. to increase the max number of open file handle,
134
+ # or to allow core files, you can do so by editing /etc/sysconfig/apache2 and
135
+ # simply write the ulimit commands into that file.
136
+ # Example:
137
+ # ulimit -n 16384
138
+ # ulimit -H -n 16384
139
+ # ulimit -c unlimited
140
+ # See the output of "help ulimit" in the bash, or "man 1 ulimit".
141
+ #
142
+ APACHE_HTTPD_CONF=""
143
+
144
+ ## Type: list(prefork,worker,event,itk)
145
+ ## Default: ""
146
+ ## ServiceRestart: apache2
147
+ #
148
+ # MPM (multi-processing module) to use.
149
+ #
150
+ # Needed to determine with which MPM apache will run, as well as
151
+ # against which header files modules will be built.
152
+ #
153
+ # If not set, the system will simply pick one of the installed MPMs.
154
+ #
155
+ # The implementation of the logic is in /usr/share/apache2/find_mpm,
156
+ # a script which can be used standalone as well if needed.
157
+ #
158
+ APACHE_MPM=""
159
+
160
+ ## Type: string
161
+ ## Default: ""
162
+ ## ServiceReload: apache2
163
+ #
164
+ # email address of the server administrator (ServerAdmin directive)
165
+ # This address is added to the server's responses if APACHE_SERVERSIGNATURE
166
+ # is set to "email".
167
+ #
168
+ # If empty ("") it defaults to webmaster@$FQHOSTNAME, where FQHOSTNAME is
169
+ # taken from /etc/HOSTNAME.
170
+ #
171
+ # Note that ServerAdmin directives inside VirtualHost statements are not
172
+ # changed, even not the one in the stock SSL virtual host block.
173
+ #
174
+ APACHE_SERVERADMIN=""
175
+
176
+ ## Type: string
177
+ ## Default: ""
178
+ ## ServiceReload: apache2
179
+ #
180
+ # ServerName gives the name and port that the server uses to identify itself.
181
+ # This can often be determined automatically, but we recommend you specify
182
+ # it explicitly to prevent problems during startup.
183
+ #
184
+ # If this is not set to valid DNS name for your host, server-generated
185
+ # redirections will not work. See also the UseCanonicalName directive.
186
+ #
187
+ # If your host doesn't have a registered DNS name, enter its IP address here.
188
+ # You will have to access it by its address anyway, and this will make
189
+ # redirections work in a sensible way.
190
+ #
191
+ APACHE_SERVERNAME=""
192
+
193
+ ## Type: integer
194
+ ## Default: 2
195
+ #
196
+ # timeout during server startup (seconds)
197
+ # after this time, the start script decides wether the httpd process started without error.
198
+ #
199
+ # Increase it, if you use mod_ssl and your certificate is passphrase protected!
200
+ #
201
+ APACHE_START_TIMEOUT="2"
202
+
203
+ ## Type: list(on,off,email)
204
+ ## Default: "on"
205
+ ## ServiceReload: apache2
206
+ #
207
+ # Configures the footer on server-generated documents
208
+ # This correlates to the ServerSignature directive.
209
+ #
210
+ APACHE_SERVERSIGNATURE="off"
211
+
212
+ ## Type: list(debug,info,notice,warn,error,crit,alert,emerg)
213
+ ## Default: "warn"
214
+ ## ServiceReload: apache2
215
+ #
216
+ # LogLevel: Control the number of messages logged to the error_log.
217
+ #
218
+ APACHE_LOGLEVEL="warn"
219
+
220
+ ## Type: string
221
+ ## Default: "/var/log/apache2/access_log combined"
222
+ ## ServiceRestart: apache2
223
+ #
224
+ # The location and format of the access logfile (Common Logfile Format).
225
+ # If you do not define any access logfiles within a <VirtualHost>
226
+ # container, they will be logged here. Contrarywise, if you *do*
227
+ # define per-<VirtualHost> access logfiles, transactions will be
228
+ # logged therein and *not* in this file.
229
+ #
230
+ # Simply set it to empty, if you configure it yourself somewhere else.
231
+ #
232
+ # Examples:
233
+ #
234
+ # If you would like to have agent and referer logfiles:
235
+ #
236
+ # setting it to "/var/log/apache2/referer_log referer, /var/log/apache2/agent_log agent"
237
+ # corresponds to
238
+ # CustomLog /var/log/apache2/referer_log referer
239
+ # CustomLog /var/log/apache2/agent_log agent
240
+ #
241
+ # If you prefer a single logfile with access, agent, and referer information
242
+ # (Combined Logfile Format):
243
+ #
244
+ # setting it to "/var/log/apache2/access_log combined"
245
+ # corresponds to
246
+ # CustomLog /var/log/apache2/access_log combined
247
+ #
248
+ APACHE_ACCESS_LOG="/var/log/apache2/access_log combined"
249
+
250
+ ## Type: list(On,Off,DNS)
251
+ ## Default: "Off"
252
+ ## ServiceReload: apache2
253
+ #
254
+ # UseCanonicalName: Determines how Apache constructs self-referencing
255
+ # URLs and the SERVER_NAME and SERVER_PORT variables.
256
+ # When set "Off", Apache will use the Hostname and Port supplied
257
+ # by the client. When set "On", Apache will use the value of the
258
+ # ServerName directive.
259
+ #
260
+ APACHE_USE_CANONICAL_NAME="off"
261
+
262
+ ## Type: list(Major,Minor,Minimal,ProductOnly,OS,Full)
263
+ ## Default: "OS"
264
+ ## ServiceReload: apache2
265
+ #
266
+ # How much information the server response header field contains about the server.
267
+ # (installed modules, versions, etc.)
268
+ # see http:///httpd.apache.org/docs/2.4/mod/core.html#servertokens
269
+ #
270
+ APACHE_SERVERTOKENS="ProductOnly"
271
+
272
+ ## Type: list(on,off)
273
+ ## Default: "off"
274
+ ## ServiceReload: apache2
275
+ #
276
+ # If mod_status is used, include extended information about the server, like
277
+ # CPU usage, in the status report. It is a server-wide setting, and it can cost
278
+ # some performance!
279
+ #
280
+ APACHE_EXTENDED_STATUS="off"
@@ -0,0 +1,72 @@
1
+ #!/usr/bin/env ruby
2
+ # Copyright (c) 2015 SUSE LLC
3
+ #
4
+ # This program is free software; you can redistribute it and/or
5
+ # modify it under the terms of version 3 of the GNU General Public License as
6
+ # published by the Free Software Foundation.
7
+ #
8
+ # This program is distributed in the hope that it will be useful,
9
+ # but WITHOUT ANY WARRANTY; without even the implied warranty of
10
+ # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11
+ # GNU General Public License for more details.
12
+ #
13
+ # You should have received a copy of the GNU General Public License
14
+ # along with this program; if not, contact SUSE LLC.
15
+ #
16
+ # To contact SUSE about this file by physical or electronic mail,
17
+ # you may find current contact information at www.suse.com
18
+ require 'docker'
19
+ require 'json'
20
+
21
+ app_name = "<%= @name %>"
22
+ web_env_vars = <%= @services["web"]["environment"].to_a.map { |ar| ar.join("=") } %>
23
+ db_env_vars = <%= @services["db"]["environment"].to_a.map { |ar| ar.join("=") } %>
24
+ db_workload = "<%= @workloads.find { |_, config| config["service"] == "db" }.first %>"
25
+
26
+ def find_image(name)
27
+ Docker::Image.get(name)
28
+ rescue
29
+ return false
30
+ end
31
+
32
+ def build_image(path, name)
33
+ if find_image(name)
34
+ puts "Found #{name} image, not building again"
35
+ else
36
+ puts "Building image #{name}"
37
+ Docker::Image.build_from_dir(path, t: name) do |output|
38
+ print JSON.parse(output)["stream"]
39
+ end
40
+ end
41
+ end
42
+
43
+ puts "Setting up #{db_workload}"
44
+ if File.exists?("#{Dir.pwd}/#{db_workload}/data/configured.txt")
45
+ puts "Exiting as database has already been configured.\n" \
46
+ "If you want to re run the configuration just remove the files in #{Dir.pwd}/#{db_workload}/data/"
47
+ exit 1
48
+ end
49
+
50
+ db_image = "#{app_name}_db"
51
+ build_image("./#{db_workload}", db_image)
52
+
53
+ volumes = ["#{Dir.pwd}/#{db_workload}/data:/var/lib/mysql"]
54
+ db = Docker::Container.create("Image" => db_image, "name" => "#{db_image}_0", "Env" => db_env_vars, "Binds" => volumes, "Tty" => true, "Stream" => true)
55
+ db.tap(&:start).attach(tty: true) { |output| print output }
56
+
57
+ web_image = "#{app_name}_web"
58
+ build_image("./rails", web_image)
59
+
60
+ db.start
61
+
62
+ command = ["rake", "db:create", "db:migrate"]
63
+ web = Docker::Container.create("Image" => web_image, "name" => "#{web_image}_0", "Cmd" => command, "Links" => ["#{db_image}_0:db"], "Env" => web_env_vars, "Tty" => true)
64
+ web.tap(&:start).attach(tty: true) { |output| print output }
65
+
66
+ puts "Stopping db service"
67
+ db.kill
68
+
69
+ puts "removing containers"
70
+ web.remove
71
+ db.remove
72
+
metadata CHANGED
@@ -1,223 +1,223 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: machinery-tool
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.12.0
4
+ version: 1.13.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - SUSE
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2015-09-04 00:00:00.000000000 Z
11
+ date: 2015-09-15 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: cheetah
15
15
  requirement: !ruby/object:Gem::Requirement
16
16
  requirements:
17
- - - '>='
17
+ - - ">="
18
18
  - !ruby/object:Gem::Version
19
19
  version: 0.4.0
20
20
  type: :runtime
21
21
  prerelease: false
22
22
  version_requirements: !ruby/object:Gem::Requirement
23
23
  requirements:
24
- - - '>='
24
+ - - ">="
25
25
  - !ruby/object:Gem::Version
26
26
  version: 0.4.0
27
27
  - !ruby/object:Gem::Dependency
28
28
  name: json
29
29
  requirement: !ruby/object:Gem::Requirement
30
30
  requirements:
31
- - - '>='
31
+ - - ">="
32
32
  - !ruby/object:Gem::Version
33
33
  version: 1.8.0
34
34
  type: :runtime
35
35
  prerelease: false
36
36
  version_requirements: !ruby/object:Gem::Requirement
37
37
  requirements:
38
- - - '>='
38
+ - - ">="
39
39
  - !ruby/object:Gem::Version
40
40
  version: 1.8.0
41
41
  - !ruby/object:Gem::Dependency
42
42
  name: abstract_method
43
43
  requirement: !ruby/object:Gem::Requirement
44
44
  requirements:
45
- - - '>='
45
+ - - ">="
46
46
  - !ruby/object:Gem::Version
47
47
  version: 1.2.1
48
48
  type: :runtime
49
49
  prerelease: false
50
50
  version_requirements: !ruby/object:Gem::Requirement
51
51
  requirements:
52
- - - '>='
52
+ - - ">="
53
53
  - !ruby/object:Gem::Version
54
54
  version: 1.2.1
55
55
  - !ruby/object:Gem::Dependency
56
56
  name: nokogiri
57
57
  requirement: !ruby/object:Gem::Requirement
58
58
  requirements:
59
- - - '>='
59
+ - - ">="
60
60
  - !ruby/object:Gem::Version
61
61
  version: 1.6.0
62
62
  type: :runtime
63
63
  prerelease: false
64
64
  version_requirements: !ruby/object:Gem::Requirement
65
65
  requirements:
66
- - - '>='
66
+ - - ">="
67
67
  - !ruby/object:Gem::Version
68
68
  version: 1.6.0
69
69
  - !ruby/object:Gem::Dependency
70
70
  name: gli
71
71
  requirement: !ruby/object:Gem::Requirement
72
72
  requirements:
73
- - - ~>
73
+ - - "~>"
74
74
  - !ruby/object:Gem::Version
75
75
  version: 2.11.0
76
76
  type: :runtime
77
77
  prerelease: false
78
78
  version_requirements: !ruby/object:Gem::Requirement
79
79
  requirements:
80
- - - ~>
80
+ - - "~>"
81
81
  - !ruby/object:Gem::Version
82
82
  version: 2.11.0
83
83
  - !ruby/object:Gem::Dependency
84
84
  name: json-schema
85
85
  requirement: !ruby/object:Gem::Requirement
86
86
  requirements:
87
- - - ~>
87
+ - - "~>"
88
88
  - !ruby/object:Gem::Version
89
89
  version: 2.2.4
90
90
  type: :runtime
91
91
  prerelease: false
92
92
  version_requirements: !ruby/object:Gem::Requirement
93
93
  requirements:
94
- - - ~>
94
+ - - "~>"
95
95
  - !ruby/object:Gem::Version
96
96
  version: 2.2.4
97
97
  - !ruby/object:Gem::Dependency
98
98
  name: haml
99
99
  requirement: !ruby/object:Gem::Requirement
100
100
  requirements:
101
- - - ~>
101
+ - - "~>"
102
102
  - !ruby/object:Gem::Version
103
103
  version: 4.0.5
104
104
  type: :runtime
105
105
  prerelease: false
106
106
  version_requirements: !ruby/object:Gem::Requirement
107
107
  requirements:
108
- - - ~>
108
+ - - "~>"
109
109
  - !ruby/object:Gem::Version
110
110
  version: 4.0.5
111
111
  - !ruby/object:Gem::Dependency
112
112
  name: kramdown
113
113
  requirement: !ruby/object:Gem::Requirement
114
114
  requirements:
115
- - - ~>
115
+ - - "~>"
116
116
  - !ruby/object:Gem::Version
117
117
  version: 1.3.3
118
118
  type: :runtime
119
119
  prerelease: false
120
120
  version_requirements: !ruby/object:Gem::Requirement
121
121
  requirements:
122
- - - ~>
122
+ - - "~>"
123
123
  - !ruby/object:Gem::Version
124
124
  version: 1.3.3
125
125
  - !ruby/object:Gem::Dependency
126
126
  name: tilt
127
127
  requirement: !ruby/object:Gem::Requirement
128
128
  requirements:
129
- - - '>='
129
+ - - ">="
130
130
  - !ruby/object:Gem::Version
131
131
  version: '2.0'
132
132
  type: :runtime
133
133
  prerelease: false
134
134
  version_requirements: !ruby/object:Gem::Requirement
135
135
  requirements:
136
- - - '>='
136
+ - - ">="
137
137
  - !ruby/object:Gem::Version
138
138
  version: '2.0'
139
139
  - !ruby/object:Gem::Dependency
140
140
  name: sinatra
141
141
  requirement: !ruby/object:Gem::Requirement
142
142
  requirements:
143
- - - ~>
143
+ - - "~>"
144
144
  - !ruby/object:Gem::Version
145
145
  version: 1.4.6
146
146
  type: :runtime
147
147
  prerelease: false
148
148
  version_requirements: !ruby/object:Gem::Requirement
149
149
  requirements:
150
- - - ~>
150
+ - - "~>"
151
151
  - !ruby/object:Gem::Version
152
152
  version: 1.4.6
153
153
  - !ruby/object:Gem::Dependency
154
154
  name: mimemagic
155
155
  requirement: !ruby/object:Gem::Requirement
156
156
  requirements:
157
- - - ~>
157
+ - - "~>"
158
158
  - !ruby/object:Gem::Version
159
159
  version: 0.3.0
160
160
  type: :runtime
161
161
  prerelease: false
162
162
  version_requirements: !ruby/object:Gem::Requirement
163
163
  requirements:
164
- - - ~>
164
+ - - "~>"
165
165
  - !ruby/object:Gem::Version
166
166
  version: 0.3.0
167
167
  - !ruby/object:Gem::Dependency
168
168
  name: diffy
169
169
  requirement: !ruby/object:Gem::Requirement
170
170
  requirements:
171
- - - ~>
171
+ - - "~>"
172
172
  - !ruby/object:Gem::Version
173
173
  version: 3.0.7
174
174
  type: :runtime
175
175
  prerelease: false
176
176
  version_requirements: !ruby/object:Gem::Requirement
177
177
  requirements:
178
- - - ~>
178
+ - - "~>"
179
179
  - !ruby/object:Gem::Version
180
180
  version: 3.0.7
181
181
  - !ruby/object:Gem::Dependency
182
182
  name: ronn
183
183
  requirement: !ruby/object:Gem::Requirement
184
184
  requirements:
185
- - - '>='
185
+ - - ">="
186
186
  - !ruby/object:Gem::Version
187
187
  version: 0.7.3
188
188
  type: :development
189
189
  prerelease: false
190
190
  version_requirements: !ruby/object:Gem::Requirement
191
191
  requirements:
192
- - - '>='
192
+ - - ">="
193
193
  - !ruby/object:Gem::Version
194
194
  version: 0.7.3
195
195
  - !ruby/object:Gem::Dependency
196
196
  name: rake
197
197
  requirement: !ruby/object:Gem::Requirement
198
198
  requirements:
199
- - - '>='
199
+ - - ">="
200
200
  - !ruby/object:Gem::Version
201
201
  version: '0'
202
202
  type: :development
203
203
  prerelease: false
204
204
  version_requirements: !ruby/object:Gem::Requirement
205
205
  requirements:
206
- - - '>='
206
+ - - ">="
207
207
  - !ruby/object:Gem::Version
208
208
  version: '0'
209
209
  - !ruby/object:Gem::Dependency
210
210
  name: packaging_rake_tasks
211
211
  requirement: !ruby/object:Gem::Requirement
212
212
  requirements:
213
- - - '>='
213
+ - - ">="
214
214
  - !ruby/object:Gem::Version
215
215
  version: '0'
216
216
  type: :development
217
217
  prerelease: false
218
218
  version_requirements: !ruby/object:Gem::Requirement
219
219
  requirements:
220
- - - '>='
220
+ - - ">="
221
221
  - !ruby/object:Gem::Version
222
222
  version: '0'
223
223
  description: Machinery is a systems management toolkit for Linux. It supports configuration
@@ -230,220 +230,254 @@ executables:
230
230
  extensions: []
231
231
  extra_rdoc_files: []
232
232
  files:
233
- - lib/filter_option_parser.rb
233
+ - COPYING
234
+ - NEWS
235
+ - bin/machinery
236
+ - export_helpers/autoyast_export_readme.md
237
+ - export_helpers/containerize_readme.md
238
+ - export_helpers/kiwi_export_readme.md
239
+ - export_helpers/merge_users_and_groups.pl.erb
240
+ - export_helpers/unmanaged_files_autoyast_excludes
241
+ - export_helpers/unmanaged_files_kiwi_excludes
242
+ - helpers/changed_files.sh
243
+ - helpers/default_filters.json
244
+ - helpers/filter-packages-for-build.yaml
245
+ - helpers/inspector_files.rb
246
+ - helpers/yum_repositories.py
247
+ - html/assets/angular-sanitize.min.js
248
+ - html/assets/angular.min.js
249
+ - html/assets/arrow_down.png
250
+ - html/assets/arrow_up.png
251
+ - html/assets/bootstrap-popover.js
252
+ - html/assets/bootstrap-tooltip.js
253
+ - html/assets/bootstrap.min.css
254
+ - html/assets/collapse.js
255
+ - html/assets/compare/machinery-compare.js
256
+ - html/assets/compare/machinery.js
257
+ - html/assets/cross.png
258
+ - html/assets/jquery-2.1.1.min.js
259
+ - html/assets/logo-changed-managed-files-small.png
260
+ - html/assets/logo-changed-managed-files.png
261
+ - html/assets/logo-config-files-small.png
262
+ - html/assets/logo-config-files.png
263
+ - html/assets/logo-groups-small.png
264
+ - html/assets/logo-groups.png
265
+ - html/assets/logo-os-small.png
266
+ - html/assets/logo-os.png
267
+ - html/assets/logo-packages-small.png
268
+ - html/assets/logo-packages.png
269
+ - html/assets/logo-patterns-small.png
270
+ - html/assets/logo-patterns.png
271
+ - html/assets/logo-repositories-small.png
272
+ - html/assets/logo-repositories.png
273
+ - html/assets/logo-services-small.png
274
+ - html/assets/logo-services.png
275
+ - html/assets/logo-unmanaged-files-small.png
276
+ - html/assets/logo-unmanaged-files.png
277
+ - html/assets/logo-users-small.png
278
+ - html/assets/logo-users.png
279
+ - html/assets/machinery-base.css
280
+ - html/assets/machinery.css
281
+ - html/assets/modal.js
282
+ - html/assets/reset.png
283
+ - html/assets/show/machinery-show.js
284
+ - html/assets/show/machinery.js
285
+ - html/assets/transition.js
286
+ - html/assets/wheels_horizontal.png
287
+ - html/comparison.html.haml
288
+ - html/index.html.haml
289
+ - lib/analyze_config_file_diffs_task.rb
290
+ - lib/array.rb
291
+ - lib/autoyast.rb
292
+ - lib/build_task.rb
293
+ - lib/changed_rpm_files_helper.rb
234
294
  - lib/cli.rb
235
- - lib/validate_task.rb
236
- - lib/machinery_logger.rb
237
- - lib/show_task.rb
295
+ - lib/compare_task.rb
296
+ - lib/comparison.rb
297
+ - lib/config.rb
238
298
  - lib/config_base.rb
239
- - lib/scope_file_store.rb
240
- - lib/inspect_task.rb
299
+ - lib/config_task.rb
300
+ - lib/constants.rb
301
+ - lib/containerize_task.rb
302
+ - lib/containerized_app.rb
303
+ - lib/copy_task.rb
304
+ - lib/current_user.rb
305
+ - lib/deploy_task.rb
306
+ - lib/element_filter.rb
307
+ - lib/exceptions.rb
308
+ - lib/export_task.rb
309
+ - lib/exporter.rb
310
+ - lib/file_diff.rb
311
+ - lib/file_scope.rb
312
+ - lib/file_validator.rb
241
313
  - lib/filter.rb
314
+ - lib/filter_option_parser.rb
315
+ - lib/helper.rb
242
316
  - lib/hint.rb
243
317
  - lib/html.rb
318
+ - lib/inspect_task.rb
319
+ - lib/inspector.rb
320
+ - lib/json_validation_error_cleaner.rb
321
+ - lib/json_validator.rb
322
+ - lib/kiwi_config.rb
244
323
  - lib/list_task.rb
324
+ - lib/local_system.rb
245
325
  - lib/logged_cheetah.rb
246
- - lib/file_diff.rb
247
- - lib/renderer.rb
248
- - lib/exporter.rb
249
- - lib/remote_system.rb
250
- - lib/kiwi_config.rb
251
- - lib/upgrade_format_task.rb
252
- - lib/tarball.rb
253
- - lib/containerize_task.rb
254
326
  - lib/machinery.rb
255
- - lib/inspector.rb
256
- - lib/file_validator.rb
257
- - lib/renderer_helper.rb
258
- - lib/system_file.rb
259
- - lib/analyze_config_file_diffs_task.rb
260
- - lib/config.rb
261
- - lib/version.rb
262
- - lib/system.rb
263
- - lib/workload_mapper.rb
264
- - lib/workload_mapper_dsl.rb
327
+ - lib/machinery_helper.rb
328
+ - lib/machinery_logger.rb
329
+ - lib/man_task.rb
330
+ - lib/manifest.rb
331
+ - lib/migration.rb
332
+ - lib/mountpoints.rb
265
333
  - lib/object.rb
266
- - lib/server.rb
267
- - lib/json_validation_error_cleaner.rb
268
- - lib/system_description_store.rb
269
- - lib/config_task.rb
334
+ - lib/remote_system.rb
270
335
  - lib/remove_task.rb
271
- - lib/system_description.rb
336
+ - lib/renderer.rb
337
+ - lib/renderer_helper.rb
338
+ - lib/rpm.rb
339
+ - lib/scope.rb
340
+ - lib/scope_file_access_archive.rb
272
341
  - lib/scope_file_access_flat.rb
342
+ - lib/scope_file_store.rb
273
343
  - lib/serve_html_task.rb
274
- - lib/scope_file_access_archive.rb
344
+ - lib/server.rb
345
+ - lib/show_task.rb
346
+ - lib/system.rb
347
+ - lib/system_description.rb
275
348
  - lib/system_description_memory_store.rb
276
- - lib/autoyast.rb
277
- - lib/zypper.rb
278
- - lib/constants.rb
279
- - lib/machinery_helper.rb
280
- - lib/comparison.rb
281
- - lib/mountpoints.rb
349
+ - lib/system_description_store.rb
350
+ - lib/system_file.rb
351
+ - lib/tarball.rb
282
352
  - lib/ui.rb
283
- - lib/rpm.rb
284
- - lib/array.rb
285
- - lib/changed_rpm_files_helper.rb
286
- - lib/export_task.rb
287
- - lib/copy_task.rb
288
- - lib/json_validator.rb
289
- - lib/build_task.rb
290
- - lib/scope.rb
291
- - lib/element_filter.rb
292
- - lib/local_system.rb
293
- - lib/current_user.rb
294
- - lib/file_scope.rb
295
- - lib/manifest.rb
296
- - lib/deploy_task.rb
297
- - lib/man_task.rb
298
- - lib/helper.rb
299
- - lib/migration.rb
300
- - lib/exceptions.rb
301
- - lib/compare_task.rb
302
- - plugins/groups/schema/system-description-groups.schema-v1.json
303
- - plugins/groups/schema/system-description-groups.schema-v3.json
304
- - plugins/groups/schema/system-description-groups.schema-v2.json
305
- - plugins/groups/schema/system-description-groups.schema-v4.json
306
- - plugins/groups/groups_inspector.rb
353
+ - lib/upgrade_format_task.rb
354
+ - lib/validate_task.rb
355
+ - lib/version.rb
356
+ - lib/workload_mapper.rb
357
+ - lib/workload_mapper_dsl.rb
358
+ - lib/zypper.rb
359
+ - man/generated/machinery.1.gz
360
+ - man/generated/machinery.1.html
361
+ - plugins/changed_managed_files/changed_managed_files.md
362
+ - plugins/changed_managed_files/changed_managed_files_inspector.rb
363
+ - plugins/changed_managed_files/changed_managed_files_model.rb
364
+ - plugins/changed_managed_files/changed_managed_files_renderer.rb
365
+ - plugins/changed_managed_files/schema/system-description-changed-managed-files.schema-v1.json
366
+ - plugins/changed_managed_files/schema/system-description-changed-managed-files.schema-v2.json
367
+ - plugins/changed_managed_files/schema/system-description-changed-managed-files.schema-v3.json
368
+ - plugins/changed_managed_files/schema/system-description-changed-managed-files.schema-v4.json
369
+ - plugins/changed_managed_files/schema/system-description-changed-managed-files.schema-v5.json
370
+ - plugins/config_files/config_files.md
371
+ - plugins/config_files/config_files_inspector.rb
372
+ - plugins/config_files/config_files_model.rb
373
+ - plugins/config_files/config_files_renderer.rb
374
+ - plugins/config_files/schema/system-description-config-files.schema-v1.json
375
+ - plugins/config_files/schema/system-description-config-files.schema-v2.json
376
+ - plugins/config_files/schema/system-description-config-files.schema-v3.json
377
+ - plugins/config_files/schema/system-description-config-files.schema-v4.json
378
+ - plugins/config_files/schema/system-description-config-files.schema-v5.json
379
+ - plugins/environment/environment.md
380
+ - plugins/environment/environment_inspector.rb
381
+ - plugins/environment/environment_model.rb
382
+ - plugins/environment/schema/system-description-environment.schema-v5.json
307
383
  - plugins/groups/groups.md
384
+ - plugins/groups/groups_inspector.rb
308
385
  - plugins/groups/groups_model.rb
309
386
  - plugins/groups/groups_renderer.rb
387
+ - plugins/groups/schema/system-description-groups.schema-v1.json
388
+ - plugins/groups/schema/system-description-groups.schema-v2.json
389
+ - plugins/groups/schema/system-description-groups.schema-v3.json
390
+ - plugins/groups/schema/system-description-groups.schema-v4.json
391
+ - plugins/groups/schema/system-description-groups.schema-v5.json
392
+ - plugins/os/os.md
393
+ - plugins/os/os_inspector.rb
394
+ - plugins/os/os_model.rb
395
+ - plugins/os/os_renderer.rb
396
+ - plugins/os/schema/system-description-os.schema-v1.json
397
+ - plugins/os/schema/system-description-os.schema-v2.json
398
+ - plugins/os/schema/system-description-os.schema-v3.json
399
+ - plugins/os/schema/system-description-os.schema-v4.json
400
+ - plugins/os/schema/system-description-os.schema-v5.json
401
+ - plugins/packages/packages.md
402
+ - plugins/packages/packages_inspector.rb
403
+ - plugins/packages/packages_model.rb
404
+ - plugins/packages/packages_renderer.rb
405
+ - plugins/packages/schema/system-description-packages.schema-v1.json
406
+ - plugins/packages/schema/system-description-packages.schema-v2.json
407
+ - plugins/packages/schema/system-description-packages.schema-v3.json
408
+ - plugins/packages/schema/system-description-packages.schema-v4.json
409
+ - plugins/packages/schema/system-description-packages.schema-v5.json
410
+ - plugins/patterns/patterns.md
411
+ - plugins/patterns/patterns_inspector.rb
412
+ - plugins/patterns/patterns_model.rb
413
+ - plugins/patterns/patterns_renderer.rb
414
+ - plugins/patterns/schema/system-description-patterns.schema-v1.json
415
+ - plugins/patterns/schema/system-description-patterns.schema-v2.json
416
+ - plugins/patterns/schema/system-description-patterns.schema-v3.json
417
+ - plugins/patterns/schema/system-description-patterns.schema-v4.json
418
+ - plugins/patterns/schema/system-description-patterns.schema-v5.json
419
+ - plugins/repositories/repositories.md
420
+ - plugins/repositories/repositories_inspector.rb
421
+ - plugins/repositories/repositories_model.rb
422
+ - plugins/repositories/repositories_renderer.rb
423
+ - plugins/repositories/schema/system-description-repositories.schema-v1.json
424
+ - plugins/repositories/schema/system-description-repositories.schema-v2.json
425
+ - plugins/repositories/schema/system-description-repositories.schema-v3.json
426
+ - plugins/repositories/schema/system-description-repositories.schema-v4.json
427
+ - plugins/repositories/schema/system-description-repositories.schema-v5.json
428
+ - plugins/services/schema/system-description-services.schema-v1.json
310
429
  - plugins/services/schema/system-description-services.schema-v2.json
311
430
  - plugins/services/schema/system-description-services.schema-v3.json
312
431
  - plugins/services/schema/system-description-services.schema-v4.json
313
- - plugins/services/schema/system-description-services.schema-v1.json
432
+ - plugins/services/schema/system-description-services.schema-v5.json
433
+ - plugins/services/services.md
314
434
  - plugins/services/services_inspector.rb
315
435
  - plugins/services/services_model.rb
316
- - plugins/services/services.md
317
436
  - plugins/services/services_renderer.rb
318
- - plugins/changed_managed_files/schema/system-description-changed-managed-files.schema-v3.json
319
- - plugins/changed_managed_files/schema/system-description-changed-managed-files.schema-v4.json
320
- - plugins/changed_managed_files/schema/system-description-changed-managed-files.schema-v2.json
321
- - plugins/changed_managed_files/schema/system-description-changed-managed-files.schema-v1.json
322
- - plugins/changed_managed_files/changed_managed_files_model.rb
323
- - plugins/changed_managed_files/changed_managed_files.md
324
- - plugins/changed_managed_files/changed_managed_files_renderer.rb
325
- - plugins/changed_managed_files/changed_managed_files_inspector.rb
326
- - plugins/unmanaged_files/unmanaged_files_inspector.rb
327
- - plugins/unmanaged_files/schema/system-description-unmanaged-files.schema-v4.json
328
- - plugins/unmanaged_files/schema/system-description-unmanaged-files.schema-v3.json
329
437
  - plugins/unmanaged_files/schema/system-description-unmanaged-files.schema-v1.json
330
438
  - plugins/unmanaged_files/schema/system-description-unmanaged-files.schema-v2.json
439
+ - plugins/unmanaged_files/schema/system-description-unmanaged-files.schema-v3.json
440
+ - plugins/unmanaged_files/schema/system-description-unmanaged-files.schema-v4.json
441
+ - plugins/unmanaged_files/schema/system-description-unmanaged-files.schema-v5.json
331
442
  - plugins/unmanaged_files/unmanaged_files.md
332
- - plugins/unmanaged_files/unmanaged_files_renderer.rb
443
+ - plugins/unmanaged_files/unmanaged_files_inspector.rb
333
444
  - plugins/unmanaged_files/unmanaged_files_model.rb
334
- - plugins/patterns/schema/system-description-patterns.schema-v4.json
335
- - plugins/patterns/schema/system-description-patterns.schema-v2.json
336
- - plugins/patterns/schema/system-description-patterns.schema-v1.json
337
- - plugins/patterns/schema/system-description-patterns.schema-v3.json
338
- - plugins/patterns/patterns_model.rb
339
- - plugins/patterns/patterns_renderer.rb
340
- - plugins/patterns/patterns_inspector.rb
341
- - plugins/patterns/patterns.md
342
- - plugins/config_files/schema/system-description-config-files.schema-v2.json
343
- - plugins/config_files/schema/system-description-config-files.schema-v1.json
344
- - plugins/config_files/schema/system-description-config-files.schema-v3.json
345
- - plugins/config_files/schema/system-description-config-files.schema-v4.json
346
- - plugins/config_files/config_files.md
347
- - plugins/config_files/config_files_renderer.rb
348
- - plugins/config_files/config_files_model.rb
349
- - plugins/config_files/config_files_inspector.rb
350
- - plugins/os/schema/system-description-os.schema-v2.json
351
- - plugins/os/schema/system-description-os.schema-v4.json
352
- - plugins/os/schema/system-description-os.schema-v1.json
353
- - plugins/os/schema/system-description-os.schema-v3.json
354
- - plugins/os/os.md
355
- - plugins/os/os_inspector.rb
356
- - plugins/os/os_renderer.rb
357
- - plugins/os/os_model.rb
358
- - plugins/repositories/schema/system-description-repositories.schema-v3.json
359
- - plugins/repositories/schema/system-description-repositories.schema-v4.json
360
- - plugins/repositories/schema/system-description-repositories.schema-v1.json
361
- - plugins/repositories/schema/system-description-repositories.schema-v2.json
362
- - plugins/repositories/repositories_renderer.rb
363
- - plugins/repositories/repositories_model.rb
364
- - plugins/repositories/repositories_inspector.rb
365
- - plugins/repositories/repositories.md
366
- - plugins/users/users_model.rb
367
- - plugins/users/schema/system-description-users.schema-v3.json
368
- - plugins/users/schema/system-description-users.schema-v4.json
445
+ - plugins/unmanaged_files/unmanaged_files_renderer.rb
369
446
  - plugins/users/schema/system-description-users.schema-v1.json
370
447
  - plugins/users/schema/system-description-users.schema-v2.json
448
+ - plugins/users/schema/system-description-users.schema-v3.json
449
+ - plugins/users/schema/system-description-users.schema-v4.json
450
+ - plugins/users/schema/system-description-users.schema-v5.json
371
451
  - plugins/users/users.md
372
452
  - plugins/users/users_inspector.rb
453
+ - plugins/users/users_model.rb
373
454
  - plugins/users/users_renderer.rb
374
- - plugins/packages/schema/system-description-packages.schema-v1.json
375
- - plugins/packages/schema/system-description-packages.schema-v2.json
376
- - plugins/packages/schema/system-description-packages.schema-v4.json
377
- - plugins/packages/schema/system-description-packages.schema-v3.json
378
- - plugins/packages/packages_model.rb
379
- - plugins/packages/packages_renderer.rb
380
- - plugins/packages/packages.md
381
- - plugins/packages/packages_inspector.rb
382
- - bin/machinery
383
- - man/generated/machinery.1.gz
384
- - man/generated/machinery.1.html
385
- - NEWS
386
- - COPYING
387
- - helpers/inspector_files.rb
388
- - helpers/filter-packages-for-build.yaml
389
- - helpers/default_filters.json
390
- - helpers/yum_repositories.py
391
- - helpers/changed_files.sh
392
- - export_helpers/merge_users_and_groups.pl.erb
393
- - export_helpers/containerize_readme.md
394
- - export_helpers/unmanaged_files_autoyast_excludes
395
- - export_helpers/unmanaged_files_kiwi_excludes
396
- - export_helpers/autoyast_export_readme.md
397
- - export_helpers/kiwi_export_readme.md
398
- - schema/system-description-global.schema-v1.json
399
- - schema/system-description-global.schema-v4.json
400
- - schema/system-description-global.schema-v2.json
401
- - schema/system-description-global.schema-v3.json
402
455
  - schema/migrations/migrate1to2.rb
403
456
  - schema/migrations/migrate2to3.rb
404
457
  - schema/migrations/migrate3to4.rb
405
- - html/comparison.html.haml
406
- - html/assets/arrow_up.png
407
- - html/assets/logo-config-files.png
408
- - html/assets/logo-unmanaged-files.png
409
- - html/assets/logo-users.png
410
- - html/assets/logo-patterns.png
411
- - html/assets/logo-os-small.png
412
- - html/assets/angular.min.js
413
- - html/assets/logo-os.png
414
- - html/assets/logo-groups-small.png
415
- - html/assets/modal.js
416
- - html/assets/transition.js
417
- - html/assets/reset.png
418
- - html/assets/bootstrap-tooltip.js
419
- - html/assets/show/machinery-show.js
420
- - html/assets/show/machinery.js
421
- - html/assets/logo-config-files-small.png
422
- - html/assets/logo-packages-small.png
423
- - html/assets/compare/machinery-compare.js
424
- - html/assets/compare/machinery.js
425
- - html/assets/logo-changed-managed-files-small.png
426
- - html/assets/machinery-base.css
427
- - html/assets/machinery.css
428
- - html/assets/logo-unmanaged-files-small.png
429
- - html/assets/logo-patterns-small.png
430
- - html/assets/logo-repositories.png
431
- - html/assets/arrow_down.png
432
- - html/assets/bootstrap-popover.js
433
- - html/assets/bootstrap.min.css
434
- - html/assets/angular-sanitize.min.js
435
- - html/assets/logo-users-small.png
436
- - html/assets/logo-packages.png
437
- - html/assets/cross.png
438
- - html/assets/logo-groups.png
439
- - html/assets/jquery-2.1.1.min.js
440
- - html/assets/collapse.js
441
- - html/assets/logo-services.png
442
- - html/assets/logo-repositories-small.png
443
- - html/assets/wheels_horizontal.png
444
- - html/assets/logo-services-small.png
445
- - html/assets/logo-changed-managed-files.png
446
- - html/index.html.haml
458
+ - schema/migrations/migrate4to5.rb
459
+ - schema/system-description-global.schema-v1.json
460
+ - schema/system-description-global.schema-v2.json
461
+ - schema/system-description-global.schema-v3.json
462
+ - schema/system-description-global.schema-v4.json
463
+ - schema/system-description-global.schema-v5.json
464
+ - workload_mapper/docker-registry/clue.rb
465
+ - workload_mapper/docker-registry/compose-template.yml
466
+ - workload_mapper/docker-registry/container/Dockerfile
467
+ - workload_mapper/mariadb/clue.rb
468
+ - workload_mapper/mariadb/compose-template.yml
469
+ - workload_mapper/mariadb/container/Dockerfile
470
+ - workload_mapper/mariadb/container/scripts/config_mariadb.sh
471
+ - workload_mapper/mariadb/container/scripts/start.sh
472
+ - workload_mapper/rails/clue.rb
473
+ - workload_mapper/rails/compose-template.yml
474
+ - workload_mapper/rails/config/config/database.yml
475
+ - workload_mapper/rails/container/Dockerfile
476
+ - workload_mapper/rails/container/apache2/httpd.conf.local
477
+ - workload_mapper/rails/container/apache2/listen.conf
478
+ - workload_mapper/rails/container/apache2/rails_app_vhost.conf
479
+ - workload_mapper/rails/container/apache2/sysconfig_apache2
480
+ - workload_mapper/rails/setup/setup.rb.erb
447
481
  homepage: http://machinery-project.org
448
482
  licenses:
449
483
  - GPL-3.0
@@ -454,17 +488,17 @@ require_paths:
454
488
  - lib
455
489
  required_ruby_version: !ruby/object:Gem::Requirement
456
490
  requirements:
457
- - - '>='
491
+ - - ">="
458
492
  - !ruby/object:Gem::Version
459
493
  version: 1.9.2
460
494
  required_rubygems_version: !ruby/object:Gem::Requirement
461
495
  requirements:
462
- - - '>='
496
+ - - ">="
463
497
  - !ruby/object:Gem::Version
464
498
  version: 1.3.6
465
499
  requirements: []
466
500
  rubyforge_project:
467
- rubygems_version: 2.0.3
501
+ rubygems_version: 2.2.2
468
502
  signing_key:
469
503
  specification_version: 4
470
504
  summary: Systems management toolkit