vagrant_filoo 0.0.4 → 0.0.5
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 -2
- data/lib/vagrant_filoo/cloud_compute.rb +2 -3
- data/lib/vagrant_filoo/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 729527d5ea04e0ff290c2df7d3f04ad1943e51b2
|
|
4
|
+
data.tar.gz: c91508939488666dd5775545a54421f145bce940
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: cbebbf496f62f22db5b968d6ccb0480ed4999cd7e16dc91a7eea6415b7761405b311e376a7817c0882fc5405df123c02c3801652f81811e47717bd9487e5de6d
|
|
7
|
+
data.tar.gz: 5d2af7479c685f71e06e3ea3dc03df5916a23f496caaf239c6c95f9373aac91461053ac2860efb89d6c4aef2bb8a6d28d51ed0402c751f68cabcff09b30ac46e
|
data/README.md
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
# vagrant_filoo 0.0.
|
|
1
|
+
# vagrant_filoo 0.0.5 Setting hostname...
|
|
2
2
|
Vagrant filoo provisioner
|
|
3
3
|
|
|
4
4
|
This is a Vagrant 1.7x plugin that adds an provider for filoo hosting to Vagrant, allowing Vagrant to control and provision machines within the filoo public and private cloud.
|
|
@@ -19,7 +19,7 @@ htps://www.filoo.de/vserver.html
|
|
|
19
19
|
Install using standard Vagrant 1.1+ plugin installation methods. After installing, `vagrant up` and specify the `filoo` provider. An example is shown below. dummy
|
|
20
20
|
|
|
21
21
|
```
|
|
22
|
-
$ vagrant plugin install
|
|
22
|
+
$ vagrant plugin install vagrant_filoo
|
|
23
23
|
...
|
|
24
24
|
$ vagrant up --provider=filoo
|
|
25
25
|
...
|
|
@@ -27,6 +27,8 @@ $ vagrant up --provider=filoo
|
|
|
27
27
|
|
|
28
28
|
Of course prior to doing this, you'll need to obtain an Filoo-compatible box file for Vagrant.
|
|
29
29
|
|
|
30
|
+
Please set hostname when provisioning the machine
|
|
31
|
+
|
|
30
32
|
## Quick Start
|
|
31
33
|
|
|
32
34
|
After installing the plugin (instructions above), the quickest way to get started is to actually use a dummy Filoo box and specify all the details manually within a `config.vm.provider` block. So first, add the dummy box using any name you want:
|
|
@@ -499,9 +499,8 @@ module VagrantPlugins
|
|
|
499
499
|
raise VagrantPlugins::Filoo::Errors::FilooApiError,
|
|
500
500
|
code: 500,
|
|
501
501
|
message: "Unexpected return value to Api Call POST " + url + " " + {:jobid => jobId}.to_json,
|
|
502
|
-
|
|
503
|
-
|
|
504
|
-
jobid: jobid
|
|
502
|
+
description: "Requested jobid #{jobId} not found",
|
|
503
|
+
jobid: jobid
|
|
505
504
|
end
|
|
506
505
|
returnVal = resp['return']
|
|
507
506
|
if !returnVal.is_a?(Hash)
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: vagrant_filoo
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.0.
|
|
4
|
+
version: 0.0.5
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Huf Secure Mobile GmbH
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2016-01-
|
|
11
|
+
date: 2016-01-13 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: rest-client
|