vagrant-openstack-plugin 0.6.0 → 0.6.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: e4976e05ab97957b747ce3dae9d7fc11aaf54f74
4
- data.tar.gz: b3b2758a7ac7d5469d0f15a14a4eaff1a85af7e8
3
+ metadata.gz: e3dcce594bbe89b2624bcc31f9b1a80a7e7df14b
4
+ data.tar.gz: 281278e8d8d942f5e18c186ec4df3ccd6a36566b
5
5
  SHA512:
6
- metadata.gz: d9a5e64bb5ce88778ba6572a9939a7ef8d1253d00d1fdb3180dda49b0defb7a998b49f9d03bb0f42d4c22956854f6346e39bb796525aca107620a1cfa6d5e364
7
- data.tar.gz: b61c45b9fdfdeb03a50f2ba88c4d2425b112ffe397d720f9ff7baec6e7e3e7788ba5885555c4d464a936d0ac375453533cb5f58617ec54538b4f41f0922c2e1a
6
+ metadata.gz: 4c3db3dbd720db49e69e1a39b41770a3a39ab64c43699744a56066837571c3373f9c4170105b459e382f60eebf850c8ea7f12e9ef99487b2c67f0c051d141d9d
7
+ data.tar.gz: 1fe21df47a4bc70807c68daf78b404ae67da0f43593afdd4efef5530bc2991449b3350f6006937f682d38b84d56f1100799eeae2ad5d5a6b581eb32f70655f82
data/CHANGELOG.md CHANGED
@@ -1,5 +1,10 @@
1
1
  # Changelog for vagrant-openstack-plugin
2
2
 
3
+ ## 0.6.1
4
+
5
+ - Merge pull request #60 from matope/fix-floating_ip-NoMethodError [view commit](http://github.com///commit/a058256c27573c7545afbc09cce60214731e6e4e)
6
+ - Fix NoMethodError on vagrant up w/o floating_ip [view commit](http://github.com///commit/be6fb0d46f69a3b9925c11648e5bc71af4491a7d)
7
+
3
8
  ## 0.6.0
4
9
 
5
10
  - Merge pull request #59 from virtuald/fixed_automatic_ip [view commit](http://github.com///commit/7e7867ee7340515a8d0171fe5ea88aa340646e0f)
@@ -97,7 +97,7 @@ module VagrantPlugins
97
97
  # Once the server is up and running assign a floating IP if we have one
98
98
  floating_ip = config.floating_ip
99
99
  # try to automatically allocate a floating IP
100
- if floating_ip.to_sym == :auto
100
+ if floating_ip && floating_ip.to_sym == :auto
101
101
  addresses = env[:openstack_compute].addresses
102
102
  puts addresses
103
103
  free_floating = addresses.find_index {|a| a.fixed_ip.nil?}
@@ -1,5 +1,5 @@
1
1
  module VagrantPlugins
2
2
  module OpenStack
3
- VERSION = "0.6.0"
3
+ VERSION = "0.6.1"
4
4
  end
5
5
  end
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.6.0
4
+ version: 0.6.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-05-21 00:00:00.000000000 Z
11
+ date: 2014-06-05 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: fog