vagrant-flow 1.0.24 → 1.0.25

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: 4346253056364e8655450006137ddbe7e60b19a2
4
- data.tar.gz: d1f010f872b4776f90b25c1205cd5fb3bd2efbaa
3
+ metadata.gz: 36344c408971ec892dd35e5b20fe8dad8a5325c1
4
+ data.tar.gz: 91091096febd0c243dcc0756cc66960cbaed3130
5
5
  SHA512:
6
- metadata.gz: 116700b3e4e39f0e0076fd98aa89fe9d521293df59e2bcbdf5e6e5398f55449626127151a9bbce558d889d315d6b83fcf23196b9f8fa33e75786ec1fb182a57a
7
- data.tar.gz: 7cfd0eb12a82a2ae9d9686d64c4b382202d3bffb2ad650fa5e035317859db3b024fd657b5c38f2afff2e26559348d7eba92dd179315ed5a8eb7a44c814d44b92
6
+ metadata.gz: ae22cf5894e4ff143244face9ac233ab894d667e7762cee90ffb83da1ac308d35b5aeb218a2d09740a14d104f73606627aa6537c9bf5a7b2b2865a5079e63e96
7
+ data.tar.gz: 5ee11a08e109b52d4f99379c7100fdb60695a37daebf86d96bbfe2f04d37976947f13c8db62e627aa728dee1afa32ce757bb0edf25a3326c9e1bc7374ec136b1
data/README.md CHANGED
@@ -143,6 +143,9 @@ machines:
143
143
  ```
144
144
 
145
145
  Example multiinitconfig.yml file for use with virtualbox and digitalocean providers. All the extra parameters are required to make digitalocean work. Get your digitalOcean token by logging in and generating a new token under "Apps & API"
146
+
147
+ Details on [vagrant-digitalocean](https://github.com/smdahlen/vagrant-digitalocean)
148
+
146
149
  ```
147
150
  ---
148
151
  #Where your ssh private key lives (for use with digital ocean)
@@ -169,7 +172,7 @@ machines:
169
172
  digitalOceanRegion: nyc2
170
173
  digitalOceanImage: Debian 7.0 x64
171
174
  #Valid options for digitalOceanRegion:
172
- #"nyc1, ams1, sfo1, nyc2, ams2, sgp1, lon1
175
+ #nyc1, ams1, sfo1, nyc2, ams2, sgp1, lon1
173
176
  #Default is sfo1
174
177
 
175
178
  #Set custom config for vbox and digitaloceanprovider
@@ -45,11 +45,8 @@ class DigitalOcean_Api
45
45
  ip.push(x["ip_address"])
46
46
  end
47
47
 
48
- #Usually there's only the one IP address per machine,
49
- #this will help with backwards compatibility
50
- if ip.length == 1
51
- ip = ip[0]
52
- end
48
+ #Only use one IP address to avoid confusing etc hosts
49
+ ip = ip[ip.length-1]
53
50
 
54
51
 
55
52
  returnHash.push({
@@ -1,5 +1,5 @@
1
1
  module VagrantPlugins
2
2
  module VagrantFlow
3
- VERSION = "1.0.24"
3
+ VERSION = "1.0.25"
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: vagrant-flow
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.24
4
+ version: 1.0.25
5
5
  platform: ruby
6
6
  authors:
7
7
  - Steve Morin