README.md in vagrant-ovirt3-1.1.0 vs README.md in vagrant-ovirt3-1.1.1

- old
+ new

@@ -6,10 +6,22 @@ allowing Vagrant to control and provision machines in oVirt and RHEV. In this document, both oVirt and RHEV names are used interchangeably and represent the same platform on top of which this provider should work. +## Version 1.1.1 +* Added missing locales +* Fixed box url in usage + +## Version 1.1.0 +* Added `ca_no_verify` configuration parameter to allow self-signed certificates, etc. +* Fixed missing RsyncError locale lookup +* Fixed base dummy box +* Removed default provider, breaks with Vagrant 1.7 +* Fix broken EPEL EL7 link. +* Check whether synced folder is disabled before trying to rsync. + ## Version 1.0.0 * Complete overhaul of naming schemes. Vagrant-ovirt upstream is deprecated. The provider going forward is 'ovirt3' to allow gem/plugin availability. * Volumes are automatically resized ## Version 0.2.1 @@ -48,10 +60,10 @@ your information where necessary. ```ruby Vagrant.configure('2') do |config| config.vm.box = 'ovirt' - config.vm.box_url = 'https://raw.github.com/myoung34/vagrant-ovirt3/master/example_box/ovirt.box' + config.vm.box_url = 'https://github.com/myoung34/vagrant-ovirt3/blob/master/example_box/dummy.box?raw=true' config.vm.network :private_network, :ip => '192.168.56.100', :nictype => 'virtio', :netmask => '255.255.255.0', #normal network configuration :ovirt__ip => '10.101.55.72', :ovirt__network_name => 'ovirtmgmt', :ovirt__gateway => '10.101.55.1' # oVirt specific information, overwrites previous on oVirt provider