vagrant-libvirt 0.0.8 → 0.0.9
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/CHANGELOG.md +11 -0
- data/lib/vagrant-libvirt/action/create_networks.rb +2 -2
- data/lib/vagrant-libvirt/version.rb +1 -1
- data/vagrant-libvirt.gemspec +1 -0
- metadata +18 -2
data/CHANGELOG.md
CHANGED
|
@@ -1,7 +1,18 @@
|
|
|
1
|
+
# 0.0.9 (September 29, 2013)
|
|
2
|
+
|
|
3
|
+
* fixed version of nokogiri = 1.5.10(by Brian Pitts <brian@polibyte.com>)
|
|
4
|
+
* fix issue with network activation (by Brian Pitts <brian@polibyte.com>)
|
|
5
|
+
* restrict version of vagrant > 1.3.0
|
|
6
|
+
|
|
7
|
+
# 0.0.8 (September 25, 2013)
|
|
8
|
+
|
|
9
|
+
* enable parallelization (by Brian Pitts <brian@polibyte.com>)
|
|
10
|
+
|
|
1
11
|
# 0.0.7
|
|
2
12
|
|
|
3
13
|
* Fixed namespace collision with ruby-libvirt library which used by
|
|
4
14
|
vagrant-kvm provider.(by Hiroshi Miura)
|
|
15
|
+
* enable nested virtualization for amd (by Jordan Tardif <jordan@dreamhost.com>)
|
|
5
16
|
|
|
6
17
|
# 0.0.6 (Jul 24, 2013)
|
|
7
18
|
|
|
@@ -76,8 +76,8 @@ module VagrantPlugins
|
|
|
76
76
|
end
|
|
77
77
|
end
|
|
78
78
|
|
|
79
|
-
autostart_network if
|
|
80
|
-
activate_network if
|
|
79
|
+
autostart_network if !@interface_network[:autostart]
|
|
80
|
+
activate_network if !@interface_network[:active]
|
|
81
81
|
end
|
|
82
82
|
|
|
83
83
|
@app.call(env)
|
data/vagrant-libvirt.gemspec
CHANGED
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: vagrant-libvirt
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.0.
|
|
4
|
+
version: 0.0.9
|
|
5
5
|
prerelease:
|
|
6
6
|
platform: ruby
|
|
7
7
|
authors:
|
|
@@ -10,7 +10,7 @@ authors:
|
|
|
10
10
|
autorequire:
|
|
11
11
|
bindir: bin
|
|
12
12
|
cert_chain: []
|
|
13
|
-
date: 2013-09-
|
|
13
|
+
date: 2013-09-29 00:00:00.000000000 Z
|
|
14
14
|
dependencies:
|
|
15
15
|
- !ruby/object:Gem::Dependency
|
|
16
16
|
name: fog
|
|
@@ -44,6 +44,22 @@ dependencies:
|
|
|
44
44
|
- - ~>
|
|
45
45
|
- !ruby/object:Gem::Version
|
|
46
46
|
version: 0.4.0
|
|
47
|
+
- !ruby/object:Gem::Dependency
|
|
48
|
+
name: nokogiri
|
|
49
|
+
requirement: !ruby/object:Gem::Requirement
|
|
50
|
+
none: false
|
|
51
|
+
requirements:
|
|
52
|
+
- - '='
|
|
53
|
+
- !ruby/object:Gem::Version
|
|
54
|
+
version: 1.5.10
|
|
55
|
+
type: :runtime
|
|
56
|
+
prerelease: false
|
|
57
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
58
|
+
none: false
|
|
59
|
+
requirements:
|
|
60
|
+
- - '='
|
|
61
|
+
- !ruby/object:Gem::Version
|
|
62
|
+
version: 1.5.10
|
|
47
63
|
- !ruby/object:Gem::Dependency
|
|
48
64
|
name: rake
|
|
49
65
|
requirement: !ruby/object:Gem::Requirement
|