This commit is contained in:
Fabio Rehm 2013-03-30 19:49:32 -03:00
parent 2f546bc10c
commit 152d4197ad
4 changed files with 11 additions and 6 deletions

View file

@ -1,3 +1,7 @@
## [0.2.0](https://github.com/fgrehm/vagrant-lxc/compare/v0.1.1...v0.2.0)
- Experimental box packaging (only tested with Ubuntu 64 base box)
## [0.1.1](https://github.com/fgrehm/vagrant-lxc/compare/v0.1.0...v0.1.1) ## [0.1.1](https://github.com/fgrehm/vagrant-lxc/compare/v0.1.0...v0.1.1)
- Removed support for development under Vagrant < 1.1 - Removed support for development under Vagrant < 1.1

View file

@ -14,7 +14,7 @@ GIT
PATH PATH
remote: . remote: .
specs: specs:
vagrant-lxc (0.2.0.dev) vagrant-lxc (0.2.0)
GEM GEM
remote: https://rubygems.org/ remote: https://rubygems.org/

View file

@ -16,9 +16,11 @@ sudo dpkg -i /tmp/vagrant.deb
``` ```
## What is currently supported? (v0.1.1) ## What is currently supported? (v0.2.0)
* Vagrant's `up`, `halt`, `reload`, `destroy`, and `ssh` commands Pretty much everything you need from Vagrant:
* Vagrant's `up`, `halt`, `reload`, `destroy`, `ssh` and `package` commands (box packaging is kind of experimental)
* Shared folders * Shared folders
* Provisioning * Provisioning
* Setting container's host name * Setting container's host name
@ -32,8 +34,7 @@ for the most up to date list.*
* Does not detect forwarded ports collision, right now you are responsible for taking care of that * Does not detect forwarded ports collision, right now you are responsible for taking care of that
* A hell lot of `sudo`s * A hell lot of `sudo`s
* Only a [single ubuntu box supported](boxes), I'm still [figuring out what should go * Only a [single ubuntu box supported](boxes)
on the .box file](https://github.com/fgrehm/vagrant-lxc/issues/4)
* "[works on my machine](https://github.com/fgrehm/vagrant-lxc/issues/20)" (TM) * "[works on my machine](https://github.com/fgrehm/vagrant-lxc/issues/20)" (TM)
* [Does not tell you if dependencies are not met](https://github.com/fgrehm/vagrant-lxc/issues/11) * [Does not tell you if dependencies are not met](https://github.com/fgrehm/vagrant-lxc/issues/11)
(will probably just throw up some random error) (will probably just throw up some random error)

View file

@ -1,5 +1,5 @@
module Vagrant module Vagrant
module LXC module LXC
VERSION = "0.2.0.dev" VERSION = "0.2.0"
end end
end end