vagrant-openstack-provider 0.11.0 → 0.12.0
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:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 893e41d08fcadbc4e14a8d24228bf2009d947c84
|
4
|
+
data.tar.gz: 468a1572bc27fcd2d81b5b385a1c906673b66f5c
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: ae7a94bea4991cc8bed4d0f1020b29d3261b8042c196f26e97f11d62bf58206287ad4632c1856938b0e0078dc1d9ebcf93904024b500aa2227e6d1ce02c2fb10
|
7
|
+
data.tar.gz: 9c47974e708ed6fc514eb18b5c407f87bc015d6d5f869eb10205ec714d10a0f662d6f810c34235aee7ea6f306a0469e05646f7d26a7abe740928fdda130ea058
|
data/CHANGELOG.md
CHANGED
@@ -19,6 +19,7 @@ module VagrantPlugins
|
|
19
19
|
@logger = Log4r::Logger.new('vagrant_openstack::action::create_server')
|
20
20
|
@resolver = resolver
|
21
21
|
@utils = utils
|
22
|
+
@@mutex = Mutex.new
|
22
23
|
end
|
23
24
|
|
24
25
|
def execute(env)
|
@@ -49,8 +50,10 @@ module VagrantPlugins
|
|
49
50
|
env[:machine].id = server_id
|
50
51
|
|
51
52
|
waiting_for_server_to_be_built(env, server_id)
|
52
|
-
|
53
|
-
|
53
|
+
@@mutex.synchronize do
|
54
|
+
assign_floating_ip(env, server_id)
|
55
|
+
waiting_for_floating_ip_to_be_assigned(env, server_id)
|
56
|
+
end
|
54
57
|
attach_volumes(env, server_id, options[:volumes]) unless options[:volumes].empty?
|
55
58
|
|
56
59
|
@app.call(env)
|
@@ -17,6 +17,7 @@ Gem::Specification.new do |gem|
|
|
17
17
|
gem.add_dependency 'terminal-table', '1.4.5'
|
18
18
|
gem.add_dependency 'sshkey', '1.6.1'
|
19
19
|
gem.add_dependency 'colorize', '0.7.3'
|
20
|
+
gem.add_dependency 'public_suffix', '2.0.5'
|
20
21
|
|
21
22
|
# Constraint rake to properly handle deprecated method usage
|
22
23
|
# from within rspec 3.1.z
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: vagrant-openstack-provider
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.12.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Guillaume Giamarchi
|
@@ -9,7 +9,7 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date:
|
12
|
+
date: 2018-02-26 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: json
|
@@ -93,6 +93,20 @@ dependencies:
|
|
93
93
|
- - '='
|
94
94
|
- !ruby/object:Gem::Version
|
95
95
|
version: 0.7.3
|
96
|
+
- !ruby/object:Gem::Dependency
|
97
|
+
name: public_suffix
|
98
|
+
requirement: !ruby/object:Gem::Requirement
|
99
|
+
requirements:
|
100
|
+
- - '='
|
101
|
+
- !ruby/object:Gem::Version
|
102
|
+
version: 2.0.5
|
103
|
+
type: :runtime
|
104
|
+
prerelease: false
|
105
|
+
version_requirements: !ruby/object:Gem::Requirement
|
106
|
+
requirements:
|
107
|
+
- - '='
|
108
|
+
- !ruby/object:Gem::Version
|
109
|
+
version: 2.0.5
|
96
110
|
- !ruby/object:Gem::Dependency
|
97
111
|
name: rake
|
98
112
|
requirement: !ruby/object:Gem::Requirement
|
@@ -189,7 +203,6 @@ files:
|
|
189
203
|
- ".rubocop.yml"
|
190
204
|
- CHANGELOG.md
|
191
205
|
- Gemfile
|
192
|
-
- LICENSE
|
193
206
|
- RELEASE.md
|
194
207
|
- Rakefile
|
195
208
|
- Vagrantfile
|
data/LICENSE
DELETED
@@ -1,23 +0,0 @@
|
|
1
|
-
Copyright (c) 2013 Mitchell Hashimoto
|
2
|
-
Copyright (c) 2015 Guillaume Giamarchi, Julien Vey
|
3
|
-
|
4
|
-
MIT License
|
5
|
-
|
6
|
-
Permission is hereby granted, free of charge, to any person obtaining
|
7
|
-
a copy of this software and associated documentation files (the
|
8
|
-
"Software"), to deal in the Software without restriction, including
|
9
|
-
without limitation the rights to use, copy, modify, merge, publish,
|
10
|
-
distribute, sublicense, and/or sell copies of the Software, and to
|
11
|
-
permit persons to whom the Software is furnished to do so, subject to
|
12
|
-
the following conditions:
|
13
|
-
|
14
|
-
The above copyright notice and this permission notice shall be
|
15
|
-
included in all copies or substantial portions of the Software.
|
16
|
-
|
17
|
-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
18
|
-
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
19
|
-
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
20
|
-
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
21
|
-
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
22
|
-
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
23
|
-
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|