vagrant-skytap 0.1.5 → 0.1.6
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 +35 -30
- data/boxes/README.md +13 -0
- data/boxes/empty.box +0 -0
- data/boxes/metadata.json +3 -0
- data/eng-10369.diff +208 -0
- data/lib/vagrant-skytap/action/wait_for_communicator.rb +49 -0
- data/lib/vagrant-skytap/action.rb +1 -0
- data/lib/vagrant-skytap/api/environment.rb +11 -1
- data/lib/vagrant-skytap/api/vm.rb +11 -0
- data/lib/vagrant-skytap/config.rb +9 -0
- data/lib/vagrant-skytap/errors.rb +8 -0
- data/lib/vagrant-skytap/setup_helper.rb +9 -0
- data/lib/vagrant-skytap/version.rb +1 -1
- data/locales/en.yml +6 -0
- data/spec/unit/base.rb +5 -0
- data/spec/unit/config_spec.rb +2 -1
- data/spec/unit/environment_spec.rb +43 -4
- data/spec/unit/setup_helper_spec.rb +128 -0
- data/spec/unit/skeletons/network1.json +1 -20
- data/spec/unit/skeletons/vm1.json +5 -5
- data/spec/unit/skeletons/vpn1.json +26 -0
- data/spec/unit/skeletons/vpn_attachment1.json +18 -0
- data/spec/unit/vm_spec.rb +12 -0
- metadata +10 -8
- data/1-2.diff +0 -965
- data/dummy.box +0 -0
- data/example_box/README.md +0 -13
- data/example_box/metadata.json +0 -3
- data/f.diff +0 -38
- data/skytap-dummy.box +0 -0
data/dummy.box
DELETED
Binary file
|
data/example_box/README.md
DELETED
@@ -1,13 +0,0 @@
|
|
1
|
-
# Vagrant AWS Example Box
|
2
|
-
|
3
|
-
Vagrant providers each require a custom provider-specific box format.
|
4
|
-
This folder shows the example contents of a box for the `aws` provider.
|
5
|
-
To turn this into a box:
|
6
|
-
|
7
|
-
```
|
8
|
-
$ tar cvzf aws.box ./metadata.json ./Vagrantfile
|
9
|
-
```
|
10
|
-
|
11
|
-
This box works by using Vagrant's built-in Vagrantfile merging to setup
|
12
|
-
defaults for AWS. These defaults can easily be overwritten by higher-level
|
13
|
-
Vagrantfiles (such as project root Vagrantfiles).
|
data/example_box/metadata.json
DELETED
data/f.diff
DELETED
@@ -1,38 +0,0 @@
|
|
1
|
-
diff -r 05c0a2eb9d3b -r a3554632b4c8 lib/vagrant-skytap/errors.rb
|
2
|
-
--- a/lib/vagrant-skytap/errors.rb Wed Sep 16 17:15:46 2015 -0700
|
3
|
-
+++ b/lib/vagrant-skytap/errors.rb Wed Sep 16 17:13:43 2015 -0700
|
4
|
-
@@ -30,10 +30,6 @@
|
5
|
-
class ElbDoesNotExistError < VagrantSkytapError
|
6
|
-
error_key("elb_does_not_exist")
|
7
|
-
end
|
8
|
-
-
|
9
|
-
- class BadVmUrlError < VagrantSkytapError
|
10
|
-
- error_key(:bad_vm_url)
|
11
|
-
- end
|
12
|
-
end
|
13
|
-
end
|
14
|
-
end
|
15
|
-
diff -r 05c0a2eb9d3b -r a3554632b4c8 locales/en.yml
|
16
|
-
--- a/locales/en.yml Wed Sep 16 17:15:46 2015 -0700
|
17
|
-
+++ b/locales/en.yml Wed Sep 16 17:13:43 2015 -0700
|
18
|
-
@@ -59,8 +59,8 @@
|
19
|
-
A Skytap username must be specified via "username"
|
20
|
-
api_token_required:
|
21
|
-
A Skytap API token must be specified via "api_token"
|
22
|
-
- vm_url_required:
|
23
|
-
- The URL of a Skytap VM must be specified via "vm_url"
|
24
|
-
+ template_url_required:
|
25
|
-
+ The URL of a Skytap template must be specified via "template_url"
|
26
|
-
#access_key_id_required: |-
|
27
|
-
# An access key ID must be specified via "access_key_id"
|
28
|
-
#ami_required: |-
|
29
|
-
@@ -107,9 +107,6 @@
|
30
|
-
elb_does_not_exist: |-
|
31
|
-
ELB configured for the instance does not exist
|
32
|
-
|
33
|
-
- bad_vm_url: |-
|
34
|
-
- The vm_url was invalid: %{url}
|
35
|
-
-
|
36
|
-
states:
|
37
|
-
short_not_created: |-
|
38
|
-
not created
|
data/skytap-dummy.box
DELETED
Binary file
|