This commit is contained in:
pradels 2013-05-05 22:48:10 +02:00
parent da889b3e1c
commit 76f33c9ca1
3 changed files with 13 additions and 18 deletions

View File

@ -1,3 +1,9 @@
# 0.0.4 (May 5, 2013)
* Bug fix in number of parameters for provisioner.
* Handle box URL when downloading a box.
* Support for running ssh commands like `vagrant ssh -c "bash cli"`
# 0.0.3 (Apr 11, 2013) # 0.0.3 (Apr 11, 2013)
* Cpu and memory settings for domains. * Cpu and memory settings for domains.
@ -8,8 +14,8 @@
# 0.0.2 (Apr 1, 2013) # 0.0.2 (Apr 1, 2013)
* Halt, suspend, resume, ssh and provision commands added. * Halt, suspend, resume, ssh and provision commands added.
* IP address of VM is saved into $data_dir/ip file. * IP address of VM is saved into `$data_dir/ip` file.
* Provider can be set via VAGRANT_DEFAULT_PROVIDER env variable. * Provider can be set via `VAGRANT_DEFAULT_PROVIDER` env variable.
# 0.0.1 (Mar 26, 2013) # 0.0.1 (Mar 26, 2013)

View File

@ -4,10 +4,10 @@ This is a [Vagrant](http://www.vagrantup.com) 1.1+ plugin that adds an
[Libvirt](http://libvirt.org) provider to Vagrant, allowing Vagrant to [Libvirt](http://libvirt.org) provider to Vagrant, allowing Vagrant to
control and provision machines via Libvirt toolkit. control and provision machines via Libvirt toolkit.
**Note:** Actual version (0.0.3) is still a development one. Feedback is **Note:** Actual version (0.0.4) is still a development one. Feedback is
welcome and can help a lot :-) welcome and can help a lot :-)
## Features (Version 0.0.3) ## Features (Version 0.0.4)
* Vagrant `up`, `destroy`, `suspend`, `resume`, `halt`, `ssh` and `provision` commands. * Vagrant `up`, `destroy`, `suspend`, `resume`, `halt`, `ssh` and `provision` commands.
* Upload box image (qcow2 format) to Libvirt storage pool. * Upload box image (qcow2 format) to Libvirt storage pool.
@ -140,21 +140,10 @@ Vagrant goes through steps below when creating new project:
## Networks ## Networks
Networking features in the form of `config.vm.network` are supported only Networking features in the form of `config.vm.network` are not supported right
in bridged format, no hostonly network is supported in current version of now. Support for private network is planned to be added in next release of
provider. provider.
Example of network interface definition:
```ruby
config.vm.define :test_vm do |test_vm|
test_vm.vm.network :bridged, :bridge => "default", :adapter => 1
end
```
In example above, bridged network adapter connected to network `default` is
defined.
## Obtaining Domain IP Address ## Obtaining Domain IP Address
Libvirt doesn't provide standard way how to find out an IP address of running Libvirt doesn't provide standard way how to find out an IP address of running

View File

@ -1,5 +1,5 @@
module VagrantPlugins module VagrantPlugins
module Libvirt module Libvirt
VERSION = "0.0.3" VERSION = "0.0.4"
end end
end end