From 76f33c9ca17a525c5fac85fdd038512e810e6dfd Mon Sep 17 00:00:00 2001 From: pradels Date: Sun, 5 May 2013 22:48:10 +0200 Subject: [PATCH] v0.0.4 --- CHANGELOG.md | 10 ++++++++-- README.md | 19 ++++--------------- lib/vagrant-libvirt/version.rb | 2 +- 3 files changed, 13 insertions(+), 18 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index f08b58d..b312efe 100644 --- a/CHANGELOG.md +++ b/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) diff --git a/README.md b/README.md index b707efe..7435221 100644 --- a/README.md +++ b/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 diff --git a/lib/vagrant-libvirt/version.rb b/lib/vagrant-libvirt/version.rb index 699f406..a0b7666 100644 --- a/lib/vagrant-libvirt/version.rb +++ b/lib/vagrant-libvirt/version.rb @@ -1,5 +1,5 @@ module VagrantPlugins module Libvirt - VERSION = "0.0.3" + VERSION = "0.0.4" end end