vagrant-ovirt3 1.1.0 → 1.1.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: ddd52b02229c6bb338aef3e417822726240e9678
4
- data.tar.gz: 6dfeed04fbc9dbdc7f8979369d1d9b86d3a87e40
3
+ metadata.gz: 1e2c3c06ee37413d725caa7ed7d96e3a4520bce7
4
+ data.tar.gz: 07a489d90c737aa6bf7fc3953e5c75699af3b0f7
5
5
  SHA512:
6
- metadata.gz: f1a453dacf2025582d4685d8fce3d2f0a26fcbfed3f9e3d1d301e47ad84bfc77b31e978bec55384463012d41c9b815fea46517bf0129aa31bd9f52502a56cd76
7
- data.tar.gz: 0980a6a92f18b5427d7535ca76077673850f2a26d1f2ed30e58788e5d6fc7ab5c3a4ee3266640e6ef442f68ba9f0160d69dbd2a199e49b0909367842c0abec14
6
+ metadata.gz: ff9a450bad643033edaeddca60e72b4406ce50a368ca7dd400827b6e092795f2f0dcfcbc3d5bbde92dbb141a30976f3a18dba2f0149185a529f088a4dd43246f
7
+ data.tar.gz: 27add50d6252ba1a660de93bc8973bcc493ab070242207c4f86790988a91b7ea61bce7f01af4ebf9f50c00abfcfe9d85736d7f7f427e7639c5f0073b78acb2a1
data/README.md CHANGED
@@ -8,6 +8,18 @@ allowing Vagrant to control and provision machines in oVirt and RHEV.
8
8
  In this document, both oVirt and RHEV names are used interchangeably and
9
9
  represent the same platform on top of which this provider should work.
10
10
 
11
+ ## Version 1.1.1
12
+ * Added missing locales
13
+ * Fixed box url in usage
14
+
15
+ ## Version 1.1.0
16
+ * Added `ca_no_verify` configuration parameter to allow self-signed certificates, etc.
17
+ * Fixed missing RsyncError locale lookup
18
+ * Fixed base dummy box
19
+ * Removed default provider, breaks with Vagrant 1.7
20
+ * Fix broken EPEL EL7 link.
21
+ * Check whether synced folder is disabled before trying to rsync.
22
+
11
23
  ## Version 1.0.0
12
24
  * Complete overhaul of naming schemes. Vagrant-ovirt upstream is deprecated. The provider going forward is 'ovirt3' to allow gem/plugin availability.
13
25
  * Volumes are automatically resized
@@ -50,7 +62,7 @@ your information where necessary.
50
62
  ```ruby
51
63
  Vagrant.configure('2') do |config|
52
64
  config.vm.box = 'ovirt'
53
- config.vm.box_url = 'https://raw.github.com/myoung34/vagrant-ovirt3/master/example_box/ovirt.box'
65
+ config.vm.box_url = 'https://github.com/myoung34/vagrant-ovirt3/blob/master/example_box/dummy.box?raw=true'
54
66
 
55
67
  config.vm.network :private_network,
56
68
  :ip => '192.168.56.100', :nictype => 'virtio', :netmask => '255.255.255.0', #normal network configuration
@@ -3,7 +3,7 @@
3
3
 
4
4
  Vagrant.configure("2") do |config|
5
5
  config.vm.box = 'ovirt3'
6
- config.vm.box_url = 'https://raw.github.com/myoung34/vagrant-ovirt3/master/example_box/dummy.box'
6
+ config.vm.box_url = 'https://github.com/myoung34/vagrant-ovirt3/blob/master/example_box/dummy.box?raw=true'
7
7
 
8
8
  config.vm.provider :ovirt3 do |ovirt|
9
9
  ovirt.url = "https://ovirt.example.com:443"
@@ -1,6 +1,6 @@
1
1
  module VagrantPlugins
2
2
  module OVirtProvider
3
- VERSION = '1.1.0'
3
+ VERSION = '1.1.1'
4
4
  end
5
5
  end
6
6
 
data/locales/en.yml CHANGED
@@ -88,3 +88,8 @@ en:
88
88
  long_running: |-
89
89
  The oVirt domain is running. To stop this machine, you can run
90
90
  `vagrant halt`. To destroy the machine, you can run `vagrant destroy`.
91
+ short_up: |-
92
+ running
93
+ long_up: |-
94
+ The oVirt domain is running. To stop this machine, you can run
95
+ `vagrant halt`. To destroy the machine, you can run `vagrant destroy`.
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: vagrant-ovirt3
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.1.0
4
+ version: 1.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Marcus Young