v0.2.0
This commit is contained in:
parent
2f546bc10c
commit
152d4197ad
4 changed files with 11 additions and 6 deletions
|
@ -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)
|
||||
|
||||
- Removed support for development under Vagrant < 1.1
|
||||
|
|
|
@ -14,7 +14,7 @@ GIT
|
|||
PATH
|
||||
remote: .
|
||||
specs:
|
||||
vagrant-lxc (0.2.0.dev)
|
||||
vagrant-lxc (0.2.0)
|
||||
|
||||
GEM
|
||||
remote: https://rubygems.org/
|
||||
|
|
|
@ -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
|
||||
* Provisioning
|
||||
* 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
|
||||
* A hell lot of `sudo`s
|
||||
* Only a [single ubuntu box supported](boxes), I'm still [figuring out what should go
|
||||
on the .box file](https://github.com/fgrehm/vagrant-lxc/issues/4)
|
||||
* Only a [single ubuntu box supported](boxes)
|
||||
* "[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)
|
||||
(will probably just throw up some random error)
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
module Vagrant
|
||||
module LXC
|
||||
VERSION = "0.2.0.dev"
|
||||
VERSION = "0.2.0"
|
||||
end
|
||||
end
|
||||
|
|
Loading…
Reference in a new issue