Commit Graph

5984 Commits

Author SHA1 Message Date
Mitchell Hashimoto 93d3b00fa9 v0.1.1 - Typos and License file. (a.k.a. obligatory dot release after minor release) 2010-03-07 16:59:06 -08:00
Mitchell Hashimoto 7dfe5e085c Version bump to 0.1.1 2010-03-07 16:58:49 -08:00
Mitchell Hashimoto 5bcc5123a8 MIT License 2010-03-07 16:58:24 -08:00
Mitchell Hashimoto 4a18735fef Update version in binary 2010-03-07 16:52:55 -08:00
Mitchell Hashimoto 296f234b50 v0.1.0 - Initial release! 2010-03-07 16:49:14 -08:00
Mitchell Hashimoto 7d5fef1d77 Updated gem dependencies to not use github source 2010-03-07 16:47:22 -08:00
Mitchell Hashimoto fdf24a9c07 Version bump to 0.1.0 2010-03-07 16:38:13 -08:00
Mitchell Hashimoto 3cbd80780e Updated authors and emails for gemspec. 2010-03-07 16:08:59 -08:00
Mitchell Hashimoto 6194421972 `vagrant box` no longer requires a Vagrantfile in the current directory. 2010-03-07 12:44:00 -08:00
Mitchell Hashimoto 499ec7d633 Make vagrantup.com a clickable link in README 2010-03-07 12:07:39 -08:00
Mitchell Hashimoto 3fac3a3b83 Update README so website/irc/ML lists aren't smushed together 2010-03-07 12:07:07 -08:00
Mitchell Hashimoto b536063fb6 README update. 2010-03-07 12:05:53 -08:00
Mitchell Hashimoto 6fd10504e0 Box existence error checking is now in proper 'require_box' 2010-03-06 21:48:39 -08:00
Mitchell Hashimoto 49c98ad8af Mounting a folder now waits for the mount to succeed before continuing. Fixed a race condition between SSH daemon starting and the VBox kernel extensions loading... 2010-03-05 19:16:57 -08:00
Mitchell Hashimoto 41b25e68ec Reload action only halts the machine if its running 2010-03-05 18:03:08 -08:00
Mitchell Hashimoto 06ff3a363c Env.load_box! gives a reasonable error if the box specified in the Vagrantfile doesn't exist now. 2010-03-05 16:58:36 -08:00
Mitchell Hashimoto 0a54ea1464 `vagrant-down` now uses reusable actions (a Down action) 2010-03-05 16:47:47 -08:00
John Bender 0cdc6b5eaa moved hanging dotfile_name under Vagrant.config.vagrant 2010-03-04 23:50:08 -08:00
Mitchell Hashimoto 66bc5a19e2 Revamped provisioning JSON generation which includes the entire configuration tree. Plus better testing all around for JSON generation + configuration. 2010-03-04 22:14:44 -08:00
Mitchell Hashimoto da2150da89 Resume uses the resume action now 2010-03-04 21:22:25 -08:00
Mitchell Hashimoto 0a791d1c58 Suspending moved out to an action, command takes advantage of this action now. 2010-03-04 21:13:17 -08:00
Mitchell Hashimoto b4e25143dc error_and_exit now uses `abort`, which prints to stdout before exiting 2010-03-04 21:05:43 -08:00
Mitchell Hashimoto 20ed284372 Unpackage now has its own rescue implementation 2010-03-04 21:02:59 -08:00
Mitchell Hashimoto bf738d4db5 Developer documentation for box actions 2010-03-04 20:58:50 -08:00
Mitchell Hashimoto a88e75f357 Runner developer documentation 2010-03-04 00:25:17 -08:00
Mitchell Hashimoto 94be71e527 Nit-pick test formatting. No code changes. 2010-03-04 00:10:15 -08:00
Mitchell Hashimoto be47236c37 ActionException developer documentation 2010-03-04 00:08:25 -08:00
Mitchell Hashimoto 94280943f4 Actions::Base developer documentation 2010-03-04 00:08:25 -08:00
Mitchell Hashimoto 816a1734e4 Vagrant::Box developer documentation 2010-03-04 00:08:25 -08:00
John Bender c952fdaa24 check if a box exists before beginning add action 2010-03-03 23:53:46 -08:00
Mitchell Hashimoto 025cede012 Yard documentation rake task and gitignoring output. 2010-03-03 23:14:06 -08:00
Mitchell Hashimoto 35af1fa02b Added rescue/cleanup methods to box downloading to cleanup temporary files 2010-03-03 23:00:04 -08:00
Mitchell Hashimoto a7dbb26aa0 Bumped version to 0.0.1 for testing purposes. 2010-03-03 22:07:55 -08:00
Mitchell Hashimoto 9ddbdfa64f Updated Rakefile with proper gem dependencies and versions. 2010-03-03 22:06:06 -08:00
Mitchell Hashimoto 8e7621061f vagrant-up and vagrant-halt no longer raise exceptions when the VM is not in the proper state. 2010-03-02 22:19:13 -08:00
Mitchell Hashimoto c7f040f14c vagrant-up now starts the VM if its already created, rather than giving an error. 2010-03-02 22:07:04 -08:00
Mitchell Hashimoto c119a34f0e Added vagrant-halt to forcibly shut down vagrant instance. 2010-03-02 21:53:16 -08:00
Mitchell Hashimoto aaae366e9d Updated template Vagrant file to use "base" box by default 2010-03-01 01:16:45 -08:00
Mitchell Hashimoto 1e3109e2f7 Pointless configuration change 2010-03-01 00:48:14 -08:00
Mitchell Hashimoto f5f1405a7c HTTP downloader clears the download line once its complete so that the log output doesn't wrap 2010-02-28 22:34:07 -08:00
Mitchell Hashimoto 3d220ef5c8 HTTP downloader implemented. Boxes can now be added via HTTP! 2010-02-28 22:13:37 -08:00
Mitchell Hashimoto 9913c07ff2 Box download action now uses Vagrant "Downloaders." These are abstractions which will allow me to implement file downloading, http downloading etc. File downloading implemented here. 2010-02-28 21:42:38 -08:00
Mitchell Hashimoto 7c19419ef2 Package uses a reference to the Export action to get the temp path rather than the wonky callback. Implemented Runner#find_action for this. 2010-02-28 20:23:32 -08:00
Mitchell Hashimoto 5dd3e51788 Export action now cleans up and rescues. Package no longer cleans up temporary directory. 2010-02-28 19:56:50 -08:00
Mitchell Hashimoto e50e264747 Actions can now implement the #cleanup method which is called after all other actions have finished executing. 2010-02-28 01:47:42 -08:00
Mitchell Hashimoto dce3c032be If an "ActionException" is raised from an action, the runner will error and exit rather than continuing to raise the exception. 2010-02-28 01:24:11 -08:00
Mitchell Hashimoto 37393986e3 Implemented the "rescue" method for action runners when an exception is raised. Read documentation for more information. 2010-02-28 01:06:01 -08:00
Mitchell Hashimoto affe1cd9ad Log output for additional files 2010-02-28 00:41:09 -08:00
John Bender 3c546ef2c7 check for included files before packaging 2010-02-28 00:13:55 -08:00
Mitchell Hashimoto f316e0c61c Default include files to empty array 2010-02-28 00:03:21 -08:00