veewee 0.3.12 → 0.4.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (785) hide show
  1. checksums.yaml +15 -0
  2. data/.gitattributes +2 -0
  3. data/.gitignore +2 -0
  4. data/.rvmrc +1 -1
  5. data/.travis.yml +1 -2
  6. data/Gemfile +1 -1
  7. data/bin/veewee +1 -0
  8. data/doc/basics.md +17 -11
  9. data/doc/build_hooks.md +1 -0
  10. data/doc/customize.md +53 -0
  11. data/doc/installation.md +5 -0
  12. data/doc/requirements.md +1 -1
  13. data/doc/vagrant.md +2 -2
  14. data/lib/veewee/command/fusion.rb +3 -0
  15. data/lib/veewee/command/kvm.rb +3 -0
  16. data/lib/veewee/command/parallels.rb +3 -0
  17. data/lib/veewee/command/vbox.rb +3 -0
  18. data/lib/veewee/config/ostypes.yml +17 -3
  19. data/lib/veewee/definition.rb +2 -2
  20. data/lib/veewee/definitions.rb +3 -3
  21. data/lib/veewee/provider/core/box/build.rb +48 -24
  22. data/lib/veewee/provider/core/box/ssh.rb +6 -6
  23. data/lib/veewee/provider/core/box/wincp.rb +19 -13
  24. data/lib/veewee/provider/core/helper/iso.rb +10 -9
  25. data/lib/veewee/provider/core/helper/ssh.rb +60 -7
  26. data/lib/veewee/provider/core/helper/web.rb +14 -15
  27. data/lib/veewee/provider/kvm/provider.rb +1 -1
  28. data/lib/veewee/provider/virtualbox/box.rb +10 -9
  29. data/lib/veewee/provider/virtualbox/box/export_vagrant.rb +1 -1
  30. data/lib/veewee/provider/virtualbox/box/helper/create.rb +2 -2
  31. data/lib/veewee/provider/vmfusion/box/template.vmx.erb +1 -1
  32. data/lib/veewee/version.rb +1 -1
  33. data/templates/.ubuntu/base.sh +2 -0
  34. data/templates/.ubuntu/chef.sh +2 -0
  35. data/templates/.ubuntu/cleanup.sh +7 -0
  36. data/templates/.ubuntu/puppet.sh +2 -0
  37. data/templates/.ubuntu/ruby.sh +2 -0
  38. data/templates/.ubuntu/vagrant.sh +2 -0
  39. data/templates/.ubuntu/virtualbox.sh +2 -0
  40. data/templates/.ubuntu/zerodisk.sh +2 -0
  41. data/templates/CentOS-5.10-i386-netboot/base.sh +8 -0
  42. data/templates/CentOS-5.10-i386-netboot/chef.sh +3 -0
  43. data/templates/CentOS-5.10-i386-netboot/cleanup.sh +11 -0
  44. data/templates/CentOS-5.10-i386-netboot/definition.rb +42 -0
  45. data/templates/CentOS-5.10-i386-netboot/ks.cfg +27 -0
  46. data/templates/CentOS-5.10-i386-netboot/puppet.sh +17 -0
  47. data/templates/CentOS-5.10-i386-netboot/ruby.sh +41 -0
  48. data/templates/CentOS-5.10-i386-netboot/vagrant.sh +9 -0
  49. data/templates/CentOS-5.10-i386-netboot/virtualbox.sh +9 -0
  50. data/templates/CentOS-5.10-i386-netboot/zerodisk.sh +4 -0
  51. data/templates/CentOS-5.10-i386/base.sh +8 -0
  52. data/templates/CentOS-5.10-i386/chef.sh +3 -0
  53. data/templates/CentOS-5.10-i386/cleanup.sh +11 -0
  54. data/templates/CentOS-5.10-i386/definition.rb +42 -0
  55. data/templates/CentOS-5.10-i386/ks.cfg +27 -0
  56. data/templates/CentOS-5.10-i386/puppet.sh +17 -0
  57. data/templates/CentOS-5.10-i386/ruby.sh +41 -0
  58. data/templates/CentOS-5.10-i386/vagrant.sh +9 -0
  59. data/templates/CentOS-5.10-i386/virtualbox.sh +9 -0
  60. data/templates/CentOS-5.10-i386/zerodisk.sh +4 -0
  61. data/templates/CentOS-5.10-x86_64-netboot/base.sh +8 -0
  62. data/templates/CentOS-5.10-x86_64-netboot/chef.sh +3 -0
  63. data/templates/CentOS-5.10-x86_64-netboot/cleanup.sh +11 -0
  64. data/templates/CentOS-5.10-x86_64-netboot/definition.rb +42 -0
  65. data/templates/CentOS-5.10-x86_64-netboot/ks.cfg +27 -0
  66. data/templates/CentOS-5.10-x86_64-netboot/puppet.sh +17 -0
  67. data/templates/CentOS-5.10-x86_64-netboot/ruby.sh +41 -0
  68. data/templates/CentOS-5.10-x86_64-netboot/vagrant.sh +9 -0
  69. data/templates/CentOS-5.10-x86_64-netboot/virtualbox.sh +9 -0
  70. data/templates/CentOS-5.10-x86_64-netboot/zerodisk.sh +4 -0
  71. data/templates/CentOS-5.10-x86_64/base.sh +8 -0
  72. data/templates/CentOS-5.10-x86_64/chef.sh +3 -0
  73. data/templates/CentOS-5.10-x86_64/cleanup.sh +11 -0
  74. data/templates/CentOS-5.10-x86_64/definition.rb +42 -0
  75. data/templates/CentOS-5.10-x86_64/ks.cfg +27 -0
  76. data/templates/CentOS-5.10-x86_64/puppet.sh +17 -0
  77. data/templates/CentOS-5.10-x86_64/ruby.sh +41 -0
  78. data/templates/CentOS-5.10-x86_64/vagrant.sh +9 -0
  79. data/templates/CentOS-5.10-x86_64/virtualbox.sh +9 -0
  80. data/templates/CentOS-5.10-x86_64/zerodisk.sh +4 -0
  81. data/templates/CentOS-5.6-i386/ks.cfg +1 -1
  82. data/templates/CentOS-5.7-i386-netboot/ks.cfg +1 -1
  83. data/templates/CentOS-5.8-i386-netboot/ks.cfg +1 -1
  84. data/templates/CentOS-5.8-i386/ks.cfg +1 -1
  85. data/templates/CentOS-5.9-i386-netboot/base.sh +5 -2
  86. data/templates/CentOS-5.9-i386-netboot/chef.sh +1 -1
  87. data/templates/CentOS-5.9-i386-netboot/cleanup.sh +7 -3
  88. data/templates/CentOS-5.9-i386-netboot/definition.rb +2 -3
  89. data/templates/CentOS-5.9-i386-netboot/ks.cfg +8 -28
  90. data/templates/CentOS-5.9-i386-netboot/puppet.sh +0 -1
  91. data/templates/CentOS-5.9-i386-netboot/ruby.sh +40 -11
  92. data/templates/CentOS-5.9-i386-netboot/vagrant.sh +2 -11
  93. data/templates/CentOS-5.9-i386-netboot/virtualbox.sh +5 -4
  94. data/templates/CentOS-5.9-i386-netboot/zerodisk.sh +1 -0
  95. data/templates/CentOS-5.9-i386/base.sh +5 -2
  96. data/templates/CentOS-5.9-i386/chef.sh +1 -1
  97. data/templates/CentOS-5.9-i386/cleanup.sh +7 -3
  98. data/templates/CentOS-5.9-i386/definition.rb +2 -3
  99. data/templates/CentOS-5.9-i386/ks.cfg +8 -28
  100. data/templates/CentOS-5.9-i386/puppet.sh +0 -1
  101. data/templates/CentOS-5.9-i386/ruby.sh +40 -11
  102. data/templates/CentOS-5.9-i386/vagrant.sh +2 -11
  103. data/templates/CentOS-5.9-i386/virtualbox.sh +5 -4
  104. data/templates/CentOS-5.9-i386/zerodisk.sh +1 -0
  105. data/templates/CentOS-5.9-x86_64-netboot/base.sh +5 -2
  106. data/templates/CentOS-5.9-x86_64-netboot/chef.sh +1 -1
  107. data/templates/CentOS-5.9-x86_64-netboot/cleanup.sh +7 -3
  108. data/templates/CentOS-5.9-x86_64-netboot/definition.rb +2 -3
  109. data/templates/CentOS-5.9-x86_64-netboot/ks.cfg +8 -28
  110. data/templates/CentOS-5.9-x86_64-netboot/puppet.sh +0 -1
  111. data/templates/CentOS-5.9-x86_64-netboot/ruby.sh +40 -11
  112. data/templates/CentOS-5.9-x86_64-netboot/vagrant.sh +2 -11
  113. data/templates/CentOS-5.9-x86_64-netboot/virtualbox.sh +5 -4
  114. data/templates/CentOS-5.9-x86_64-netboot/zerodisk.sh +1 -0
  115. data/templates/CentOS-5.9-x86_64/base.sh +5 -2
  116. data/templates/CentOS-5.9-x86_64/chef.sh +1 -1
  117. data/templates/CentOS-5.9-x86_64/cleanup.sh +7 -3
  118. data/templates/CentOS-5.9-x86_64/definition.rb +4 -5
  119. data/templates/CentOS-5.9-x86_64/ks.cfg +7 -27
  120. data/templates/CentOS-5.9-x86_64/puppet.sh +0 -1
  121. data/templates/CentOS-5.9-x86_64/ruby.sh +40 -11
  122. data/templates/CentOS-5.9-x86_64/vagrant.sh +2 -11
  123. data/templates/CentOS-5.9-x86_64/virtualbox.sh +5 -4
  124. data/templates/CentOS-5.9-x86_64/zerodisk.sh +1 -0
  125. data/templates/CentOS-6.0-i386-netboot/chef.sh +1 -0
  126. data/templates/CentOS-6.0-i386/chef.sh +1 -0
  127. data/templates/CentOS-6.0-x86_64-minimal/chef.sh +1 -0
  128. data/templates/CentOS-6.0-x86_64-netboot/chef.sh +1 -0
  129. data/templates/CentOS-6.0-x86_64/chef.sh +1 -0
  130. data/templates/CentOS-6.1-x86_64-minimal/chef.sh +1 -0
  131. data/templates/CentOS-6.1-x86_64-netboot/chef.sh +1 -0
  132. data/templates/CentOS-6.2-i386-minimal/chef.sh +1 -0
  133. data/templates/CentOS-6.2-x86_64-minimal/chef.sh +1 -0
  134. data/templates/CentOS-6.2-x86_64-netboot/chef.sh +1 -0
  135. data/templates/CentOS-6.3-i386-minimal/chef.sh +1 -0
  136. data/templates/CentOS-6.3-i386-minimal/definition.rb +2 -3
  137. data/templates/CentOS-6.3-x86_64-minimal/chef.sh +1 -0
  138. data/templates/CentOS-6.3-x86_64-minimal/definition.rb +1 -1
  139. data/templates/CentOS-6.3-x86_64-netboot/chef.sh +1 -0
  140. data/templates/CentOS-6.3-x86_64-netboot/definition.rb +1 -1
  141. data/templates/CentOS-6.3-x86_64-reallyminimal/definition.rb +1 -1
  142. data/templates/CentOS-6.4-i386-minimal/chef.sh +3 -1
  143. data/templates/CentOS-6.4-i386-minimal/definition.rb +1 -1
  144. data/templates/CentOS-6.4-i386-minimal/vmfusion.sh +3 -0
  145. data/templates/CentOS-6.4-i386-netboot/chef.sh +1 -0
  146. data/templates/CentOS-6.4-i386-netboot/definition.rb +1 -1
  147. data/templates/CentOS-6.4-i386-netboot/ks.cfg +1 -1
  148. data/templates/CentOS-6.4-i386-netboot/vmfusion.sh +3 -0
  149. data/templates/CentOS-6.4-x86_64-minimal/chef.sh +3 -1
  150. data/templates/CentOS-6.4-x86_64-minimal/definition.rb +1 -1
  151. data/templates/CentOS-6.4-x86_64-minimal/vmfusion.sh +3 -0
  152. data/templates/CentOS-6.4-x86_64-netboot/chef.sh +1 -0
  153. data/templates/CentOS-6.4-x86_64-netboot/definition.rb +1 -1
  154. data/templates/CentOS-6.4-x86_64-netboot/ks.cfg +1 -1
  155. data/templates/CentOS-6.4-x86_64-netboot/vmfusion.sh +3 -0
  156. data/templates/CentOS-6.5-i386-minimal/base.sh +16 -0
  157. data/templates/CentOS-6.5-i386-minimal/chef.sh +4 -0
  158. data/templates/CentOS-6.5-i386-minimal/cleanup.sh +8 -0
  159. data/templates/CentOS-6.5-i386-minimal/definition.rb +38 -0
  160. data/templates/CentOS-6.5-i386-minimal/ks.cfg +37 -0
  161. data/templates/CentOS-6.5-i386-minimal/puppet.sh +18 -0
  162. data/templates/CentOS-6.5-i386-minimal/vagrant.sh +18 -0
  163. data/templates/CentOS-6.5-i386-minimal/virtualbox.sh +8 -0
  164. data/templates/CentOS-6.5-i386-minimal/vmfusion.sh +10 -0
  165. data/templates/CentOS-6.5-i386-minimal/zerodisk.sh +3 -0
  166. data/templates/CentOS-6.5-i386-netboot/base.sh +16 -0
  167. data/templates/CentOS-6.5-i386-netboot/cfengine.sh +69 -0
  168. data/templates/CentOS-6.5-i386-netboot/chef.sh +4 -0
  169. data/templates/CentOS-6.5-i386-netboot/cleanup.sh +8 -0
  170. data/templates/CentOS-6.5-i386-netboot/definition.rb +40 -0
  171. data/templates/CentOS-6.5-i386-netboot/ks.cfg +41 -0
  172. data/templates/CentOS-6.5-i386-netboot/puppet.sh +18 -0
  173. data/templates/CentOS-6.5-i386-netboot/ruby.sh +3 -0
  174. data/templates/CentOS-6.5-i386-netboot/vagrant.sh +18 -0
  175. data/templates/CentOS-6.5-i386-netboot/virtualbox.sh +8 -0
  176. data/templates/CentOS-6.5-i386-netboot/vmfusion.sh +10 -0
  177. data/templates/CentOS-6.5-i386-netboot/zerodisk.sh +3 -0
  178. data/templates/CentOS-6.5-x86_64-minimal/base.sh +16 -0
  179. data/templates/CentOS-6.5-x86_64-minimal/chef.sh +4 -0
  180. data/templates/CentOS-6.5-x86_64-minimal/cleanup.sh +8 -0
  181. data/templates/CentOS-6.5-x86_64-minimal/definition.rb +38 -0
  182. data/templates/CentOS-6.5-x86_64-minimal/ks.cfg +37 -0
  183. data/templates/CentOS-6.5-x86_64-minimal/puppet.sh +18 -0
  184. data/templates/CentOS-6.5-x86_64-minimal/vagrant.sh +18 -0
  185. data/templates/CentOS-6.5-x86_64-minimal/virtualbox.sh +8 -0
  186. data/templates/CentOS-6.5-x86_64-minimal/vmfusion.sh +10 -0
  187. data/templates/CentOS-6.5-x86_64-minimal/zerodisk.sh +3 -0
  188. data/templates/CentOS-6.5-x86_64-netboot/base.sh +16 -0
  189. data/templates/CentOS-6.5-x86_64-netboot/chef.sh +4 -0
  190. data/templates/CentOS-6.5-x86_64-netboot/cleanup.sh +8 -0
  191. data/templates/CentOS-6.5-x86_64-netboot/definition.rb +38 -0
  192. data/templates/CentOS-6.5-x86_64-netboot/ks.cfg +38 -0
  193. data/templates/CentOS-6.5-x86_64-netboot/puppet.sh +18 -0
  194. data/templates/CentOS-6.5-x86_64-netboot/vagrant.sh +18 -0
  195. data/templates/CentOS-6.5-x86_64-netboot/virtualbox.sh +8 -0
  196. data/templates/CentOS-6.5-x86_64-netboot/vmfusion.sh +10 -0
  197. data/templates/CentOS-6.5-x86_64-netboot/zerodisk.sh +3 -0
  198. data/templates/CentOS-7.0-1406-x86_64-netinstall/base.sh +16 -0
  199. data/templates/CentOS-7.0-1406-x86_64-netinstall/chef.sh +2 -0
  200. data/templates/CentOS-7.0-1406-x86_64-netinstall/cleanup.sh +7 -0
  201. data/templates/CentOS-7.0-1406-x86_64-netinstall/definition.rb +38 -0
  202. data/templates/CentOS-7.0-1406-x86_64-netinstall/ks.cfg +39 -0
  203. data/templates/CentOS-7.0-1406-x86_64-netinstall/puppet.sh +18 -0
  204. data/templates/CentOS-7.0-1406-x86_64-netinstall/vagrant.sh +18 -0
  205. data/templates/CentOS-7.0-1406-x86_64-netinstall/virtualbox.sh +8 -0
  206. data/templates/CentOS-7.0-1406-x86_64-netinstall/vmfusion.sh +10 -0
  207. data/templates/CentOS-7.0-1406-x86_64-netinstall/zerodisk.sh +3 -0
  208. data/templates/Debian-6.0.6-i386-netboot/definition.rb +1 -2
  209. data/templates/Debian-6.0.7-amd64-netboot/definition.rb +3 -1
  210. data/templates/Debian-6.0.7-i386-netboot/definition.rb +4 -3
  211. data/templates/Debian-6.0.8-amd64-netboot/base.sh +27 -0
  212. data/templates/Debian-6.0.8-amd64-netboot/chef.sh +2 -0
  213. data/templates/Debian-6.0.8-amd64-netboot/cleanup-virtualbox.sh +4 -0
  214. data/templates/Debian-6.0.8-amd64-netboot/cleanup.sh +17 -0
  215. data/templates/Debian-6.0.8-amd64-netboot/definition.rb +50 -0
  216. data/templates/Debian-6.0.8-amd64-netboot/preseed.cfg +315 -0
  217. data/templates/Debian-6.0.8-amd64-netboot/puppet.sh +7 -0
  218. data/templates/Debian-6.0.8-amd64-netboot/ruby.sh +10 -0
  219. data/templates/Debian-6.0.8-amd64-netboot/vagrant.sh +25 -0
  220. data/templates/Debian-6.0.8-amd64-netboot/virtualbox.sh +18 -0
  221. data/templates/Debian-6.0.8-amd64-netboot/vmfusion.sh +7 -0
  222. data/templates/Debian-6.0.8-amd64-netboot/zerodisk.sh +3 -0
  223. data/templates/Debian-6.0.8-i386-netboot/base.sh +26 -0
  224. data/templates/Debian-6.0.8-i386-netboot/chef.sh +2 -0
  225. data/templates/Debian-6.0.8-i386-netboot/cleanup-virtualbox.sh +4 -0
  226. data/templates/Debian-6.0.8-i386-netboot/cleanup.sh +18 -0
  227. data/templates/Debian-6.0.8-i386-netboot/definition.rb +58 -0
  228. data/templates/Debian-6.0.8-i386-netboot/preseed.cfg +315 -0
  229. data/templates/Debian-6.0.8-i386-netboot/puppet.sh +7 -0
  230. data/templates/Debian-6.0.8-i386-netboot/ruby.sh +10 -0
  231. data/templates/Debian-6.0.8-i386-netboot/vagrant.sh +25 -0
  232. data/templates/Debian-6.0.8-i386-netboot/virtualbox.sh +16 -0
  233. data/templates/Debian-6.0.8-i386-netboot/vmfusion.sh +7 -0
  234. data/templates/Debian-6.0.8-i386-netboot/zerodisk.sh +3 -0
  235. data/templates/Debian-6.0.9-amd64-netboot/base.sh +27 -0
  236. data/templates/Debian-6.0.9-amd64-netboot/chef.sh +2 -0
  237. data/templates/Debian-6.0.9-amd64-netboot/cleanup-virtualbox.sh +4 -0
  238. data/templates/Debian-6.0.9-amd64-netboot/cleanup.sh +17 -0
  239. data/templates/Debian-6.0.9-amd64-netboot/definition.rb +50 -0
  240. data/templates/Debian-6.0.9-amd64-netboot/preseed.cfg +315 -0
  241. data/templates/Debian-6.0.9-amd64-netboot/puppet.sh +7 -0
  242. data/templates/Debian-6.0.9-amd64-netboot/ruby.sh +10 -0
  243. data/templates/Debian-6.0.9-amd64-netboot/vagrant.sh +25 -0
  244. data/templates/Debian-6.0.9-amd64-netboot/virtualbox.sh +18 -0
  245. data/templates/Debian-6.0.9-amd64-netboot/vmfusion.sh +7 -0
  246. data/templates/Debian-6.0.9-amd64-netboot/zerodisk.sh +3 -0
  247. data/templates/Debian-6.0.9-i386-netboot/base.sh +27 -0
  248. data/templates/Debian-6.0.9-i386-netboot/chef.sh +2 -0
  249. data/templates/Debian-6.0.9-i386-netboot/cleanup-virtualbox.sh +4 -0
  250. data/templates/Debian-6.0.9-i386-netboot/cleanup.sh +17 -0
  251. data/templates/Debian-6.0.9-i386-netboot/definition.rb +50 -0
  252. data/templates/Debian-6.0.9-i386-netboot/preseed.cfg +315 -0
  253. data/templates/Debian-6.0.9-i386-netboot/puppet.sh +7 -0
  254. data/templates/Debian-6.0.9-i386-netboot/ruby.sh +10 -0
  255. data/templates/Debian-6.0.9-i386-netboot/vagrant.sh +25 -0
  256. data/templates/Debian-6.0.9-i386-netboot/virtualbox.sh +18 -0
  257. data/templates/Debian-6.0.9-i386-netboot/vmfusion.sh +7 -0
  258. data/templates/Debian-6.0.9-i386-netboot/zerodisk.sh +3 -0
  259. data/templates/Debian-7.0-amd64-netboot/base.sh +1 -0
  260. data/templates/Debian-7.0-amd64-netboot/definition.rb +1 -0
  261. data/templates/Debian-7.0-amd64-netboot/preseed.cfg +1 -1
  262. data/templates/Debian-7.0-amd64-netboot/systemd.sh +22 -0
  263. data/templates/Debian-7.0-i386-netboot/base.sh +1 -0
  264. data/templates/Debian-7.0-i386-netboot/definition.rb +1 -0
  265. data/templates/Debian-7.0-i386-netboot/systemd.sh +22 -0
  266. data/templates/Debian-7.1.0-amd64-netboot/base.sh +1 -0
  267. data/templates/Debian-7.1.0-amd64-netboot/definition.rb +4 -1
  268. data/templates/Debian-7.1.0-amd64-netboot/preseed.cfg +1 -1
  269. data/templates/Debian-7.1.0-amd64-netboot/systemd.sh +22 -0
  270. data/templates/Debian-7.1.0-i386-netboot/base.sh +1 -0
  271. data/templates/Debian-7.1.0-i386-netboot/definition.rb +4 -1
  272. data/templates/Debian-7.1.0-i386-netboot/systemd.sh +22 -0
  273. data/templates/Debian-7.2.0-amd64-netboot/base.sh +1 -0
  274. data/templates/Debian-7.2.0-amd64-netboot/definition.rb +4 -1
  275. data/templates/Debian-7.2.0-amd64-netboot/preseed.cfg +1 -1
  276. data/templates/Debian-7.2.0-amd64-netboot/systemd.sh +22 -0
  277. data/templates/Debian-7.2.0-i386-netboot/base.sh +1 -0
  278. data/templates/Debian-7.2.0-i386-netboot/definition.rb +4 -1
  279. data/templates/Debian-7.2.0-i386-netboot/systemd.sh +22 -0
  280. data/templates/Debian-7.3.0-amd64-netboot/base.sh +26 -0
  281. data/templates/Debian-7.3.0-amd64-netboot/chef.sh +49 -0
  282. data/templates/Debian-7.3.0-amd64-netboot/cleanup-virtualbox.sh +4 -0
  283. data/templates/Debian-7.3.0-amd64-netboot/cleanup.sh +18 -0
  284. data/templates/Debian-7.3.0-amd64-netboot/definition.rb +56 -0
  285. data/templates/Debian-7.3.0-amd64-netboot/preseed.cfg +313 -0
  286. data/templates/Debian-7.3.0-amd64-netboot/puppet.sh +7 -0
  287. data/templates/Debian-7.3.0-amd64-netboot/ruby.sh +10 -0
  288. data/templates/Debian-7.3.0-amd64-netboot/systemd.sh +22 -0
  289. data/templates/Debian-7.3.0-amd64-netboot/vagrant.sh +21 -0
  290. data/templates/Debian-7.3.0-amd64-netboot/virtualbox.sh +34 -0
  291. data/templates/Debian-7.3.0-amd64-netboot/vmfusion.sh +7 -0
  292. data/templates/Debian-7.3.0-amd64-netboot/zerodisk.sh +3 -0
  293. data/templates/Debian-7.3.0-i386-netboot/base.sh +27 -0
  294. data/templates/Debian-7.3.0-i386-netboot/chef.sh +2 -0
  295. data/templates/Debian-7.3.0-i386-netboot/cleanup-virtualbox.sh +4 -0
  296. data/templates/Debian-7.3.0-i386-netboot/cleanup.sh +17 -0
  297. data/templates/Debian-7.3.0-i386-netboot/definition.rb +54 -0
  298. data/templates/Debian-7.3.0-i386-netboot/preseed.cfg +315 -0
  299. data/templates/Debian-7.3.0-i386-netboot/puppet.sh +7 -0
  300. data/templates/Debian-7.3.0-i386-netboot/ruby.sh +10 -0
  301. data/templates/Debian-7.3.0-i386-netboot/systemd.sh +22 -0
  302. data/templates/Debian-7.3.0-i386-netboot/vagrant.sh +23 -0
  303. data/templates/Debian-7.3.0-i386-netboot/virtualbox.sh +34 -0
  304. data/templates/Debian-7.3.0-i386-netboot/vmfusion.sh +7 -0
  305. data/templates/Debian-7.3.0-i386-netboot/zerodisk.sh +3 -0
  306. data/templates/Debian-7.4.0-amd64-netboot/base.sh +26 -0
  307. data/templates/Debian-7.4.0-amd64-netboot/chef.sh +49 -0
  308. data/templates/Debian-7.4.0-amd64-netboot/cleanup.sh +18 -0
  309. data/templates/Debian-7.4.0-amd64-netboot/definition.rb +55 -0
  310. data/templates/Debian-7.4.0-amd64-netboot/preseed.cfg +313 -0
  311. data/templates/Debian-7.4.0-amd64-netboot/puppet.sh +7 -0
  312. data/templates/Debian-7.4.0-amd64-netboot/ruby.sh +10 -0
  313. data/templates/Debian-7.4.0-amd64-netboot/systemd.sh +22 -0
  314. data/templates/Debian-7.4.0-amd64-netboot/vagrant.sh +21 -0
  315. data/templates/Debian-7.4.0-amd64-netboot/virtualbox.sh +35 -0
  316. data/templates/Debian-7.4.0-amd64-netboot/vmfusion.sh +7 -0
  317. data/templates/Debian-7.4.0-amd64-netboot/zerodisk.sh +3 -0
  318. data/templates/Debian-7.4.0-i386-netboot/base.sh +27 -0
  319. data/templates/Debian-7.4.0-i386-netboot/chef.sh +2 -0
  320. data/templates/Debian-7.4.0-i386-netboot/cleanup.sh +17 -0
  321. data/templates/Debian-7.4.0-i386-netboot/definition.rb +53 -0
  322. data/templates/Debian-7.4.0-i386-netboot/preseed.cfg +315 -0
  323. data/templates/Debian-7.4.0-i386-netboot/puppet.sh +7 -0
  324. data/templates/Debian-7.4.0-i386-netboot/ruby.sh +10 -0
  325. data/templates/Debian-7.4.0-i386-netboot/systemd.sh +22 -0
  326. data/templates/Debian-7.4.0-i386-netboot/vagrant.sh +23 -0
  327. data/templates/Debian-7.4.0-i386-netboot/virtualbox.sh +36 -0
  328. data/templates/Debian-7.4.0-i386-netboot/vmfusion.sh +7 -0
  329. data/templates/Debian-7.4.0-i386-netboot/zerodisk.sh +3 -0
  330. data/templates/Debian-7.5.0-amd64-netboot/base.sh +25 -0
  331. data/templates/Debian-7.5.0-amd64-netboot/chef.sh +49 -0
  332. data/templates/Debian-7.5.0-amd64-netboot/cleanup.sh +18 -0
  333. data/templates/Debian-7.5.0-amd64-netboot/definition.rb +55 -0
  334. data/templates/Debian-7.5.0-amd64-netboot/preseed.cfg +313 -0
  335. data/templates/Debian-7.5.0-amd64-netboot/puppet.sh +7 -0
  336. data/templates/Debian-7.5.0-amd64-netboot/ruby.sh +10 -0
  337. data/templates/Debian-7.5.0-amd64-netboot/systemd.sh +22 -0
  338. data/templates/Debian-7.5.0-amd64-netboot/vagrant.sh +21 -0
  339. data/templates/Debian-7.5.0-amd64-netboot/virtualbox.sh +37 -0
  340. data/templates/Debian-7.5.0-amd64-netboot/vmfusion.sh +7 -0
  341. data/templates/Debian-7.5.0-amd64-netboot/zerodisk.sh +3 -0
  342. data/templates/Debian-7.5.0-i386-netboot/base.sh +26 -0
  343. data/templates/Debian-7.5.0-i386-netboot/chef.sh +2 -0
  344. data/templates/Debian-7.5.0-i386-netboot/cleanup.sh +17 -0
  345. data/templates/Debian-7.5.0-i386-netboot/definition.rb +51 -0
  346. data/templates/Debian-7.5.0-i386-netboot/preseed.cfg +315 -0
  347. data/templates/Debian-7.5.0-i386-netboot/puppet.sh +7 -0
  348. data/templates/Debian-7.5.0-i386-netboot/ruby.sh +10 -0
  349. data/templates/Debian-7.5.0-i386-netboot/systemd.sh +22 -0
  350. data/templates/Debian-7.5.0-i386-netboot/vagrant.sh +23 -0
  351. data/templates/Debian-7.5.0-i386-netboot/virtualbox.sh +38 -0
  352. data/templates/Debian-7.5.0-i386-netboot/vmfusion.sh +7 -0
  353. data/templates/Debian-7.5.0-i386-netboot/zerodisk.sh +3 -0
  354. data/templates/Debian-7.6.0-amd64-netboot/base.sh +25 -0
  355. data/templates/Debian-7.6.0-amd64-netboot/chef.sh +49 -0
  356. data/templates/Debian-7.6.0-amd64-netboot/cleanup.sh +18 -0
  357. data/templates/Debian-7.6.0-amd64-netboot/definition.rb +52 -0
  358. data/templates/Debian-7.6.0-amd64-netboot/preseed.cfg +313 -0
  359. data/templates/Debian-7.6.0-amd64-netboot/puppet.sh +7 -0
  360. data/templates/Debian-7.6.0-amd64-netboot/ruby.sh +10 -0
  361. data/templates/Debian-7.6.0-amd64-netboot/vagrant.sh +21 -0
  362. data/templates/Debian-7.6.0-amd64-netboot/virtualbox.sh +37 -0
  363. data/templates/Debian-7.6.0-amd64-netboot/vmfusion.sh +7 -0
  364. data/templates/Debian-7.6.0-amd64-netboot/zerodisk.sh +3 -0
  365. data/templates/Debian-7.6.0-i386-netboot/base.sh +26 -0
  366. data/templates/Debian-7.6.0-i386-netboot/chef.sh +2 -0
  367. data/templates/Debian-7.6.0-i386-netboot/cleanup.sh +17 -0
  368. data/templates/Debian-7.6.0-i386-netboot/definition.rb +50 -0
  369. data/templates/Debian-7.6.0-i386-netboot/preseed.cfg +315 -0
  370. data/templates/Debian-7.6.0-i386-netboot/puppet.sh +7 -0
  371. data/templates/Debian-7.6.0-i386-netboot/ruby.sh +10 -0
  372. data/templates/Debian-7.6.0-i386-netboot/vagrant.sh +23 -0
  373. data/templates/Debian-7.6.0-i386-netboot/virtualbox.sh +38 -0
  374. data/templates/Debian-7.6.0-i386-netboot/vmfusion.sh +7 -0
  375. data/templates/Debian-7.6.0-i386-netboot/zerodisk.sh +3 -0
  376. data/templates/Fedora-14-amd64-netboot/definition.rb +1 -1
  377. data/templates/Fedora-14-amd64/definition.rb +1 -1
  378. data/templates/Fedora-14-i386-netboot/definition.rb +1 -1
  379. data/templates/Fedora-14-i386/definition.rb +1 -1
  380. data/templates/Fedora-15-i386-netboot/definition.rb +1 -1
  381. data/templates/Fedora-15-i386/definition.rb +1 -1
  382. data/templates/Fedora-15-x86_64-netboot/definition.rb +1 -1
  383. data/templates/Fedora-15-x86_64/definition.rb +1 -1
  384. data/templates/Fedora-16-i386/definition.rb +1 -1
  385. data/templates/Fedora-16-x86_64-netboot/definition.rb +1 -1
  386. data/templates/Fedora-16-x86_64/definition.rb +1 -1
  387. data/templates/Fedora-17-i386/definition.rb +1 -1
  388. data/templates/Fedora-17-x86_64/definition.rb +1 -1
  389. data/templates/Fedora-18-i386/definition.rb +1 -1
  390. data/templates/Fedora-18-x86_64/definition.rb +1 -1
  391. data/templates/Fedora-19-i386/definition.rb +1 -1
  392. data/templates/Fedora-19-x86_64/definition.rb +1 -1
  393. data/templates/Fedora-20-i386/base.sh +9 -0
  394. data/templates/Fedora-20-i386/chef.sh +17 -0
  395. data/templates/Fedora-20-i386/cleanup.sh +6 -0
  396. data/templates/Fedora-20-i386/definition.rb +39 -0
  397. data/templates/Fedora-20-i386/ks.cfg +83 -0
  398. data/templates/Fedora-20-i386/puppet.sh +2 -0
  399. data/templates/Fedora-20-i386/ruby.sh +3 -0
  400. data/templates/Fedora-20-i386/vagrant.sh +18 -0
  401. data/templates/Fedora-20-i386/virtualbox.sh +4 -0
  402. data/templates/Fedora-20-i386/vmfusion.sh +7 -0
  403. data/templates/Fedora-20-i386/zerodisk.sh +3 -0
  404. data/templates/Fedora-20-x86_64/base.sh +9 -0
  405. data/templates/Fedora-20-x86_64/chef.sh +17 -0
  406. data/templates/Fedora-20-x86_64/cleanup.sh +6 -0
  407. data/templates/Fedora-20-x86_64/definition.rb +39 -0
  408. data/templates/Fedora-20-x86_64/ks.cfg +83 -0
  409. data/templates/Fedora-20-x86_64/puppet.sh +2 -0
  410. data/templates/Fedora-20-x86_64/ruby.sh +3 -0
  411. data/templates/Fedora-20-x86_64/vagrant.sh +18 -0
  412. data/templates/Fedora-20-x86_64/virtualbox.sh +4 -0
  413. data/templates/Fedora-20-x86_64/vmfusion.sh +7 -0
  414. data/templates/Fedora-20-x86_64/zerodisk.sh +3 -0
  415. data/templates/OSX/definition.rb +13 -1
  416. data/templates/OSX/prepare_veewee_iso/prepare_veewee_iso.sh +51 -2
  417. data/templates/OracleLinux-5.10-i386-DVD/base.sh +19 -0
  418. data/templates/OracleLinux-5.10-i386-DVD/chef.sh +3 -0
  419. data/templates/OracleLinux-5.10-i386-DVD/cleanup.sh +8 -0
  420. data/templates/OracleLinux-5.10-i386-DVD/definition.rb +37 -0
  421. data/templates/OracleLinux-5.10-i386-DVD/ks.cfg +55 -0
  422. data/templates/OracleLinux-5.10-i386-DVD/proxy.sh +6 -0
  423. data/templates/OracleLinux-5.10-i386-DVD/puppet.sh +3 -0
  424. data/templates/OracleLinux-5.10-i386-DVD/ruby.sh +36 -0
  425. data/templates/OracleLinux-5.10-i386-DVD/vagrant.sh +21 -0
  426. data/templates/OracleLinux-5.10-i386-DVD/virtualbox.sh +8 -0
  427. data/templates/OracleLinux-5.10-i386-DVD/zerodisk.sh +3 -0
  428. data/templates/OracleLinux-5.10-x86_64-DVD/base.sh +19 -0
  429. data/templates/OracleLinux-5.10-x86_64-DVD/chef.sh +3 -0
  430. data/templates/OracleLinux-5.10-x86_64-DVD/cleanup.sh +8 -0
  431. data/templates/OracleLinux-5.10-x86_64-DVD/definition.rb +37 -0
  432. data/templates/OracleLinux-5.10-x86_64-DVD/ks.cfg +55 -0
  433. data/templates/OracleLinux-5.10-x86_64-DVD/proxy.sh +6 -0
  434. data/templates/OracleLinux-5.10-x86_64-DVD/puppet.sh +3 -0
  435. data/templates/OracleLinux-5.10-x86_64-DVD/ruby.sh +36 -0
  436. data/templates/OracleLinux-5.10-x86_64-DVD/vagrant.sh +21 -0
  437. data/templates/OracleLinux-5.10-x86_64-DVD/virtualbox.sh +8 -0
  438. data/templates/OracleLinux-5.10-x86_64-DVD/zerodisk.sh +3 -0
  439. data/templates/OracleLinux-5.9-i386-DVD/base.sh +1 -8
  440. data/templates/OracleLinux-5.9-i386-DVD/ks.cfg +21 -1
  441. data/templates/OracleLinux-5.9-i386-DVD/ruby.sh +2 -2
  442. data/templates/OracleLinux-5.9-x86_64-DVD/base.sh +1 -8
  443. data/templates/OracleLinux-5.9-x86_64-DVD/ks.cfg +21 -1
  444. data/templates/OracleLinux-5.9-x86_64-DVD/ruby.sh +2 -2
  445. data/templates/OracleLinux-6.4-i386-DVD/base.sh +1 -6
  446. data/templates/OracleLinux-6.4-i386-DVD/ks.cfg +21 -1
  447. data/templates/OracleLinux-6.4-i386-DVD/puppet.sh +3 -3
  448. data/templates/OracleLinux-6.4-x86_64-DVD/base.sh +1 -6
  449. data/templates/OracleLinux-6.4-x86_64-DVD/ks.cfg +21 -1
  450. data/templates/OracleLinux-6.4-x86_64-DVD/puppet.sh +3 -3
  451. data/templates/OracleLinux-6.5-i386-DVD/base.sh +20 -0
  452. data/templates/OracleLinux-6.5-i386-DVD/chef.sh +3 -0
  453. data/templates/OracleLinux-6.5-i386-DVD/cleanup.sh +9 -0
  454. data/templates/OracleLinux-6.5-i386-DVD/definition.rb +39 -0
  455. data/templates/OracleLinux-6.5-i386-DVD/ks.cfg +56 -0
  456. data/templates/OracleLinux-6.5-i386-DVD/proxy.sh +6 -0
  457. data/templates/OracleLinux-6.5-i386-DVD/puppet.sh +10 -0
  458. data/templates/OracleLinux-6.5-i386-DVD/ruby.sh +5 -0
  459. data/templates/OracleLinux-6.5-i386-DVD/vagrant.sh +21 -0
  460. data/templates/OracleLinux-6.5-i386-DVD/virtualbox.sh +8 -0
  461. data/templates/OracleLinux-6.5-i386-DVD/zerodisk.sh +3 -0
  462. data/templates/OracleLinux-6.5-x86_64-DVD/base.sh +20 -0
  463. data/templates/OracleLinux-6.5-x86_64-DVD/chef.sh +3 -0
  464. data/templates/OracleLinux-6.5-x86_64-DVD/cleanup.sh +9 -0
  465. data/templates/OracleLinux-6.5-x86_64-DVD/definition.rb +39 -0
  466. data/templates/OracleLinux-6.5-x86_64-DVD/ks.cfg +56 -0
  467. data/templates/OracleLinux-6.5-x86_64-DVD/proxy.sh +6 -0
  468. data/templates/OracleLinux-6.5-x86_64-DVD/puppet.sh +10 -0
  469. data/templates/OracleLinux-6.5-x86_64-DVD/ruby.sh +5 -0
  470. data/templates/OracleLinux-6.5-x86_64-DVD/vagrant.sh +21 -0
  471. data/templates/OracleLinux-6.5-x86_64-DVD/virtualbox.sh +8 -0
  472. data/templates/OracleLinux-6.5-x86_64-DVD/zerodisk.sh +3 -0
  473. data/templates/OracleLinux-7.0-x86_64-DVD/base.sh +19 -0
  474. data/templates/OracleLinux-7.0-x86_64-DVD/chef.sh +3 -0
  475. data/templates/OracleLinux-7.0-x86_64-DVD/cleanup.sh +11 -0
  476. data/templates/OracleLinux-7.0-x86_64-DVD/definition.rb +40 -0
  477. data/templates/OracleLinux-7.0-x86_64-DVD/ks.cfg +60 -0
  478. data/templates/OracleLinux-7.0-x86_64-DVD/provision.sh +35 -0
  479. data/templates/OracleLinux-7.0-x86_64-DVD/proxy.sh +3 -0
  480. data/templates/OracleLinux-7.0-x86_64-DVD/puppet.sh +15 -0
  481. data/templates/OracleLinux-7.0-x86_64-DVD/ruby.sh +5 -0
  482. data/templates/OracleLinux-7.0-x86_64-DVD/vagrant.sh +21 -0
  483. data/templates/OracleLinux-7.0-x86_64-DVD/virtualbox.sh +8 -0
  484. data/templates/OracleLinux-7.0-x86_64-DVD/zerodisk.sh +2 -0
  485. data/templates/SLES-11-SP3-DVD-x86_64-GM/autoinst.xml +2608 -0
  486. data/templates/SLES-11-SP3-DVD-x86_64-GM/definition.rb +33 -0
  487. data/templates/SLES-11-SP3-DVD-x86_64-GM/postinstall.sh +52 -0
  488. data/templates/VMware-ESXi-5.0u2-x86_64/definition.rb +1 -1
  489. data/templates/VMware-ESXi-5.1-x86_64/definition.rb +1 -1
  490. data/templates/archlinux-x86_64/aur.sh +2 -2
  491. data/templates/archlinux-x86_64/base.sh +1 -1
  492. data/templates/archlinux-x86_64/chef.sh +0 -11
  493. data/templates/archlinux-x86_64/definition.rb +1 -2
  494. data/templates/archlinux-x86_64/ruby.sh +2 -18
  495. data/templates/archlinux-x86_64/vagrant.sh +2 -4
  496. data/templates/freebsd-10.0-RELEASE-amd64/definition.rb +48 -0
  497. data/templates/freebsd-10.0-RELEASE-amd64/install.sh +33 -0
  498. data/templates/freebsd-10.0-RELEASE-amd64/postinstall.csh +125 -0
  499. data/templates/freebsd-9.1-RELEASE-amd64/definition.rb +1 -1
  500. data/templates/freebsd-9.1-RELEASE-amd64/install.sh +1 -0
  501. data/templates/freebsd-9.1-RELEASE-amd64/postinstall.csh +8 -8
  502. data/templates/freebsd-9.2-RELEASE-amd64/definition.rb +28 -0
  503. data/templates/freebsd-9.2-RELEASE-amd64/install.sh +66 -0
  504. data/templates/freebsd-9.2-RELEASE-amd64/postinstall.csh +134 -0
  505. data/templates/{funtoo-latest-x86_64 → funtoo-stable-x86_64}/definition.rb +5 -3
  506. data/templates/{funtoo-latest-x86_64 → funtoo-stable-x86_64}/postinstall.sh +78 -89
  507. data/templates/funtoo-unstable-x86_64/definition.rb +41 -0
  508. data/templates/funtoo-unstable-x86_64/postinstall.sh +459 -0
  509. data/templates/gentoo-latest-amd64/add_chef.sh +1 -1
  510. data/templates/gentoo-latest-amd64/add_puppet.sh +1 -1
  511. data/templates/gentoo-latest-amd64/cron.sh +1 -1
  512. data/templates/gentoo-latest-amd64/syslog.sh +1 -1
  513. data/templates/gentoo-latest-i686/add_chef.sh +1 -1
  514. data/templates/gentoo-latest-i686/add_puppet.sh +1 -1
  515. data/templates/gentoo-latest-i686/cron.sh +1 -1
  516. data/templates/gentoo-latest-i686/syslog.sh +1 -1
  517. data/templates/netbsd-613-amd64/README +2 -0
  518. data/templates/netbsd-613-amd64/base.sh +11 -0
  519. data/templates/netbsd-613-amd64/chef.sh +1 -0
  520. data/templates/netbsd-613-amd64/definition.rb +103 -0
  521. data/templates/netbsd-613-amd64/vagrant.sh +14 -0
  522. data/templates/nixos64/configuration.nix +41 -0
  523. data/templates/nixos64/definition.rb +50 -0
  524. data/templates/nixos64/postinstall.sh +28 -0
  525. data/templates/openSUSE-13.1/autoinst.xml +937 -0
  526. data/templates/openSUSE-13.1/definition.rb +70 -0
  527. data/templates/openSUSE-13.1/postinstall.sh +50 -0
  528. data/templates/openbsd54_amd64/README +28 -0
  529. data/templates/openbsd54_amd64/base.sh +40 -0
  530. data/templates/openbsd54_amd64/chef.sh +2 -0
  531. data/templates/openbsd54_amd64/definition.rb +91 -0
  532. data/templates/openbsd54_amd64/puppet.sh +3 -0
  533. data/templates/openbsd54_amd64/ruby.sh +14 -0
  534. data/templates/openbsd54_amd64/vagrant.sh +27 -0
  535. data/templates/openbsd54_i386/README +28 -0
  536. data/templates/openbsd54_i386/base.sh +40 -0
  537. data/templates/openbsd54_i386/chef.sh +2 -0
  538. data/templates/openbsd54_i386/definition.rb +91 -0
  539. data/templates/openbsd54_i386/puppet.sh +3 -0
  540. data/templates/openbsd54_i386/ruby.sh +14 -0
  541. data/templates/openbsd54_i386/vagrant.sh +27 -0
  542. data/templates/openbsd55_amd64/README +28 -0
  543. data/templates/openbsd55_amd64/base.sh +40 -0
  544. data/templates/openbsd55_amd64/chef.sh +2 -0
  545. data/templates/openbsd55_amd64/definition.rb +93 -0
  546. data/templates/openbsd55_amd64/puppet.sh +3 -0
  547. data/templates/openbsd55_amd64/ruby.sh +14 -0
  548. data/templates/openbsd55_amd64/vagrant.sh +27 -0
  549. data/templates/openbsd55_i386/README +28 -0
  550. data/templates/openbsd55_i386/base.sh +40 -0
  551. data/templates/openbsd55_i386/chef.sh +2 -0
  552. data/templates/openbsd55_i386/definition.rb +93 -0
  553. data/templates/openbsd55_i386/puppet.sh +3 -0
  554. data/templates/openbsd55_i386/ruby.sh +14 -0
  555. data/templates/openbsd55_i386/vagrant.sh +27 -0
  556. data/templates/openindiana-148-ai-x86/definition.rb +1 -1
  557. data/templates/openindiana-151a7-text-x86/definition.rb +1 -1
  558. data/templates/scientificlinux-6.1-i386-netboot/chef.sh +3 -0
  559. data/templates/scientificlinux-6.1-x86_64-netboot/chef.sh +3 -0
  560. data/templates/scientificlinux-6.2-i386-netboot/chef.sh +3 -0
  561. data/templates/scientificlinux-6.2-x86_64-netboot/chef.sh +3 -0
  562. data/templates/scientificlinux-6.3-i386-netboot/chef.sh +3 -0
  563. data/templates/scientificlinux-6.3-x86_64-netboot/chef.sh +3 -0
  564. data/templates/scientificlinux-6.4-i386-netboot/chef.sh +1 -0
  565. data/templates/scientificlinux-6.4-x86_64-netboot/chef.sh +1 -0
  566. data/templates/scientificlinux-6.5-i386-netboot/base.sh +14 -0
  567. data/templates/scientificlinux-6.5-i386-netboot/cfengine.sh +69 -0
  568. data/templates/scientificlinux-6.5-i386-netboot/chef.sh +4 -0
  569. data/templates/scientificlinux-6.5-i386-netboot/cleanup.sh +5 -0
  570. data/templates/scientificlinux-6.5-i386-netboot/definition.rb +40 -0
  571. data/templates/scientificlinux-6.5-i386-netboot/ks.cfg +41 -0
  572. data/templates/scientificlinux-6.5-i386-netboot/puppet.sh +18 -0
  573. data/templates/scientificlinux-6.5-i386-netboot/ruby.sh +3 -0
  574. data/templates/scientificlinux-6.5-i386-netboot/vagrant.sh +18 -0
  575. data/templates/scientificlinux-6.5-i386-netboot/virtualbox.sh +8 -0
  576. data/templates/scientificlinux-6.5-i386-netboot/zerodisk.sh +3 -0
  577. data/templates/scientificlinux-6.5-x86_64-netboot/base.sh +14 -0
  578. data/templates/scientificlinux-6.5-x86_64-netboot/cfengine.sh +69 -0
  579. data/templates/scientificlinux-6.5-x86_64-netboot/chef.sh +4 -0
  580. data/templates/scientificlinux-6.5-x86_64-netboot/cleanup.sh +5 -0
  581. data/templates/scientificlinux-6.5-x86_64-netboot/definition.rb +40 -0
  582. data/templates/scientificlinux-6.5-x86_64-netboot/ks.cfg +41 -0
  583. data/templates/scientificlinux-6.5-x86_64-netboot/puppet.sh +18 -0
  584. data/templates/scientificlinux-6.5-x86_64-netboot/ruby.sh +3 -0
  585. data/templates/scientificlinux-6.5-x86_64-netboot/vagrant.sh +18 -0
  586. data/templates/scientificlinux-6.5-x86_64-netboot/virtualbox.sh +8 -0
  587. data/templates/scientificlinux-6.5-x86_64-netboot/zerodisk.sh +3 -0
  588. data/templates/solaris-10-ga-x86/README.md +5 -7
  589. data/templates/solaris-10-ga-x86/chef.sh +3 -6
  590. data/templates/solaris-10-ga-x86/cleanup.sh +1 -1
  591. data/templates/solaris-10-ga-x86/definition.rb +4 -3
  592. data/templates/solaris-10-ga-x86/postinstall.sh +6 -2
  593. data/templates/solaris-11-express-i386/definition.rb +1 -1
  594. data/templates/ubuntu-10.04.2-amd64-netboot/postinstall.sh +7 -0
  595. data/templates/ubuntu-10.04.2-server-i386-netboot/postinstall.sh +7 -0
  596. data/templates/ubuntu-10.04.3-server-amd64-alt/definition.rb +1 -1
  597. data/templates/ubuntu-10.04.3-server-amd64-alt/postinstall.sh +6 -0
  598. data/templates/ubuntu-10.04.3-server-amd64/base.sh +8 -1
  599. data/templates/ubuntu-10.04.3-server-amd64/chef.sh +8 -1
  600. data/templates/ubuntu-10.04.3-server-amd64/cleanup.sh +7 -0
  601. data/templates/ubuntu-10.04.3-server-amd64/puppet.sh +8 -1
  602. data/templates/ubuntu-10.04.3-server-amd64/ruby.sh +8 -1
  603. data/templates/ubuntu-10.04.3-server-amd64/vagrant.sh +7 -0
  604. data/templates/ubuntu-10.04.3-server-amd64/virtualbox.sh +7 -0
  605. data/templates/ubuntu-10.04.3-server-i386/postinstall.sh +7 -0
  606. data/templates/ubuntu-10.04.4-server-amd64-netboot/base.sh +7 -0
  607. data/templates/ubuntu-10.04.4-server-amd64-netboot/chef.sh +7 -0
  608. data/templates/ubuntu-10.04.4-server-amd64-netboot/cleanup.sh +7 -0
  609. data/templates/ubuntu-10.04.4-server-amd64-netboot/puppet.sh +7 -0
  610. data/templates/ubuntu-10.04.4-server-amd64-netboot/ruby.sh +7 -0
  611. data/templates/ubuntu-10.04.4-server-amd64-netboot/vagrant.sh +7 -0
  612. data/templates/ubuntu-10.04.4-server-amd64-netboot/virtualbox.sh +7 -0
  613. data/templates/ubuntu-10.04.4-server-amd64-netboot/vmfusion.sh +7 -0
  614. data/templates/ubuntu-10.04.4-server-amd64-netboot/zerodisk.sh +7 -0
  615. data/templates/ubuntu-10.04.4-server-amd64/base.sh +7 -0
  616. data/templates/ubuntu-10.04.4-server-amd64/chef.sh +7 -0
  617. data/templates/ubuntu-10.04.4-server-amd64/cleanup.sh +7 -0
  618. data/templates/ubuntu-10.04.4-server-amd64/puppet.sh +7 -0
  619. data/templates/ubuntu-10.04.4-server-amd64/ruby.sh +7 -0
  620. data/templates/ubuntu-10.04.4-server-amd64/vagrant.sh +7 -0
  621. data/templates/ubuntu-10.04.4-server-amd64/virtualbox.sh +7 -0
  622. data/templates/ubuntu-10.04.4-server-amd64/vmfusion.sh +7 -0
  623. data/templates/ubuntu-10.04.4-server-amd64/zerodisk.sh +7 -0
  624. data/templates/ubuntu-10.04.4-server-i386-netboot/base.sh +7 -0
  625. data/templates/ubuntu-10.04.4-server-i386-netboot/chef.sh +7 -0
  626. data/templates/ubuntu-10.04.4-server-i386-netboot/cleanup.sh +7 -0
  627. data/templates/ubuntu-10.04.4-server-i386-netboot/puppet.sh +7 -0
  628. data/templates/ubuntu-10.04.4-server-i386-netboot/ruby.sh +7 -0
  629. data/templates/ubuntu-10.04.4-server-i386-netboot/vagrant.sh +7 -0
  630. data/templates/ubuntu-10.04.4-server-i386-netboot/virtualbox.sh +7 -0
  631. data/templates/ubuntu-10.04.4-server-i386-netboot/vmfusion.sh +7 -0
  632. data/templates/ubuntu-10.04.4-server-i386-netboot/zerodisk.sh +7 -0
  633. data/templates/ubuntu-10.04.4-server-i386/base.sh +7 -0
  634. data/templates/ubuntu-10.04.4-server-i386/chef.sh +7 -0
  635. data/templates/ubuntu-10.04.4-server-i386/cleanup.sh +7 -0
  636. data/templates/ubuntu-10.04.4-server-i386/puppet.sh +7 -0
  637. data/templates/ubuntu-10.04.4-server-i386/ruby.sh +7 -0
  638. data/templates/ubuntu-10.04.4-server-i386/vagrant.sh +7 -0
  639. data/templates/ubuntu-10.04.4-server-i386/virtualbox.sh +7 -0
  640. data/templates/ubuntu-10.04.4-server-i386/vmfusion.sh +7 -0
  641. data/templates/ubuntu-10.04.4-server-i386/zerodisk.sh +7 -0
  642. data/templates/ubuntu-10.10-server-amd64-netboot/postinstall.sh +7 -0
  643. data/templates/ubuntu-10.10-server-amd64/base.sh +7 -0
  644. data/templates/ubuntu-10.10-server-amd64/chef.sh +8 -1
  645. data/templates/ubuntu-10.10-server-amd64/cleanup.sh +7 -0
  646. data/templates/ubuntu-10.10-server-amd64/postinstall.sh +7 -0
  647. data/templates/ubuntu-10.10-server-amd64/puppet.sh +8 -1
  648. data/templates/ubuntu-10.10-server-amd64/ruby.sh +7 -0
  649. data/templates/ubuntu-10.10-server-amd64/vagrant.sh +7 -0
  650. data/templates/ubuntu-10.10-server-amd64/virtualbox.sh +7 -0
  651. data/templates/ubuntu-10.10-server-i386-netboot/postinstall.sh +7 -0
  652. data/templates/ubuntu-10.10-server-i386/postinstall.sh +7 -0
  653. data/templates/ubuntu-11.04-server-amd64/apt-upgrade.sh +7 -0
  654. data/templates/ubuntu-11.04-server-amd64/chef.sh +7 -0
  655. data/templates/ubuntu-11.04-server-amd64/network-cleanup.sh +7 -0
  656. data/templates/ubuntu-11.04-server-amd64/nfs-client.sh +7 -0
  657. data/templates/ubuntu-11.04-server-amd64/puppet.sh +7 -0
  658. data/templates/ubuntu-11.04-server-amd64/remove-build-essentials.sh +7 -0
  659. data/templates/ubuntu-11.04-server-amd64/ruby.sh +7 -0
  660. data/templates/ubuntu-11.04-server-amd64/ssh-keys.sh +7 -0
  661. data/templates/ubuntu-11.04-server-amd64/sudo.sh +7 -0
  662. data/templates/ubuntu-11.04-server-amd64/timestamp.sh +7 -0
  663. data/templates/ubuntu-11.04-server-amd64/vbox_additions.sh +7 -0
  664. data/templates/ubuntu-11.04-server-amd64/zero-disk.sh +7 -0
  665. data/templates/ubuntu-11.04-server-i386/postinstall.sh +7 -0
  666. data/templates/ubuntu-11.10-server-amd64-ishaya/postinstall.sh +7 -0
  667. data/templates/ubuntu-11.10-server-amd64-ruby192/postinstall.sh +7 -0
  668. data/templates/ubuntu-11.10-server-amd64-rvm/postinstall.sh +7 -0
  669. data/templates/ubuntu-11.10-server-amd64/postinstall.sh +7 -0
  670. data/templates/ubuntu-11.10-server-i386/postinstall.sh +7 -0
  671. data/templates/ubuntu-12.04.1-server-amd64-packages/postinstall.sh +7 -0
  672. data/templates/ubuntu-12.04.1-server-amd64/postinstall.sh +7 -0
  673. data/templates/ubuntu-12.04.1-server-i386-packages/postinstall.sh +7 -0
  674. data/templates/ubuntu-12.04.1-server-i386/postinstall.sh +7 -0
  675. data/templates/ubuntu-12.04.2-desktop-amd64/postinstall.sh +7 -0
  676. data/templates/ubuntu-12.04.2-server-amd64-netboot/postinstall.sh +7 -0
  677. data/templates/ubuntu-12.04.2-server-amd64-packages/postinstall.sh +7 -0
  678. data/templates/ubuntu-12.04.2-server-amd64/base.sh +7 -0
  679. data/templates/ubuntu-12.04.2-server-amd64/chef.sh +7 -0
  680. data/templates/ubuntu-12.04.2-server-amd64/cleanup.sh +7 -0
  681. data/templates/ubuntu-12.04.2-server-amd64/puppet.sh +7 -0
  682. data/templates/ubuntu-12.04.2-server-amd64/ruby.sh +7 -0
  683. data/templates/ubuntu-12.04.2-server-amd64/vagrant.sh +7 -0
  684. data/templates/ubuntu-12.04.2-server-amd64/virtualbox.sh +7 -0
  685. data/templates/ubuntu-12.04.2-server-amd64/vmfusion.sh +7 -0
  686. data/templates/ubuntu-12.04.2-server-amd64/vmtools.sh +7 -0
  687. data/templates/ubuntu-12.04.2-server-amd64/zerodisk.sh +7 -0
  688. data/templates/ubuntu-12.04.2-server-i386-netboot/postinstall.sh +7 -0
  689. data/templates/ubuntu-12.04.2-server-i386-packages/postinstall.sh +7 -0
  690. data/templates/ubuntu-12.04.2-server-i386/postinstall.sh +7 -0
  691. data/templates/ubuntu-12.04.3-server-amd64/base.sh +1 -0
  692. data/templates/ubuntu-12.04.3-server-i386/apt.sh +1 -0
  693. data/templates/ubuntu-12.04.4-server-amd64/apt.sh +8 -0
  694. data/templates/ubuntu-12.04.4-server-amd64/build_time.sh +1 -0
  695. data/templates/ubuntu-12.04.4-server-amd64/chef.sh +3 -0
  696. data/templates/ubuntu-12.04.4-server-amd64/cleanup.sh +16 -0
  697. data/templates/ubuntu-12.04.4-server-amd64/definition.rb +45 -0
  698. data/templates/ubuntu-12.04.4-server-amd64/preseed.cfg +61 -0
  699. data/templates/ubuntu-12.04.4-server-amd64/puppet.sh +4 -0
  700. data/templates/ubuntu-12.04.4-server-amd64/ruby.sh +25 -0
  701. data/templates/ubuntu-12.04.4-server-amd64/sudo.sh +5 -0
  702. data/templates/ubuntu-12.04.4-server-amd64/vagrant.sh +6 -0
  703. data/templates/ubuntu-12.04.4-server-amd64/vbox.sh +18 -0
  704. data/templates/ubuntu-12.04.4-server-i386/apt.sh +8 -0
  705. data/templates/ubuntu-12.04.4-server-i386/build_time.sh +1 -0
  706. data/templates/ubuntu-12.04.4-server-i386/chef.sh +3 -0
  707. data/templates/ubuntu-12.04.4-server-i386/cleanup.sh +16 -0
  708. data/templates/ubuntu-12.04.4-server-i386/definition.rb +45 -0
  709. data/templates/ubuntu-12.04.4-server-i386/preseed.cfg +61 -0
  710. data/templates/ubuntu-12.04.4-server-i386/puppet.sh +4 -0
  711. data/templates/ubuntu-12.04.4-server-i386/ruby.sh +25 -0
  712. data/templates/ubuntu-12.04.4-server-i386/sudo.sh +5 -0
  713. data/templates/ubuntu-12.04.4-server-i386/vagrant.sh +6 -0
  714. data/templates/ubuntu-12.04.4-server-i386/vbox.sh +18 -0
  715. data/templates/ubuntu-12.10-desktop-amd64/postinstall.sh +7 -0
  716. data/templates/ubuntu-12.10-server-amd64-packages/base.sh +2 -0
  717. data/templates/ubuntu-12.10-server-amd64-packages/chef.sh +2 -0
  718. data/templates/ubuntu-12.10-server-amd64-packages/cleanup.sh +7 -0
  719. data/templates/ubuntu-12.10-server-amd64-packages/puppet.sh +2 -0
  720. data/templates/ubuntu-12.10-server-amd64-packages/ruby.sh +2 -0
  721. data/templates/ubuntu-12.10-server-amd64-packages/vagrant.sh +2 -0
  722. data/templates/ubuntu-12.10-server-amd64-packages/virtualbox.sh +2 -0
  723. data/templates/ubuntu-12.10-server-amd64-packages/zerodisk.sh +2 -0
  724. data/templates/ubuntu-12.10-server-amd64/postinstall.sh +7 -0
  725. data/templates/ubuntu-12.10-server-i386-packages/base.sh +2 -0
  726. data/templates/ubuntu-12.10-server-i386-packages/chef.sh +2 -0
  727. data/templates/ubuntu-12.10-server-i386-packages/cleanup.sh +7 -0
  728. data/templates/ubuntu-12.10-server-i386-packages/puppet.sh +2 -0
  729. data/templates/ubuntu-12.10-server-i386-packages/ruby.sh +2 -0
  730. data/templates/ubuntu-12.10-server-i386-packages/vagrant.sh +2 -0
  731. data/templates/ubuntu-12.10-server-i386-packages/virtualbox.sh +2 -0
  732. data/templates/ubuntu-12.10-server-i386-packages/zerodisk.sh +2 -0
  733. data/templates/ubuntu-12.10-server-i386/postinstall.sh +7 -0
  734. data/templates/ubuntu-13.04-server-amd64-rvm/apt.sh +8 -1
  735. data/templates/ubuntu-13.04-server-amd64-rvm/build_time.sh +7 -0
  736. data/templates/ubuntu-13.04-server-amd64-rvm/chef.sh +8 -1
  737. data/templates/ubuntu-13.04-server-amd64-rvm/cleanup.sh +7 -0
  738. data/templates/ubuntu-13.04-server-amd64-rvm/puppet.sh +8 -1
  739. data/templates/ubuntu-13.04-server-amd64-rvm/rvm.sh +8 -1
  740. data/templates/ubuntu-13.04-server-amd64-rvm/sudo.sh +7 -0
  741. data/templates/ubuntu-13.04-server-amd64-rvm/vagrant.sh +7 -0
  742. data/templates/ubuntu-13.04-server-amd64-rvm/vbox.sh +7 -0
  743. data/templates/ubuntu-13.04-server-amd64/apt.sh +7 -0
  744. data/templates/ubuntu-13.04-server-amd64/build_time.sh +7 -0
  745. data/templates/ubuntu-13.04-server-amd64/chef.sh +7 -0
  746. data/templates/ubuntu-13.04-server-amd64/cleanup.sh +7 -0
  747. data/templates/ubuntu-13.04-server-amd64/puppet.sh +7 -0
  748. data/templates/ubuntu-13.04-server-amd64/ruby.sh +7 -0
  749. data/templates/ubuntu-13.04-server-amd64/sudo.sh +7 -0
  750. data/templates/ubuntu-13.04-server-amd64/vagrant.sh +7 -0
  751. data/templates/ubuntu-13.04-server-amd64/vbox.sh +7 -0
  752. data/templates/ubuntu-14.04-server-amd64/apt.sh +7 -0
  753. data/templates/ubuntu-14.04-server-amd64/build_time.sh +1 -0
  754. data/templates/ubuntu-14.04-server-amd64/chef.sh +3 -0
  755. data/templates/ubuntu-14.04-server-amd64/cleanup.sh +16 -0
  756. data/templates/ubuntu-14.04-server-amd64/definition.rb +46 -0
  757. data/templates/ubuntu-14.04-server-amd64/parallels.sh +9 -0
  758. data/templates/ubuntu-14.04-server-amd64/preseed.cfg +61 -0
  759. data/templates/ubuntu-14.04-server-amd64/puppet.sh +4 -0
  760. data/templates/ubuntu-14.04-server-amd64/ruby.sh +25 -0
  761. data/templates/ubuntu-14.04-server-amd64/sudo.sh +5 -0
  762. data/templates/ubuntu-14.04-server-amd64/vagrant.sh +6 -0
  763. data/templates/ubuntu-14.04-server-amd64/vbox.sh +22 -0
  764. data/templates/ubuntu-8.04.4-server-amd64/postinstall.sh +7 -0
  765. data/templates/ubuntu-8.04.4-server-i386/postinstall.sh +7 -0
  766. data/templates/windows-2008R1-serverweb-amd64/install-vbox-guest.bat +7 -2
  767. data/templates/windows-2008R1-serverweb-i386/install-vbox-guest.bat +7 -2
  768. data/templates/windows-2008R1-serverwebcore-amd64/install-vbox-guest.bat +7 -2
  769. data/templates/windows-2008R2-serverstandard-amd64-winrm/install-vbox.bat +6 -1
  770. data/templates/windows-2008R2-serverweb-amd64/install-vbox-guest.bat +8 -2
  771. data/templates/windows-2008R2-serverwebcore-amd64/install-vbox-guest.bat +7 -2
  772. data/templates/windows-2012-serverstandard-amd64/install-vbox.bat +5 -1
  773. data/templates/windows-2012R2-serverdatacenter-amd64/install-vbox.bat +5 -1
  774. data/templates/windows-7-enterprise-amd64-winrm/install-vbox.bat +6 -3
  775. data/templates/windows-7-enterprise-amd64/install-vbox-guest.bat +7 -2
  776. data/templates/windows-7-enterprise-i386/definition.rb +1 -1
  777. data/templates/windows-7-enterprise-i386/install-winrm.bat +4 -0
  778. data/templates/windows-7-enterprise-i386/postinstall.sh +1 -1
  779. data/templates/windows-8-amd64/definition.rb +3 -3
  780. data/veewee.gemspec +2 -0
  781. metadata +462 -45
  782. data/templates/archlinux-x86_64/basedevel.sh +0 -6
  783. data/templates/funtoo-latest-generic_64-stable/definition.rb +0 -34
  784. data/templates/funtoo-latest-generic_64-stable/postinstall.sh +0 -177
  785. data/templates/funtoo-latest-generic_64-stable/postinstall2.sh +0 -83
@@ -0,0 +1,15 @@
1
+ ---
2
+ !binary "U0hBMQ==":
3
+ metadata.gz: !binary |-
4
+ ZGJiYzY0MzVhMmQ3NWE3YWMzODhkZjg0NzJkOTVmYzEzYjg1YmM5OQ==
5
+ data.tar.gz: !binary |-
6
+ MmQzNmI5ZDI4OWIzM2QyNjM3MGY0NTVjNmZhMTYwZDgxZmVmNzkwMg==
7
+ SHA512:
8
+ metadata.gz: !binary |-
9
+ MjIyMGM1YmVkMmI1YzU4ZjA2MzFmYTcwNmU3OWYwZDRhNWJmNTk4YmRjZDZi
10
+ ZTI3MmFkNDA3MWI3MmZjNjA1MzdmY2MxYTQyOTEwNjZhMzgwMzA3ZDhiOGJm
11
+ NDY3NTRhYmFhYjVhY2NlYWQwNjhiZjZjNWI4ZTkzOWU4OWUyNDc=
12
+ data.tar.gz: !binary |-
13
+ M2FiMDk4M2Q4ZWU0YTczZWJkM2YyOTczYWRkOGJjZmE3NzM3YTM4NWMxMGFm
14
+ Yjg1OWUyMGRhZDhjMjJjOWFjZDUxZjc1MzkzYjM2NmVlNDllNmNjNThjNWVm
15
+ NjNkY2I1M2VhMWQ1OTYzNTc1ZTc2YTY4MWFiNGYwNzFkMjMyNmI=
@@ -0,0 +1,2 @@
1
+ #ensures shell scripts aren't broken when checking out on Windows (see issue #805)
2
+ *.sh eol=lf
data/.gitignore CHANGED
@@ -20,5 +20,7 @@ pkg/*
20
20
  virtualfloppy.vfd
21
21
  *.swp
22
22
  AutoPartition.app
23
+ .ruby-version
23
24
  .rbenv-gemsets
24
25
  .project
26
+ .ruby-version
data/.rvmrc CHANGED
@@ -1,4 +1,4 @@
1
- rvm use ruby-1.9.2@veewee --create
1
+ rvm use ruby-1.9.3@veewee --create
2
2
  #rvm use ruby-1.8.7@veewee --create
3
3
 
4
4
  alias veewee="bundle exec veewee"
@@ -1,8 +1,7 @@
1
1
  language: ruby
2
2
  rvm:
3
- - 1.9.2
4
- - 1.9.2-p320
5
3
  - 1.9.3
6
4
  - 2.0
5
+ - 2.1
7
6
  notifications:
8
7
  irc: "chat.freenode.net#veewee"
data/Gemfile CHANGED
@@ -13,7 +13,7 @@ group :kvm do
13
13
  end
14
14
 
15
15
  group :windows do
16
- gem "em-winrm", :git => 'http://github.com/hh/em-winrm.git', :ref => '31745601d3'
16
+ gem "em-winrm", :git => 'https://github.com/hh/em-winrm.git', :ref => '31745601d3'
17
17
  gem "log4r"
18
18
  end
19
19
 
data/bin/veewee CHANGED
@@ -25,4 +25,5 @@ begin
25
25
 
26
26
  rescue Veewee::Error => e
27
27
  env.ui.error "#{e}"
28
+ exit 1
28
29
  end
@@ -75,6 +75,8 @@ If you want to use an external repository for the definition, you can specify a
75
75
 
76
76
  $ bundle exec veewee <provider> define 'myubuntubox' 'git://github.com/jedi4ever/myubuntubox'
77
77
 
78
+ Can be `git://`, `git+ssh://` or `git+http://`.
79
+
78
80
 
79
81
  ## Modify a definition (optional)
80
82
 
@@ -110,15 +112,19 @@ In order to build the defined box, execute this subcommand:
110
112
 
111
113
  The `build` subcommand can take the following optional flags:
112
114
 
113
- Flag Option | Description
114
- -----------------------------|-------------
115
- --force | overwrites if already exists
116
- --auto | automatically downloads the ISO without asking
117
- --nogui | builds in the background rather than opening a VM GUI and building in the GUI window
118
- --debug | enabled debug mode output
119
- --redirectconsole | redirects console output
120
- --postinstall-include=[...] | forces specified file(s) to get included in postinstall even if filename has a leading underscore
121
- --postinstall-exclude=[...] | forces specified file(s) to get excluded from postinstall even if filename has no leading underscore
115
+ Flag Option | Description
116
+ --------------------------------|-------------
117
+ -f --force | overwrites if already exists
118
+ -a --auto | automatically downloads the ISO without asking
119
+ -n --nogui | builds in the background rather than opening a VM GUI and building in the GUI window
120
+ -d --debug | enabled debug mode output
121
+ -r --redirectconsole | redirects console output
122
+ -i --include | ruby regexp of postinstall filenames to additionally include
123
+ -e --exclude | ruby regexp of postinstall filenames to exclude
124
+ -i --postinstall-include=[...] | forces specified file(s) to get included in postinstall even if filename has a leading underscore
125
+ -e --postinstall-exclude=[...] | forces specified file(s) to get excluded from postinstall even if filename has no leading underscore
126
+ --[no-]checksum | force to check iso file check sum
127
+ --skip-to-postinstall | Skip the installation and go streight to postinstall. This is usefully for testing you post-install scripts.
122
128
 
123
129
  The `build` subcommand will run the following routines behind the scenes:
124
130
 
@@ -148,7 +154,7 @@ Validate will run some [cucumber tests](http://cukes.info/) against the box to s
148
154
 
149
155
  The following subcommand take care of exporting:
150
156
 
151
- $ bundle exec veewee <provider> export 'mybuntubox'
157
+ $ bundle exec veewee <provider> export 'myubuntubox'
152
158
 
153
159
  The exported filetype depends on the provider. For more details on the providers, please have a look at the [Providers](providers.md) doc.
154
160
 
@@ -169,7 +175,7 @@ Then use the `define` command to create a new definition with a custom name. The
169
175
  # You can now edit the definition files stored in definitions/myubuntubox or build the box with:
170
176
  # veewee vbox build 'myubuntubox'
171
177
 
172
- **IMPORTANT:** You should avoid dots in the name because the box name gets used as the hostname also. Dots in the box name currently lead to invalid hostnames which causes several negative side effects (e.g. preventing the network devices to start).
178
+ **IMPORTANT:** You should avoid dots and underscores in the name because the box name gets used as the hostname also. Dots in the box name currently lead to invalid hostnames which causes several negative side effects (e.g. preventing the network devices to start). Underscores might prevent the build altogether.
173
179
 
174
180
  Confirm that all expected files are in place:
175
181
 
@@ -7,6 +7,7 @@ The following hooks are currently available:
7
7
  * `:after_create` after box is created
8
8
  * `:after_up` after box is started
9
9
  * `:after_boot_sequence` after boot command sequence is executed
10
+ * `:before_postinstall` before post-install files are executed
10
11
  * `:after_postinstall` after post-install files are executed
11
12
  * `:before_ssh` before each SSH login
12
13
 
@@ -105,6 +105,59 @@ All other settings are used internally by Veewee, the virtualization provider, o
105
105
  :postinstall_timeout => "10000"
106
106
  })
107
107
 
108
+ Available definitions:
109
+
110
+ Definition Option | Default | Provider
111
+ --------------------------------|-------------------------|-------------------------------------------
112
+ :params | empty | core
113
+ :cpu_count | 1 CPU | kvm, parallels, virtualbox, vmfusion
114
+ :memory_size | 256 MB of memory | kvm, parallels, virtualbox, vmfusion
115
+ :video_memory_size | 10 MB of video memory | virtualbox
116
+ :iso_file | no ISO file mounted | core, kvm, parallels, virtualbox, vmfusion
117
+ :iso_download_timeout | 1000 | unused
118
+ :iso_src | empty | core
119
+ :iso_md5 | empty | core
120
+ :iso_sha1 | empty | core
121
+ :iso_sha256 | empty | core
122
+ :iso_download_instructions | empty | core
123
+ :disk_size | 10240 | kvm, virtualbox, vmfusion
124
+ :disk_format | VDI | kvm, virtualbox
125
+ :disk_variant | Standard | virtualbox
126
+ :disk_count | 1 | virtualbox
127
+ :os_type_id | uninitialised | core, kvm, parallels, virtualbox, vmfusion
128
+ :boot_wait | uninitialised | core
129
+ :boot_cmd_sequence | empty | core
130
+ :kickstart_port | uninitialised | core
131
+ :kickstart_ip | uninitialised | core
132
+ :kickstart_timeout | uninitialised | core
133
+ :kickstart_file | uninitialised | core
134
+ :ssh_login_timeout | uninitialised | kvm, parallels, virtualbox, vmfusion
135
+ :ssh_user | uninitialised | core, kvm, parallels, virtualbox, vmfusion
136
+ :ssh_password | uninitialised | core, kvm, parallels, virtualbox, vmfusion
137
+ :ssh_key | uninitialised | core
138
+ :ssh_host_port | 2222 | core, virtualbox
139
+ :ssh_guest_port | 22 | virtualbox
140
+ :winrm_login_timeout | 10000 | virtualbox, vmfusion
141
+ :winrm_user | uninitialised | core, virtualbox, vmfusion
142
+ :winrm_password | uninitialised | core, virtualbox, vmfusion
143
+ :winrm_host_port | 5985 | core, virtualbox, vmfusion
144
+ :winrm_guest_port | 5985 | virtualbox
145
+ :sudo_cmd | uninitialised | core
146
+ :shutdown_cmd | uninitialised | core
147
+ :pre_postinstall_file | empty | core
148
+ :postinstall_files | empty | core
149
+ :postinstall_timeout | 10000 | unused
150
+ :floppy_files | empty | core, kvm, virtualbox, vmfusion
151
+ :use_hw_virt_ext | unused | unused
152
+ :use_pae | unused | unused
153
+ :hostiocache | uninitialised | virtualbox
154
+ :use_sata | true | virtualbox
155
+ :add_shares | empty | vmfusion
156
+ :vmdk_file | uninitialised | vmfusion
157
+ :skip_iso_transfer | false | core
158
+ :skip_nat_mapping | false | virtualbox
159
+ :force_ssh_port | false | core
160
+
108
161
  **IMPORTANT:** If you change values directly in a template, be sure to run `bundle exec veewee <provider> undefine` to remove the old definition and then `bundle exec veewee <provider> define` again to copy the updated template files into the definition.
109
162
 
110
163
  If you are an experienced devops veteran and have enhanced template settings, please let us know why. We are very interested in improving Veewee's templates.
@@ -8,6 +8,11 @@ The Veewee project is moving quickly and the Rubygem might be outdated. Therefor
8
8
 
9
9
  $ gem install veewee
10
10
 
11
+ The above command may fail when using OS X Mavericks and XCode 5.1 due to [Apple telling the install to fail when unknown flags are used](http://stackoverflow.com/questions/22313407/clang-error-unknown-argument-mno-fused-madd-python-package-installation-fa#22315129). To get around this, use:
12
+
13
+ $ ARCHFLAGS=-Wno-error=unused-command-line-argument-hard-error-in-future gem install veewee
14
+
15
+
11
16
  Projects that include the `veewee` gem can also benefit from utilizing Ruby version management (see below).
12
17
 
13
18
 
@@ -48,7 +48,7 @@ It is highly recommended that you use either `rvm` or `rbenv` to manage your rub
48
48
 
49
49
  [RVM](https://rvm.io/) is Veewee's prefered ruby version manager.
50
50
 
51
- RVM will allow Veewee to install it's own [gemset](https://rvm.io/gemsets/basics/) and configure it's own ruby version - which keeps Veewee and it's dependancies completely separate from your other projects. Please see https://rvm.io/gemsets/basics/ for details if you are new to the concept of 'gemsets'.
51
+ RVM will allow Veewee to install its own [gemset](https://rvm.io/gemsets/basics/) and configure its own ruby version - which keeps Veewee and its dependancies completely separate from your other projects. Please see https://rvm.io/gemsets/basics/ for details if you are new to the concept of 'gemsets'.
52
52
 
53
53
 
54
54
  ##### Installing RVM
@@ -8,8 +8,8 @@ If you don't find what you're looking for here, please see the official [Vagrant
8
8
  A simple workflow to build a VirtualBox VM for Vagrant would be:
9
9
 
10
10
  $ bundle exec veewee vbox templates | grep -i ubuntu
11
- $ bundle exec veewee vbox define 'mybuntubox' 'ubuntu-12.10-server-amd64'
12
- $ bundle exec veewee vbox build 'mybuntubox'
11
+ $ bundle exec veewee vbox define 'myubuntubox' 'ubuntu-12.10-server-amd64'
12
+ $ bundle exec veewee vbox build 'myubuntubox'
13
13
 
14
14
  For additional box building instructions, see the [Veewee Basics](basics.md) and [Definition Customization](customize.md) docs.
15
15
 
@@ -16,6 +16,9 @@ module Veewee
16
16
  method_option :checksum , :type => :boolean , :default => false, :desc => "verify checksum"
17
17
  method_option :postinstall_include, :type => :array, :default => [], :aliases => "-i", :desc => "ruby regexp of postinstall filenames to additionally include"
18
18
  method_option :postinstall_exclude, :type => :array, :default => [], :aliases => "-e", :desc => "ruby regexp of postinstall filenames to exclude"
19
+ method_option :skip_to_postinstall, :aliases => ['--skip-to-postinstall'], :type => :boolean,
20
+ :default => false,
21
+ :desc => "Skip to postinstall."
19
22
  def build(box_name)
20
23
  env.get_box(box_name).build(options)
21
24
  end
@@ -14,6 +14,9 @@ module Veewee
14
14
  method_option :checksum , :type => :boolean , :default => false, :desc => "verify checksum"
15
15
  method_option :postinstall_include, :type => :array, :default => [], :aliases => "-i", :desc => "ruby regexp of postinstall filenames to additionally include"
16
16
  method_option :postinstall_exclude, :type => :array, :default => [], :aliases => "-e", :desc => "ruby regexp of postinstall filenames to exclude"
17
+ method_option :skip_to_postinstall, :aliases => ['--skip-to-postinstall'], :type => :boolean,
18
+ :default => false,
19
+ :desc => "Skip to postinstall."
17
20
 
18
21
  method_option :use_emulation, :type => :boolean , :default => false, :desc => "Use QEMU emulation"
19
22
  method_option :pool_name, :type => :string, :default => nil, :desc => "Name of the libvirt storage pool to be used"
@@ -13,6 +13,9 @@ module Veewee
13
13
  method_option :checksum , :type => :boolean , :default => false, :desc => "verify checksum"
14
14
  method_option :postinstall_include, :type => :array, :default => [], :aliases => "-i", :desc => "ruby regexp of postinstall filenames to additionally include"
15
15
  method_option :postinstall_exclude, :type => :array, :default => [], :aliases => "-e", :desc => "ruby regexp of postinstall filenames to exclude"
16
+ method_option :skip_to_postinstall, :aliases => ['--skip-to-postinstall'], :type => :boolean,
17
+ :default => false,
18
+ :desc => "Skip to postinstall."
16
19
  def build(box_name)
17
20
  env.get_box(box_name).build(options)
18
21
  end
@@ -15,6 +15,9 @@ module Veewee
15
15
  method_option :redirectconsole,:type => :boolean , :default => false, :aliases => "-r", :desc => "redirects console output"
16
16
  method_option :postinstall_include, :type => :array, :default => [], :aliases => "-i", :desc => "ruby regexp of postinstall filenames to additionally include"
17
17
  method_option :postinstall_exclude, :type => :array, :default => [], :aliases => "-e", :desc => "ruby regexp of postinstall filenames to exclude"
18
+ method_option :skip_to_postinstall, :aliases => ['--skip-to-postinstall'], :type => :boolean,
19
+ :default => false,
20
+ :desc => "Skip to postinstall."
18
21
  def build(box_name)
19
22
  env.get_box(box_name).build(options)
20
23
  end
@@ -19,6 +19,16 @@ Windows8_64:
19
19
  :kvm:
20
20
  :vbox: Windows8_64
21
21
  :parallels: win-8
22
+ Windows81:
23
+ :fusion:
24
+ :kvm:
25
+ :vbox: Windows81
26
+ :parallels: win-8
27
+ Windows81_64:
28
+ :fusion:
29
+ :kvm:
30
+ :vbox: Windows81_64
31
+ :parallels: win-8
22
32
  WindowsNT:
23
33
  :fusion: winNT
24
34
  :kvm:
@@ -288,6 +298,10 @@ Solaris_64:
288
298
  :kvm:
289
299
  :vbox: Solaris_64
290
300
  :parallels: solaris-10
301
+ Solaris11_64:
302
+ :fusion: solaris10-64
303
+ :kvm:
304
+ :vbox: Solaris11_64
291
305
  Solaris9:
292
306
  :fusion: solaris
293
307
  :kvm:
@@ -341,15 +355,15 @@ ESXi5:
341
355
  Darwin_10_7:
342
356
  :fusion: darwin11
343
357
  :kvm:
344
- :vbox:
358
+ :vbox: MacOS
345
359
  :parallels:
346
360
  Darwin_10_7_64:
347
361
  :fusion: darwin11-64
348
362
  :kvm:
349
- :vbox:
363
+ :vbox: MacOS_64
350
364
  :parallels:
351
365
  Darwin_10_8_64:
352
366
  :fusion: darwin12-64
353
367
  :kvm:
354
- :vbox:
368
+ :vbox: MacOS_64
355
369
  :parallels:
@@ -37,7 +37,7 @@ module Veewee
37
37
 
38
38
  attr_accessor :use_hw_virt_ext, :use_pae, :hostiocache, :use_sata
39
39
 
40
- attr_accessor :iso_dowload_timeout, :iso_src, :iso_md5, :iso_sha1 , :iso_download_instructions
40
+ attr_accessor :iso_download_timeout, :iso_src, :iso_md5, :iso_sha1, :iso_sha256, :iso_download_instructions
41
41
 
42
42
  attr_accessor :virtualbox
43
43
  attr_accessor :vmfusion
@@ -72,7 +72,7 @@ module Veewee
72
72
  @cpu_count = '1' ; @memory_size = '256'; @video_memory_size = '10'
73
73
 
74
74
  # Default there is no ISO file mounted
75
- @iso_file = nil, @iso_src = nil ; @iso_md5 = nil ; @iso_sha1; @iso_download_timeout = 1000 ; @iso_download_instructions = nil
75
+ @iso_file = nil, @iso_src = nil ; @iso_md5 = nil ; @iso_sha1; @iso_sha256; @iso_download_timeout = 1000 ; @iso_download_instructions = nil
76
76
 
77
77
  # Shares to add
78
78
  @add_shares = []
@@ -67,7 +67,7 @@ module Veewee
67
67
 
68
68
  git_template = false
69
69
  # Check if the template is a git repo
70
- if template_name.start_with?("git://")
70
+ if template_name.start_with?("git://", "git+ssh://", "git+http://")
71
71
  git_template = true
72
72
  end
73
73
 
@@ -184,8 +184,8 @@ module Veewee
184
184
  env.logger.debug("DefinitionDir '#{env.definition_dir}' succesfuly created")
185
185
  end
186
186
  else
187
- env.logger.fatal("DefinitionDir '#{definition_dir}' is not writable")
188
- raise Veewee::Error, "DefinitionDir '#{definition_dir}' is not writable"
187
+ env.logger.fatal("DefinitionDir '#{env.definition_dir}' is not writable")
188
+ raise Veewee::Error, "DefinitionDir '#{env.definition_dir}' is not writable"
189
189
  end
190
190
  end
191
191
 
@@ -1,3 +1,5 @@
1
+ require 'to_slug'
2
+
1
3
  module Veewee
2
4
  module Provider
3
5
  module Core
@@ -17,24 +19,8 @@ module Veewee
17
19
  end
18
20
  end
19
21
 
20
- def build(options={})
21
-
22
- if definition.nil?
23
- raise Veewee::Error,"Could not find the definition. Make sure you are one level above the definitions directory when you execute the build command."
24
- end
25
-
26
- # Requires valid definition
27
-
28
- ui.info "Building Box #{name} with Definition #{definition.name}:"
29
- options.each do |name,value|
30
- ui.info "- #{name} : #{value}"
31
- end
32
-
33
- # Checking regexp of postinstall include/excludes
34
- validate_postinstall_regex(options)
35
-
36
- # Check the iso file we need to build the box
37
- definition.verify_iso(options)
22
+ protected
23
+ def kickstart(options)
38
24
 
39
25
  if self.exists?
40
26
  # check if --force option was given
@@ -92,6 +78,39 @@ module Veewee
92
78
  end
93
79
 
94
80
  self.handle_kickstart(options)
81
+ end
82
+
83
+ def build(options={})
84
+
85
+ if definition.nil?
86
+ raise Veewee::Error,"Could not find the definition. Make sure you are one level above the definitions directory when you execute the build command."
87
+ end
88
+
89
+ # Requires valid definition
90
+ ui.info "Building Box #{name} with Definition #{definition.name}:"
91
+ options.each do |name,value|
92
+ ui.info "- #{name} : #{value}"
93
+ end
94
+
95
+ # Checking regexp of postinstall include/excludes
96
+ validate_postinstall_regex(options)
97
+
98
+ # Check the iso file we need to build the box
99
+ definition.verify_iso(options)
100
+
101
+ if (self.exists? && options['skip_to_postinstall'] == true) then
102
+ ui.info "Skipping to postinstall."
103
+ if ! self.running? then
104
+ self.up(options)
105
+ run_hook(:after_up)
106
+ # Waiting for it to boot
107
+ ui.info "Waiting #{definition.boot_wait.to_i} seconds for the machine to boot"
108
+ sleep definition.boot_wait.to_i
109
+ end
110
+ else
111
+ self.kickstart(options)
112
+ end
113
+
95
114
 
96
115
  # Wait for an ipaddress
97
116
  # This needs to be done after the kickstart:
@@ -109,6 +128,8 @@ module Veewee
109
128
  # into .veewee_params
110
129
  self.transfer_params(options)
111
130
 
131
+ run_hook(:before_postinstall)
132
+
112
133
  # Filtering post install files based upon --postinstall-include and --postinstall--exclude
113
134
  definition.postinstall_files=filter_postinstall_files(options)
114
135
 
@@ -218,12 +239,15 @@ module Veewee
218
239
  # For each kickstart file spinup a webserver and wait for the file to be fetched
219
240
  unless kickstartfiles.nil?
220
241
  kickstartfiles.each do |kickfile|
221
- wait_for_http_request(kickfile,{
222
- :port => definition.kickstart_port,
223
- :host => definition.kickstart_ip,
224
- :timeout => definition.kickstart_timeout,
225
- :web_dir => definition.path
226
- })
242
+ wait_for_http_request(
243
+ File.join(definition.path, kickfile),
244
+ kickfile.start_with?('/') ? kickfile : '/' + kickfile,
245
+ {
246
+ :port => definition.kickstart_port,
247
+ :host => definition.kickstart_ip,
248
+ :timeout => definition.kickstart_timeout,
249
+ }
250
+ )
227
251
  end
228
252
  end
229
253
  end