comfy 0.2.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (133) hide show
  1. checksums.yaml +7 -0
  2. data/.gitignore +11 -0
  3. data/.rspec +2 -0
  4. data/.travis.yml +46 -0
  5. data/Gemfile +4 -0
  6. data/LICENSE +13 -0
  7. data/README.md +131 -0
  8. data/Rakefile +18 -0
  9. data/bin/comfy +4 -0
  10. data/comfy.gemspec +36 -0
  11. data/config/comfy.yml +20 -0
  12. data/lib/comfy/command_executioner.rb +225 -0
  13. data/lib/comfy/creator.rb +200 -0
  14. data/lib/comfy/errors/invalid_distribution_version_error.rb +1 -0
  15. data/lib/comfy/errors/no_such_distribution_version_error.rb +1 -0
  16. data/lib/comfy/errors/packer_error.rb +1 -0
  17. data/lib/comfy/errors/packer_execution_error.rb +1 -0
  18. data/lib/comfy/errors/packer_validation_error.rb +1 -0
  19. data/lib/comfy/errors.rb +4 -0
  20. data/lib/comfy/extensions/yell.rb +8 -0
  21. data/lib/comfy/settings.rb +15 -0
  22. data/lib/comfy/templater.rb +62 -0
  23. data/lib/comfy/version.rb +3 -0
  24. data/lib/comfy.rb +18 -0
  25. data/lib/templates/centos/centos.cfg.erb +47 -0
  26. data/lib/templates/centos/centos.description +20 -0
  27. data/lib/templates/centos/files/10-ipv6.conf +5 -0
  28. data/lib/templates/centos/files/check-mk-agent-meta-checks-2.0-1.noarch.rpm +0 -0
  29. data/lib/templates/centos/files/check-mk-agent-meta-key-1.0-1.noarch.rpm +0 -0
  30. data/lib/templates/centos/files/cloud.cfg +101 -0
  31. data/lib/templates/centos/files/fail2ban.local +3 -0
  32. data/lib/templates/centos/files/getty@ttyS0.service +47 -0
  33. data/lib/templates/centos/files/grub +11 -0
  34. data/lib/templates/centos/files/iptables-multiport.local +6 -0
  35. data/lib/templates/centos/files/jail.local +17 -0
  36. data/lib/templates/centos/files/krb5.conf +181 -0
  37. data/lib/templates/centos/files/ntp.conf +61 -0
  38. data/lib/templates/centos/files/pakiti-2.1.5-1.noarch.rpm +0 -0
  39. data/lib/templates/centos/files/sshd_config +152 -0
  40. data/lib/templates/centos/files/xen-domU.conf +1 -0
  41. data/lib/templates/centos/scripts/init.sh +83 -0
  42. data/lib/templates/debian/debian.cfg.erb +80 -0
  43. data/lib/templates/debian/debian.description +28 -0
  44. data/lib/templates/debian/files/.bashrc +112 -0
  45. data/lib/templates/debian/files/.gitconfig +7 -0
  46. data/lib/templates/debian/files/10-ipv6.conf +5 -0
  47. data/lib/templates/debian/files/DEPOT-GPG-KEY.cfg +32 -0
  48. data/lib/templates/debian/files/RPM-GPG-KEY-CERIT-SC.cfg +30 -0
  49. data/lib/templates/debian/files/backports.list +2 -0
  50. data/lib/templates/debian/files/cerit-cloudinit.list +2 -0
  51. data/lib/templates/debian/files/cloud.cfg +102 -0
  52. data/lib/templates/debian/files/depot.list +4 -0
  53. data/lib/templates/debian/files/depot_all.pref +6 -0
  54. data/lib/templates/debian/files/depot_check_mk.pref +5 -0
  55. data/lib/templates/debian/files/fail2ban.local +3 -0
  56. data/lib/templates/debian/files/getty@ttyS0.service +47 -0
  57. data/lib/templates/debian/files/grub +34 -0
  58. data/lib/templates/debian/files/inittab +69 -0
  59. data/lib/templates/debian/files/interfaces +15 -0
  60. data/lib/templates/debian/files/iptables-multiport.local +6 -0
  61. data/lib/templates/debian/files/jail.local +17 -0
  62. data/lib/templates/debian/files/krb5.conf +181 -0
  63. data/lib/templates/debian/files/meta-misc.list +2 -0
  64. data/lib/templates/debian/files/modules +15 -0
  65. data/lib/templates/debian/files/ntp.conf +61 -0
  66. data/lib/templates/debian/files/pakiti_2.1.5-2_all.deb +0 -0
  67. data/lib/templates/debian/files/sshd_config +131 -0
  68. data/lib/templates/debian/scripts/debian_cloud_script.sh +80 -0
  69. data/lib/templates/docker/docker.cfg.erb +87 -0
  70. data/lib/templates/docker/docker.description +21 -0
  71. data/lib/templates/docker/files/10-ipv6.conf +5 -0
  72. data/lib/templates/docker/files/DEPOT-GPG-KEY.cfg +32 -0
  73. data/lib/templates/docker/files/RPM-GPG-KEY-CERIT-SC.cfg +30 -0
  74. data/lib/templates/docker/files/cloud.cfg +109 -0
  75. data/lib/templates/docker/files/depot.list +4 -0
  76. data/lib/templates/docker/files/depot_all.pref +6 -0
  77. data/lib/templates/docker/files/depot_check_mk.pref +5 -0
  78. data/lib/templates/docker/files/docker.list +1 -0
  79. data/lib/templates/docker/files/fail2ban.local +3 -0
  80. data/lib/templates/docker/files/grub +34 -0
  81. data/lib/templates/docker/files/interfaces +15 -0
  82. data/lib/templates/docker/files/iptables-multiport.local +6 -0
  83. data/lib/templates/docker/files/jail.local +17 -0
  84. data/lib/templates/docker/files/krb5.conf +181 -0
  85. data/lib/templates/docker/files/meta-misc.list +2 -0
  86. data/lib/templates/docker/files/modules +15 -0
  87. data/lib/templates/docker/files/ntp.conf +61 -0
  88. data/lib/templates/docker/files/pakiti_2.1.5-2_all.deb +0 -0
  89. data/lib/templates/docker/files/sshd_config +131 -0
  90. data/lib/templates/docker/files/ttyS0.conf +11 -0
  91. data/lib/templates/docker/scripts/init.sh +65 -0
  92. data/lib/templates/packer.erb +93 -0
  93. data/lib/templates/scientificlinux/files/10-ipv6.conf +5 -0
  94. data/lib/templates/scientificlinux/files/check-mk-agent-meta-checks-2.0-1.noarch.rpm +0 -0
  95. data/lib/templates/scientificlinux/files/check-mk-agent-meta-key-1.0-1.noarch.rpm +0 -0
  96. data/lib/templates/scientificlinux/files/cloud.cfg +101 -0
  97. data/lib/templates/scientificlinux/files/fail2ban.local +3 -0
  98. data/lib/templates/scientificlinux/files/getty@ttyS0.service +47 -0
  99. data/lib/templates/scientificlinux/files/grub +10 -0
  100. data/lib/templates/scientificlinux/files/iptables-multiport.local +6 -0
  101. data/lib/templates/scientificlinux/files/jail.local +17 -0
  102. data/lib/templates/scientificlinux/files/krb5.conf +181 -0
  103. data/lib/templates/scientificlinux/files/ntp.conf +61 -0
  104. data/lib/templates/scientificlinux/files/pakiti-2.1.5-1.noarch.rpm +0 -0
  105. data/lib/templates/scientificlinux/files/sshd_config +150 -0
  106. data/lib/templates/scientificlinux/files/xen-domU.conf +1 -0
  107. data/lib/templates/scientificlinux/scientificlinux.cfg.erb +57 -0
  108. data/lib/templates/scientificlinux/scientificlinux.description +19 -0
  109. data/lib/templates/scientificlinux/scripts/init.sh +92 -0
  110. data/lib/templates/ubuntu/files/10-ipv6.conf +5 -0
  111. data/lib/templates/ubuntu/files/DEPOT-GPG-KEY.cfg +32 -0
  112. data/lib/templates/ubuntu/files/RPM-GPG-KEY-CERIT-SC.cfg +30 -0
  113. data/lib/templates/ubuntu/files/cloud.cfg +109 -0
  114. data/lib/templates/ubuntu/files/depot.list +4 -0
  115. data/lib/templates/ubuntu/files/depot_all.pref +6 -0
  116. data/lib/templates/ubuntu/files/depot_check_mk.pref +5 -0
  117. data/lib/templates/ubuntu/files/fail2ban.local +3 -0
  118. data/lib/templates/ubuntu/files/grub +34 -0
  119. data/lib/templates/ubuntu/files/interfaces +15 -0
  120. data/lib/templates/ubuntu/files/iptables-multiport.local +6 -0
  121. data/lib/templates/ubuntu/files/jail.local +17 -0
  122. data/lib/templates/ubuntu/files/krb5.conf +181 -0
  123. data/lib/templates/ubuntu/files/meta-misc.list +2 -0
  124. data/lib/templates/ubuntu/files/modules +15 -0
  125. data/lib/templates/ubuntu/files/ntp.conf +61 -0
  126. data/lib/templates/ubuntu/files/pakiti_2.1.5-2_all.deb +0 -0
  127. data/lib/templates/ubuntu/files/sshd_config +131 -0
  128. data/lib/templates/ubuntu/files/ttyS0.conf +11 -0
  129. data/lib/templates/ubuntu/scripts/init.sh +54 -0
  130. data/lib/templates/ubuntu/ubuntu.cfg.erb +87 -0
  131. data/lib/templates/ubuntu/ubuntu.description +21 -0
  132. data/schema/distribution_descriptor.schema +241 -0
  133. metadata +374 -0
metadata ADDED
@@ -0,0 +1,374 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: comfy
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.2.0
5
+ platform: ruby
6
+ authors:
7
+ - Michal Kimle
8
+ - "Ľubomír Košarišťan"
9
+ autorequire:
10
+ bindir: bin
11
+ cert_chain: []
12
+ date: 2016-01-10 00:00:00.000000000 Z
13
+ dependencies:
14
+ - !ruby/object:Gem::Dependency
15
+ name: bundler
16
+ requirement: !ruby/object:Gem::Requirement
17
+ requirements:
18
+ - - "~>"
19
+ - !ruby/object:Gem::Version
20
+ version: '1.7'
21
+ type: :development
22
+ prerelease: false
23
+ version_requirements: !ruby/object:Gem::Requirement
24
+ requirements:
25
+ - - "~>"
26
+ - !ruby/object:Gem::Version
27
+ version: '1.7'
28
+ - !ruby/object:Gem::Dependency
29
+ name: rake
30
+ requirement: !ruby/object:Gem::Requirement
31
+ requirements:
32
+ - - "~>"
33
+ - !ruby/object:Gem::Version
34
+ version: '10.0'
35
+ type: :development
36
+ prerelease: false
37
+ version_requirements: !ruby/object:Gem::Requirement
38
+ requirements:
39
+ - - "~>"
40
+ - !ruby/object:Gem::Version
41
+ version: '10.0'
42
+ - !ruby/object:Gem::Dependency
43
+ name: rspec
44
+ requirement: !ruby/object:Gem::Requirement
45
+ requirements:
46
+ - - "~>"
47
+ - !ruby/object:Gem::Version
48
+ version: 3.0.0
49
+ type: :development
50
+ prerelease: false
51
+ version_requirements: !ruby/object:Gem::Requirement
52
+ requirements:
53
+ - - "~>"
54
+ - !ruby/object:Gem::Version
55
+ version: 3.0.0
56
+ - !ruby/object:Gem::Dependency
57
+ name: simplecov
58
+ requirement: !ruby/object:Gem::Requirement
59
+ requirements:
60
+ - - "~>"
61
+ - !ruby/object:Gem::Version
62
+ version: 0.9.0
63
+ type: :development
64
+ prerelease: false
65
+ version_requirements: !ruby/object:Gem::Requirement
66
+ requirements:
67
+ - - "~>"
68
+ - !ruby/object:Gem::Version
69
+ version: 0.9.0
70
+ - !ruby/object:Gem::Dependency
71
+ name: rubygems-tasks
72
+ requirement: !ruby/object:Gem::Requirement
73
+ requirements:
74
+ - - "~>"
75
+ - !ruby/object:Gem::Version
76
+ version: 0.2.4
77
+ type: :development
78
+ prerelease: false
79
+ version_requirements: !ruby/object:Gem::Requirement
80
+ requirements:
81
+ - - "~>"
82
+ - !ruby/object:Gem::Version
83
+ version: 0.2.4
84
+ - !ruby/object:Gem::Dependency
85
+ name: rubocop
86
+ requirement: !ruby/object:Gem::Requirement
87
+ requirements:
88
+ - - "~>"
89
+ - !ruby/object:Gem::Version
90
+ version: '0.32'
91
+ type: :development
92
+ prerelease: false
93
+ version_requirements: !ruby/object:Gem::Requirement
94
+ requirements:
95
+ - - "~>"
96
+ - !ruby/object:Gem::Version
97
+ version: '0.32'
98
+ - !ruby/object:Gem::Dependency
99
+ name: syslogger
100
+ requirement: !ruby/object:Gem::Requirement
101
+ requirements:
102
+ - - "~>"
103
+ - !ruby/object:Gem::Version
104
+ version: 1.6.0
105
+ type: :runtime
106
+ prerelease: false
107
+ version_requirements: !ruby/object:Gem::Requirement
108
+ requirements:
109
+ - - "~>"
110
+ - !ruby/object:Gem::Version
111
+ version: 1.6.0
112
+ - !ruby/object:Gem::Dependency
113
+ name: settingslogic
114
+ requirement: !ruby/object:Gem::Requirement
115
+ requirements:
116
+ - - "~>"
117
+ - !ruby/object:Gem::Version
118
+ version: 2.0.9
119
+ type: :runtime
120
+ prerelease: false
121
+ version_requirements: !ruby/object:Gem::Requirement
122
+ requirements:
123
+ - - "~>"
124
+ - !ruby/object:Gem::Version
125
+ version: 2.0.9
126
+ - !ruby/object:Gem::Dependency
127
+ name: mixlib-shellout
128
+ requirement: !ruby/object:Gem::Requirement
129
+ requirements:
130
+ - - "~>"
131
+ - !ruby/object:Gem::Version
132
+ version: 2.0.1
133
+ type: :runtime
134
+ prerelease: false
135
+ version_requirements: !ruby/object:Gem::Requirement
136
+ requirements:
137
+ - - "~>"
138
+ - !ruby/object:Gem::Version
139
+ version: 2.0.1
140
+ - !ruby/object:Gem::Dependency
141
+ name: json-schema
142
+ requirement: !ruby/object:Gem::Requirement
143
+ requirements:
144
+ - - "~>"
145
+ - !ruby/object:Gem::Version
146
+ version: '2.5'
147
+ type: :runtime
148
+ prerelease: false
149
+ version_requirements: !ruby/object:Gem::Requirement
150
+ requirements:
151
+ - - "~>"
152
+ - !ruby/object:Gem::Version
153
+ version: '2.5'
154
+ - !ruby/object:Gem::Dependency
155
+ name: activesupport
156
+ requirement: !ruby/object:Gem::Requirement
157
+ requirements:
158
+ - - "~>"
159
+ - !ruby/object:Gem::Version
160
+ version: '4.2'
161
+ type: :runtime
162
+ prerelease: false
163
+ version_requirements: !ruby/object:Gem::Requirement
164
+ requirements:
165
+ - - "~>"
166
+ - !ruby/object:Gem::Version
167
+ version: '4.2'
168
+ - !ruby/object:Gem::Dependency
169
+ name: cloud-appliance-descriptor
170
+ requirement: !ruby/object:Gem::Requirement
171
+ requirements:
172
+ - - "~>"
173
+ - !ruby/object:Gem::Version
174
+ version: '0.2'
175
+ type: :runtime
176
+ prerelease: false
177
+ version_requirements: !ruby/object:Gem::Requirement
178
+ requirements:
179
+ - - "~>"
180
+ - !ruby/object:Gem::Version
181
+ version: '0.2'
182
+ - !ruby/object:Gem::Dependency
183
+ name: thor
184
+ requirement: !ruby/object:Gem::Requirement
185
+ requirements:
186
+ - - "~>"
187
+ - !ruby/object:Gem::Version
188
+ version: '0.19'
189
+ type: :runtime
190
+ prerelease: false
191
+ version_requirements: !ruby/object:Gem::Requirement
192
+ requirements:
193
+ - - "~>"
194
+ - !ruby/object:Gem::Version
195
+ version: '0.19'
196
+ - !ruby/object:Gem::Dependency
197
+ name: yell
198
+ requirement: !ruby/object:Gem::Requirement
199
+ requirements:
200
+ - - "~>"
201
+ - !ruby/object:Gem::Version
202
+ version: '2.0'
203
+ type: :runtime
204
+ prerelease: false
205
+ version_requirements: !ruby/object:Gem::Requirement
206
+ requirements:
207
+ - - "~>"
208
+ - !ruby/object:Gem::Version
209
+ version: '2.0'
210
+ description: Tool for building virtual machine images from scratch.
211
+ email:
212
+ - kimle.michal@gmail.com
213
+ - kosoburak@gmail.com
214
+ executables:
215
+ - comfy
216
+ extensions: []
217
+ extra_rdoc_files: []
218
+ files:
219
+ - ".gitignore"
220
+ - ".rspec"
221
+ - ".travis.yml"
222
+ - Gemfile
223
+ - LICENSE
224
+ - README.md
225
+ - Rakefile
226
+ - bin/comfy
227
+ - comfy.gemspec
228
+ - config/comfy.yml
229
+ - lib/comfy.rb
230
+ - lib/comfy/command_executioner.rb
231
+ - lib/comfy/creator.rb
232
+ - lib/comfy/errors.rb
233
+ - lib/comfy/errors/invalid_distribution_version_error.rb
234
+ - lib/comfy/errors/no_such_distribution_version_error.rb
235
+ - lib/comfy/errors/packer_error.rb
236
+ - lib/comfy/errors/packer_execution_error.rb
237
+ - lib/comfy/errors/packer_validation_error.rb
238
+ - lib/comfy/extensions/yell.rb
239
+ - lib/comfy/settings.rb
240
+ - lib/comfy/templater.rb
241
+ - lib/comfy/version.rb
242
+ - lib/templates/centos/centos.cfg.erb
243
+ - lib/templates/centos/centos.description
244
+ - lib/templates/centos/files/10-ipv6.conf
245
+ - lib/templates/centos/files/check-mk-agent-meta-checks-2.0-1.noarch.rpm
246
+ - lib/templates/centos/files/check-mk-agent-meta-key-1.0-1.noarch.rpm
247
+ - lib/templates/centos/files/cloud.cfg
248
+ - lib/templates/centos/files/fail2ban.local
249
+ - lib/templates/centos/files/getty@ttyS0.service
250
+ - lib/templates/centos/files/grub
251
+ - lib/templates/centos/files/iptables-multiport.local
252
+ - lib/templates/centos/files/jail.local
253
+ - lib/templates/centos/files/krb5.conf
254
+ - lib/templates/centos/files/ntp.conf
255
+ - lib/templates/centos/files/pakiti-2.1.5-1.noarch.rpm
256
+ - lib/templates/centos/files/sshd_config
257
+ - lib/templates/centos/files/xen-domU.conf
258
+ - lib/templates/centos/scripts/init.sh
259
+ - lib/templates/debian/debian.cfg.erb
260
+ - lib/templates/debian/debian.description
261
+ - lib/templates/debian/files/.bashrc
262
+ - lib/templates/debian/files/.gitconfig
263
+ - lib/templates/debian/files/10-ipv6.conf
264
+ - lib/templates/debian/files/DEPOT-GPG-KEY.cfg
265
+ - lib/templates/debian/files/RPM-GPG-KEY-CERIT-SC.cfg
266
+ - lib/templates/debian/files/backports.list
267
+ - lib/templates/debian/files/cerit-cloudinit.list
268
+ - lib/templates/debian/files/cloud.cfg
269
+ - lib/templates/debian/files/depot.list
270
+ - lib/templates/debian/files/depot_all.pref
271
+ - lib/templates/debian/files/depot_check_mk.pref
272
+ - lib/templates/debian/files/fail2ban.local
273
+ - lib/templates/debian/files/getty@ttyS0.service
274
+ - lib/templates/debian/files/grub
275
+ - lib/templates/debian/files/inittab
276
+ - lib/templates/debian/files/interfaces
277
+ - lib/templates/debian/files/iptables-multiport.local
278
+ - lib/templates/debian/files/jail.local
279
+ - lib/templates/debian/files/krb5.conf
280
+ - lib/templates/debian/files/meta-misc.list
281
+ - lib/templates/debian/files/modules
282
+ - lib/templates/debian/files/ntp.conf
283
+ - lib/templates/debian/files/pakiti_2.1.5-2_all.deb
284
+ - lib/templates/debian/files/sshd_config
285
+ - lib/templates/debian/scripts/debian_cloud_script.sh
286
+ - lib/templates/docker/docker.cfg.erb
287
+ - lib/templates/docker/docker.description
288
+ - lib/templates/docker/files/10-ipv6.conf
289
+ - lib/templates/docker/files/DEPOT-GPG-KEY.cfg
290
+ - lib/templates/docker/files/RPM-GPG-KEY-CERIT-SC.cfg
291
+ - lib/templates/docker/files/cloud.cfg
292
+ - lib/templates/docker/files/depot.list
293
+ - lib/templates/docker/files/depot_all.pref
294
+ - lib/templates/docker/files/depot_check_mk.pref
295
+ - lib/templates/docker/files/docker.list
296
+ - lib/templates/docker/files/fail2ban.local
297
+ - lib/templates/docker/files/grub
298
+ - lib/templates/docker/files/interfaces
299
+ - lib/templates/docker/files/iptables-multiport.local
300
+ - lib/templates/docker/files/jail.local
301
+ - lib/templates/docker/files/krb5.conf
302
+ - lib/templates/docker/files/meta-misc.list
303
+ - lib/templates/docker/files/modules
304
+ - lib/templates/docker/files/ntp.conf
305
+ - lib/templates/docker/files/pakiti_2.1.5-2_all.deb
306
+ - lib/templates/docker/files/sshd_config
307
+ - lib/templates/docker/files/ttyS0.conf
308
+ - lib/templates/docker/scripts/init.sh
309
+ - lib/templates/packer.erb
310
+ - lib/templates/scientificlinux/files/10-ipv6.conf
311
+ - lib/templates/scientificlinux/files/check-mk-agent-meta-checks-2.0-1.noarch.rpm
312
+ - lib/templates/scientificlinux/files/check-mk-agent-meta-key-1.0-1.noarch.rpm
313
+ - lib/templates/scientificlinux/files/cloud.cfg
314
+ - lib/templates/scientificlinux/files/fail2ban.local
315
+ - lib/templates/scientificlinux/files/getty@ttyS0.service
316
+ - lib/templates/scientificlinux/files/grub
317
+ - lib/templates/scientificlinux/files/iptables-multiport.local
318
+ - lib/templates/scientificlinux/files/jail.local
319
+ - lib/templates/scientificlinux/files/krb5.conf
320
+ - lib/templates/scientificlinux/files/ntp.conf
321
+ - lib/templates/scientificlinux/files/pakiti-2.1.5-1.noarch.rpm
322
+ - lib/templates/scientificlinux/files/sshd_config
323
+ - lib/templates/scientificlinux/files/xen-domU.conf
324
+ - lib/templates/scientificlinux/scientificlinux.cfg.erb
325
+ - lib/templates/scientificlinux/scientificlinux.description
326
+ - lib/templates/scientificlinux/scripts/init.sh
327
+ - lib/templates/ubuntu/files/10-ipv6.conf
328
+ - lib/templates/ubuntu/files/DEPOT-GPG-KEY.cfg
329
+ - lib/templates/ubuntu/files/RPM-GPG-KEY-CERIT-SC.cfg
330
+ - lib/templates/ubuntu/files/cloud.cfg
331
+ - lib/templates/ubuntu/files/depot.list
332
+ - lib/templates/ubuntu/files/depot_all.pref
333
+ - lib/templates/ubuntu/files/depot_check_mk.pref
334
+ - lib/templates/ubuntu/files/fail2ban.local
335
+ - lib/templates/ubuntu/files/grub
336
+ - lib/templates/ubuntu/files/interfaces
337
+ - lib/templates/ubuntu/files/iptables-multiport.local
338
+ - lib/templates/ubuntu/files/jail.local
339
+ - lib/templates/ubuntu/files/krb5.conf
340
+ - lib/templates/ubuntu/files/meta-misc.list
341
+ - lib/templates/ubuntu/files/modules
342
+ - lib/templates/ubuntu/files/ntp.conf
343
+ - lib/templates/ubuntu/files/pakiti_2.1.5-2_all.deb
344
+ - lib/templates/ubuntu/files/sshd_config
345
+ - lib/templates/ubuntu/files/ttyS0.conf
346
+ - lib/templates/ubuntu/scripts/init.sh
347
+ - lib/templates/ubuntu/ubuntu.cfg.erb
348
+ - lib/templates/ubuntu/ubuntu.description
349
+ - schema/distribution_descriptor.schema
350
+ homepage: https://github.com/Misenko/comfy
351
+ licenses:
352
+ - Apache License 2.0
353
+ metadata: {}
354
+ post_install_message:
355
+ rdoc_options: []
356
+ require_paths:
357
+ - lib
358
+ required_ruby_version: !ruby/object:Gem::Requirement
359
+ requirements:
360
+ - - ">="
361
+ - !ruby/object:Gem::Version
362
+ version: '0'
363
+ required_rubygems_version: !ruby/object:Gem::Requirement
364
+ requirements:
365
+ - - ">="
366
+ - !ruby/object:Gem::Version
367
+ version: '0'
368
+ requirements: []
369
+ rubyforge_project:
370
+ rubygems_version: 2.4.8
371
+ signing_key:
372
+ specification_version: 4
373
+ summary: Tool for building virtual machine images from scratch.
374
+ test_files: []