veewee 0.2.3 → 0.3.0.alpha1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (389) hide show
  1. data/.gitignore +3 -0
  2. data/Gemfile +1 -2
  3. data/Gemfile.lock +53 -30
  4. data/License +21 -0
  5. data/README-LIB.md +2 -0
  6. data/README.md +35 -62
  7. data/Rakefile +54 -88
  8. data/bin/veewee +13 -70
  9. data/bin/veewee-kvm-old +34 -0
  10. data/bin/veewee-vagrant +55 -0
  11. data/bin/veewee-vmfusion +34 -0
  12. data/lib/fission.rb +41 -0
  13. data/lib/fission/cli.rb +76 -0
  14. data/lib/fission/command.rb +15 -0
  15. data/lib/fission/command/clone.rb +68 -0
  16. data/lib/fission/command/delete.rb +71 -0
  17. data/lib/fission/command/snapshot_create.rb +52 -0
  18. data/lib/fission/command/snapshot_list.rb +45 -0
  19. data/lib/fission/command/snapshot_revert.rb +54 -0
  20. data/lib/fission/command/start.rb +69 -0
  21. data/lib/fission/command/status.rb +31 -0
  22. data/lib/fission/command/stop.rb +49 -0
  23. data/lib/fission/command/suspend.rb +67 -0
  24. data/lib/fission/config.rb +29 -0
  25. data/lib/fission/core_ext/class.rb +5 -0
  26. data/lib/fission/core_ext/file.rb +7 -0
  27. data/lib/fission/core_ext/object.rb +112 -0
  28. data/lib/fission/error.rb +9 -0
  29. data/lib/fission/fusion.rb +17 -0
  30. data/lib/fission/leasesfile.rb +74 -0
  31. data/lib/fission/metadata.rb +39 -0
  32. data/lib/fission/response.rb +16 -0
  33. data/lib/fission/ui.rb +22 -0
  34. data/lib/fission/version.rb +3 -0
  35. data/lib/fission/vm.rb +361 -0
  36. data/lib/net/vnc/vnc.rb +341 -0
  37. data/lib/vagrant_init.rb +5 -2
  38. data/lib/veewee.rb +20 -3
  39. data/lib/veewee/builder/core/box.rb +32 -0
  40. data/lib/veewee/builder/core/box/vnc.rb +122 -0
  41. data/lib/veewee/builder/core/builder.rb +90 -0
  42. data/lib/veewee/builder/core/builder/build.rb +250 -0
  43. data/lib/veewee/builder/core/builder/iso.rb +120 -0
  44. data/lib/veewee/builder/core/builder/transaction.rb +25 -0
  45. data/lib/veewee/builder/core/builder/tunnel.rb +46 -0
  46. data/lib/veewee/builder/kvm/box.rb +130 -0
  47. data/lib/veewee/builder/kvm/builder.rb +38 -0
  48. data/lib/veewee/builder/virtualbox/box.rb +121 -0
  49. data/lib/veewee/builder/virtualbox/builder.rb +48 -0
  50. data/lib/veewee/builder/virtualbox/helper/_snapshots.rb +105 -0
  51. data/lib/veewee/builder/virtualbox/helper/_transaction.rb +135 -0
  52. data/lib/veewee/builder/virtualbox/helper/console_type.rb +62 -0
  53. data/lib/veewee/builder/virtualbox/helper/create.rb +210 -0
  54. data/lib/veewee/builder/virtualbox/helper/destroy.rb +79 -0
  55. data/lib/veewee/builder/virtualbox/helper/export_vagrant.rb +87 -0
  56. data/lib/veewee/builder/virtualbox/helper/validate_vagrant.rb +35 -0
  57. data/lib/veewee/builder/vmfusion/box.rb +137 -0
  58. data/lib/veewee/builder/vmfusion/builder.rb +78 -0
  59. data/lib/veewee/builder/vmfusion/helper/create.rb +68 -0
  60. data/lib/veewee/builder/vmfusion/helper/export_ova.rb +26 -0
  61. data/lib/veewee/builder/vmfusion/helper/template.rb +39 -0
  62. data/lib/veewee/builder/vmfusion/helper/template.vmx.erb +81 -0
  63. data/lib/veewee/builder/vmfusion/helper/validate_vmfusion.rb +37 -0
  64. data/lib/veewee/builder/vmfusion/info/export_ovf.info +103 -0
  65. data/lib/veewee/cli.rb +55 -0
  66. data/lib/veewee/command.rb +10 -20
  67. data/lib/veewee/command/base.rb +106 -0
  68. data/lib/veewee/command/group_base.rb +107 -0
  69. data/lib/veewee/command/helpers.rb +13 -0
  70. data/lib/veewee/command/kvm.rb +85 -0
  71. data/lib/veewee/command/named_base.rb +14 -0
  72. data/lib/veewee/command/vagrant.rb +108 -0
  73. data/lib/veewee/command/version.rb +13 -0
  74. data/lib/veewee/command/virtualbox.rb +86 -0
  75. data/lib/veewee/command/vmfusion.rb +113 -0
  76. data/lib/veewee/config.rb +89 -3
  77. data/lib/veewee/config/builders.rb +36 -0
  78. data/lib/veewee/config/collection.rb +82 -0
  79. data/lib/veewee/config/component.rb +19 -0
  80. data/lib/veewee/config/definition.rb +44 -0
  81. data/lib/veewee/config/ostypes.yml +165 -0
  82. data/lib/veewee/config/veewee.rb +21 -0
  83. data/lib/veewee/definition.rb +130 -0
  84. data/lib/veewee/environment.rb +367 -0
  85. data/lib/veewee/error.rb +20 -0
  86. data/lib/veewee/templates/locales/en.yml +30 -0
  87. data/lib/veewee/ui.rb +83 -0
  88. data/lib/veewee/util/scancode.rb +112 -0
  89. data/lib/veewee/util/shell.rb +42 -0
  90. data/lib/veewee/util/ssh.rb +158 -0
  91. data/lib/veewee/util/tcp.rb +88 -0
  92. data/lib/veewee/util/web.rb +63 -0
  93. data/lib/veewee/vagrant/config.rb +7 -0
  94. data/lib/veewee/version.rb +6 -1
  95. data/templates/CentOS-4.8-i386/definition.rb +3 -3
  96. data/templates/CentOS-4.8-i386/postinstall.sh +2 -2
  97. data/templates/CentOS-5.5-x86_64-netboot/definition.rb +1 -1
  98. data/templates/CentOS-5.5-x86_64-netboot/postinstall.sh +1 -1
  99. data/templates/CentOS-5.6-i386-netboot/definition.rb +3 -3
  100. data/templates/CentOS-5.6-i386-netboot/ks.cfg +2 -2
  101. data/templates/CentOS-5.6-i386-netboot/postinstall.sh +2 -2
  102. data/templates/CentOS-5.6-i386/definition.rb +2 -2
  103. data/templates/CentOS-5.6-i386/postinstall.sh +2 -2
  104. data/templates/CentOS-5.6-x86_64-netboot/definition.rb +3 -3
  105. data/templates/CentOS-5.6-x86_64-netboot/ks.cfg +1 -1
  106. data/templates/CentOS-5.6-x86_64-netboot/postinstall.sh +1 -1
  107. data/templates/CentOS-5.7-i386-netboot/postinstall.sh +3 -3
  108. data/templates/CentOS-5.7-x86_64-netboot/postinstall.sh +1 -1
  109. data/templates/CentOS-6.0-i386-netboot/definition.rb +2 -2
  110. data/templates/CentOS-6.0-i386-netboot/postinstall.sh +2 -2
  111. data/templates/CentOS-6.0-i386/definition.rb +2 -2
  112. data/templates/CentOS-6.0-i386/postinstall.sh +2 -2
  113. data/templates/CentOS-6.0-x86_64-minimal/definition.rb +2 -2
  114. data/templates/CentOS-6.0-x86_64-minimal/postinstall.sh +4 -17
  115. data/templates/CentOS-6.0-x86_64-netboot/definition.rb +2 -2
  116. data/templates/CentOS-6.0-x86_64-netboot/postinstall.sh +2 -2
  117. data/templates/CentOS-6.0-x86_64/definition.rb +2 -2
  118. data/templates/CentOS-6.0-x86_64/postinstall.sh +2 -2
  119. data/templates/Debian-5.0.8-amd64-netboot/definition.rb +1 -1
  120. data/templates/Debian-5.0.8-amd64-netboot/postinstall.sh +1 -1
  121. data/templates/Debian-5.0.8-i386-netboot/definition.rb +1 -1
  122. data/templates/Debian-5.0.8-i386-netboot/postinstall.sh +1 -1
  123. data/templates/{Debian-6.0.3-amd64-netboot → Debian-6.0.2-amd64-netboot}/definition.rb +4 -4
  124. data/templates/{ubuntu-11.10-server-amd64-ishaya → Debian-6.0.2-amd64-netboot}/postinstall.sh +23 -42
  125. data/templates/{Debian-6.0.3-amd64-netboot → Debian-6.0.2-amd64-netboot}/preseed.cfg +0 -0
  126. data/templates/{Debian-6.0.3-i386-netboot → Debian-6.0.2-i386-netboot}/definition.rb +4 -4
  127. data/templates/{Debian-6.0.3-i386-netboot → Debian-6.0.2-i386-netboot}/postinstall.sh +1 -1
  128. data/templates/{Debian-6.0.3-i386-netboot → Debian-6.0.2-i386-netboot}/preseed.cfg +0 -0
  129. data/templates/Fedora-14-amd64-netboot/definition.rb +2 -2
  130. data/templates/Fedora-14-amd64-netboot/postinstall.sh +2 -2
  131. data/templates/Fedora-14-amd64/definition.rb +2 -2
  132. data/templates/Fedora-14-amd64/postinstall.sh +2 -2
  133. data/templates/Fedora-14-i386-netboot/definition.rb +2 -2
  134. data/templates/Fedora-14-i386-netboot/postinstall.sh +2 -2
  135. data/templates/Fedora-14-i386/definition.rb +2 -2
  136. data/templates/Fedora-14-i386/postinstall.sh +2 -2
  137. data/templates/Fedora-15-i386-netboot/definition.rb +2 -2
  138. data/templates/Fedora-15-i386/definition.rb +3 -3
  139. data/templates/Sysrescuecd-2.0.0-experimental/definition.rb +1 -1
  140. data/templates/archlinux-i386-netboot/aif.cfg +14 -8
  141. data/templates/archlinux-i386-netboot/definition.rb +7 -4
  142. data/templates/archlinux-i386-netboot/postinstall.sh +17 -5
  143. data/templates/archlinux-i386-netboot/postinstall2.sh +1 -3
  144. data/templates/archlinux-i386/definition.rb +4 -4
  145. data/templates/archlinux-i386/postinstall.sh +1 -1
  146. data/templates/archlinux-x86_64-netboot/aif.cfg +14 -8
  147. data/templates/archlinux-x86_64-netboot/definition.rb +7 -4
  148. data/templates/archlinux-x86_64-netboot/postinstall.sh +16 -1
  149. data/templates/archlinux-x86_64-netboot/postinstall2.sh +1 -3
  150. data/templates/archlinux-x86_64/definition.rb +2 -2
  151. data/templates/archlinux-x86_64/postinstall.sh +1 -1
  152. data/templates/freebsd-8.2-experimental/definition.rb +1 -1
  153. data/templates/freebsd-8.2-pcbsd-i386-netboot/definition.rb +2 -5
  154. data/templates/freebsd-8.2-pcbsd-i386-netboot/postinstall.sh +1 -1
  155. data/templates/freebsd-8.2-pcbsd-i386/definition.rb +3 -4
  156. data/templates/freebsd-8.2-pcbsd-i386/postinstall.sh +1 -1
  157. data/templates/gentoo-latest-i386-experimental/definition.rb +7 -7
  158. data/templates/gentoo-latest-i386-experimental/postinstall.sh +1 -1
  159. data/templates/openSUSE-11.4-DVD-i586/postinstall.sh +1 -1
  160. data/templates/openSUSE-11.4-DVD-x86_64/postinstall.sh +1 -1
  161. data/templates/openSUSE-11.4-NET-i586/postinstall.sh +1 -1
  162. data/templates/openSUSE-11.4-NET-x86_64/postinstall.sh +1 -1
  163. data/templates/openindiana-148-ai-x86/definition.rb +3 -3
  164. data/templates/openindiana-148-ai-x86/postinstall.sh +1 -1
  165. data/templates/opensuse-11.4-i386-experimental/definition.rb +1 -1
  166. data/templates/opensuse-11.4-i386-experimental/postinstall.sh +1 -1
  167. data/templates/solaris-11-express-i386/definition.rb +3 -3
  168. data/templates/solaris-11-express-i386/postinstall.sh +1 -1
  169. data/templates/ubuntu-10.04.2-amd64-netboot/definition.rb +1 -1
  170. data/templates/ubuntu-10.04.2-amd64-netboot/postinstall.sh +1 -1
  171. data/templates/ubuntu-10.04.2-server-i386-netboot/definition.rb +1 -1
  172. data/templates/ubuntu-10.04.2-server-i386-netboot/postinstall.sh +1 -1
  173. data/templates/ubuntu-10.04.3-server-amd64-alt/definition.rb +6 -6
  174. data/templates/ubuntu-10.04.3-server-amd64-alt/postinstall.sh +1 -1
  175. data/templates/ubuntu-10.04.3-server-amd64/base.sh +11 -0
  176. data/templates/ubuntu-10.04.3-server-amd64/chef.sh +2 -0
  177. data/templates/ubuntu-10.04.3-server-amd64/cleanup.sh +19 -0
  178. data/templates/ubuntu-10.04.3-server-amd64/definition.rb +19 -11
  179. data/templates/ubuntu-10.04.3-server-amd64/preseed.cfg +4 -4
  180. data/templates/ubuntu-10.04.3-server-amd64/puppet.sh +1 -0
  181. data/templates/ubuntu-10.04.3-server-amd64/ruby.sh +24 -0
  182. data/templates/ubuntu-10.04.3-server-amd64/vagrant.sh +27 -0
  183. data/templates/ubuntu-10.04.3-server-amd64/virtualbox.sh +12 -0
  184. data/templates/ubuntu-10.04.3-server-i386/postinstall.sh +1 -1
  185. data/templates/ubuntu-10.10-server-amd64-netboot/definition.rb +1 -1
  186. data/templates/ubuntu-10.10-server-amd64-netboot/postinstall.sh +1 -1
  187. data/templates/ubuntu-10.10-server-amd64/base.sh +11 -0
  188. data/templates/ubuntu-10.10-server-amd64/chef.sh +2 -0
  189. data/templates/ubuntu-10.10-server-amd64/cleanup.sh +19 -0
  190. data/templates/ubuntu-10.10-server-amd64/definition.rb +20 -8
  191. data/templates/ubuntu-10.10-server-amd64/postinstall.sh +1 -1
  192. data/templates/ubuntu-10.10-server-amd64/preseed.cfg +5 -5
  193. data/templates/ubuntu-10.10-server-amd64/puppet.sh +1 -0
  194. data/templates/ubuntu-10.10-server-amd64/ruby.sh +24 -0
  195. data/templates/ubuntu-10.10-server-amd64/vagrant.sh +27 -0
  196. data/templates/ubuntu-10.10-server-amd64/virtualbox.sh +12 -0
  197. data/templates/ubuntu-10.10-server-i386-netboot/definition.rb +1 -1
  198. data/templates/ubuntu-10.10-server-i386-netboot/postinstall.sh +1 -1
  199. data/templates/ubuntu-10.10-server-i386/definition.rb +1 -1
  200. data/templates/ubuntu-10.10-server-i386/postinstall.sh +1 -1
  201. data/templates/ubuntu-11.04-server-amd64/apt-upgrade.sh +4 -0
  202. data/templates/ubuntu-11.04-server-amd64/chef.sh +1 -0
  203. data/templates/ubuntu-11.04-server-amd64/definition.rb +32 -9
  204. data/templates/ubuntu-11.04-server-amd64/network-cleanup.sh +14 -0
  205. data/templates/ubuntu-11.04-server-amd64/nfs-client.sh +3 -0
  206. data/templates/ubuntu-11.04-server-amd64/puppet.sh +1 -0
  207. data/templates/ubuntu-11.04-server-amd64/remove-build-essentials.sh +3 -0
  208. data/templates/ubuntu-11.04-server-amd64/ruby.sh +29 -0
  209. data/templates/ubuntu-11.04-server-amd64/ssh-keys.sh +7 -0
  210. data/templates/ubuntu-11.04-server-amd64/sudo.sh +4 -0
  211. data/templates/ubuntu-11.04-server-amd64/timestamp.sh +1 -0
  212. data/templates/ubuntu-11.04-server-amd64/vbox_additions.sh +11 -0
  213. data/templates/ubuntu-11.04-server-amd64/zero-disk.sh +3 -0
  214. data/templates/ubuntu-11.04-server-i386/definition.rb +2 -2
  215. data/templates/ubuntu-11.04-server-i386/postinstall.sh +1 -1
  216. data/templates/ubuntu-8.04.4-server-amd64/definition.rb +1 -2
  217. data/templates/ubuntu-8.04.4-server-amd64/postinstall.sh +7 -8
  218. data/templates/ubuntu-8.04.4-server-amd64/preseed.cfg +1 -0
  219. data/templates/ubuntu-8.04.4-server-i386/definition.rb +2 -2
  220. data/templates/ubuntu-8.04.4-server-i386/postinstall.sh +3 -25
  221. data/templates/windows-2008R2-amd64/cygwin-setup.exe +0 -0
  222. data/templates/windows-2008R2-amd64/definition.rb +1 -1
  223. data/templates/windows-2008R2-amd64/install-winrm.bat +0 -2
  224. data/templates/windows-2008R2-amd64/postinstall.sh +1 -1
  225. data/templates/windows-2008R2-amd64/win7/Autounattend.xml +180 -0
  226. data/test/build_test.rb +50 -0
  227. data/test/definition_test.rb +11 -0
  228. data/test/definitions/test_definition/_test_me.sh +1 -0
  229. data/test/definitions/test_definition/autorun0 +3 -0
  230. data/test/definitions/test_definition/definition.rb +27 -0
  231. data/test/environment_test.rb +67 -0
  232. data/validation/features/steps/ssh_steps.rb +52 -52
  233. data/validation/vagrant.feature +64 -48
  234. data/veewee.gemspec +14 -9
  235. metadata +243 -213
  236. data/lib/veewee/command/basebox.rb +0 -63
  237. data/lib/veewee/command/basebox_build.rb +0 -32
  238. data/lib/veewee/command/basebox_define.rb +0 -28
  239. data/lib/veewee/command/basebox_destroy.rb +0 -22
  240. data/lib/veewee/command/basebox_export.rb +0 -22
  241. data/lib/veewee/command/basebox_list.rb +0 -23
  242. data/lib/veewee/command/basebox_ostypes.rb +0 -23
  243. data/lib/veewee/command/basebox_templates.rb +0 -23
  244. data/lib/veewee/command/basebox_undefine.rb +0 -22
  245. data/lib/veewee/command/basebox_validate.rb +0 -26
  246. data/lib/veewee/export.rb +0 -81
  247. data/lib/veewee/scancode.rb +0 -151
  248. data/lib/veewee/session.rb +0 -907
  249. data/lib/veewee/shell.rb +0 -54
  250. data/lib/veewee/ssh.rb +0 -193
  251. data/lib/veewee/transaction.rb +0 -122
  252. data/lib/veewee/utils.rb +0 -26
  253. data/lib/veewee/web.rb +0 -48
  254. data/templates/CentOS-6.1-x86_64-minimal/definition.rb +0 -15
  255. data/templates/CentOS-6.1-x86_64-minimal/ks.cfg +0 -37
  256. data/templates/CentOS-6.1-x86_64-minimal/postinstall.sh +0 -50
  257. data/templates/CentOS-6.2-x86_64-minimal/definition.rb +0 -15
  258. data/templates/CentOS-6.2-x86_64-minimal/ks.cfg +0 -37
  259. data/templates/CentOS-6.2-x86_64-minimal/postinstall.sh +0 -50
  260. data/templates/Debian-6.0.3-amd64-netboot/postinstall.sh +0 -80
  261. data/templates/Fedora-15-x86_64-netboot/definition.rb +0 -29
  262. data/templates/Fedora-15-x86_64-netboot/ks.cfg +0 -64
  263. data/templates/Fedora-15-x86_64-netboot/postinstall.sh +0 -33
  264. data/templates/Fedora-16-i386/definition.rb +0 -17
  265. data/templates/Fedora-16-i386/ks.cfg +0 -72
  266. data/templates/Fedora-16-i386/postinstall.sh +0 -35
  267. data/templates/Fedora-16-x86_64/definition.rb +0 -17
  268. data/templates/Fedora-16-x86_64/ks.cfg +0 -72
  269. data/templates/Fedora-16-x86_64/postinstall.sh +0 -35
  270. data/templates/SLES-11-SP1-DVD-i586-GM/autoinst_de.xml +0 -1127
  271. data/templates/SLES-11-SP1-DVD-i586-GM/autoinst_en.xml +0 -1127
  272. data/templates/SLES-11-SP1-DVD-i586-GM/definition.rb +0 -37
  273. data/templates/SLES-11-SP1-DVD-i586-GM/postinstall.sh +0 -43
  274. data/templates/SLES-11-SP1-DVD-x86_64-GM/autoinst_de.xml +0 -1171
  275. data/templates/SLES-11-SP1-DVD-x86_64-GM/autoinst_en.xml +0 -1171
  276. data/templates/SLES-11-SP1-DVD-x86_64-GM/definition.rb +0 -37
  277. data/templates/SLES-11-SP1-DVD-x86_64-GM/postinstall.sh +0 -43
  278. data/templates/funtoo-latest-generic_64-stable/definition.rb +0 -34
  279. data/templates/funtoo-latest-generic_64-stable/postinstall.sh +0 -177
  280. data/templates/funtoo-latest-generic_64-stable/postinstall2.sh +0 -83
  281. data/templates/gentoo-latest-x86_64-experimental/definition.rb +0 -34
  282. data/templates/gentoo-latest-x86_64-experimental/postinstall.sh +0 -214
  283. data/templates/openSUSE-12.1-DVD+NET-i586/autoinst_de.xml +0 -1483
  284. data/templates/openSUSE-12.1-DVD+NET-i586/autoinst_en.xml +0 -1483
  285. data/templates/openSUSE-12.1-DVD+NET-i586/definition.rb +0 -44
  286. data/templates/openSUSE-12.1-DVD+NET-i586/postinstall.sh +0 -43
  287. data/templates/openSUSE-12.1-DVD+NET-x86_64/autoinst_de.xml +0 -1727
  288. data/templates/openSUSE-12.1-DVD+NET-x86_64/autoinst_en.xml +0 -1727
  289. data/templates/openSUSE-12.1-DVD+NET-x86_64/definition.rb +0 -44
  290. data/templates/openSUSE-12.1-DVD+NET-x86_64/postinstall.sh +0 -43
  291. data/templates/openbsd50_amd64/README +0 -28
  292. data/templates/openbsd50_amd64/definition.rb +0 -84
  293. data/templates/openbsd50_amd64/postinstall.sh +0 -81
  294. data/templates/openbsd50_i386/.definition.rb.swp +0 -0
  295. data/templates/openbsd50_i386/README +0 -28
  296. data/templates/openbsd50_i386/definition.rb +0 -84
  297. data/templates/openbsd50_i386/postinstall.sh +0 -80
  298. data/templates/scientificlinux-6.1-i386-netboot/definition.rb +0 -16
  299. data/templates/scientificlinux-6.1-i386-netboot/ks.cfg +0 -53
  300. data/templates/scientificlinux-6.1-i386-netboot/postinstall.sh +0 -30
  301. data/templates/scientificlinux-6.1-x86_64-netboot/definition.rb +0 -16
  302. data/templates/scientificlinux-6.1-x86_64-netboot/ks.cfg +0 -53
  303. data/templates/scientificlinux-6.1-x86_64-netboot/postinstall.sh +0 -30
  304. data/templates/ubuntu-10.04.3-server-amd64/postinstall.sh +0 -90
  305. data/templates/ubuntu-11.04-server-amd64/postinstall.sh +0 -96
  306. data/templates/ubuntu-11.10-server-amd64-ishaya/definition.rb +0 -24
  307. data/templates/ubuntu-11.10-server-amd64-ishaya/preseed.cfg +0 -87
  308. data/templates/ubuntu-11.10-server-amd64-ruby192/definition.rb +0 -24
  309. data/templates/ubuntu-11.10-server-amd64-ruby192/postinstall.sh +0 -90
  310. data/templates/ubuntu-11.10-server-amd64-ruby192/preseed.cfg +0 -87
  311. data/templates/ubuntu-11.10-server-amd64/definition.rb +0 -35
  312. data/templates/ubuntu-11.10-server-amd64/postinstall.sh +0 -88
  313. data/templates/ubuntu-11.10-server-amd64/preseed.cfg +0 -87
  314. data/templates/ubuntu-11.10-server-i386/definition.rb +0 -35
  315. data/templates/ubuntu-11.10-server-i386/postinstall.sh +0 -88
  316. data/templates/ubuntu-11.10-server-i386/preseed.cfg +0 -87
  317. data/templates/windows-2008R1-serverstandard-amd64/Autounattend.xml +0 -146
  318. data/templates/windows-2008R1-serverstandard-amd64/README.md +0 -134
  319. data/templates/windows-2008R1-serverstandard-amd64/cygwin-setup.exe +0 -0
  320. data/templates/windows-2008R1-serverstandard-amd64/definition.rb +0 -114
  321. data/templates/windows-2008R1-serverstandard-amd64/install-cygwin-sshd.bat +0 -40
  322. data/templates/windows-2008R1-serverstandard-amd64/install-guest-additions.bat +0 -5
  323. data/templates/windows-2008R1-serverstandard-amd64/install-winrm.bat +0 -14
  324. data/templates/windows-2008R1-serverstandard-amd64/oracle-cert.cer +0 -0
  325. data/templates/windows-2008R1-serverstandard-amd64/postinstall.sh +0 -74
  326. data/templates/windows-2008R1-serverstandard-amd64/sudo +0 -2
  327. data/templates/windows-2008R1-serverstandard-amd64/winrm.rb +0 -8
  328. data/templates/windows-2008R2-serverstandard-amd64/Autounattend.xml +0 -147
  329. data/templates/windows-2008R2-serverstandard-amd64/README.md +0 -142
  330. data/templates/windows-2008R2-serverstandard-amd64/definition.rb +0 -44
  331. data/templates/windows-2008R2-serverstandard-amd64/install-cygwin-sshd.bat +0 -41
  332. data/templates/windows-2008R2-serverstandard-amd64/install-winrm.bat +0 -11
  333. data/templates/windows-2008R2-serverstandard-amd64/oracle-cert.cer +0 -0
  334. data/templates/windows-2008R2-serverstandard-amd64/postinstall.sh +0 -74
  335. data/templates/windows-7-enterprise-amd64/Autounattend.xml +0 -149
  336. data/templates/windows-7-enterprise-amd64/README.md +0 -52
  337. data/templates/windows-7-enterprise-amd64/definition.rb +0 -39
  338. data/templates/windows-7-enterprise-amd64/install-cygwin-sshd.bat +0 -40
  339. data/templates/windows-7-enterprise-amd64/install-winrm.bat +0 -14
  340. data/templates/windows-7-enterprise-amd64/oracle-cert.cer +0 -0
  341. data/templates/windows-7-enterprise-amd64/postinstall.sh +0 -74
  342. data/templates/windows-7-enterprise-i386/Autounattend.xml +0 -151
  343. data/templates/windows-7-enterprise-i386/README.md +0 -169
  344. data/templates/windows-7-enterprise-i386/definition.rb +0 -40
  345. data/templates/windows-7-enterprise-i386/install-cygwin-sshd.bat +0 -40
  346. data/templates/windows-7-enterprise-i386/install-winrm.bat +0 -14
  347. data/templates/windows-7-enterprise-i386/oracle-cert.cer +0 -0
  348. data/templates/windows-7-enterprise-i386/postinstall.sh +0 -74
  349. data/templates/windows-7-premium-amd64/Autounattend.xml +0 -152
  350. data/templates/windows-7-premium-amd64/README.md +0 -171
  351. data/templates/windows-7-premium-amd64/definition.rb +0 -38
  352. data/templates/windows-7-premium-amd64/install-chefclient.bat +0 -44
  353. data/templates/windows-7-premium-amd64/install-winrm.bat +0 -11
  354. data/templates/windows-7-premium-amd64/oracle-cert.cer +0 -0
  355. data/templates/windows-7-premium-amd64/postinstall.sh +0 -124
  356. data/templates/windows-7-premium-amd64/winrm.rb +0 -8
  357. data/templates/windows-7-professional-amd64/Autounattend.xml +0 -152
  358. data/templates/windows-7-professional-amd64/README.md +0 -171
  359. data/templates/windows-7-professional-amd64/definition.rb +0 -41
  360. data/templates/windows-7-professional-amd64/install-cygwin-sshd.bat +0 -40
  361. data/templates/windows-7-professional-amd64/install-winrm.bat +0 -14
  362. data/templates/windows-7-professional-amd64/oracle-cert.cer +0 -0
  363. data/templates/windows-7-professional-amd64/postinstall.sh +0 -74
  364. data/templates/windows-7-ultimate-amd64/Autounattend.xml +0 -152
  365. data/templates/windows-7-ultimate-amd64/README.md +0 -89
  366. data/templates/windows-7-ultimate-amd64/definition.rb +0 -41
  367. data/templates/windows-7-ultimate-amd64/install-cygwin-sshd.bat +0 -40
  368. data/templates/windows-7-ultimate-amd64/install-winrm.bat +0 -14
  369. data/templates/windows-7-ultimate-amd64/oracle-cert.cer +0 -0
  370. data/templates/windows-7-ultimate-amd64/postinstall.sh +0 -74
  371. data/templates/windows-7sp1-ultimate-amd64/Autounattend.xml +0 -152
  372. data/templates/windows-7sp1-ultimate-amd64/README.md +0 -89
  373. data/templates/windows-7sp1-ultimate-amd64/definition.rb +0 -42
  374. data/templates/windows-7sp1-ultimate-amd64/install-cygwin-sshd.bat +0 -40
  375. data/templates/windows-7sp1-ultimate-amd64/install-winrm.bat +0 -14
  376. data/templates/windows-7sp1-ultimate-amd64/oracle-cert.cer +0 -0
  377. data/templates/windows-7sp1-ultimate-amd64/postinstall.sh +0 -74
  378. data/templates/windows-8-preview-dev-amd64/Autounattend.xml +0 -140
  379. data/templates/windows-8-preview-dev-amd64/README.md +0 -134
  380. data/templates/windows-8-preview-dev-amd64/cygwin-setup.exe +0 -0
  381. data/templates/windows-8-preview-dev-amd64/definition.rb +0 -114
  382. data/templates/windows-8-preview-dev-amd64/install-cygwin-sshd.bat +0 -38
  383. data/templates/windows-8-preview-dev-amd64/install-winrm.bat +0 -11
  384. data/templates/windows-8-preview-dev-amd64/oracle-cert.cer +0 -0
  385. data/templates/windows-8-preview-dev-amd64/postinstall.sh +0 -122
  386. data/templates/windows-8-preview-dev-amd64/winrm.rb +0 -8
  387. data/trials/docu-vbox.txt +0 -83
  388. data/trials/f.rb +0 -29
  389. data/trials/t.rb +0 -15
@@ -14,21 +14,26 @@ Gem::Specification.new do |s|
14
14
  s.required_rubygems_version = ">= 1.3.6"
15
15
  s.rubyforge_project = "veewee"
16
16
 
17
- s.add_dependency "vagrant", ">= 0.9.0"
18
- s.add_dependency "virtualbox", ">= 0.9.2"
19
- s.add_dependency "net-ssh", ">= 2.1.0"
20
- s.add_dependency "popen4", "~> 0.1.2"
21
- s.add_dependency "thor", "~> 0.14.6"
17
+ s.add_dependency "vagrant", "~> 0.8.2"
18
+ s.add_dependency "net-ssh", "~> 2.1.0"
19
+ s.add_dependency "popen4", "~> 0.1.2"
20
+ s.add_dependency "thor", "~> 0.14.6"
22
21
  s.add_dependency "highline", "~> 1.6.1"
23
22
  s.add_dependency "progressbar"
24
- s.add_dependency "cucumber", ">= 1.0.0"
25
- s.add_dependency "rspec", "~> 2.5"
26
- #s.add_dependency "simon", "~> 0.1.1"
23
+ s.add_dependency "i18n"
24
+ s.add_dependency "cucumber", "~> 1.0.2"
25
+ s.add_dependency "rspec", "~> 2.5.0"
26
+ s.add_dependency "ansi", "~> 1.3.0"
27
+ s.add_dependency "ruby-vnc", "~> 1.0.0"
28
+ s.add_dependency "fog", "~> 1.0.0"
29
+ s.add_dependency "CFPropertyList", "~> 2.0.17"
30
+ # s.add_dependency "libvirt"
27
31
 
28
32
  s.add_development_dependency "bundler", ">= 1.0.0"
33
+ #s.add_development_dependency('ruby-libvirt','~>0.4.0')
29
34
 
30
35
  s.files = `git ls-files`.split("\n")
31
- s.executables = `git ls-files`.split("\n").map{ |f| f =~ /^bin\/(.*)/ ? $1 : nil }.compact
36
+ s.executables = `git ls-files`.split("\n").map{|f| f =~ /^bin\/(.*)/ ? $1 : nil}.compact
32
37
  s.require_path = 'lib'
33
38
  end
34
39
 
metadata CHANGED
@@ -1,13 +1,15 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: veewee
3
3
  version: !ruby/object:Gem::Version
4
- hash: 17
5
- prerelease:
4
+ hash: -3702664338
5
+ prerelease: 6
6
6
  segments:
7
7
  - 0
8
- - 2
9
8
  - 3
10
- version: 0.2.3
9
+ - 0
10
+ - alpha
11
+ - 1
12
+ version: 0.3.0.alpha1
11
13
  platform: ruby
12
14
  authors:
13
15
  - Patrick Debois
@@ -16,46 +18,31 @@ autorequire:
16
18
  bindir: bin
17
19
  cert_chain: []
18
20
 
19
- date: 2012-02-07 00:00:00 +01:00
21
+ date: 2011-09-30 00:00:00 +02:00
20
22
  default_executable:
21
23
  dependencies:
22
24
  - !ruby/object:Gem::Dependency
25
+ name: vagrant
23
26
  version_requirements: &id001 !ruby/object:Gem::Requirement
24
27
  none: false
25
28
  requirements:
26
- - - ">="
29
+ - - ~>
27
30
  - !ruby/object:Gem::Version
28
31
  hash: 59
29
32
  segments:
30
33
  - 0
31
- - 9
32
- - 0
33
- version: 0.9.0
34
- type: :runtime
35
- requirement: *id001
36
- name: vagrant
37
- prerelease: false
38
- - !ruby/object:Gem::Dependency
39
- version_requirements: &id002 !ruby/object:Gem::Requirement
40
- none: false
41
- requirements:
42
- - - ">="
43
- - !ruby/object:Gem::Version
44
- hash: 63
45
- segments:
46
- - 0
47
- - 9
34
+ - 8
48
35
  - 2
49
- version: 0.9.2
36
+ version: 0.8.2
50
37
  type: :runtime
51
- requirement: *id002
52
- name: virtualbox
53
38
  prerelease: false
39
+ requirement: *id001
54
40
  - !ruby/object:Gem::Dependency
55
- version_requirements: &id003 !ruby/object:Gem::Requirement
41
+ name: net-ssh
42
+ version_requirements: &id002 !ruby/object:Gem::Requirement
56
43
  none: false
57
44
  requirements:
58
- - - ">="
45
+ - - ~>
59
46
  - !ruby/object:Gem::Version
60
47
  hash: 11
61
48
  segments:
@@ -64,11 +51,11 @@ dependencies:
64
51
  - 0
65
52
  version: 2.1.0
66
53
  type: :runtime
67
- requirement: *id003
68
- name: net-ssh
69
54
  prerelease: false
55
+ requirement: *id002
70
56
  - !ruby/object:Gem::Dependency
71
- version_requirements: &id004 !ruby/object:Gem::Requirement
57
+ name: popen4
58
+ version_requirements: &id003 !ruby/object:Gem::Requirement
72
59
  none: false
73
60
  requirements:
74
61
  - - ~>
@@ -80,11 +67,11 @@ dependencies:
80
67
  - 2
81
68
  version: 0.1.2
82
69
  type: :runtime
83
- requirement: *id004
84
- name: popen4
85
70
  prerelease: false
71
+ requirement: *id003
86
72
  - !ruby/object:Gem::Dependency
87
- version_requirements: &id005 !ruby/object:Gem::Requirement
73
+ name: thor
74
+ version_requirements: &id004 !ruby/object:Gem::Requirement
88
75
  none: false
89
76
  requirements:
90
77
  - - ~>
@@ -96,11 +83,11 @@ dependencies:
96
83
  - 6
97
84
  version: 0.14.6
98
85
  type: :runtime
99
- requirement: *id005
100
- name: thor
101
86
  prerelease: false
87
+ requirement: *id004
102
88
  - !ruby/object:Gem::Dependency
103
- version_requirements: &id006 !ruby/object:Gem::Requirement
89
+ name: highline
90
+ version_requirements: &id005 !ruby/object:Gem::Requirement
104
91
  none: false
105
92
  requirements:
106
93
  - - ~>
@@ -112,10 +99,24 @@ dependencies:
112
99
  - 1
113
100
  version: 1.6.1
114
101
  type: :runtime
115
- requirement: *id006
116
- name: highline
117
102
  prerelease: false
103
+ requirement: *id005
104
+ - !ruby/object:Gem::Dependency
105
+ name: progressbar
106
+ version_requirements: &id006 !ruby/object:Gem::Requirement
107
+ none: false
108
+ requirements:
109
+ - - ">="
110
+ - !ruby/object:Gem::Version
111
+ hash: 3
112
+ segments:
113
+ - 0
114
+ version: "0"
115
+ type: :runtime
116
+ prerelease: false
117
+ requirement: *id006
118
118
  - !ruby/object:Gem::Dependency
119
+ name: i18n
119
120
  version_requirements: &id007 !ruby/object:Gem::Requirement
120
121
  none: false
121
122
  requirements:
@@ -126,42 +127,107 @@ dependencies:
126
127
  - 0
127
128
  version: "0"
128
129
  type: :runtime
129
- requirement: *id007
130
- name: progressbar
131
130
  prerelease: false
131
+ requirement: *id007
132
132
  - !ruby/object:Gem::Dependency
133
+ name: cucumber
133
134
  version_requirements: &id008 !ruby/object:Gem::Requirement
134
135
  none: false
135
136
  requirements:
136
- - - ">="
137
+ - - ~>
137
138
  - !ruby/object:Gem::Version
138
- hash: 23
139
+ hash: 19
139
140
  segments:
140
141
  - 1
141
142
  - 0
142
- - 0
143
- version: 1.0.0
143
+ - 2
144
+ version: 1.0.2
144
145
  type: :runtime
145
- requirement: *id008
146
- name: cucumber
147
146
  prerelease: false
147
+ requirement: *id008
148
148
  - !ruby/object:Gem::Dependency
149
+ name: rspec
149
150
  version_requirements: &id009 !ruby/object:Gem::Requirement
150
151
  none: false
151
152
  requirements:
152
153
  - - ~>
153
154
  - !ruby/object:Gem::Version
154
- hash: 9
155
+ hash: 27
155
156
  segments:
156
157
  - 2
157
158
  - 5
158
- version: "2.5"
159
+ - 0
160
+ version: 2.5.0
159
161
  type: :runtime
160
- requirement: *id009
161
- name: rspec
162
162
  prerelease: false
163
+ requirement: *id009
163
164
  - !ruby/object:Gem::Dependency
165
+ name: ansi
164
166
  version_requirements: &id010 !ruby/object:Gem::Requirement
167
+ none: false
168
+ requirements:
169
+ - - ~>
170
+ - !ruby/object:Gem::Version
171
+ hash: 27
172
+ segments:
173
+ - 1
174
+ - 3
175
+ - 0
176
+ version: 1.3.0
177
+ type: :runtime
178
+ prerelease: false
179
+ requirement: *id010
180
+ - !ruby/object:Gem::Dependency
181
+ name: ruby-vnc
182
+ version_requirements: &id011 !ruby/object:Gem::Requirement
183
+ none: false
184
+ requirements:
185
+ - - ~>
186
+ - !ruby/object:Gem::Version
187
+ hash: 23
188
+ segments:
189
+ - 1
190
+ - 0
191
+ - 0
192
+ version: 1.0.0
193
+ type: :runtime
194
+ prerelease: false
195
+ requirement: *id011
196
+ - !ruby/object:Gem::Dependency
197
+ name: fog
198
+ version_requirements: &id012 !ruby/object:Gem::Requirement
199
+ none: false
200
+ requirements:
201
+ - - ~>
202
+ - !ruby/object:Gem::Version
203
+ hash: 23
204
+ segments:
205
+ - 1
206
+ - 0
207
+ - 0
208
+ version: 1.0.0
209
+ type: :runtime
210
+ prerelease: false
211
+ requirement: *id012
212
+ - !ruby/object:Gem::Dependency
213
+ name: CFPropertyList
214
+ version_requirements: &id013 !ruby/object:Gem::Requirement
215
+ none: false
216
+ requirements:
217
+ - - ~>
218
+ - !ruby/object:Gem::Version
219
+ hash: 45
220
+ segments:
221
+ - 2
222
+ - 0
223
+ - 17
224
+ version: 2.0.17
225
+ type: :runtime
226
+ prerelease: false
227
+ requirement: *id013
228
+ - !ruby/object:Gem::Dependency
229
+ name: bundler
230
+ version_requirements: &id014 !ruby/object:Gem::Requirement
165
231
  none: false
166
232
  requirements:
167
233
  - - ">="
@@ -173,15 +239,17 @@ dependencies:
173
239
  - 0
174
240
  version: 1.0.0
175
241
  type: :development
176
- requirement: *id010
177
- name: bundler
178
242
  prerelease: false
243
+ requirement: *id014
179
244
  description: Expand the 'vagrant box' command to support the creation of base boxes from scratch
180
245
  email:
181
246
  - patrick.debois@jedi.be
182
247
  - ringo.desmet@gmail.com
183
248
  executables:
184
249
  - veewee
250
+ - veewee-kvm-old
251
+ - veewee-vagrant
252
+ - veewee-vmfusion
185
253
  extensions: []
186
254
 
187
255
  extra_rdoc_files: []
@@ -191,35 +259,100 @@ files:
191
259
  - .rvmrc
192
260
  - Gemfile
193
261
  - Gemfile.lock
262
+ - License
263
+ - README-LIB.md
194
264
  - README.md
195
265
  - Rakefile
196
266
  - bin/veewee
267
+ - bin/veewee-kvm-old
268
+ - bin/veewee-vagrant
269
+ - bin/veewee-vmfusion
270
+ - lib/fission.rb
271
+ - lib/fission/cli.rb
272
+ - lib/fission/command.rb
273
+ - lib/fission/command/clone.rb
274
+ - lib/fission/command/delete.rb
275
+ - lib/fission/command/snapshot_create.rb
276
+ - lib/fission/command/snapshot_list.rb
277
+ - lib/fission/command/snapshot_revert.rb
278
+ - lib/fission/command/start.rb
279
+ - lib/fission/command/status.rb
280
+ - lib/fission/command/stop.rb
281
+ - lib/fission/command/suspend.rb
282
+ - lib/fission/config.rb
283
+ - lib/fission/core_ext/class.rb
284
+ - lib/fission/core_ext/file.rb
285
+ - lib/fission/core_ext/object.rb
286
+ - lib/fission/error.rb
287
+ - lib/fission/fusion.rb
288
+ - lib/fission/leasesfile.rb
289
+ - lib/fission/metadata.rb
290
+ - lib/fission/response.rb
291
+ - lib/fission/ui.rb
292
+ - lib/fission/version.rb
293
+ - lib/fission/vm.rb
197
294
  - lib/java/README.txt
198
295
  - lib/java/dir2floppy.jar
199
296
  - lib/java/dir2floppy.java
297
+ - lib/net/vnc/vnc.rb
200
298
  - lib/vagrant_init.rb
201
299
  - lib/veewee.rb
300
+ - lib/veewee/builder/core/box.rb
301
+ - lib/veewee/builder/core/box/vnc.rb
302
+ - lib/veewee/builder/core/builder.rb
303
+ - lib/veewee/builder/core/builder/build.rb
304
+ - lib/veewee/builder/core/builder/iso.rb
305
+ - lib/veewee/builder/core/builder/transaction.rb
306
+ - lib/veewee/builder/core/builder/tunnel.rb
307
+ - lib/veewee/builder/kvm/box.rb
308
+ - lib/veewee/builder/kvm/builder.rb
309
+ - lib/veewee/builder/virtualbox/box.rb
310
+ - lib/veewee/builder/virtualbox/builder.rb
311
+ - lib/veewee/builder/virtualbox/helper/_snapshots.rb
312
+ - lib/veewee/builder/virtualbox/helper/_transaction.rb
313
+ - lib/veewee/builder/virtualbox/helper/console_type.rb
314
+ - lib/veewee/builder/virtualbox/helper/create.rb
315
+ - lib/veewee/builder/virtualbox/helper/destroy.rb
316
+ - lib/veewee/builder/virtualbox/helper/export_vagrant.rb
317
+ - lib/veewee/builder/virtualbox/helper/validate_vagrant.rb
318
+ - lib/veewee/builder/vmfusion/box.rb
319
+ - lib/veewee/builder/vmfusion/builder.rb
320
+ - lib/veewee/builder/vmfusion/helper/create.rb
321
+ - lib/veewee/builder/vmfusion/helper/export_ova.rb
322
+ - lib/veewee/builder/vmfusion/helper/template.rb
323
+ - lib/veewee/builder/vmfusion/helper/template.vmx.erb
324
+ - lib/veewee/builder/vmfusion/helper/validate_vmfusion.rb
325
+ - lib/veewee/builder/vmfusion/info/export_ovf.info
326
+ - lib/veewee/cli.rb
202
327
  - lib/veewee/command.rb
203
- - lib/veewee/command/basebox.rb
204
- - lib/veewee/command/basebox_build.rb
205
- - lib/veewee/command/basebox_define.rb
206
- - lib/veewee/command/basebox_destroy.rb
207
- - lib/veewee/command/basebox_export.rb
208
- - lib/veewee/command/basebox_list.rb
209
- - lib/veewee/command/basebox_ostypes.rb
210
- - lib/veewee/command/basebox_templates.rb
211
- - lib/veewee/command/basebox_undefine.rb
212
- - lib/veewee/command/basebox_validate.rb
328
+ - lib/veewee/command/base.rb
329
+ - lib/veewee/command/group_base.rb
330
+ - lib/veewee/command/helpers.rb
331
+ - lib/veewee/command/kvm.rb
332
+ - lib/veewee/command/named_base.rb
333
+ - lib/veewee/command/vagrant.rb
334
+ - lib/veewee/command/version.rb
335
+ - lib/veewee/command/virtualbox.rb
336
+ - lib/veewee/command/vmfusion.rb
213
337
  - lib/veewee/config.rb
214
- - lib/veewee/export.rb
215
- - lib/veewee/scancode.rb
216
- - lib/veewee/session.rb
217
- - lib/veewee/shell.rb
218
- - lib/veewee/ssh.rb
219
- - lib/veewee/transaction.rb
220
- - lib/veewee/utils.rb
338
+ - lib/veewee/config/builders.rb
339
+ - lib/veewee/config/collection.rb
340
+ - lib/veewee/config/component.rb
341
+ - lib/veewee/config/definition.rb
342
+ - lib/veewee/config/ostypes.yml
343
+ - lib/veewee/config/veewee.rb
344
+ - lib/veewee/definition.rb
345
+ - lib/veewee/environment.rb
346
+ - lib/veewee/error.rb
347
+ - lib/veewee/templates/locales/en.yml
348
+ - lib/veewee/ui.rb
349
+ - lib/veewee/util/scancode.rb
350
+ - lib/veewee/util/shell.rb
351
+ - lib/veewee/util/ssh.rb
352
+ - lib/veewee/util/tcp.rb
353
+ - lib/veewee/util/web.rb
354
+ - lib/veewee/vagrant/config.rb
221
355
  - lib/veewee/version.rb
222
- - lib/veewee/web.rb
223
356
  - templates/CentOS-4.8-i386/definition.rb
224
357
  - templates/CentOS-4.8-i386/ks.cfg
225
358
  - templates/CentOS-4.8-i386/postinstall.sh
@@ -256,24 +389,18 @@ files:
256
389
  - templates/CentOS-6.0-x86_64/definition.rb
257
390
  - templates/CentOS-6.0-x86_64/ks.cfg
258
391
  - templates/CentOS-6.0-x86_64/postinstall.sh
259
- - templates/CentOS-6.1-x86_64-minimal/definition.rb
260
- - templates/CentOS-6.1-x86_64-minimal/ks.cfg
261
- - templates/CentOS-6.1-x86_64-minimal/postinstall.sh
262
- - templates/CentOS-6.2-x86_64-minimal/definition.rb
263
- - templates/CentOS-6.2-x86_64-minimal/ks.cfg
264
- - templates/CentOS-6.2-x86_64-minimal/postinstall.sh
265
392
  - templates/Debian-5.0.8-amd64-netboot/definition.rb
266
393
  - templates/Debian-5.0.8-amd64-netboot/postinstall.sh
267
394
  - templates/Debian-5.0.8-amd64-netboot/preseed.cfg
268
395
  - templates/Debian-5.0.8-i386-netboot/definition.rb
269
396
  - templates/Debian-5.0.8-i386-netboot/postinstall.sh
270
397
  - templates/Debian-5.0.8-i386-netboot/preseed.cfg
271
- - templates/Debian-6.0.3-amd64-netboot/definition.rb
272
- - templates/Debian-6.0.3-amd64-netboot/postinstall.sh
273
- - templates/Debian-6.0.3-amd64-netboot/preseed.cfg
274
- - templates/Debian-6.0.3-i386-netboot/definition.rb
275
- - templates/Debian-6.0.3-i386-netboot/postinstall.sh
276
- - templates/Debian-6.0.3-i386-netboot/preseed.cfg
398
+ - templates/Debian-6.0.2-amd64-netboot/definition.rb
399
+ - templates/Debian-6.0.2-amd64-netboot/postinstall.sh
400
+ - templates/Debian-6.0.2-amd64-netboot/preseed.cfg
401
+ - templates/Debian-6.0.2-i386-netboot/definition.rb
402
+ - templates/Debian-6.0.2-i386-netboot/postinstall.sh
403
+ - templates/Debian-6.0.2-i386-netboot/preseed.cfg
277
404
  - templates/Fedora-14-amd64-netboot/definition.rb
278
405
  - templates/Fedora-14-amd64-netboot/ks.cfg
279
406
  - templates/Fedora-14-amd64-netboot/postinstall.sh
@@ -292,26 +419,9 @@ files:
292
419
  - templates/Fedora-15-i386/definition.rb
293
420
  - templates/Fedora-15-i386/ks.cfg
294
421
  - templates/Fedora-15-i386/postinstall.sh
295
- - templates/Fedora-15-x86_64-netboot/definition.rb
296
- - templates/Fedora-15-x86_64-netboot/ks.cfg
297
- - templates/Fedora-15-x86_64-netboot/postinstall.sh
298
422
  - templates/Fedora-15-x86_64/definition.rb
299
423
  - templates/Fedora-15-x86_64/ks.cfg
300
424
  - templates/Fedora-15-x86_64/postinstall.sh
301
- - templates/Fedora-16-i386/definition.rb
302
- - templates/Fedora-16-i386/ks.cfg
303
- - templates/Fedora-16-i386/postinstall.sh
304
- - templates/Fedora-16-x86_64/definition.rb
305
- - templates/Fedora-16-x86_64/ks.cfg
306
- - templates/Fedora-16-x86_64/postinstall.sh
307
- - templates/SLES-11-SP1-DVD-i586-GM/autoinst_de.xml
308
- - templates/SLES-11-SP1-DVD-i586-GM/autoinst_en.xml
309
- - templates/SLES-11-SP1-DVD-i586-GM/definition.rb
310
- - templates/SLES-11-SP1-DVD-i586-GM/postinstall.sh
311
- - templates/SLES-11-SP1-DVD-x86_64-GM/autoinst_de.xml
312
- - templates/SLES-11-SP1-DVD-x86_64-GM/autoinst_en.xml
313
- - templates/SLES-11-SP1-DVD-x86_64-GM/definition.rb
314
- - templates/SLES-11-SP1-DVD-x86_64-GM/postinstall.sh
315
425
  - templates/Sysrescuecd-2.0.0-experimental/autorun0
316
426
  - templates/Sysrescuecd-2.0.0-experimental/definition.rb
317
427
  - templates/archlinux-i386-netboot/aif.cfg
@@ -337,13 +447,8 @@ files:
337
447
  - templates/freebsd-8.2-pcbsd-i386/definition.rb
338
448
  - templates/freebsd-8.2-pcbsd-i386/pcinstall.fbg.cfg
339
449
  - templates/freebsd-8.2-pcbsd-i386/postinstall.sh
340
- - templates/funtoo-latest-generic_64-stable/definition.rb
341
- - templates/funtoo-latest-generic_64-stable/postinstall.sh
342
- - templates/funtoo-latest-generic_64-stable/postinstall2.sh
343
450
  - templates/gentoo-latest-i386-experimental/definition.rb
344
451
  - templates/gentoo-latest-i386-experimental/postinstall.sh
345
- - templates/gentoo-latest-x86_64-experimental/definition.rb
346
- - templates/gentoo-latest-x86_64-experimental/postinstall.sh
347
452
  - templates/openSUSE-11.4-DVD-i586/autoinst_de.xml
348
453
  - templates/openSUSE-11.4-DVD-i586/autoinst_en.xml
349
454
  - templates/openSUSE-11.4-DVD-i586/definition.rb
@@ -360,21 +465,6 @@ files:
360
465
  - templates/openSUSE-11.4-NET-x86_64/autoinst_en.xml
361
466
  - templates/openSUSE-11.4-NET-x86_64/definition.rb
362
467
  - templates/openSUSE-11.4-NET-x86_64/postinstall.sh
363
- - templates/openSUSE-12.1-DVD+NET-i586/autoinst_de.xml
364
- - templates/openSUSE-12.1-DVD+NET-i586/autoinst_en.xml
365
- - templates/openSUSE-12.1-DVD+NET-i586/definition.rb
366
- - templates/openSUSE-12.1-DVD+NET-i586/postinstall.sh
367
- - templates/openSUSE-12.1-DVD+NET-x86_64/autoinst_de.xml
368
- - templates/openSUSE-12.1-DVD+NET-x86_64/autoinst_en.xml
369
- - templates/openSUSE-12.1-DVD+NET-x86_64/definition.rb
370
- - templates/openSUSE-12.1-DVD+NET-x86_64/postinstall.sh
371
- - templates/openbsd50_amd64/README
372
- - templates/openbsd50_amd64/definition.rb
373
- - templates/openbsd50_amd64/postinstall.sh
374
- - templates/openbsd50_i386/.definition.rb.swp
375
- - templates/openbsd50_i386/README
376
- - templates/openbsd50_i386/definition.rb
377
- - templates/openbsd50_i386/postinstall.sh
378
468
  - templates/openindiana-148-ai-x86/auto_install/ai.dtd
379
469
  - templates/openindiana-148-ai-x86/auto_install/ai_manifest.xml
380
470
  - templates/openindiana-148-ai-x86/auto_install/configuration.dtd
@@ -392,12 +482,6 @@ files:
392
482
  - templates/opensuse-11.4-i386-experimental/autoinst.xml.tweaked
393
483
  - templates/opensuse-11.4-i386-experimental/definition.rb
394
484
  - templates/opensuse-11.4-i386-experimental/postinstall.sh
395
- - templates/scientificlinux-6.1-i386-netboot/definition.rb
396
- - templates/scientificlinux-6.1-i386-netboot/ks.cfg
397
- - templates/scientificlinux-6.1-i386-netboot/postinstall.sh
398
- - templates/scientificlinux-6.1-x86_64-netboot/definition.rb
399
- - templates/scientificlinux-6.1-x86_64-netboot/ks.cfg
400
- - templates/scientificlinux-6.1-x86_64-netboot/postinstall.sh
401
485
  - templates/solaris-11-express-i386/auto_install/ai.dtd
402
486
  - templates/solaris-11-express-i386/auto_install/ai_manifest.xml
403
487
  - templates/solaris-11-express-i386/auto_install/configuration.dtd
@@ -418,59 +502,60 @@ files:
418
502
  - templates/ubuntu-10.04.3-server-amd64-alt/definition.rb
419
503
  - templates/ubuntu-10.04.3-server-amd64-alt/postinstall.sh
420
504
  - templates/ubuntu-10.04.3-server-amd64-alt/preseed.cfg
505
+ - templates/ubuntu-10.04.3-server-amd64/base.sh
506
+ - templates/ubuntu-10.04.3-server-amd64/chef.sh
507
+ - templates/ubuntu-10.04.3-server-amd64/cleanup.sh
421
508
  - templates/ubuntu-10.04.3-server-amd64/definition.rb
422
- - templates/ubuntu-10.04.3-server-amd64/postinstall.sh
423
509
  - templates/ubuntu-10.04.3-server-amd64/preseed.cfg
510
+ - templates/ubuntu-10.04.3-server-amd64/puppet.sh
511
+ - templates/ubuntu-10.04.3-server-amd64/ruby.sh
512
+ - templates/ubuntu-10.04.3-server-amd64/vagrant.sh
513
+ - templates/ubuntu-10.04.3-server-amd64/virtualbox.sh
424
514
  - templates/ubuntu-10.04.3-server-i386/definition.rb
425
515
  - templates/ubuntu-10.04.3-server-i386/postinstall.sh
426
516
  - templates/ubuntu-10.04.3-server-i386/preseed.cfg
427
517
  - templates/ubuntu-10.10-server-amd64-netboot/definition.rb
428
518
  - templates/ubuntu-10.10-server-amd64-netboot/postinstall.sh
429
519
  - templates/ubuntu-10.10-server-amd64-netboot/preseed.cfg
520
+ - templates/ubuntu-10.10-server-amd64/base.sh
521
+ - templates/ubuntu-10.10-server-amd64/chef.sh
522
+ - templates/ubuntu-10.10-server-amd64/cleanup.sh
430
523
  - templates/ubuntu-10.10-server-amd64/definition.rb
431
524
  - templates/ubuntu-10.10-server-amd64/postinstall.sh
432
525
  - templates/ubuntu-10.10-server-amd64/preseed.cfg
526
+ - templates/ubuntu-10.10-server-amd64/puppet.sh
527
+ - templates/ubuntu-10.10-server-amd64/ruby.sh
528
+ - templates/ubuntu-10.10-server-amd64/vagrant.sh
529
+ - templates/ubuntu-10.10-server-amd64/virtualbox.sh
433
530
  - templates/ubuntu-10.10-server-i386-netboot/definition.rb
434
531
  - templates/ubuntu-10.10-server-i386-netboot/postinstall.sh
435
532
  - templates/ubuntu-10.10-server-i386-netboot/preseed.cfg
436
533
  - templates/ubuntu-10.10-server-i386/definition.rb
437
534
  - templates/ubuntu-10.10-server-i386/postinstall.sh
438
535
  - templates/ubuntu-10.10-server-i386/preseed.cfg
536
+ - templates/ubuntu-11.04-server-amd64/apt-upgrade.sh
537
+ - templates/ubuntu-11.04-server-amd64/chef.sh
439
538
  - templates/ubuntu-11.04-server-amd64/definition.rb
440
- - templates/ubuntu-11.04-server-amd64/postinstall.sh
539
+ - templates/ubuntu-11.04-server-amd64/network-cleanup.sh
540
+ - templates/ubuntu-11.04-server-amd64/nfs-client.sh
441
541
  - templates/ubuntu-11.04-server-amd64/preseed.cfg
542
+ - templates/ubuntu-11.04-server-amd64/puppet.sh
543
+ - templates/ubuntu-11.04-server-amd64/remove-build-essentials.sh
544
+ - templates/ubuntu-11.04-server-amd64/ruby.sh
545
+ - templates/ubuntu-11.04-server-amd64/ssh-keys.sh
546
+ - templates/ubuntu-11.04-server-amd64/sudo.sh
547
+ - templates/ubuntu-11.04-server-amd64/timestamp.sh
548
+ - templates/ubuntu-11.04-server-amd64/vbox_additions.sh
549
+ - templates/ubuntu-11.04-server-amd64/zero-disk.sh
442
550
  - templates/ubuntu-11.04-server-i386/definition.rb
443
551
  - templates/ubuntu-11.04-server-i386/postinstall.sh
444
552
  - templates/ubuntu-11.04-server-i386/preseed.cfg
445
- - templates/ubuntu-11.10-server-amd64-ishaya/definition.rb
446
- - templates/ubuntu-11.10-server-amd64-ishaya/postinstall.sh
447
- - templates/ubuntu-11.10-server-amd64-ishaya/preseed.cfg
448
- - templates/ubuntu-11.10-server-amd64-ruby192/definition.rb
449
- - templates/ubuntu-11.10-server-amd64-ruby192/postinstall.sh
450
- - templates/ubuntu-11.10-server-amd64-ruby192/preseed.cfg
451
- - templates/ubuntu-11.10-server-amd64/definition.rb
452
- - templates/ubuntu-11.10-server-amd64/postinstall.sh
453
- - templates/ubuntu-11.10-server-amd64/preseed.cfg
454
- - templates/ubuntu-11.10-server-i386/definition.rb
455
- - templates/ubuntu-11.10-server-i386/postinstall.sh
456
- - templates/ubuntu-11.10-server-i386/preseed.cfg
457
553
  - templates/ubuntu-8.04.4-server-amd64/definition.rb
458
554
  - templates/ubuntu-8.04.4-server-amd64/postinstall.sh
459
555
  - templates/ubuntu-8.04.4-server-amd64/preseed.cfg
460
556
  - templates/ubuntu-8.04.4-server-i386/definition.rb
461
557
  - templates/ubuntu-8.04.4-server-i386/postinstall.sh
462
558
  - templates/ubuntu-8.04.4-server-i386/preseed.cfg
463
- - templates/windows-2008R1-serverstandard-amd64/Autounattend.xml
464
- - templates/windows-2008R1-serverstandard-amd64/README.md
465
- - templates/windows-2008R1-serverstandard-amd64/cygwin-setup.exe
466
- - templates/windows-2008R1-serverstandard-amd64/definition.rb
467
- - templates/windows-2008R1-serverstandard-amd64/install-cygwin-sshd.bat
468
- - templates/windows-2008R1-serverstandard-amd64/install-guest-additions.bat
469
- - templates/windows-2008R1-serverstandard-amd64/install-winrm.bat
470
- - templates/windows-2008R1-serverstandard-amd64/oracle-cert.cer
471
- - templates/windows-2008R1-serverstandard-amd64/postinstall.sh
472
- - templates/windows-2008R1-serverstandard-amd64/sudo
473
- - templates/windows-2008R1-serverstandard-amd64/winrm.rb
474
559
  - templates/windows-2008R2-amd64/Autounattend.xml
475
560
  - templates/windows-2008R2-amd64/README.md
476
561
  - templates/windows-2008R2-amd64/cygwin-setup.exe
@@ -479,69 +564,14 @@ files:
479
564
  - templates/windows-2008R2-amd64/install-winrm.bat
480
565
  - templates/windows-2008R2-amd64/oracle-cert.cer
481
566
  - templates/windows-2008R2-amd64/postinstall.sh
567
+ - templates/windows-2008R2-amd64/win7/Autounattend.xml
482
568
  - templates/windows-2008R2-amd64/winrm.rb
483
- - templates/windows-2008R2-serverstandard-amd64/Autounattend.xml
484
- - templates/windows-2008R2-serverstandard-amd64/README.md
485
- - templates/windows-2008R2-serverstandard-amd64/definition.rb
486
- - templates/windows-2008R2-serverstandard-amd64/install-cygwin-sshd.bat
487
- - templates/windows-2008R2-serverstandard-amd64/install-winrm.bat
488
- - templates/windows-2008R2-serverstandard-amd64/oracle-cert.cer
489
- - templates/windows-2008R2-serverstandard-amd64/postinstall.sh
490
- - templates/windows-7-enterprise-amd64/Autounattend.xml
491
- - templates/windows-7-enterprise-amd64/README.md
492
- - templates/windows-7-enterprise-amd64/definition.rb
493
- - templates/windows-7-enterprise-amd64/install-cygwin-sshd.bat
494
- - templates/windows-7-enterprise-amd64/install-winrm.bat
495
- - templates/windows-7-enterprise-amd64/oracle-cert.cer
496
- - templates/windows-7-enterprise-amd64/postinstall.sh
497
- - templates/windows-7-enterprise-i386/Autounattend.xml
498
- - templates/windows-7-enterprise-i386/README.md
499
- - templates/windows-7-enterprise-i386/definition.rb
500
- - templates/windows-7-enterprise-i386/install-cygwin-sshd.bat
501
- - templates/windows-7-enterprise-i386/install-winrm.bat
502
- - templates/windows-7-enterprise-i386/oracle-cert.cer
503
- - templates/windows-7-enterprise-i386/postinstall.sh
504
- - templates/windows-7-premium-amd64/Autounattend.xml
505
- - templates/windows-7-premium-amd64/README.md
506
- - templates/windows-7-premium-amd64/definition.rb
507
- - templates/windows-7-premium-amd64/install-chefclient.bat
508
- - templates/windows-7-premium-amd64/install-winrm.bat
509
- - templates/windows-7-premium-amd64/oracle-cert.cer
510
- - templates/windows-7-premium-amd64/postinstall.sh
511
- - templates/windows-7-premium-amd64/winrm.rb
512
- - templates/windows-7-professional-amd64/Autounattend.xml
513
- - templates/windows-7-professional-amd64/README.md
514
- - templates/windows-7-professional-amd64/definition.rb
515
- - templates/windows-7-professional-amd64/install-cygwin-sshd.bat
516
- - templates/windows-7-professional-amd64/install-winrm.bat
517
- - templates/windows-7-professional-amd64/oracle-cert.cer
518
- - templates/windows-7-professional-amd64/postinstall.sh
519
- - templates/windows-7-ultimate-amd64/Autounattend.xml
520
- - templates/windows-7-ultimate-amd64/README.md
521
- - templates/windows-7-ultimate-amd64/definition.rb
522
- - templates/windows-7-ultimate-amd64/install-cygwin-sshd.bat
523
- - templates/windows-7-ultimate-amd64/install-winrm.bat
524
- - templates/windows-7-ultimate-amd64/oracle-cert.cer
525
- - templates/windows-7-ultimate-amd64/postinstall.sh
526
- - templates/windows-7sp1-ultimate-amd64/Autounattend.xml
527
- - templates/windows-7sp1-ultimate-amd64/README.md
528
- - templates/windows-7sp1-ultimate-amd64/definition.rb
529
- - templates/windows-7sp1-ultimate-amd64/install-cygwin-sshd.bat
530
- - templates/windows-7sp1-ultimate-amd64/install-winrm.bat
531
- - templates/windows-7sp1-ultimate-amd64/oracle-cert.cer
532
- - templates/windows-7sp1-ultimate-amd64/postinstall.sh
533
- - templates/windows-8-preview-dev-amd64/Autounattend.xml
534
- - templates/windows-8-preview-dev-amd64/README.md
535
- - templates/windows-8-preview-dev-amd64/cygwin-setup.exe
536
- - templates/windows-8-preview-dev-amd64/definition.rb
537
- - templates/windows-8-preview-dev-amd64/install-cygwin-sshd.bat
538
- - templates/windows-8-preview-dev-amd64/install-winrm.bat
539
- - templates/windows-8-preview-dev-amd64/oracle-cert.cer
540
- - templates/windows-8-preview-dev-amd64/postinstall.sh
541
- - templates/windows-8-preview-dev-amd64/winrm.rb
542
- - trials/docu-vbox.txt
543
- - trials/f.rb
544
- - trials/t.rb
569
+ - test/build_test.rb
570
+ - test/definition_test.rb
571
+ - test/definitions/test_definition/_test_me.sh
572
+ - test/definitions/test_definition/autorun0
573
+ - test/definitions/test_definition/definition.rb
574
+ - test/environment_test.rb
545
575
  - validation/features/steps/ssh_steps.rb
546
576
  - validation/support/env.rb
547
577
  - validation/vagrant-private.key