vagrant-ovirt3 1.7.0 → 1.7.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: 0fe773d0fcd94c5ec802c016f7abfb522ca5d2cb
4
- data.tar.gz: 03eb7a423abc325874d1934a504cc2a900ee7be8
3
+ metadata.gz: 85495e61b735d53b7a61d7cf4a91e3e3959d8da6
4
+ data.tar.gz: 6725f4fc6ff8232e21b242fd738894fe3e8ae7f9
5
5
  SHA512:
6
- metadata.gz: 46ffc9bb0b88ea622a378e197c250677b8f92c6fa677697114908e64e64306ddcf3da90d18de977ceafd6f46c50a55d13866122b7ec7c6a313af68a3796b1ca9
7
- data.tar.gz: 3f9a1ddb15a0d6cd8e945d5dfa12a1584248d5e0e2e00f0a78d2be4c108ba6d149b9795c14a28f89426e86ad4953bbc604b855703d8d79ed414e76577098b202
6
+ metadata.gz: 3532c29376e185f950cc5f4bd857f52416420148737189134c9c3bcd56355f5a6f8710fa9b29ff3b4b05ce26bcdba969f76170752f2da242bfcc967c491eaa4a
7
+ data.tar.gz: 6a1a0065d9022e37b8e0baa58d8b2450459de390d31ba0baa808b5942b278b156ed53435b7914df27b5932431af9e3dfa4694fe55aec6056312bb386c1bf3376
@@ -4,16 +4,17 @@
4
4
  Vagrant.configure("2") do |config|
5
5
  config.vm.box = 'ovirt3'
6
6
  config.vm.box_url = 'https://github.com/myoung34/vagrant-ovirt3/blob/master/example_box/dummy.box?raw=true'
7
+ config.vm.hostname = 'asdf'
7
8
 
8
9
  config.vm.provider :ovirt3 do |ovirt|
9
- ovirt.url = "https://ovirt.example.com:443"
10
- ovirt.username = "username"
11
- ovirt.password = "secret"
12
- ovirt.datacenter = "Datacenter name"
13
- ovirt.template = "Template name"
14
- ovirt.quota = "e92124b9-22f4-4cef-bcd6-b9ae22155dcd"
10
+ ovirt.url = "https://server.blindrage.local:443"
11
+ ovirt.username = "admin@internal"
12
+ ovirt.password = "^4zK>xxTX:HG2s<"
13
+ ovirt.datacenter = "local_dc"
14
+ ovirt.template = "vagrant-centos65"
15
15
  ovirt.cpus = 1
16
16
  ovirt.memory = 512
17
+ ovirt.memory_guaranteed = 1024
17
18
  ovirt.ca_no_verify = true
18
19
  end
19
20
  end
@@ -90,6 +90,7 @@ module VagrantPlugins
90
90
 
91
91
  b2.use ConnectOVirt
92
92
  b2.use DestroyVM
93
+ b2.use ProvisionerCleanup
93
94
  end
94
95
  end
95
96
  end
@@ -186,6 +187,8 @@ module VagrantPlugins
186
187
  autoload :MessageSavingState, action_root.join("message_saving_state")
187
188
  autoload :MessageNotSuspended, action_root.join("message_not_suspended")
188
189
 
190
+ autoload :ProvisionerCleanup, 'vagrant/action/builtin/provisioner_cleanup'
191
+
189
192
  private
190
193
  def self.with_ovirt
191
194
  Vagrant::Action::Builder.new.tap do |b|
@@ -1,6 +1,6 @@
1
1
  module VagrantPlugins
2
2
  module OVirtProvider
3
- VERSION = '1.7.0'
3
+ VERSION = '1.7.1'
4
4
  end
5
5
  end
6
6
 
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.7.0
4
+ version: 1.7.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Marcus Young