mirror of
https://github.com/vagrant-libvirt/vagrant-libvirt.git
synced 2025-02-25 18:55:27 -06:00
v0.0.4
This commit is contained in:
parent
da889b3e1c
commit
76f33c9ca1
10
CHANGELOG.md
10
CHANGELOG.md
@ -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)
|
||||
|
||||
* Cpu and memory settings for domains.
|
||||
@ -8,8 +14,8 @@
|
||||
# 0.0.2 (Apr 1, 2013)
|
||||
|
||||
* Halt, suspend, resume, ssh and provision commands added.
|
||||
* IP address of VM is saved into $data_dir/ip file.
|
||||
* Provider can be set via VAGRANT_DEFAULT_PROVIDER env variable.
|
||||
* IP address of VM is saved into `$data_dir/ip` file.
|
||||
* Provider can be set via `VAGRANT_DEFAULT_PROVIDER` env variable.
|
||||
|
||||
# 0.0.1 (Mar 26, 2013)
|
||||
|
||||
|
19
README.md
19
README.md
@ -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
|
||||
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 :-)
|
||||
|
||||
## Features (Version 0.0.3)
|
||||
## Features (Version 0.0.4)
|
||||
|
||||
* Vagrant `up`, `destroy`, `suspend`, `resume`, `halt`, `ssh` and `provision` commands.
|
||||
* Upload box image (qcow2 format) to Libvirt storage pool.
|
||||
@ -140,21 +140,10 @@ Vagrant goes through steps below when creating new project:
|
||||
|
||||
## Networks
|
||||
|
||||
Networking features in the form of `config.vm.network` are supported only
|
||||
in bridged format, no hostonly network is supported in current version of
|
||||
Networking features in the form of `config.vm.network` are not supported right
|
||||
now. Support for private network is planned to be added in next release of
|
||||
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
|
||||
|
||||
Libvirt doesn't provide standard way how to find out an IP address of running
|
||||
|
@ -1,5 +1,5 @@
|
||||
module VagrantPlugins
|
||||
module Libvirt
|
||||
VERSION = "0.0.3"
|
||||
VERSION = "0.0.4"
|
||||
end
|
||||
end
|
||||
|
Loading…
Reference in New Issue
Block a user