HeSYINUvSBZfxqA-veewee 0.2.0.2 → 0.203.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (293) hide show
  1. data/README.md +53 -26
  2. data/Rakefile +41 -36
  3. data/lib/veewee.rb +2 -0
  4. data/lib/veewee/command.rb +1 -59
  5. data/lib/veewee/command/basebox.rb +63 -0
  6. data/lib/veewee/command/basebox_build.rb +32 -0
  7. data/lib/veewee/command/basebox_define.rb +28 -0
  8. data/lib/veewee/command/basebox_destroy.rb +22 -0
  9. data/lib/veewee/command/basebox_export.rb +22 -0
  10. data/lib/veewee/command/basebox_list.rb +23 -0
  11. data/lib/veewee/command/basebox_ostypes.rb +23 -0
  12. data/lib/veewee/command/basebox_templates.rb +23 -0
  13. data/lib/veewee/command/basebox_undefine.rb +22 -0
  14. data/lib/veewee/command/basebox_validate.rb +26 -0
  15. data/lib/veewee/config.rb +1 -2
  16. data/lib/veewee/export.rb +2 -2
  17. data/lib/veewee/scancode.rb +1 -1
  18. data/lib/veewee/session.rb +373 -249
  19. data/lib/veewee/transaction.rb +2 -11
  20. data/lib/veewee/version.rb +1 -1
  21. data/templates/CentOS-4.8-i386/definition.rb +1 -1
  22. data/templates/CentOS-4.8-i386/postinstall.sh +1 -1
  23. data/templates/CentOS-5.5-x86_64-netboot/definition.rb +16 -0
  24. data/templates/CentOS-5.5-x86_64-netboot/ks.cfg +46 -0
  25. data/templates/CentOS-5.5-x86_64-netboot/postinstall.sh +60 -0
  26. data/templates/CentOS-5.6-i386-netboot/definition.rb +1 -1
  27. data/templates/CentOS-5.6-i386-netboot/ks.cfg +2 -2
  28. data/templates/CentOS-5.6-i386-netboot/postinstall.sh +1 -1
  29. data/templates/CentOS-5.6-i386/postinstall.sh +1 -1
  30. data/templates/CentOS-5.6-x86_64-netboot/definition.rb +1 -1
  31. data/templates/CentOS-5.6-x86_64-netboot/ks.cfg +1 -1
  32. data/templates/CentOS-5.6-x86_64-netboot/postinstall.sh +3 -2
  33. data/templates/CentOS-5.7-i386-netboot/definition.rb +16 -0
  34. data/templates/CentOS-5.7-i386-netboot/ks.cfg +45 -0
  35. data/templates/CentOS-5.7-i386-netboot/postinstall.sh +53 -0
  36. data/templates/CentOS-5.7-x86_64-netboot/definition.rb +16 -0
  37. data/templates/CentOS-5.7-x86_64-netboot/ks.cfg +45 -0
  38. data/templates/CentOS-5.7-x86_64-netboot/postinstall.sh +60 -0
  39. data/templates/CentOS-6.0-i386-netboot/ks.cfg +1 -1
  40. data/templates/CentOS-6.0-i386-netboot/postinstall.sh +1 -1
  41. data/templates/CentOS-6.0-i386/postinstall.sh +2 -2
  42. data/templates/CentOS-6.0-x86_64-minimal/definition.rb +17 -0
  43. data/templates/CentOS-6.0-x86_64-minimal/ks.cfg +37 -0
  44. data/templates/CentOS-6.0-x86_64-minimal/postinstall.sh +58 -0
  45. data/templates/CentOS-6.0-x86_64-netboot/ks.cfg +1 -1
  46. data/templates/CentOS-6.0-x86_64-netboot/postinstall.sh +1 -1
  47. data/templates/CentOS-6.0-x86_64/postinstall.sh +2 -2
  48. data/templates/CentOS-6.1-x86_64-minimal/definition.rb +15 -0
  49. data/templates/CentOS-6.1-x86_64-minimal/ks.cfg +37 -0
  50. data/templates/CentOS-6.1-x86_64-minimal/postinstall.sh +50 -0
  51. data/templates/CentOS-6.2-x86_64-minimal/definition.rb +15 -0
  52. data/templates/CentOS-6.2-x86_64-minimal/ks.cfg +37 -0
  53. data/templates/CentOS-6.2-x86_64-minimal/postinstall.sh +50 -0
  54. data/templates/Debian-5.0.8-amd64-netboot/postinstall.sh +1 -1
  55. data/templates/Debian-5.0.8-i386-netboot/postinstall.sh +1 -1
  56. data/templates/{Debian-6.0.2-amd64-netboot → Debian-6.0.3-amd64-netboot}/definition.rb +3 -3
  57. data/templates/Debian-6.0.3-amd64-netboot/postinstall.sh +80 -0
  58. data/templates/{Debian-6.0.2-amd64-netboot → Debian-6.0.3-amd64-netboot}/preseed.cfg +0 -0
  59. data/templates/{Debian-6.0.2-i386-netboot → Debian-6.0.3-i386-netboot}/definition.rb +3 -3
  60. data/templates/{Debian-6.0.2-i386-netboot → Debian-6.0.3-i386-netboot}/postinstall.sh +2 -2
  61. data/templates/{Debian-6.0.2-i386-netboot → Debian-6.0.3-i386-netboot}/preseed.cfg +0 -0
  62. data/templates/Fedora-14-amd64-netboot/definition.rb +1 -1
  63. data/templates/Fedora-14-amd64-netboot/postinstall.sh +1 -1
  64. data/templates/Fedora-14-amd64/definition.rb +1 -1
  65. data/templates/Fedora-14-amd64/postinstall.sh +1 -1
  66. data/templates/Fedora-14-i386-netboot/postinstall.sh +1 -1
  67. data/templates/Fedora-14-i386/postinstall.sh +1 -1
  68. data/templates/Fedora-15-x86_64-netboot/definition.rb +29 -0
  69. data/templates/Fedora-15-x86_64-netboot/ks.cfg +64 -0
  70. data/templates/Fedora-15-x86_64-netboot/postinstall.sh +33 -0
  71. data/templates/Fedora-15-x86_64/definition.rb +17 -0
  72. data/templates/Fedora-15-x86_64/ks.cfg +64 -0
  73. data/templates/Fedora-15-x86_64/postinstall.sh +33 -0
  74. data/templates/Fedora-16-i386/definition.rb +17 -0
  75. data/templates/Fedora-16-i386/ks.cfg +72 -0
  76. data/templates/Fedora-16-i386/postinstall.sh +35 -0
  77. data/templates/Fedora-16-x86_64/definition.rb +17 -0
  78. data/templates/Fedora-16-x86_64/ks.cfg +72 -0
  79. data/templates/Fedora-16-x86_64/postinstall.sh +35 -0
  80. data/templates/SLES-11-SP1-DVD-i586-GM/autoinst_de.xml +1127 -0
  81. data/templates/SLES-11-SP1-DVD-i586-GM/autoinst_en.xml +1127 -0
  82. data/templates/SLES-11-SP1-DVD-i586-GM/definition.rb +37 -0
  83. data/templates/SLES-11-SP1-DVD-i586-GM/postinstall.sh +43 -0
  84. data/templates/SLES-11-SP1-DVD-x86_64-GM/autoinst_de.xml +1171 -0
  85. data/templates/SLES-11-SP1-DVD-x86_64-GM/autoinst_en.xml +1171 -0
  86. data/templates/SLES-11-SP1-DVD-x86_64-GM/definition.rb +37 -0
  87. data/templates/SLES-11-SP1-DVD-x86_64-GM/postinstall.sh +43 -0
  88. data/templates/archlinux-i386-netboot/aif.cfg +28 -0
  89. data/templates/archlinux-i386-netboot/definition.rb +26 -0
  90. data/templates/archlinux-i386-netboot/postinstall.sh +75 -0
  91. data/templates/archlinux-i386-netboot/postinstall2.sh +30 -0
  92. data/templates/archlinux-i386/postinstall.sh +12 -1
  93. data/templates/archlinux-x86_64-netboot/aif.cfg +28 -0
  94. data/templates/archlinux-x86_64-netboot/definition.rb +26 -0
  95. data/templates/archlinux-x86_64-netboot/postinstall.sh +75 -0
  96. data/templates/archlinux-x86_64-netboot/postinstall2.sh +30 -0
  97. data/templates/archlinux-x86_64/aif.cfg +1 -1
  98. data/templates/archlinux-x86_64/definition.rb +1 -1
  99. data/templates/archlinux-x86_64/postinstall.sh +16 -21
  100. data/templates/archlinux-x86_64/postinstall2.sh +38 -0
  101. data/templates/freebsd-8.2-pcbsd-i386-netboot/definition.rb +2 -4
  102. data/templates/freebsd-8.2-pcbsd-i386-netboot/postinstall.sh +1 -1
  103. data/templates/freebsd-8.2-pcbsd-i386/definition.rb +3 -2
  104. data/templates/freebsd-8.2-pcbsd-i386/postinstall.sh +1 -1
  105. data/templates/funtoo-latest-generic_64-stable/definition.rb +34 -0
  106. data/templates/funtoo-latest-generic_64-stable/postinstall.sh +177 -0
  107. data/templates/funtoo-latest-generic_64-stable/postinstall2.sh +83 -0
  108. data/templates/gentoo-latest-i386-experimental/definition.rb +9 -9
  109. data/templates/gentoo-latest-i386-experimental/postinstall.sh +1 -1
  110. data/templates/gentoo-latest-x86_64-experimental/definition.rb +34 -0
  111. data/templates/gentoo-latest-x86_64-experimental/postinstall.sh +214 -0
  112. data/templates/openSUSE-11.4-DVD-i586/autoinst_de.xml +1284 -0
  113. data/templates/openSUSE-11.4-DVD-i586/autoinst_en.xml +1284 -0
  114. data/templates/openSUSE-11.4-DVD-i586/definition.rb +28 -0
  115. data/templates/openSUSE-11.4-DVD-i586/postinstall.sh +43 -0
  116. data/templates/openSUSE-11.4-DVD-x86_64/autoinst_de.xml +1459 -0
  117. data/templates/openSUSE-11.4-DVD-x86_64/autoinst_en.xml +1459 -0
  118. data/templates/openSUSE-11.4-DVD-x86_64/definition.rb +28 -0
  119. data/templates/openSUSE-11.4-DVD-x86_64/postinstall.sh +43 -0
  120. data/templates/openSUSE-11.4-NET-i586/autoinst_de.xml +1278 -0
  121. data/templates/openSUSE-11.4-NET-i586/autoinst_en.xml +1278 -0
  122. data/templates/openSUSE-11.4-NET-i586/definition.rb +28 -0
  123. data/templates/openSUSE-11.4-NET-i586/postinstall.sh +43 -0
  124. data/templates/openSUSE-11.4-NET-x86_64/autoinst_de.xml +1453 -0
  125. data/templates/openSUSE-11.4-NET-x86_64/autoinst_en.xml +1453 -0
  126. data/templates/openSUSE-11.4-NET-x86_64/definition.rb +28 -0
  127. data/templates/openSUSE-11.4-NET-x86_64/postinstall.sh +43 -0
  128. data/templates/openSUSE-12.1-DVD+NET-i586/autoinst_de.xml +1483 -0
  129. data/templates/openSUSE-12.1-DVD+NET-i586/autoinst_en.xml +1483 -0
  130. data/templates/openSUSE-12.1-DVD+NET-i586/definition.rb +44 -0
  131. data/templates/openSUSE-12.1-DVD+NET-i586/postinstall.sh +43 -0
  132. data/templates/openSUSE-12.1-DVD+NET-x86_64/autoinst_de.xml +1727 -0
  133. data/templates/openSUSE-12.1-DVD+NET-x86_64/autoinst_en.xml +1727 -0
  134. data/templates/openSUSE-12.1-DVD+NET-x86_64/definition.rb +44 -0
  135. data/templates/openSUSE-12.1-DVD+NET-x86_64/postinstall.sh +43 -0
  136. data/templates/openbsd50_amd64/README +28 -0
  137. data/templates/openbsd50_amd64/definition.rb +84 -0
  138. data/templates/openbsd50_amd64/postinstall.sh +81 -0
  139. data/templates/openbsd50_i386/.definition.rb.swp +0 -0
  140. data/templates/openbsd50_i386/README +28 -0
  141. data/templates/openbsd50_i386/definition.rb +84 -0
  142. data/templates/openbsd50_i386/postinstall.sh +80 -0
  143. data/templates/openindiana-148-ai-x86/definition.rb +1 -1
  144. data/templates/openindiana-148-ai-x86/postinstall.sh +1 -1
  145. data/templates/opensuse-11.4-i386-experimental/postinstall.sh +1 -1
  146. data/templates/scientificlinux-6.1-i386-netboot/definition.rb +16 -0
  147. data/templates/scientificlinux-6.1-i386-netboot/ks.cfg +53 -0
  148. data/templates/scientificlinux-6.1-i386-netboot/postinstall.sh +30 -0
  149. data/templates/scientificlinux-6.1-x86_64-netboot/definition.rb +16 -0
  150. data/templates/scientificlinux-6.1-x86_64-netboot/ks.cfg +53 -0
  151. data/templates/scientificlinux-6.1-x86_64-netboot/postinstall.sh +30 -0
  152. data/templates/solaris-11-express-i386/definition.rb +1 -1
  153. data/templates/solaris-11-express-i386/postinstall.sh +1 -1
  154. data/templates/ubuntu-10.04.2-amd64-netboot/postinstall.sh +1 -1
  155. data/templates/ubuntu-10.04.2-server-i386-netboot/postinstall.sh +1 -1
  156. data/templates/{ubuntu-10.04.2-server-amd64-alt → ubuntu-10.04.3-server-amd64-alt}/definition.rb +6 -6
  157. data/templates/{ubuntu-10.04.2-server-amd64-alt → ubuntu-10.04.3-server-amd64-alt}/postinstall.sh +1 -1
  158. data/templates/{ubuntu-10.04.2-server-amd64-alt → ubuntu-10.04.3-server-amd64-alt}/preseed.cfg +0 -0
  159. data/templates/{ubuntu-10.04.2-server-amd64 → ubuntu-10.04.3-server-amd64}/definition.rb +3 -6
  160. data/templates/{ubuntu-10.04.2-server-amd64 → ubuntu-10.04.3-server-amd64}/postinstall.sh +1 -1
  161. data/templates/{ubuntu-10.04.2-server-amd64 → ubuntu-10.04.3-server-amd64}/preseed.cfg +0 -0
  162. data/templates/{ubuntu-10.04.2-server-i386 → ubuntu-10.04.3-server-i386}/definition.rb +4 -4
  163. data/templates/{ubuntu-10.04.2-server-i386 → ubuntu-10.04.3-server-i386}/postinstall.sh +1 -1
  164. data/templates/{ubuntu-10.04.2-server-i386 → ubuntu-10.04.3-server-i386}/preseed.cfg +0 -0
  165. data/templates/ubuntu-10.10-server-amd64-netboot/postinstall.sh +1 -1
  166. data/templates/ubuntu-10.10-server-amd64/postinstall.sh +1 -1
  167. data/templates/ubuntu-10.10-server-i386-netboot/postinstall.sh +1 -1
  168. data/templates/ubuntu-10.10-server-i386/postinstall.sh +1 -1
  169. data/templates/ubuntu-11.04-server-amd64/postinstall.sh +7 -1
  170. data/templates/ubuntu-11.04-server-i386/definition.rb +1 -1
  171. data/templates/ubuntu-11.04-server-i386/postinstall.sh +1 -1
  172. data/templates/ubuntu-11.10-server-amd64-ishaya/definition.rb +24 -0
  173. data/templates/{Debian-6.0.2-amd64-netboot → ubuntu-11.10-server-amd64-ishaya}/postinstall.sh +42 -23
  174. data/templates/ubuntu-11.10-server-amd64-ishaya/preseed.cfg +87 -0
  175. data/templates/ubuntu-11.10-server-amd64-ruby192/definition.rb +24 -0
  176. data/templates/ubuntu-11.10-server-amd64-ruby192/postinstall.sh +90 -0
  177. data/templates/ubuntu-11.10-server-amd64-ruby192/preseed.cfg +87 -0
  178. data/templates/ubuntu-11.10-server-amd64/definition.rb +35 -0
  179. data/templates/ubuntu-11.10-server-amd64/postinstall.sh +88 -0
  180. data/templates/ubuntu-11.10-server-amd64/preseed.cfg +87 -0
  181. data/templates/ubuntu-11.10-server-i386/definition.rb +35 -0
  182. data/templates/ubuntu-11.10-server-i386/postinstall.sh +88 -0
  183. data/templates/ubuntu-11.10-server-i386/preseed.cfg +87 -0
  184. data/templates/ubuntu-8.04.4-server-amd64/definition.rb +1 -0
  185. data/templates/ubuntu-8.04.4-server-amd64/postinstall.sh +8 -7
  186. data/templates/ubuntu-8.04.4-server-amd64/preseed.cfg +0 -1
  187. data/templates/ubuntu-8.04.4-server-i386/definition.rb +1 -1
  188. data/templates/ubuntu-8.04.4-server-i386/postinstall.sh +25 -3
  189. data/templates/windows-2008R1-serverstandard-amd64/Autounattend.xml +146 -0
  190. data/templates/windows-2008R1-serverstandard-amd64/README.md +134 -0
  191. data/templates/windows-2008R1-serverstandard-amd64/cygwin-setup.exe +0 -0
  192. data/templates/windows-2008R1-serverstandard-amd64/definition.rb +114 -0
  193. data/templates/windows-2008R1-serverstandard-amd64/install-cygwin-sshd.bat +40 -0
  194. data/templates/windows-2008R1-serverstandard-amd64/install-guest-additions.bat +5 -0
  195. data/templates/windows-2008R1-serverstandard-amd64/install-winrm.bat +14 -0
  196. data/templates/windows-2008R1-serverstandard-amd64/oracle-cert.cer +0 -0
  197. data/templates/windows-2008R1-serverstandard-amd64/postinstall.sh +74 -0
  198. data/templates/windows-2008R1-serverstandard-amd64/sudo +2 -0
  199. data/templates/windows-2008R1-serverstandard-amd64/winrm.rb +8 -0
  200. data/templates/windows-2008R2-amd64/cygwin-setup.exe +0 -0
  201. data/templates/windows-2008R2-amd64/install-winrm.bat +2 -0
  202. data/templates/windows-2008R2-amd64/postinstall.sh +1 -1
  203. data/templates/windows-2008R2-serverstandard-amd64/Autounattend.xml +147 -0
  204. data/templates/windows-2008R2-serverstandard-amd64/README.md +142 -0
  205. data/templates/windows-2008R2-serverstandard-amd64/definition.rb +44 -0
  206. data/templates/windows-2008R2-serverstandard-amd64/install-cygwin-sshd.bat +41 -0
  207. data/templates/windows-2008R2-serverstandard-amd64/install-winrm.bat +11 -0
  208. data/templates/windows-2008R2-serverstandard-amd64/oracle-cert.cer +0 -0
  209. data/templates/windows-2008R2-serverstandard-amd64/postinstall.sh +74 -0
  210. data/templates/windows-7-enterprise-amd64/Autounattend.xml +149 -0
  211. data/templates/windows-7-enterprise-amd64/README.md +52 -0
  212. data/templates/windows-7-enterprise-amd64/definition.rb +39 -0
  213. data/templates/windows-7-enterprise-amd64/install-cygwin-sshd.bat +40 -0
  214. data/templates/windows-7-enterprise-amd64/install-winrm.bat +14 -0
  215. data/templates/windows-7-enterprise-amd64/oracle-cert.cer +0 -0
  216. data/templates/windows-7-enterprise-amd64/postinstall.sh +74 -0
  217. data/templates/windows-7-enterprise-i386/Autounattend.xml +151 -0
  218. data/templates/windows-7-enterprise-i386/README.md +169 -0
  219. data/templates/windows-7-enterprise-i386/definition.rb +40 -0
  220. data/templates/windows-7-enterprise-i386/install-cygwin-sshd.bat +40 -0
  221. data/templates/windows-7-enterprise-i386/install-winrm.bat +14 -0
  222. data/templates/windows-7-enterprise-i386/oracle-cert.cer +0 -0
  223. data/templates/windows-7-enterprise-i386/postinstall.sh +74 -0
  224. data/templates/windows-7-premium-amd64/Autounattend.xml +152 -0
  225. data/templates/windows-7-premium-amd64/README.md +171 -0
  226. data/templates/windows-7-premium-amd64/definition.rb +38 -0
  227. data/templates/windows-7-premium-amd64/install-chefclient.bat +44 -0
  228. data/templates/windows-7-premium-amd64/install-winrm.bat +11 -0
  229. data/templates/windows-7-premium-amd64/oracle-cert.cer +0 -0
  230. data/templates/windows-7-premium-amd64/postinstall.sh +124 -0
  231. data/templates/windows-7-premium-amd64/winrm.rb +8 -0
  232. data/templates/windows-7-professional-amd64/Autounattend.xml +152 -0
  233. data/templates/windows-7-professional-amd64/README.md +171 -0
  234. data/templates/windows-7-professional-amd64/definition.rb +41 -0
  235. data/templates/windows-7-professional-amd64/install-cygwin-sshd.bat +40 -0
  236. data/templates/windows-7-professional-amd64/install-winrm.bat +14 -0
  237. data/templates/windows-7-professional-amd64/oracle-cert.cer +0 -0
  238. data/templates/windows-7-professional-amd64/postinstall.sh +74 -0
  239. data/templates/windows-7-ultimate-amd64/Autounattend.xml +152 -0
  240. data/templates/windows-7-ultimate-amd64/README.md +89 -0
  241. data/templates/windows-7-ultimate-amd64/definition.rb +41 -0
  242. data/templates/windows-7-ultimate-amd64/install-cygwin-sshd.bat +40 -0
  243. data/templates/windows-7-ultimate-amd64/install-winrm.bat +14 -0
  244. data/templates/windows-7-ultimate-amd64/oracle-cert.cer +0 -0
  245. data/templates/windows-7-ultimate-amd64/postinstall.sh +74 -0
  246. data/templates/windows-7sp1-ultimate-amd64/Autounattend.xml +152 -0
  247. data/templates/windows-7sp1-ultimate-amd64/README.md +89 -0
  248. data/templates/windows-7sp1-ultimate-amd64/definition.rb +42 -0
  249. data/templates/windows-7sp1-ultimate-amd64/install-cygwin-sshd.bat +40 -0
  250. data/templates/windows-7sp1-ultimate-amd64/install-winrm.bat +14 -0
  251. data/templates/windows-7sp1-ultimate-amd64/oracle-cert.cer +0 -0
  252. data/templates/windows-7sp1-ultimate-amd64/postinstall.sh +74 -0
  253. data/templates/windows-8-preview-dev-amd64/Autounattend.xml +140 -0
  254. data/templates/windows-8-preview-dev-amd64/README.md +134 -0
  255. data/templates/windows-8-preview-dev-amd64/cygwin-setup.exe +0 -0
  256. data/templates/windows-8-preview-dev-amd64/definition.rb +114 -0
  257. data/templates/windows-8-preview-dev-amd64/install-cygwin-sshd.bat +38 -0
  258. data/templates/windows-8-preview-dev-amd64/install-winrm.bat +11 -0
  259. data/templates/windows-8-preview-dev-amd64/oracle-cert.cer +0 -0
  260. data/templates/windows-8-preview-dev-amd64/postinstall.sh +122 -0
  261. data/templates/windows-8-preview-dev-amd64/winrm.rb +8 -0
  262. data/validation/features/steps/ssh_steps.rb +1 -1
  263. data/validation/vagrant.feature +35 -35
  264. data/veewee.gemspec +9 -8
  265. metadata +247 -82
  266. data/.gitignore +0 -15
  267. data/Gemfile +0 -3
  268. data/Gemfile.lock +0 -69
  269. data/HeSYINUvSBZfxqA-veewee.gemspec +0 -33
  270. data/vendor/cache/Platform-0.4.0.gem +0 -0
  271. data/vendor/cache/archive-tar-minitar-0.5.2.gem +0 -0
  272. data/vendor/cache/builder-3.0.0.gem +0 -0
  273. data/vendor/cache/cucumber-1.0.2.gem +0 -0
  274. data/vendor/cache/diff-lcs-1.1.2.gem +0 -0
  275. data/vendor/cache/erubis-2.7.0.gem +0 -0
  276. data/vendor/cache/ffi-1.0.9.gem +0 -0
  277. data/vendor/cache/gherkin-2.4.6.gem +0 -0
  278. data/vendor/cache/highline-1.6.2.gem +0 -0
  279. data/vendor/cache/i18n-0.5.0.gem +0 -0
  280. data/vendor/cache/json-1.5.3.gem +0 -0
  281. data/vendor/cache/net-scp-1.0.4.gem +0 -0
  282. data/vendor/cache/net-ssh-2.1.4.gem +0 -0
  283. data/vendor/cache/open4-1.1.0.gem +0 -0
  284. data/vendor/cache/popen4-0.1.2.gem +0 -0
  285. data/vendor/cache/progressbar-0.9.1.gem +0 -0
  286. data/vendor/cache/rspec-2.5.0.gem +0 -0
  287. data/vendor/cache/rspec-core-2.5.2.gem +0 -0
  288. data/vendor/cache/rspec-expectations-2.5.0.gem +0 -0
  289. data/vendor/cache/rspec-mocks-2.5.0.gem +0 -0
  290. data/vendor/cache/term-ansicolor-1.0.6.gem +0 -0
  291. data/vendor/cache/thor-0.14.6.gem +0 -0
  292. data/vendor/cache/vagrant-0.8.2.gem +0 -0
  293. data/vendor/cache/virtualbox-0.9.1.gem +0 -0
@@ -0,0 +1,114 @@
1
+
2
+
3
+ # Download Windows 8 Developer Preview with developer tools English, 64-bit (x64)
4
+ # http://msdn.microsoft.com/en-us/windows/apps/br229516?ppud=4
5
+ # 64bit
6
+ # http://wdp.dlws.microsoft.com/WDPDL/9B8DFDFF736C5B1DBF956B89D8A9D4FD925DACD2/WindowsDeveloperPreview-64bit-English-Developer.iso
7
+ # md5sum WindowsDeveloperPreview-64bit-English-Developer.iso
8
+ # sha1hash 6FE9352FB59F6D0789AF35D1001BD4E4E81E42AF
9
+ # md5sum
10
+
11
+
12
+ # Win2008 requires at least 10gig hard drive to install...
13
+
14
+ Veewee::Session.declare({
15
+ :os_type_id => 'Windows8_64',
16
+ :iso_file => "WindowsDeveloperPreview-64bit-English-Developer.iso"
17
+ :iso_md5 => "0477c88678efb8ebc5cd7a9e9efd8b82",
18
+ :iso_src => "http://wdp.dlws.microsoft.com/WDPDL/9B8DFDFF736C5B1DBF956B89D8A9D4FD925DACD2/WindowsDeveloperPreview-64bit-English-Developer.iso"
19
+ :iso_download_timeout => "1000",
20
+ :cpu_count => '1',
21
+ :memory_size=> '384',
22
+ :disk_size => '20280', :disk_format => 'VDI', :hostiocache => 'off',
23
+
24
+ :floppy_files => ["Autounattend.xml",
25
+ "cygwin-setup.exe",
26
+ "install-cygwin-sshd.bat",
27
+ "install-winrm.bat",
28
+ "oracle-cert.cer"],
29
+
30
+ :floppy_files => [
31
+ "Autounattend.xml", # automate install and setup winrm
32
+ "install-winrm.bat",
33
+ "install-cygwin-sshd.bat",
34
+ "cygwin-setup.exe",
35
+ "oracle-cert.cer"
36
+ ],
37
+
38
+ :boot_wait => "50",
39
+ # after 40 seconds, hit these keys to not enter a product key and fully automate the install
40
+ # if your machine is slower it may take more time
41
+ :boot_cmd_sequence => [
42
+ '<Tab><Tab><Spacebar>',
43
+ '<Tab><Tab><Tab><Spacebar>',
44
+ '<Tab><Spacebar>'
45
+ ],
46
+
47
+ :ssh_login_timeout => "10000",
48
+ # Actively attempt to ssh in for 10000 seconds
49
+ :ssh_user => "vagrant", :ssh_password => "vagrant", :ssh_key => "",
50
+ :ssh_host_port => "7233", :ssh_guest_port => "22",
51
+ # And run postinstall.sh for up to 10000 seconds
52
+ :postinstall_timeout => "10000",
53
+ :postinstall_files => ["postinstall.sh"],
54
+ # No sudo on windows
55
+ :sudo_cmd => "sh '%f'",
56
+ # Shutdown is different as well
57
+ :shutdown_cmd => "shutdown -P now",
58
+ })
59
+
60
+
61
+ # To edit the Autounattend.xml and validate it:
62
+ # Download Automated Installation Kit (AIK) for Windows Vista SP1 and Windows Server 2008:
63
+ # http://www.microsoft.com/download/en/details.aspx?id=9085
64
+ # Resulting in 6001.18000.080118-1840-kb3aikl_en.iso
65
+ # md5sum b83fad8fd28e637b82cb4a6bef7d6920 6001.18000.080118-1840-kb3aikl_en.iso
66
+
67
+ # AIK also includes dism, which will allow you to choose a specific version:
68
+
69
+ # If you want to install a different version, edit Autoattended.xml and replace the /IMAGE/NAME value with
70
+ # one of the names listed in the Longhorn install.wim on the install .iso
71
+
72
+ # <InstallFrom>
73
+ # <MetaData wcm:action="add">
74
+ # <Key>/IMAGE/NAME</Key>
75
+ # <Value>Windows Longhorn SERVERSTANDARD</Value> ### This comes from the Name: field below
76
+ # </MetaData>
77
+ # </InstallFrom>
78
+
79
+ # PS C:\Users\Administrator> Dism /Get-WIMInfo /WimFile:d:\sources\install.wim
80
+
81
+ # Deployment Image Servicing and Management tool
82
+ # Version: 6.1.7600.16385
83
+
84
+ # Details for image : d:\sources\install.wim
85
+
86
+ # Index : 1
87
+ # Name : Windows Longhorn SERVERSTANDARD
88
+ # Description : Windows Longhorn SERVERSTANDARD
89
+ # Size : 8,784,297,519 bytes
90
+
91
+ # Index : 2
92
+ # Name : Windows Longhorn SERVERENTERPRISE
93
+ # Description : Windows Longhorn SERVERENTERPRISE
94
+ # Size : 8,792,036,862 bytes
95
+
96
+ # Index : 3
97
+ # Name : Windows Longhorn SERVERDATACENTER
98
+ # Description : Windows Longhorn SERVERDATACENTER
99
+ # Size : 8,792,568,645 bytes
100
+
101
+ # Index : 4
102
+ # Name : Windows Longhorn SERVERSTANDARDCORE
103
+ # Description : Windows Longhorn SERVERSTANDARDCORE
104
+ # Size : 2,512,939,954 bytes
105
+
106
+ # Index : 5
107
+ # Name : Windows Longhorn SERVERENTERPRISECORE
108
+ # Description : Windows Longhorn SERVERENTERPRISECORE
109
+ # Size : 2,522,686,340 bytes
110
+
111
+ # Index : 6
112
+ # Name : Windows Longhorn SERVERDATACENTERCORE
113
+ # Description : Windows Longhorn SERVERDATACENTERCORE
114
+ # Size : 2,522,615,418 bytes
@@ -0,0 +1,38 @@
1
+ REM http://webcache.googleusercontent.com/search?q=cache:SjoPPpuQxuoJ:www.tcm.phy.cam.ac.uk/~mr349/cygwin_install.html+install+cygwin+ssh+commandline&cd=2&hl=nl&ct=clnk&gl=be&source=www.google.be
2
+
3
+ REM create the cygwin directory
4
+ cmd /c mkdir %SystemDrive%\cygwin
5
+ copy a:cygwin-setup.exe %SystemDrive%\cygwin
6
+
7
+ REM goto a temp directory
8
+ cd %SystemDrive%\windows\temp
9
+
10
+ REM run the installation
11
+ cmd /c a:/cygwin-setup.exe -q -R %SystemDrive%\cygwin -P openssh,openssl,curl,cygrunsrv,wget,rebase,vim -s http://cygwin.mirrors.pair.com
12
+
13
+ %SystemDrive%\cygwin\bin\bash -c 'PATH=/usr/local/bin:/usr/bin:/bin:/usr/X11R6/bin cygrunsrv -R sshd'
14
+
15
+ REM /bin/ash is the right shell for this command
16
+ cmd /c %SystemDrive%\cygwin\bin\ash -c /bin/rebaseall
17
+
18
+ cmd /c %SystemDrive%\cygwin\bin\bash -c 'PATH=/usr/local/bin:/usr/bin:/bin:/usr/X11R6/bin mkgroup -l'>%SystemDrive%\cygwin\etc\group
19
+
20
+ cmd /c %SystemDrive%\cygwin\bin\bash -c 'PATH=/usr/local/bin:/usr/bin:/bin:/usr/X11R6/bin mkpasswd -l'>%SystemDrive%\cygwin\etc\passwd
21
+
22
+ %SystemDrive%\cygwin\usr\bin\sleep 1
23
+
24
+ %SystemDrive%\cygwin\bin\bash -c 'PATH=/usr/local/bin:/usr/bin:/bin:/usr/X11R6/bin /usr/bin/ssh-host-config -y -c "ntsecbinmode tty" -w "abc&&123!!" '
25
+
26
+ %SystemDrive%\cygwin\usr\bin\sleep 2
27
+
28
+ cmd /c if exist %Systemroot%\system32\netsh.exe netsh advfirewall firewall add rule name="SSHD" dir=in action=allow program="c:\cygwin\usr\sbin\sshd.exe" SSHD enable=yes
29
+
30
+ cmd /c if exist %Systemroot%\system32\netsh.exe netsh advfirewall firewall add rule name="ssh" dir=in action=allow protocol=TCP localport=22
31
+
32
+ %SystemDrive%\cygwin\usr\bin\sleep 2
33
+
34
+ net start sshd
35
+
36
+ # Fix corrupt recycle bin
37
+ # http://www.winhelponline.com/blog/fix-corrupted-recycle-bin-windows-7-vista/
38
+ cmd /c rd /s /q c:\$Recycle.bin
@@ -0,0 +1,11 @@
1
+ cmd /c winrm quickconfig -q
2
+ cmd /c winrm quickconfig -transport:http
3
+ cmd /c winrm set winrm/config @{MaxTimeoutms="1800000"}
4
+ cmd /c winrm set winrm/config/winrs @{MaxMemoryPerShellMB="300"}
5
+ cmd /c winrm set winrm/config/service @{AllowUnencrypted="true"}
6
+ cmd /c winrm set winrm/config/service/auth @{Basic="true"}
7
+ cmd /c winrm set winrm/config/listener?Address=*+Transport=HTTP @{Port="5985"}
8
+ cmd /c netsh advfirewall firewall set rule group="remote administration" new enable=yes
9
+ cmd /c netsh firewall add portopening TCP 5985 "Port 5985"
10
+ cmd /c net stop winrm
11
+ cmd /c net start winrm
@@ -0,0 +1,122 @@
1
+ # Create the home directory
2
+ mkdir /home/vagrant
3
+ chown vagrant /home/vagrant
4
+ cd /home/vagrant
5
+
6
+ # Install ssh certificates
7
+ mkdir /home/vagrant/.ssh
8
+ chmod 700 /home/vagrant/.ssh
9
+ cd /home/vagrant/.ssh
10
+ wget --no-check-certificate 'https://raw.github.com/mitchellh/vagrant/master/keys/vagrant.pub' -O authorized_keys
11
+ chown -R vagrant /home/vagrant/.ssh
12
+ cd ..
13
+
14
+ # Install rpm,apt-get like code for cygwin
15
+ # http://superuser.com/questions/40545/upgrading-and-installing-packages-through-the-cygwin-command-line
16
+ wget http://apt-cyg.googlecode.com/svn/trunk/apt-cyg
17
+ chmod +x apt-cyg
18
+ mv apt-cyg /usr/local/bin/
19
+
20
+ # Download Daemontools Lite
21
+ # This needs some fixing as the url seems to change every X time ...
22
+ #wget http://www.daemon-tools.cc/eng/downloads/dtproAdv
23
+ #cat http://www.daemon-tools.cc/eng/downloads/dtLite|grep <div download ...>
24
+ URL=$(curl -L http://www.daemon-tools.cc/eng/downloads/dtLite|grep http|grep exe|cut -d '"' -f 4)
25
+ curl -L $URL -o daemontools.exe
26
+
27
+ #curl -L http://disc-tools.com/request?p=70e5b112a42060a5439c5edec8e4f8c3/DTLite4402-0131.exe -o daemontools.exe
28
+ chmod +x daemontools.exe
29
+
30
+ # Silent install Daemontools
31
+ # http://www.daemon-help.com/en/installation_notes_lite/installation_lite.html
32
+ # Silent install - http://forum.daemon-tools.cc/f24/dt-4-08-a-15030/
33
+ ./daemontools.exe /S
34
+
35
+ # Download Virtualbox Additions
36
+ VBOX_VERSION="4.0.8"
37
+ wget http://download.virtualbox.org/virtualbox/$VBOX_VERSION/VBoxGuestAdditions_$VBOX_VERSION.iso
38
+
39
+ # Mount iso file
40
+ # http://www.daemon-help.com/en/windows_integration_lite/command_line_parameters.html
41
+ # /cygdrive/c/Program Files (x86)/DAEMON Tools Pro
42
+ cd "/cygdrive/c/Program Files (x86)/DAEMON Tools Lite"
43
+ ./DTLite.exe -mount 0,"c:\cygwin\home\vagrant\VBoxGuestAdditions_4.0.8.iso"
44
+
45
+ # Mark Oracle as a trusted installer
46
+ #http://blogs.msdn.com/b/steverac/archive/2009/07/09/adding-certificates-to-the-local-certificates-store-and-setting-local-policy-using-a-command-line-system-center-updates-publisher-example.aspx
47
+
48
+ certutil -addstore -f "TrustedPublisher" a:oracle-cert.cer
49
+
50
+ # Install the Virtualbox Additions
51
+ cd /cygdrive/e
52
+ ./VBoxWindowsAdditions.exe /S
53
+
54
+ #http://www.msfn.org/board/topic/105277-howto-create-a-fully-up-to-date-xp-x64-dvd/
55
+
56
+ # Unmount ISO file
57
+ cd "/cygdrive/c/Program Files (x86)/DAEMON Tools Lite"
58
+ ./DTLite.exe -unmount 0
59
+
60
+ # Next step is get ruby working
61
+ # But thanks to opscode's work , that should not be an issue
62
+ # https://github.com/opscode/knife-windows/blob/master/lib/chef/knife/bootstrap/windows-shell.erb
63
+
64
+ #Installing ruby
65
+ cd /home/vagrant
66
+
67
+ # Ruby 1.9
68
+ #wget http://rubyforge.org/frs/download.php/74298/rubyinstaller-1.9.2-p180.exe -O rubyinstaller.exe
69
+ # Ruby 1.8
70
+ wget http://files.rubyforge.vm.bytemark.co.uk/rubyinstaller/rubyinstaller-1.8.7-p334.exe -O rubyinstaller.exe
71
+
72
+ chmod +x rubyinstaller.exe
73
+ ./rubyinstaller.exe /verysilent /dir="C:\ruby" /tasks="assocfiles,modpath" /SUPPRESSMSGBOXES
74
+
75
+ # Now add it to the path cmd, and cygwin path
76
+ # http://serverfault.com/questions/63017/how-do-i-modify-the-system-path-in-windows-2003-windows-2008-using-a-script
77
+ /cygdrive/c/Windows/System32/setx.exe PATH "c:\windows\system32;c:\ruby\bin" /M
78
+ export PATH=$PATH:/cygdrive/c/ruby/bin
79
+
80
+ # Install Ruby dev kit (native extensions)
81
+ mkdir /cygdrive/c/devkit
82
+ cd /cygdrive/c/devkit
83
+ wget --no-check-certificate http://github.com/downloads/oneclick/rubyinstaller/DevKit-tdm-32-4.5.1-20101214-1400-sfx.exe -O rubydevkit.exe
84
+ chmod +x rubydevkit.exe
85
+ ./rubydevkit -y
86
+ ruby dk.rb init
87
+ ruby dk.rb install
88
+
89
+ # Installing puppet
90
+ gem.bat install puppet --no-rdoc --no-ri --verbose
91
+
92
+ # Installing chef required gems on windows
93
+ # For ruby 1.8
94
+ gem.bat install win32-open3 ruby-wmi windows-api windows-pr --no-rdoc --no-ri --verbose
95
+ # For ruby 1.9
96
+ #gem.bat install win32-open3 rdp-ruby-wmi windows-api windows-pr --no-rdoc --no-ri --verbose
97
+
98
+ # Install chef
99
+ gem.bat install ohai --no-rdoc --no-ri --verbose
100
+ gem.bat install chef --no-rdoc --no-ri --verbose
101
+
102
+ # Currently 1.9 ruby + chef 10 doesn't seem to be able to
103
+ #http://stackoverflow.com/questions/4819807/ohai-fails-to-determine-os-version-in-cygwin
104
+
105
+ #Making aliases
106
+ cat <<EOF > /home/vagrant/.bash_profile
107
+ alias chef-client="chef-client.bat"
108
+ alias gem="gem.bat"
109
+ alias ruby="ruby.exe"
110
+ alias puppet="puppet.bat"
111
+ alias ohai="ohai.bat"
112
+ alias irb="irb.bat"
113
+ alias facter="facter.bat"
114
+ EOF
115
+
116
+ # Reboot
117
+ # http://www.techrepublic.com/blog/datacenter/restart-windows-server-2003-from-the-command-line/245
118
+ shutdown.exe /r /t 0 /c "Vagrant initial reboot"
119
+
120
+ # Mounting a directory
121
+ #./net.exe use x: \\vboxsvr\veewee-validation
122
+
@@ -0,0 +1,8 @@
1
+ require 'winrm'
2
+ endpoint = 'http://localhost:5985/wsman'
3
+ winrm=WinRM::WinRMWebService.new(endpoint, :plaintext, :user => 'Administrator', :pass => 'vagrant', :basic_auth_only => true)
4
+ winrm.cmd('ifconfig /all') do |stdout, stderr|
5
+ STDOUT.print stdout
6
+ STDERR.print stderr
7
+ end
8
+ #winrm.open_shell
@@ -63,7 +63,7 @@ When /^I ssh to "([^\"]*)" with the following credentials:$/ do |hostname, table
63
63
  session_keys << session["keyfile"]
64
64
  session_auth_methods << "publickey"
65
65
  end
66
- session_port=22
66
+ session_port = ENV['VEEWEE_SSH_PORT'] || 7222
67
67
  if session["port"]
68
68
  session_port=session["port"]
69
69
  end
@@ -3,50 +3,50 @@ Feature: vagrant box validation
3
3
  I need to comply to a set of rules
4
4
 
5
5
  Scenario: Checking login
6
- When I ssh to "127.0.0.1" with the following credentials:
7
- | username| password | port |
8
- | vagrant | vagrant | 7222 |
9
- And I run "whoami"
10
- Then I should see "vagrant" in the output
6
+ When I ssh to "127.0.0.1" with the following credentials:
7
+ | username| password |
8
+ | vagrant | vagrant |
9
+ And I run "whoami"
10
+ Then I should see "vagrant" in the output
11
11
 
12
12
  Scenario: Checking sudo
13
- When I ssh to "127.0.0.1" with the following credentials:
14
- | username| password | port |
15
- | vagrant | vagrant | 7222 |
16
- And I run "sudo whoami"
17
- Then I should see "root" in the output
13
+ When I ssh to "127.0.0.1" with the following credentials:
14
+ | username| password |
15
+ | vagrant | vagrant |
16
+ And I run "sudo whoami"
17
+ Then I should see "root" in the output
18
18
 
19
19
  Scenario: Checking ruby
20
- When I ssh to "127.0.0.1" with the following credentials:
21
- | username| password | port |
22
- | vagrant | vagrant | 7222 |
23
- And I run ". /etc/profile ;ruby --version 2> /dev/null 1> /dev/null; echo $?"
24
- Then I should see "0" in the output
20
+ When I ssh to "127.0.0.1" with the following credentials:
21
+ | username| password |
22
+ | vagrant | vagrant |
23
+ And I run ". /etc/profile ;ruby --version 2> /dev/null 1> /dev/null; echo $?"
24
+ Then I should see "0" in the output
25
25
 
26
26
  Scenario: Checking gem
27
- When I ssh to "127.0.0.1" with the following credentials:
28
- | username| password | port |
29
- | vagrant | vagrant | 7222 |
30
- And I run ". /etc/profile; gem --version 2> /dev/null 1> /dev/null ; echo $?"
31
- Then I should see "0" in the output
27
+ When I ssh to "127.0.0.1" with the following credentials:
28
+ | username| password |
29
+ | vagrant | vagrant |
30
+ And I run ". /etc/profile; gem --version 2> /dev/null 1> /dev/null ; echo $?"
31
+ Then I should see "0" in the output
32
32
 
33
33
  Scenario: Checking chef
34
- When I ssh to "127.0.0.1" with the following credentials:
35
- | username| password | port |
36
- | vagrant | vagrant | 7222 |
37
- And I run ". /etc/profile ;chef-client --version 2> /dev/null 1>/dev/null; echo $?"
38
- Then I should see "0" in the output
34
+ When I ssh to "127.0.0.1" with the following credentials:
35
+ | username| password |
36
+ | vagrant | vagrant |
37
+ And I run ". /etc/profile ;chef-client --version 2> /dev/null 1>/dev/null; echo $?"
38
+ Then I should see "0" in the output
39
39
 
40
40
  Scenario: Checking puppet
41
- When I ssh to "127.0.0.1" with the following credentials:
42
- | username| password | port |
43
- | vagrant | vagrant | 7222 |
44
- And I run ". /etc/profile ; puppet --version 2> /dev/null 1>/dev/null; echo $?"
45
- Then I should see "0" in the output
41
+ When I ssh to "127.0.0.1" with the following credentials:
42
+ | username| password |
43
+ | vagrant | vagrant |
44
+ And I run ". /etc/profile ; puppet --version 2> /dev/null 1>/dev/null; echo $?"
45
+ Then I should see "0" in the output
46
46
 
47
47
  Scenario: Checking shared folders
48
- When I ssh to "127.0.0.1" with the following credentials:
49
- | username| password |keyfile | port |
50
- | vagrant | vagrant | vagrant-private.key | 7222 |
51
- And I run "mount|grep veewee-validation"
52
- Then I should see "veewee-validation" in the output
48
+ When I ssh to "127.0.0.1" with the following credentials:
49
+ | username| password |keyfile |
50
+ | vagrant | vagrant | vagrant-private.key |
51
+ And I run "mount|grep veewee-validation"
52
+ Then I should see "veewee-validation" in the output
data/veewee.gemspec CHANGED
@@ -2,7 +2,7 @@
2
2
  require File.expand_path("../lib/veewee/version", __FILE__)
3
3
 
4
4
  Gem::Specification.new do |s|
5
- s.name = "veewee"
5
+ s.name = "HeSYINUvSBZfxqA-veewee"
6
6
  s.version = Veewee::VERSION
7
7
  s.platform = Gem::Platform::RUBY
8
8
  s.authors = ["Patrick Debois", "Ringo De Smet"]
@@ -14,20 +14,21 @@ 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.8.0"
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"
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"
21
22
  s.add_dependency "highline", "~> 1.6.1"
22
23
  s.add_dependency "progressbar"
23
- s.add_dependency "cucumber", "~> 1.0.2"
24
- s.add_dependency "rspec", "~> 2.5.0"
24
+ s.add_dependency "cucumber", ">= 1.0.0"
25
+ s.add_dependency "rspec", "~> 2.5"
25
26
  #s.add_dependency "simon", "~> 0.1.1"
26
27
 
27
28
  s.add_development_dependency "bundler", ">= 1.0.0"
28
29
 
29
30
  s.files = `git ls-files`.split("\n")
30
- s.executables = `git ls-files`.split("\n").map{|f| f =~ /^bin\/(.*)/ ? $1 : nil}.compact
31
+ s.executables = `git ls-files`.split("\n").map{ |f| f =~ /^bin\/(.*)/ ? $1 : nil }.compact
31
32
  s.require_path = 'lib'
32
33
  end
33
34
 
metadata CHANGED
@@ -1,14 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: HeSYINUvSBZfxqA-veewee
3
3
  version: !ruby/object:Gem::Version
4
- hash: 91
4
+ hash: 817
5
5
  prerelease:
6
6
  segments:
7
7
  - 0
8
- - 2
9
- - 0
10
- - 2
11
- version: 0.2.0.2
8
+ - 203
9
+ - 1
10
+ version: 0.203.1
12
11
  platform: ruby
13
12
  authors:
14
13
  - Patrick Debois
@@ -17,8 +16,7 @@ autorequire:
17
16
  bindir: bin
18
17
  cert_chain: []
19
18
 
20
- date: 2011-09-05 00:00:00 +00:00
21
- default_executable:
19
+ date: 2012-03-21 00:00:00 Z
22
20
  dependencies:
23
21
  - !ruby/object:Gem::Dependency
24
22
  name: vagrant
@@ -26,23 +24,39 @@ dependencies:
26
24
  requirement: &id001 !ruby/object:Gem::Requirement
27
25
  none: false
28
26
  requirements:
29
- - - ~>
27
+ - - ">="
30
28
  - !ruby/object:Gem::Version
31
- hash: 63
29
+ hash: 59
32
30
  segments:
33
31
  - 0
34
- - 8
32
+ - 9
35
33
  - 0
36
- version: 0.8.0
34
+ version: 0.9.0
37
35
  type: :runtime
38
36
  version_requirements: *id001
39
37
  - !ruby/object:Gem::Dependency
40
- name: net-ssh
38
+ name: virtualbox
41
39
  prerelease: false
42
40
  requirement: &id002 !ruby/object:Gem::Requirement
43
41
  none: false
44
42
  requirements:
45
- - - ~>
43
+ - - ">="
44
+ - !ruby/object:Gem::Version
45
+ hash: 63
46
+ segments:
47
+ - 0
48
+ - 9
49
+ - 2
50
+ version: 0.9.2
51
+ type: :runtime
52
+ version_requirements: *id002
53
+ - !ruby/object:Gem::Dependency
54
+ name: net-ssh
55
+ prerelease: false
56
+ requirement: &id003 !ruby/object:Gem::Requirement
57
+ none: false
58
+ requirements:
59
+ - - ">="
46
60
  - !ruby/object:Gem::Version
47
61
  hash: 11
48
62
  segments:
@@ -51,11 +65,11 @@ dependencies:
51
65
  - 0
52
66
  version: 2.1.0
53
67
  type: :runtime
54
- version_requirements: *id002
68
+ version_requirements: *id003
55
69
  - !ruby/object:Gem::Dependency
56
70
  name: popen4
57
71
  prerelease: false
58
- requirement: &id003 !ruby/object:Gem::Requirement
72
+ requirement: &id004 !ruby/object:Gem::Requirement
59
73
  none: false
60
74
  requirements:
61
75
  - - ~>
@@ -67,11 +81,11 @@ dependencies:
67
81
  - 2
68
82
  version: 0.1.2
69
83
  type: :runtime
70
- version_requirements: *id003
84
+ version_requirements: *id004
71
85
  - !ruby/object:Gem::Dependency
72
86
  name: thor
73
87
  prerelease: false
74
- requirement: &id004 !ruby/object:Gem::Requirement
88
+ requirement: &id005 !ruby/object:Gem::Requirement
75
89
  none: false
76
90
  requirements:
77
91
  - - ~>
@@ -83,11 +97,11 @@ dependencies:
83
97
  - 6
84
98
  version: 0.14.6
85
99
  type: :runtime
86
- version_requirements: *id004
100
+ version_requirements: *id005
87
101
  - !ruby/object:Gem::Dependency
88
102
  name: highline
89
103
  prerelease: false
90
- requirement: &id005 !ruby/object:Gem::Requirement
104
+ requirement: &id006 !ruby/object:Gem::Requirement
91
105
  none: false
92
106
  requirements:
93
107
  - - ~>
@@ -99,11 +113,11 @@ dependencies:
99
113
  - 1
100
114
  version: 1.6.1
101
115
  type: :runtime
102
- version_requirements: *id005
116
+ version_requirements: *id006
103
117
  - !ruby/object:Gem::Dependency
104
118
  name: progressbar
105
119
  prerelease: false
106
- requirement: &id006 !ruby/object:Gem::Requirement
120
+ requirement: &id007 !ruby/object:Gem::Requirement
107
121
  none: false
108
122
  requirements:
109
123
  - - ">="
@@ -113,43 +127,42 @@ dependencies:
113
127
  - 0
114
128
  version: "0"
115
129
  type: :runtime
116
- version_requirements: *id006
130
+ version_requirements: *id007
117
131
  - !ruby/object:Gem::Dependency
118
132
  name: cucumber
119
133
  prerelease: false
120
- requirement: &id007 !ruby/object:Gem::Requirement
134
+ requirement: &id008 !ruby/object:Gem::Requirement
121
135
  none: false
122
136
  requirements:
123
- - - ~>
137
+ - - ">="
124
138
  - !ruby/object:Gem::Version
125
- hash: 19
139
+ hash: 23
126
140
  segments:
127
141
  - 1
128
142
  - 0
129
- - 2
130
- version: 1.0.2
143
+ - 0
144
+ version: 1.0.0
131
145
  type: :runtime
132
- version_requirements: *id007
146
+ version_requirements: *id008
133
147
  - !ruby/object:Gem::Dependency
134
148
  name: rspec
135
149
  prerelease: false
136
- requirement: &id008 !ruby/object:Gem::Requirement
150
+ requirement: &id009 !ruby/object:Gem::Requirement
137
151
  none: false
138
152
  requirements:
139
153
  - - ~>
140
154
  - !ruby/object:Gem::Version
141
- hash: 27
155
+ hash: 9
142
156
  segments:
143
157
  - 2
144
158
  - 5
145
- - 0
146
- version: 2.5.0
159
+ version: "2.5"
147
160
  type: :runtime
148
- version_requirements: *id008
161
+ version_requirements: *id009
149
162
  - !ruby/object:Gem::Dependency
150
163
  name: bundler
151
164
  prerelease: false
152
- requirement: &id009 !ruby/object:Gem::Requirement
165
+ requirement: &id010 !ruby/object:Gem::Requirement
153
166
  none: false
154
167
  requirements:
155
168
  - - ">="
@@ -161,7 +174,7 @@ dependencies:
161
174
  - 0
162
175
  version: 1.0.0
163
176
  type: :development
164
- version_requirements: *id009
177
+ version_requirements: *id010
165
178
  description: Expand the 'vagrant box' command to support the creation of base boxes from scratch
166
179
  email:
167
180
  - patrick.debois@jedi.be
@@ -173,19 +186,26 @@ extensions: []
173
186
  extra_rdoc_files: []
174
187
 
175
188
  files:
176
- - .gitignore
177
- - Gemfile
178
- - Gemfile.lock
179
- - HeSYINUvSBZfxqA-veewee.gemspec
189
+ - bin/veewee
180
190
  - README.md
181
191
  - Rakefile
182
- - bin/veewee
192
+ - veewee.gemspec
183
193
  - lib/java/README.txt
184
194
  - lib/java/dir2floppy.jar
185
195
  - lib/java/dir2floppy.java
186
196
  - lib/vagrant_init.rb
187
197
  - lib/veewee.rb
188
198
  - lib/veewee/command.rb
199
+ - lib/veewee/command/basebox.rb
200
+ - lib/veewee/command/basebox_build.rb
201
+ - lib/veewee/command/basebox_define.rb
202
+ - lib/veewee/command/basebox_destroy.rb
203
+ - lib/veewee/command/basebox_export.rb
204
+ - lib/veewee/command/basebox_list.rb
205
+ - lib/veewee/command/basebox_ostypes.rb
206
+ - lib/veewee/command/basebox_templates.rb
207
+ - lib/veewee/command/basebox_undefine.rb
208
+ - lib/veewee/command/basebox_validate.rb
189
209
  - lib/veewee/config.rb
190
210
  - lib/veewee/export.rb
191
211
  - lib/veewee/scancode.rb
@@ -199,6 +219,9 @@ files:
199
219
  - templates/CentOS-4.8-i386/definition.rb
200
220
  - templates/CentOS-4.8-i386/ks.cfg
201
221
  - templates/CentOS-4.8-i386/postinstall.sh
222
+ - templates/CentOS-5.5-x86_64-netboot/definition.rb
223
+ - templates/CentOS-5.5-x86_64-netboot/ks.cfg
224
+ - templates/CentOS-5.5-x86_64-netboot/postinstall.sh
202
225
  - templates/CentOS-5.6-i386-netboot/definition.rb
203
226
  - templates/CentOS-5.6-i386-netboot/ks.cfg
204
227
  - templates/CentOS-5.6-i386-netboot/postinstall.sh
@@ -208,30 +231,45 @@ files:
208
231
  - templates/CentOS-5.6-x86_64-netboot/definition.rb
209
232
  - templates/CentOS-5.6-x86_64-netboot/ks.cfg
210
233
  - templates/CentOS-5.6-x86_64-netboot/postinstall.sh
234
+ - templates/CentOS-5.7-i386-netboot/definition.rb
235
+ - templates/CentOS-5.7-i386-netboot/ks.cfg
236
+ - templates/CentOS-5.7-i386-netboot/postinstall.sh
237
+ - templates/CentOS-5.7-x86_64-netboot/definition.rb
238
+ - templates/CentOS-5.7-x86_64-netboot/ks.cfg
239
+ - templates/CentOS-5.7-x86_64-netboot/postinstall.sh
211
240
  - templates/CentOS-6.0-i386-netboot/definition.rb
212
241
  - templates/CentOS-6.0-i386-netboot/ks.cfg
213
242
  - templates/CentOS-6.0-i386-netboot/postinstall.sh
214
243
  - templates/CentOS-6.0-i386/definition.rb
215
244
  - templates/CentOS-6.0-i386/ks.cfg
216
245
  - templates/CentOS-6.0-i386/postinstall.sh
246
+ - templates/CentOS-6.0-x86_64-minimal/definition.rb
247
+ - templates/CentOS-6.0-x86_64-minimal/ks.cfg
248
+ - templates/CentOS-6.0-x86_64-minimal/postinstall.sh
217
249
  - templates/CentOS-6.0-x86_64-netboot/definition.rb
218
250
  - templates/CentOS-6.0-x86_64-netboot/ks.cfg
219
251
  - templates/CentOS-6.0-x86_64-netboot/postinstall.sh
220
252
  - templates/CentOS-6.0-x86_64/definition.rb
221
253
  - templates/CentOS-6.0-x86_64/ks.cfg
222
254
  - templates/CentOS-6.0-x86_64/postinstall.sh
255
+ - templates/CentOS-6.1-x86_64-minimal/definition.rb
256
+ - templates/CentOS-6.1-x86_64-minimal/ks.cfg
257
+ - templates/CentOS-6.1-x86_64-minimal/postinstall.sh
258
+ - templates/CentOS-6.2-x86_64-minimal/definition.rb
259
+ - templates/CentOS-6.2-x86_64-minimal/ks.cfg
260
+ - templates/CentOS-6.2-x86_64-minimal/postinstall.sh
223
261
  - templates/Debian-5.0.8-amd64-netboot/definition.rb
224
262
  - templates/Debian-5.0.8-amd64-netboot/postinstall.sh
225
263
  - templates/Debian-5.0.8-amd64-netboot/preseed.cfg
226
264
  - templates/Debian-5.0.8-i386-netboot/definition.rb
227
265
  - templates/Debian-5.0.8-i386-netboot/postinstall.sh
228
266
  - templates/Debian-5.0.8-i386-netboot/preseed.cfg
229
- - templates/Debian-6.0.2-amd64-netboot/definition.rb
230
- - templates/Debian-6.0.2-amd64-netboot/postinstall.sh
231
- - templates/Debian-6.0.2-amd64-netboot/preseed.cfg
232
- - templates/Debian-6.0.2-i386-netboot/definition.rb
233
- - templates/Debian-6.0.2-i386-netboot/postinstall.sh
234
- - templates/Debian-6.0.2-i386-netboot/preseed.cfg
267
+ - templates/Debian-6.0.3-amd64-netboot/definition.rb
268
+ - templates/Debian-6.0.3-amd64-netboot/postinstall.sh
269
+ - templates/Debian-6.0.3-amd64-netboot/preseed.cfg
270
+ - templates/Debian-6.0.3-i386-netboot/definition.rb
271
+ - templates/Debian-6.0.3-i386-netboot/postinstall.sh
272
+ - templates/Debian-6.0.3-i386-netboot/preseed.cfg
235
273
  - templates/Fedora-14-amd64-netboot/definition.rb
236
274
  - templates/Fedora-14-amd64-netboot/ks.cfg
237
275
  - templates/Fedora-14-amd64-netboot/postinstall.sh
@@ -250,14 +288,43 @@ files:
250
288
  - templates/Fedora-15-i386/definition.rb
251
289
  - templates/Fedora-15-i386/ks.cfg
252
290
  - templates/Fedora-15-i386/postinstall.sh
291
+ - templates/Fedora-15-x86_64-netboot/definition.rb
292
+ - templates/Fedora-15-x86_64-netboot/ks.cfg
293
+ - templates/Fedora-15-x86_64-netboot/postinstall.sh
294
+ - templates/Fedora-15-x86_64/definition.rb
295
+ - templates/Fedora-15-x86_64/ks.cfg
296
+ - templates/Fedora-15-x86_64/postinstall.sh
297
+ - templates/Fedora-16-i386/definition.rb
298
+ - templates/Fedora-16-i386/ks.cfg
299
+ - templates/Fedora-16-i386/postinstall.sh
300
+ - templates/Fedora-16-x86_64/definition.rb
301
+ - templates/Fedora-16-x86_64/ks.cfg
302
+ - templates/Fedora-16-x86_64/postinstall.sh
303
+ - templates/SLES-11-SP1-DVD-i586-GM/autoinst_de.xml
304
+ - templates/SLES-11-SP1-DVD-i586-GM/autoinst_en.xml
305
+ - templates/SLES-11-SP1-DVD-i586-GM/definition.rb
306
+ - templates/SLES-11-SP1-DVD-i586-GM/postinstall.sh
307
+ - templates/SLES-11-SP1-DVD-x86_64-GM/autoinst_de.xml
308
+ - templates/SLES-11-SP1-DVD-x86_64-GM/autoinst_en.xml
309
+ - templates/SLES-11-SP1-DVD-x86_64-GM/definition.rb
310
+ - templates/SLES-11-SP1-DVD-x86_64-GM/postinstall.sh
253
311
  - templates/Sysrescuecd-2.0.0-experimental/autorun0
254
312
  - templates/Sysrescuecd-2.0.0-experimental/definition.rb
313
+ - templates/archlinux-i386-netboot/aif.cfg
314
+ - templates/archlinux-i386-netboot/definition.rb
315
+ - templates/archlinux-i386-netboot/postinstall.sh
316
+ - templates/archlinux-i386-netboot/postinstall2.sh
255
317
  - templates/archlinux-i386/aif.cfg
256
318
  - templates/archlinux-i386/definition.rb
257
319
  - templates/archlinux-i386/postinstall.sh
320
+ - templates/archlinux-x86_64-netboot/aif.cfg
321
+ - templates/archlinux-x86_64-netboot/definition.rb
322
+ - templates/archlinux-x86_64-netboot/postinstall.sh
323
+ - templates/archlinux-x86_64-netboot/postinstall2.sh
258
324
  - templates/archlinux-x86_64/aif.cfg
259
325
  - templates/archlinux-x86_64/definition.rb
260
326
  - templates/archlinux-x86_64/postinstall.sh
327
+ - templates/archlinux-x86_64/postinstall2.sh
261
328
  - templates/freebsd-8.2-experimental/definition.rb
262
329
  - templates/freebsd-8.2-experimental/postinstall.sh
263
330
  - templates/freebsd-8.2-pcbsd-i386-netboot/definition.rb
@@ -266,8 +333,44 @@ files:
266
333
  - templates/freebsd-8.2-pcbsd-i386/definition.rb
267
334
  - templates/freebsd-8.2-pcbsd-i386/pcinstall.fbg.cfg
268
335
  - templates/freebsd-8.2-pcbsd-i386/postinstall.sh
336
+ - templates/funtoo-latest-generic_64-stable/definition.rb
337
+ - templates/funtoo-latest-generic_64-stable/postinstall.sh
338
+ - templates/funtoo-latest-generic_64-stable/postinstall2.sh
269
339
  - templates/gentoo-latest-i386-experimental/definition.rb
270
340
  - templates/gentoo-latest-i386-experimental/postinstall.sh
341
+ - templates/gentoo-latest-x86_64-experimental/definition.rb
342
+ - templates/gentoo-latest-x86_64-experimental/postinstall.sh
343
+ - templates/openSUSE-11.4-DVD-i586/autoinst_de.xml
344
+ - templates/openSUSE-11.4-DVD-i586/autoinst_en.xml
345
+ - templates/openSUSE-11.4-DVD-i586/definition.rb
346
+ - templates/openSUSE-11.4-DVD-i586/postinstall.sh
347
+ - templates/openSUSE-11.4-DVD-x86_64/autoinst_de.xml
348
+ - templates/openSUSE-11.4-DVD-x86_64/autoinst_en.xml
349
+ - templates/openSUSE-11.4-DVD-x86_64/definition.rb
350
+ - templates/openSUSE-11.4-DVD-x86_64/postinstall.sh
351
+ - templates/openSUSE-11.4-NET-i586/autoinst_de.xml
352
+ - templates/openSUSE-11.4-NET-i586/autoinst_en.xml
353
+ - templates/openSUSE-11.4-NET-i586/definition.rb
354
+ - templates/openSUSE-11.4-NET-i586/postinstall.sh
355
+ - templates/openSUSE-11.4-NET-x86_64/autoinst_de.xml
356
+ - templates/openSUSE-11.4-NET-x86_64/autoinst_en.xml
357
+ - templates/openSUSE-11.4-NET-x86_64/definition.rb
358
+ - templates/openSUSE-11.4-NET-x86_64/postinstall.sh
359
+ - templates/openSUSE-12.1-DVD+NET-i586/autoinst_de.xml
360
+ - templates/openSUSE-12.1-DVD+NET-i586/autoinst_en.xml
361
+ - templates/openSUSE-12.1-DVD+NET-i586/definition.rb
362
+ - templates/openSUSE-12.1-DVD+NET-i586/postinstall.sh
363
+ - templates/openSUSE-12.1-DVD+NET-x86_64/autoinst_de.xml
364
+ - templates/openSUSE-12.1-DVD+NET-x86_64/autoinst_en.xml
365
+ - templates/openSUSE-12.1-DVD+NET-x86_64/definition.rb
366
+ - templates/openSUSE-12.1-DVD+NET-x86_64/postinstall.sh
367
+ - templates/openbsd50_amd64/README
368
+ - templates/openbsd50_amd64/definition.rb
369
+ - templates/openbsd50_amd64/postinstall.sh
370
+ - templates/openbsd50_i386/.definition.rb.swp
371
+ - templates/openbsd50_i386/README
372
+ - templates/openbsd50_i386/definition.rb
373
+ - templates/openbsd50_i386/postinstall.sh
271
374
  - templates/openindiana-148-ai-x86/auto_install/ai.dtd
272
375
  - templates/openindiana-148-ai-x86/auto_install/ai_manifest.xml
273
376
  - templates/openindiana-148-ai-x86/auto_install/configuration.dtd
@@ -285,6 +388,12 @@ files:
285
388
  - templates/opensuse-11.4-i386-experimental/autoinst.xml.tweaked
286
389
  - templates/opensuse-11.4-i386-experimental/definition.rb
287
390
  - templates/opensuse-11.4-i386-experimental/postinstall.sh
391
+ - templates/scientificlinux-6.1-i386-netboot/definition.rb
392
+ - templates/scientificlinux-6.1-i386-netboot/ks.cfg
393
+ - templates/scientificlinux-6.1-i386-netboot/postinstall.sh
394
+ - templates/scientificlinux-6.1-x86_64-netboot/definition.rb
395
+ - templates/scientificlinux-6.1-x86_64-netboot/ks.cfg
396
+ - templates/scientificlinux-6.1-x86_64-netboot/postinstall.sh
288
397
  - templates/solaris-11-express-i386/auto_install/ai.dtd
289
398
  - templates/solaris-11-express-i386/auto_install/ai_manifest.xml
290
399
  - templates/solaris-11-express-i386/auto_install/configuration.dtd
@@ -299,18 +408,18 @@ files:
299
408
  - templates/ubuntu-10.04.2-amd64-netboot/definition.rb
300
409
  - templates/ubuntu-10.04.2-amd64-netboot/postinstall.sh
301
410
  - templates/ubuntu-10.04.2-amd64-netboot/preseed.cfg
302
- - templates/ubuntu-10.04.2-server-amd64-alt/definition.rb
303
- - templates/ubuntu-10.04.2-server-amd64-alt/postinstall.sh
304
- - templates/ubuntu-10.04.2-server-amd64-alt/preseed.cfg
305
- - templates/ubuntu-10.04.2-server-amd64/definition.rb
306
- - templates/ubuntu-10.04.2-server-amd64/postinstall.sh
307
- - templates/ubuntu-10.04.2-server-amd64/preseed.cfg
308
411
  - templates/ubuntu-10.04.2-server-i386-netboot/definition.rb
309
412
  - templates/ubuntu-10.04.2-server-i386-netboot/postinstall.sh
310
413
  - templates/ubuntu-10.04.2-server-i386-netboot/preseed.cfg
311
- - templates/ubuntu-10.04.2-server-i386/definition.rb
312
- - templates/ubuntu-10.04.2-server-i386/postinstall.sh
313
- - templates/ubuntu-10.04.2-server-i386/preseed.cfg
414
+ - templates/ubuntu-10.04.3-server-amd64-alt/definition.rb
415
+ - templates/ubuntu-10.04.3-server-amd64-alt/postinstall.sh
416
+ - templates/ubuntu-10.04.3-server-amd64-alt/preseed.cfg
417
+ - templates/ubuntu-10.04.3-server-amd64/definition.rb
418
+ - templates/ubuntu-10.04.3-server-amd64/postinstall.sh
419
+ - templates/ubuntu-10.04.3-server-amd64/preseed.cfg
420
+ - templates/ubuntu-10.04.3-server-i386/definition.rb
421
+ - templates/ubuntu-10.04.3-server-i386/postinstall.sh
422
+ - templates/ubuntu-10.04.3-server-i386/preseed.cfg
314
423
  - templates/ubuntu-10.10-server-amd64-netboot/definition.rb
315
424
  - templates/ubuntu-10.10-server-amd64-netboot/postinstall.sh
316
425
  - templates/ubuntu-10.10-server-amd64-netboot/preseed.cfg
@@ -329,12 +438,35 @@ files:
329
438
  - templates/ubuntu-11.04-server-i386/definition.rb
330
439
  - templates/ubuntu-11.04-server-i386/postinstall.sh
331
440
  - templates/ubuntu-11.04-server-i386/preseed.cfg
441
+ - templates/ubuntu-11.10-server-amd64-ishaya/definition.rb
442
+ - templates/ubuntu-11.10-server-amd64-ishaya/postinstall.sh
443
+ - templates/ubuntu-11.10-server-amd64-ishaya/preseed.cfg
444
+ - templates/ubuntu-11.10-server-amd64-ruby192/definition.rb
445
+ - templates/ubuntu-11.10-server-amd64-ruby192/postinstall.sh
446
+ - templates/ubuntu-11.10-server-amd64-ruby192/preseed.cfg
447
+ - templates/ubuntu-11.10-server-amd64/definition.rb
448
+ - templates/ubuntu-11.10-server-amd64/postinstall.sh
449
+ - templates/ubuntu-11.10-server-amd64/preseed.cfg
450
+ - templates/ubuntu-11.10-server-i386/definition.rb
451
+ - templates/ubuntu-11.10-server-i386/postinstall.sh
452
+ - templates/ubuntu-11.10-server-i386/preseed.cfg
332
453
  - templates/ubuntu-8.04.4-server-amd64/definition.rb
333
454
  - templates/ubuntu-8.04.4-server-amd64/postinstall.sh
334
455
  - templates/ubuntu-8.04.4-server-amd64/preseed.cfg
335
456
  - templates/ubuntu-8.04.4-server-i386/definition.rb
336
457
  - templates/ubuntu-8.04.4-server-i386/postinstall.sh
337
458
  - templates/ubuntu-8.04.4-server-i386/preseed.cfg
459
+ - templates/windows-2008R1-serverstandard-amd64/Autounattend.xml
460
+ - templates/windows-2008R1-serverstandard-amd64/README.md
461
+ - templates/windows-2008R1-serverstandard-amd64/cygwin-setup.exe
462
+ - templates/windows-2008R1-serverstandard-amd64/definition.rb
463
+ - templates/windows-2008R1-serverstandard-amd64/install-cygwin-sshd.bat
464
+ - templates/windows-2008R1-serverstandard-amd64/install-guest-additions.bat
465
+ - templates/windows-2008R1-serverstandard-amd64/install-winrm.bat
466
+ - templates/windows-2008R1-serverstandard-amd64/oracle-cert.cer
467
+ - templates/windows-2008R1-serverstandard-amd64/postinstall.sh
468
+ - templates/windows-2008R1-serverstandard-amd64/sudo
469
+ - templates/windows-2008R1-serverstandard-amd64/winrm.rb
338
470
  - templates/windows-2008R2-amd64/Autounattend.xml
339
471
  - templates/windows-2008R2-amd64/README.md
340
472
  - templates/windows-2008R2-amd64/cygwin-setup.exe
@@ -344,6 +476,65 @@ files:
344
476
  - templates/windows-2008R2-amd64/oracle-cert.cer
345
477
  - templates/windows-2008R2-amd64/postinstall.sh
346
478
  - templates/windows-2008R2-amd64/winrm.rb
479
+ - templates/windows-2008R2-serverstandard-amd64/Autounattend.xml
480
+ - templates/windows-2008R2-serverstandard-amd64/README.md
481
+ - templates/windows-2008R2-serverstandard-amd64/definition.rb
482
+ - templates/windows-2008R2-serverstandard-amd64/install-cygwin-sshd.bat
483
+ - templates/windows-2008R2-serverstandard-amd64/install-winrm.bat
484
+ - templates/windows-2008R2-serverstandard-amd64/oracle-cert.cer
485
+ - templates/windows-2008R2-serverstandard-amd64/postinstall.sh
486
+ - templates/windows-7-enterprise-amd64/Autounattend.xml
487
+ - templates/windows-7-enterprise-amd64/README.md
488
+ - templates/windows-7-enterprise-amd64/definition.rb
489
+ - templates/windows-7-enterprise-amd64/install-cygwin-sshd.bat
490
+ - templates/windows-7-enterprise-amd64/install-winrm.bat
491
+ - templates/windows-7-enterprise-amd64/oracle-cert.cer
492
+ - templates/windows-7-enterprise-amd64/postinstall.sh
493
+ - templates/windows-7-enterprise-i386/Autounattend.xml
494
+ - templates/windows-7-enterprise-i386/README.md
495
+ - templates/windows-7-enterprise-i386/definition.rb
496
+ - templates/windows-7-enterprise-i386/install-cygwin-sshd.bat
497
+ - templates/windows-7-enterprise-i386/install-winrm.bat
498
+ - templates/windows-7-enterprise-i386/oracle-cert.cer
499
+ - templates/windows-7-enterprise-i386/postinstall.sh
500
+ - templates/windows-7-premium-amd64/Autounattend.xml
501
+ - templates/windows-7-premium-amd64/README.md
502
+ - templates/windows-7-premium-amd64/definition.rb
503
+ - templates/windows-7-premium-amd64/install-chefclient.bat
504
+ - templates/windows-7-premium-amd64/install-winrm.bat
505
+ - templates/windows-7-premium-amd64/oracle-cert.cer
506
+ - templates/windows-7-premium-amd64/postinstall.sh
507
+ - templates/windows-7-premium-amd64/winrm.rb
508
+ - templates/windows-7-professional-amd64/Autounattend.xml
509
+ - templates/windows-7-professional-amd64/README.md
510
+ - templates/windows-7-professional-amd64/definition.rb
511
+ - templates/windows-7-professional-amd64/install-cygwin-sshd.bat
512
+ - templates/windows-7-professional-amd64/install-winrm.bat
513
+ - templates/windows-7-professional-amd64/oracle-cert.cer
514
+ - templates/windows-7-professional-amd64/postinstall.sh
515
+ - templates/windows-7-ultimate-amd64/Autounattend.xml
516
+ - templates/windows-7-ultimate-amd64/README.md
517
+ - templates/windows-7-ultimate-amd64/definition.rb
518
+ - templates/windows-7-ultimate-amd64/install-cygwin-sshd.bat
519
+ - templates/windows-7-ultimate-amd64/install-winrm.bat
520
+ - templates/windows-7-ultimate-amd64/oracle-cert.cer
521
+ - templates/windows-7-ultimate-amd64/postinstall.sh
522
+ - templates/windows-7sp1-ultimate-amd64/Autounattend.xml
523
+ - templates/windows-7sp1-ultimate-amd64/README.md
524
+ - templates/windows-7sp1-ultimate-amd64/definition.rb
525
+ - templates/windows-7sp1-ultimate-amd64/install-cygwin-sshd.bat
526
+ - templates/windows-7sp1-ultimate-amd64/install-winrm.bat
527
+ - templates/windows-7sp1-ultimate-amd64/oracle-cert.cer
528
+ - templates/windows-7sp1-ultimate-amd64/postinstall.sh
529
+ - templates/windows-8-preview-dev-amd64/Autounattend.xml
530
+ - templates/windows-8-preview-dev-amd64/README.md
531
+ - templates/windows-8-preview-dev-amd64/cygwin-setup.exe
532
+ - templates/windows-8-preview-dev-amd64/definition.rb
533
+ - templates/windows-8-preview-dev-amd64/install-cygwin-sshd.bat
534
+ - templates/windows-8-preview-dev-amd64/install-winrm.bat
535
+ - templates/windows-8-preview-dev-amd64/oracle-cert.cer
536
+ - templates/windows-8-preview-dev-amd64/postinstall.sh
537
+ - templates/windows-8-preview-dev-amd64/winrm.rb
347
538
  - trials/docu-vbox.txt
348
539
  - trials/f.rb
349
540
  - trials/t.rb
@@ -352,32 +543,6 @@ files:
352
543
  - validation/vagrant-private.key
353
544
  - validation/vagrant.feature
354
545
  - validation/vagrant.pub
355
- - veewee.gemspec
356
- - vendor/cache/Platform-0.4.0.gem
357
- - vendor/cache/archive-tar-minitar-0.5.2.gem
358
- - vendor/cache/builder-3.0.0.gem
359
- - vendor/cache/cucumber-1.0.2.gem
360
- - vendor/cache/diff-lcs-1.1.2.gem
361
- - vendor/cache/erubis-2.7.0.gem
362
- - vendor/cache/ffi-1.0.9.gem
363
- - vendor/cache/gherkin-2.4.6.gem
364
- - vendor/cache/highline-1.6.2.gem
365
- - vendor/cache/i18n-0.5.0.gem
366
- - vendor/cache/json-1.5.3.gem
367
- - vendor/cache/net-scp-1.0.4.gem
368
- - vendor/cache/net-ssh-2.1.4.gem
369
- - vendor/cache/open4-1.1.0.gem
370
- - vendor/cache/popen4-0.1.2.gem
371
- - vendor/cache/progressbar-0.9.1.gem
372
- - vendor/cache/rspec-2.5.0.gem
373
- - vendor/cache/rspec-core-2.5.2.gem
374
- - vendor/cache/rspec-expectations-2.5.0.gem
375
- - vendor/cache/rspec-mocks-2.5.0.gem
376
- - vendor/cache/term-ansicolor-1.0.6.gem
377
- - vendor/cache/thor-0.14.6.gem
378
- - vendor/cache/vagrant-0.8.2.gem
379
- - vendor/cache/virtualbox-0.9.1.gem
380
- has_rdoc: true
381
546
  homepage: http://github.com/jedi4ever/veewee/
382
547
  licenses: []
383
548
 
@@ -409,7 +574,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
409
574
  requirements: []
410
575
 
411
576
  rubyforge_project: veewee
412
- rubygems_version: 1.5.3
577
+ rubygems_version: 1.8.17
413
578
  signing_key:
414
579
  specification_version: 3
415
580
  summary: Vagrant box creation