vagrant-openstack-plugin 0.9.0 → 0.9.1
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.
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: f4a2573c4893aacaf5eafcd37a7a8ce319a14efa
|
|
4
|
+
data.tar.gz: 34320161be42ead897bc79b3f461ebf36a8fa1f6
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 6afa95bb2bc69c5f799def8fc8adf365818ad44a5ea82f09b5274af24a9af9a9f55252f2c61d3a1ffe66e8cb77ae05bde3d00f4fd35d22efc3b6ec34b0708364
|
|
7
|
+
data.tar.gz: 61870faf5f6b0d5fcfb68e89ddc5296403c8d0862769768d86b6807fc1f9ed0902e7b6305bb0f0701220a69a9db926ed097bbbd93ef11879b0429e54decbecdb
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,12 @@
|
|
|
1
1
|
# Changelog for vagrant-openstack-plugin
|
|
2
2
|
|
|
3
|
+
## 0.9.1
|
|
4
|
+
|
|
5
|
+
- Merge pull request #91 from Chealion/master [view commit](http://github.com///commit/6285cae325afa378e90f06635a2cc39b1428a6dd)
|
|
6
|
+
- Fixes #90 that hostname is set to key path [view commit](http://github.com///commit/5feb04c7bf46cee1ef4d38e25d74710ea9d0981b)
|
|
7
|
+
- Merge pull request #89 from reachlocal/fix_handleurl_deprecation_for_older_versions [view commit](http://github.com///commit/6ba9ee7d18d63a3d6f254c80e106bc440003fae6)
|
|
8
|
+
- Added a check for the vagrant version to keep HandleUrl for older versions of vagrant [view commit](http://github.com///commit/07871ed10ea9cca9c51e97fb8bb3e11c33d41a33)
|
|
9
|
+
|
|
3
10
|
## 0.9.0
|
|
4
11
|
|
|
5
12
|
- Merge pull request #80 from hawknewton/network_fix [view commit](http://github.com///commit/542e7a2e077d624df9cb56a53c24cf3450e11c71)
|
|
@@ -96,7 +96,7 @@ module VagrantPlugins
|
|
|
96
96
|
|
|
97
97
|
def ssh_key_options(ssh_info)
|
|
98
98
|
# Ensure that `private_key_path` is an Array (for Vagrant < 1.4)
|
|
99
|
-
Array(ssh_info[:private_key_path]).map { |path| "-i '#{path}' " }
|
|
99
|
+
Array(ssh_info[:private_key_path]).map { |path| "-i '#{path}' " }.join
|
|
100
100
|
end
|
|
101
101
|
end
|
|
102
102
|
end
|
|
@@ -86,7 +86,11 @@ module VagrantPlugins
|
|
|
86
86
|
# This action is called when `vagrant up` is executed.
|
|
87
87
|
def self.action_up
|
|
88
88
|
Vagrant::Action::Builder.new.tap do |b|
|
|
89
|
-
|
|
89
|
+
if Vagrant::VERSION < '1.6.0'
|
|
90
|
+
b.use HandleBoxUrl
|
|
91
|
+
else
|
|
92
|
+
b.use HandleBox
|
|
93
|
+
end
|
|
90
94
|
b.use ConfigValidate
|
|
91
95
|
b.use Call, IsCreated do |env, b1|
|
|
92
96
|
unless env[:result]
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: vagrant-openstack-plugin
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.9.
|
|
4
|
+
version: 0.9.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Edmund Haselwanter
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2014-11-
|
|
11
|
+
date: 2014-11-25 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: fog
|