vagrant-flow 1.0.24 → 1.0.25
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 +4 -4
- data/README.md +4 -1
- data/lib/vagrant-flow/command/digitalocean_api.rb +2 -5
- data/lib/vagrant-flow/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 36344c408971ec892dd35e5b20fe8dad8a5325c1
|
|
4
|
+
data.tar.gz: 91091096febd0c243dcc0756cc66960cbaed3130
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
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
|
-
#
|
|
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
|
-
#
|
|
49
|
-
|
|
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({
|
data/lib/vagrant-flow/version.rb
CHANGED