vagrant-cloudstack 0.10.0 → 1.0.0
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/.gitignore +1 -0
- data/.travis.yml +1 -1
- data/CHANGELOG.md +8 -0
- data/Gemfile +5 -2
- data/README.md +48 -10
- data/build_rpm.sh +1 -1
- data/coverage/.last_run.json +5 -0
- data/coverage/.resultset.json +569 -0
- data/coverage/.resultset.json.lock +0 -0
- data/coverage/assets/0.10.0/application.css +799 -0
- data/coverage/assets/0.10.0/application.js +1707 -0
- data/coverage/assets/0.10.0/colorbox/border.png +0 -0
- data/coverage/assets/0.10.0/colorbox/controls.png +0 -0
- data/coverage/assets/0.10.0/colorbox/loading.gif +0 -0
- data/coverage/assets/0.10.0/colorbox/loading_background.png +0 -0
- data/coverage/assets/0.10.0/favicon_green.png +0 -0
- data/coverage/assets/0.10.0/favicon_red.png +0 -0
- data/coverage/assets/0.10.0/favicon_yellow.png +0 -0
- data/coverage/assets/0.10.0/loading.gif +0 -0
- data/coverage/assets/0.10.0/magnify.png +0 -0
- data/coverage/assets/0.10.0/smoothness/images/ui-bg_flat_0_aaaaaa_40x100.png +0 -0
- data/coverage/assets/0.10.0/smoothness/images/ui-bg_flat_75_ffffff_40x100.png +0 -0
- data/coverage/assets/0.10.0/smoothness/images/ui-bg_glass_55_fbf9ee_1x400.png +0 -0
- data/coverage/assets/0.10.0/smoothness/images/ui-bg_glass_65_ffffff_1x400.png +0 -0
- data/coverage/assets/0.10.0/smoothness/images/ui-bg_glass_75_dadada_1x400.png +0 -0
- data/coverage/assets/0.10.0/smoothness/images/ui-bg_glass_75_e6e6e6_1x400.png +0 -0
- data/coverage/assets/0.10.0/smoothness/images/ui-bg_glass_95_fef1ec_1x400.png +0 -0
- data/coverage/assets/0.10.0/smoothness/images/ui-bg_highlight-soft_75_cccccc_1x100.png +0 -0
- data/coverage/assets/0.10.0/smoothness/images/ui-icons_222222_256x240.png +0 -0
- data/coverage/assets/0.10.0/smoothness/images/ui-icons_2e83ff_256x240.png +0 -0
- data/coverage/assets/0.10.0/smoothness/images/ui-icons_454545_256x240.png +0 -0
- data/coverage/assets/0.10.0/smoothness/images/ui-icons_888888_256x240.png +0 -0
- data/coverage/assets/0.10.0/smoothness/images/ui-icons_cd0a0a_256x240.png +0 -0
- data/coverage/index.html +3438 -0
- data/lib/vagrant-cloudstack/action.rb +2 -3
- data/lib/vagrant-cloudstack/action/read_ssh_info.rb +14 -6
- data/lib/vagrant-cloudstack/action/run_instance.rb +205 -32
- data/lib/vagrant-cloudstack/action/terminate_instance.rb +78 -12
- data/lib/vagrant-cloudstack/config.rb +65 -1
- data/lib/vagrant-cloudstack/version.rb +1 -1
- data/locales/en.yml +10 -0
- data/spec/spec_helper.rb +5 -0
- data/spec/vagrant-cloudstack/config_spec.rb +67 -26
- data/vagrant-cloudstack.gemspec +3 -3
- metadata +60 -29
- data/lib/vagrant-cloudstack/action/sync_folders.rb +0 -88
@@ -106,11 +106,21 @@ module VagrantPlugins
|
|
106
106
|
# @return [String]
|
107
107
|
attr_accessor :keypair
|
108
108
|
|
109
|
+
# Paramters for Static NAT
|
110
|
+
#
|
111
|
+
# @return [String]
|
112
|
+
attr_accessor :static_nat
|
113
|
+
|
109
114
|
# IP address id to use for port forwarding rule
|
110
115
|
#
|
111
116
|
# @return [String]
|
112
117
|
attr_accessor :pf_ip_address_id
|
113
118
|
|
119
|
+
# IP address to use for port forwarding rule
|
120
|
+
#
|
121
|
+
# @return [String]
|
122
|
+
attr_accessor :pf_ip_address
|
123
|
+
|
114
124
|
# public port to use for port forwarding rule
|
115
125
|
#
|
116
126
|
# @return [String]
|
@@ -121,6 +131,23 @@ module VagrantPlugins
|
|
121
131
|
# @return [String]
|
122
132
|
attr_accessor :pf_private_port
|
123
133
|
|
134
|
+
# flag to enable/disable automatic open firewall rule
|
135
|
+
#
|
136
|
+
# @return [Boolean]
|
137
|
+
attr_accessor :pf_open_firewall
|
138
|
+
|
139
|
+
# comma separated list of port forwarding rules
|
140
|
+
# (hash with rule parameters)
|
141
|
+
#
|
142
|
+
# @return [Array]
|
143
|
+
attr_accessor :port_forwarding_rules
|
144
|
+
|
145
|
+
# comma separated list of firewall rules
|
146
|
+
# (hash with rule parameters)
|
147
|
+
#
|
148
|
+
# @return [Array]
|
149
|
+
attr_accessor :firewall_rules
|
150
|
+
|
124
151
|
# comma separated list of security groups id that going
|
125
152
|
# to be applied to the virtual machine.
|
126
153
|
#
|
@@ -155,6 +182,16 @@ module VagrantPlugins
|
|
155
182
|
# @return [String]
|
156
183
|
attr_accessor :user_data
|
157
184
|
|
185
|
+
# The key to be used when loging in to the vm via ssh
|
186
|
+
#
|
187
|
+
# @return [String]
|
188
|
+
attr_accessor :ssh_key
|
189
|
+
|
190
|
+
# The username to be used when loging in to the vm via ssh
|
191
|
+
#
|
192
|
+
# @return [String]
|
193
|
+
attr_accessor :ssh_user
|
194
|
+
|
158
195
|
|
159
196
|
def initialize(domain_specific=false)
|
160
197
|
@host = UNSET_VALUE
|
@@ -177,16 +214,22 @@ module VagrantPlugins
|
|
177
214
|
@zone_id = UNSET_VALUE
|
178
215
|
@zone_name = UNSET_VALUE
|
179
216
|
@keypair = UNSET_VALUE
|
217
|
+
@static_nat = UNSET_VALUE
|
180
218
|
@pf_ip_address_id = UNSET_VALUE
|
219
|
+
@pf_ip_address = UNSET_VALUE
|
181
220
|
@pf_public_port = UNSET_VALUE
|
182
221
|
@pf_private_port = UNSET_VALUE
|
222
|
+
@pf_open_firewall = UNSET_VALUE
|
223
|
+
@port_forwarding_rules = UNSET_VALUE
|
224
|
+
@firewall_rules = UNSET_VALUE
|
183
225
|
@security_group_ids = UNSET_VALUE
|
184
226
|
@display_name = UNSET_VALUE
|
185
227
|
@group = UNSET_VALUE
|
186
228
|
@security_group_names = UNSET_VALUE
|
187
229
|
@security_groups = UNSET_VALUE
|
188
230
|
@user_data = UNSET_VALUE
|
189
|
-
|
231
|
+
@ssh_key = UNSET_VALUE
|
232
|
+
@ssh_user = UNSET_VALUE
|
190
233
|
|
191
234
|
# Internal state (prefix with __ so they aren't automatically
|
192
235
|
# merged)
|
@@ -317,15 +360,30 @@ module VagrantPlugins
|
|
317
360
|
# Keypair defaults to nil
|
318
361
|
@keypair = nil if @keypair == UNSET_VALUE
|
319
362
|
|
363
|
+
# Static NAT must be empty array
|
364
|
+
@static_nat = [] if @static_nat == UNSET_VALUE
|
365
|
+
|
320
366
|
# IP address id must be nil, since we can't default that
|
321
367
|
@pf_ip_address_id = nil if @pf_ip_address_id == UNSET_VALUE
|
322
368
|
|
369
|
+
# IP address must be nil, since we can't default that
|
370
|
+
@pf_ip_address = nil if @pf_ip_address == UNSET_VALUE
|
371
|
+
|
323
372
|
# Public port must be nil, since we can't default that
|
324
373
|
@pf_public_port = nil if @pf_public_port == UNSET_VALUE
|
325
374
|
|
326
375
|
# Private port must be nil, since we can't default that
|
327
376
|
@pf_private_port = nil if @pf_private_port == UNSET_VALUE
|
328
377
|
|
378
|
+
# Open firewall is true by default (for backwards compatibility)
|
379
|
+
@pf_open_firewall = true if @pf_open_firewall == UNSET_VALUE
|
380
|
+
|
381
|
+
# Port forwarding rules must be empty array
|
382
|
+
@port_forwarding_rules = [] if @port_forwarding_rules == UNSET_VALUE
|
383
|
+
|
384
|
+
# Firewall rules must be empty array
|
385
|
+
@firewall_rules = [] if @firewall_rules == UNSET_VALUE
|
386
|
+
|
329
387
|
# Security Group IDs must be nil, since we can't default that
|
330
388
|
@security_group_ids = [] if @security_group_ids == UNSET_VALUE
|
331
389
|
|
@@ -344,6 +402,12 @@ module VagrantPlugins
|
|
344
402
|
# User Data is nil by default
|
345
403
|
@user_data = nil if @user_data == UNSET_VALUE
|
346
404
|
|
405
|
+
# ssh key is nil by default
|
406
|
+
@ssh_key = nil if @ssh_key == UNSET_VALUE
|
407
|
+
|
408
|
+
# ssh key is nil by default
|
409
|
+
@ssh_user = nil if @ssh_user == UNSET_VALUE
|
410
|
+
|
347
411
|
# Compile our domain specific configurations only within
|
348
412
|
# NON-DOMAIN-SPECIFIC configurations.
|
349
413
|
if !@__domain_specific
|
data/locales/en.yml
CHANGED
@@ -31,10 +31,18 @@ en:
|
|
31
31
|
Waiting for instance to become "ready"...
|
32
32
|
waiting_for_ssh: |-
|
33
33
|
Waiting for SSH to become available...
|
34
|
+
enabling_static_nat: |-
|
35
|
+
Enabling Static NAT for this instance ...
|
36
|
+
disabling_static_nat: |-
|
37
|
+
Disabling Static NAT ...
|
34
38
|
creating_port_forwarding_rule: |-
|
35
39
|
Creating a port forwarding rule for this instance ...
|
36
40
|
deleting_port_forwarding_rule: |-
|
37
41
|
Deleting the port forwarding rule ...
|
42
|
+
creating_firewall_rule: |-
|
43
|
+
Creating a firewall rule ...
|
44
|
+
deleting_firewall_rule: |-
|
45
|
+
Deleting the firewall rule ...
|
38
46
|
warn_networks: |-
|
39
47
|
Warning! The Cloudstack provider doesn't support any of the Vagrant
|
40
48
|
high-level network configurations (`config.vm.network`). They
|
@@ -42,6 +50,8 @@ en:
|
|
42
50
|
will_not_destroy: |-
|
43
51
|
The instance '%{name}' will not be destroyed, since the confirmation
|
44
52
|
was declined.
|
53
|
+
no_instance_found : |-
|
54
|
+
No instance found, already destroyed?
|
45
55
|
|
46
56
|
config:
|
47
57
|
api_key_required: |-
|
data/spec/spec_helper.rb
ADDED
@@ -1,8 +1,6 @@
|
|
1
|
+
require "spec_helper"
|
1
2
|
require "vagrant-cloudstack/config"
|
2
3
|
|
3
|
-
require 'coveralls'
|
4
|
-
Coveralls.wear!
|
5
|
-
|
6
4
|
describe VagrantPlugins::Cloudstack::Config do
|
7
5
|
let(:instance) { described_class.new }
|
8
6
|
|
@@ -18,29 +16,36 @@ describe VagrantPlugins::Cloudstack::Config do
|
|
18
16
|
end
|
19
17
|
end
|
20
18
|
|
21
|
-
its("host") { should be_nil
|
22
|
-
its("path") { should be_nil
|
23
|
-
its("port") { should be_nil
|
24
|
-
its("scheme") { should be_nil
|
25
|
-
its("api_key") { should be_nil
|
26
|
-
its("secret_key") { should be_nil
|
27
|
-
its("instance_ready_timeout") { should == 120
|
28
|
-
its("domain_id") { should be_nil
|
29
|
-
its("network_id") { should be_nil
|
30
|
-
its("project_id") { should be_nil
|
31
|
-
its("service_offering_id") { should be_nil
|
32
|
-
its("template_id") { should be_nil
|
33
|
-
its("zone_id") { should be_nil
|
34
|
-
its("keypair") { should be_nil
|
35
|
-
its("
|
36
|
-
its("
|
37
|
-
its("
|
38
|
-
its("
|
39
|
-
its("
|
40
|
-
its("
|
41
|
-
its("
|
42
|
-
its("
|
43
|
-
its("
|
19
|
+
its("host") { should be_nil }
|
20
|
+
its("path") { should be_nil }
|
21
|
+
its("port") { should be_nil }
|
22
|
+
its("scheme") { should be_nil }
|
23
|
+
its("api_key") { should be_nil }
|
24
|
+
its("secret_key") { should be_nil }
|
25
|
+
its("instance_ready_timeout") { should == 120 }
|
26
|
+
its("domain_id") { should be_nil }
|
27
|
+
its("network_id") { should be_nil }
|
28
|
+
its("project_id") { should be_nil }
|
29
|
+
its("service_offering_id") { should be_nil }
|
30
|
+
its("template_id") { should be_nil }
|
31
|
+
its("zone_id") { should be_nil }
|
32
|
+
its("keypair") { should be_nil }
|
33
|
+
its("static_nat") { should == [] }
|
34
|
+
its("pf_ip_address_id") { should be_nil }
|
35
|
+
its("pf_ip_address") { should be_nil }
|
36
|
+
its("pf_public_port") { should be_nil }
|
37
|
+
its("pf_private_port") { should be_nil }
|
38
|
+
its("pf_open_firewall") { should == true }
|
39
|
+
its("port_forwarding_rules") { should == [] }
|
40
|
+
its("firewall_rules") { should == [] }
|
41
|
+
its("security_group_ids") { should == [] }
|
42
|
+
its("display_name") { should be_nil }
|
43
|
+
its("group") { should be_nil }
|
44
|
+
its("security_group_names") { should == [] }
|
45
|
+
its("security_groups") { should == [] }
|
46
|
+
its("user_data") { should be_nil }
|
47
|
+
its("ssh_key") { should be_nil }
|
48
|
+
its("ssh_user") { should be_nil }
|
44
49
|
end
|
45
50
|
|
46
51
|
describe "getting credentials from environment" do
|
@@ -86,6 +91,14 @@ describe VagrantPlugins::Cloudstack::Config do
|
|
86
91
|
instance.finalize!
|
87
92
|
instance.send(attribute).should == "foo"
|
88
93
|
end
|
94
|
+
|
95
|
+
end
|
96
|
+
|
97
|
+
it 'should not default pf_open_firewall if overridden' do
|
98
|
+
instance.pf_open_firewall = false
|
99
|
+
instance.finalize!
|
100
|
+
|
101
|
+
instance.pf_open_firewall.should == false
|
89
102
|
end
|
90
103
|
end
|
91
104
|
|
@@ -118,14 +131,21 @@ describe VagrantPlugins::Cloudstack::Config do
|
|
118
131
|
let(:config_template_id) { "foo" }
|
119
132
|
let(:config_zone_id) { "foo" }
|
120
133
|
let(:config_keypair) { "foo" }
|
134
|
+
let(:config_static_nat) { [{:foo => "bar"}, {:bar => "foo"}] }
|
121
135
|
let(:config_pf_ip_address_id) { "foo" }
|
136
|
+
let(:config_pf_ip_address) { "foo" }
|
122
137
|
let(:config_pf_public_port) { "foo" }
|
123
138
|
let(:config_pf_private_port) { "foo" }
|
139
|
+
let(:config_pf_open_firewall) { false }
|
140
|
+
let(:config_port_forwarding_rules) { [{:foo => "bar"}, {:bar => "foo"}] }
|
141
|
+
let(:config_firewall_rules) { [{:foo => "bar"}, {:bar => "foo"}] }
|
124
142
|
let(:config_security_group_ids) { ["foo", "bar"] }
|
125
143
|
let(:config_display_name) { "foo" }
|
126
144
|
let(:config_group) { "foo" }
|
127
145
|
let(:config_security_group_names) { ["foo", "bar"] }
|
128
146
|
let(:config_security_groups) { [{:foo => "bar"}, {:bar => "foo"}] }
|
147
|
+
let(:config_ssh_key) { "./foo.pem" }
|
148
|
+
let(:config_ssh_user) { "foo" }
|
129
149
|
|
130
150
|
def set_test_values(instance)
|
131
151
|
instance.host = config_host
|
@@ -142,14 +162,21 @@ describe VagrantPlugins::Cloudstack::Config do
|
|
142
162
|
instance.template_id = config_template_id
|
143
163
|
instance.zone_id = config_zone_id
|
144
164
|
instance.keypair = config_keypair
|
165
|
+
instance.static_nat = config_static_nat
|
145
166
|
instance.pf_ip_address_id = config_pf_ip_address_id
|
167
|
+
instance.pf_ip_address = config_pf_ip_address
|
146
168
|
instance.pf_public_port = config_pf_public_port
|
147
169
|
instance.pf_private_port = config_pf_private_port
|
170
|
+
instance.pf_open_firewall = config_pf_open_firewall
|
171
|
+
instance.port_forwarding_rules = config_port_forwarding_rules
|
172
|
+
instance.firewall_rules = config_firewall_rules
|
148
173
|
instance.security_group_ids = config_security_group_ids
|
149
174
|
instance.display_name = config_display_name
|
150
175
|
instance.group = config_group
|
151
176
|
instance.security_group_names = config_security_group_names
|
152
177
|
instance.security_groups = config_security_groups
|
178
|
+
instance.ssh_key = config_ssh_key
|
179
|
+
instance.ssh_user = config_ssh_user
|
153
180
|
end
|
154
181
|
|
155
182
|
it "should raise an exception if not finalized" do
|
@@ -183,14 +210,21 @@ describe VagrantPlugins::Cloudstack::Config do
|
|
183
210
|
its("template_id") { should == config_template_id }
|
184
211
|
its("zone_id") { should == config_zone_id }
|
185
212
|
its("keypair") { should == config_keypair }
|
213
|
+
its("static_nat") { should == config_static_nat }
|
186
214
|
its("pf_ip_address_id") { should == config_pf_ip_address_id }
|
215
|
+
its("pf_ip_address") { should == config_pf_ip_address }
|
187
216
|
its("pf_public_port") { should == config_pf_public_port }
|
188
217
|
its("pf_private_port") { should == config_pf_private_port }
|
218
|
+
its("pf_open_firewall") { should == config_pf_open_firewall }
|
219
|
+
its("port_forwarding_rules") { should == config_port_forwarding_rules }
|
220
|
+
its("firewall_rules") { should == config_firewall_rules }
|
189
221
|
its("security_group_ids") { should == config_security_group_ids }
|
190
222
|
its("display_name") { should == config_display_name }
|
191
223
|
its("group") { should == config_group }
|
192
224
|
its("security_group_names") { should == config_security_group_names }
|
193
225
|
its("security_groups") { should == config_security_groups }
|
226
|
+
its("ssh_key") { should == config_ssh_key }
|
227
|
+
its("ssh_user") { should == config_ssh_user }
|
194
228
|
end
|
195
229
|
|
196
230
|
context "with a specific config set" do
|
@@ -223,14 +257,21 @@ describe VagrantPlugins::Cloudstack::Config do
|
|
223
257
|
its("template_id") { should == config_template_id }
|
224
258
|
its("zone_id") { should == config_zone_id }
|
225
259
|
its("keypair") { should == config_keypair }
|
260
|
+
its("static_nat") { should == config_static_nat }
|
226
261
|
its("pf_ip_address_id") { should == config_pf_ip_address_id }
|
262
|
+
its("pf_ip_address") { should == config_pf_ip_address }
|
227
263
|
its("pf_public_port") { should == config_pf_public_port }
|
228
264
|
its("pf_private_port") { should == config_pf_private_port }
|
265
|
+
its("pf_open_firewall") { should == config_pf_open_firewall }
|
266
|
+
its("port_forwarding_rules") { should == config_port_forwarding_rules }
|
267
|
+
its("firewall_rules") { should == config_firewall_rules }
|
229
268
|
its("security_group_ids") { should == config_security_group_ids }
|
230
269
|
its("display_name") { should == config_display_name }
|
231
270
|
its("group") { should == config_group }
|
232
271
|
its("security_group_names") { should == config_security_group_names }
|
233
272
|
its("security_groups") { should == config_security_groups }
|
273
|
+
its("ssh_key") { should == config_ssh_key }
|
274
|
+
its("ssh_user") { should == config_ssh_user }
|
234
275
|
end
|
235
276
|
|
236
277
|
describe "inheritance of parent config" do
|
data/vagrant-cloudstack.gemspec
CHANGED
@@ -6,9 +6,9 @@ Gem::Specification.new do |s|
|
|
6
6
|
s.version = VagrantPlugins::Cloudstack::VERSION
|
7
7
|
s.platform = Gem::Platform::RUBY
|
8
8
|
s.license = "MIT"
|
9
|
-
s.authors = ["Mitchell Hashimoto", "Carl Loa Odin", "Tor-Åke Fransson", "Olle Lundberg", "Roeland Kuipers", "Yuichi Uemura", "Atsushi Sasaki", "Nicolas Brechet", "Peter Jönsson", "Christophe Roux", "Andrei Chiriaev"]
|
10
|
-
s.email = "
|
11
|
-
s.homepage = "https://github.com/
|
9
|
+
s.authors = ["Mitchell Hashimoto", "Carl Loa Odin", "Tor-Åke Fransson", "Olle Lundberg", "Roeland Kuipers", "Yuichi Uemura", "Atsushi Sasaki", "Nicolas Brechet", "Peter Jönsson", "Christophe Roux", "Andrei Chiriaev", "Miguel Ferreira", "Timothy van Zadelhoff"]
|
10
|
+
s.email = "int-toolkit@schubergphilis.com"
|
11
|
+
s.homepage = "https://github.com/schubergphilis/vagrant-cloudstack/"
|
12
12
|
s.summary = "Enables Vagrant to manage machines in Cloudstack."
|
13
13
|
s.description = "Enables Vagrant to manage machines in Cloudstack."
|
14
14
|
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: vagrant-cloudstack
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 1.0.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Mitchell Hashimoto
|
@@ -15,93 +15,131 @@ authors:
|
|
15
15
|
- Peter Jönsson
|
16
16
|
- Christophe Roux
|
17
17
|
- Andrei Chiriaev
|
18
|
+
- Miguel Ferreira
|
19
|
+
- Timothy van Zadelhoff
|
18
20
|
autorequire:
|
19
21
|
bindir: bin
|
20
22
|
cert_chain: []
|
21
|
-
date:
|
23
|
+
date: 2015-05-05 00:00:00.000000000 Z
|
22
24
|
dependencies:
|
23
25
|
- !ruby/object:Gem::Dependency
|
24
26
|
name: fog
|
25
27
|
requirement: !ruby/object:Gem::Requirement
|
26
28
|
requirements:
|
27
|
-
- - ~>
|
29
|
+
- - "~>"
|
28
30
|
- !ruby/object:Gem::Version
|
29
31
|
version: 1.22.0
|
30
32
|
type: :runtime
|
31
33
|
prerelease: false
|
32
34
|
version_requirements: !ruby/object:Gem::Requirement
|
33
35
|
requirements:
|
34
|
-
- - ~>
|
36
|
+
- - "~>"
|
35
37
|
- !ruby/object:Gem::Version
|
36
38
|
version: 1.22.0
|
37
39
|
- !ruby/object:Gem::Dependency
|
38
40
|
name: rake
|
39
41
|
requirement: !ruby/object:Gem::Requirement
|
40
42
|
requirements:
|
41
|
-
- -
|
43
|
+
- - ">="
|
42
44
|
- !ruby/object:Gem::Version
|
43
45
|
version: '0'
|
44
46
|
type: :development
|
45
47
|
prerelease: false
|
46
48
|
version_requirements: !ruby/object:Gem::Requirement
|
47
49
|
requirements:
|
48
|
-
- -
|
50
|
+
- - ">="
|
49
51
|
- !ruby/object:Gem::Version
|
50
52
|
version: '0'
|
51
53
|
- !ruby/object:Gem::Dependency
|
52
54
|
name: rspec-core
|
53
55
|
requirement: !ruby/object:Gem::Requirement
|
54
56
|
requirements:
|
55
|
-
- - ~>
|
57
|
+
- - "~>"
|
56
58
|
- !ruby/object:Gem::Version
|
57
59
|
version: 2.14.7
|
58
60
|
type: :development
|
59
61
|
prerelease: false
|
60
62
|
version_requirements: !ruby/object:Gem::Requirement
|
61
63
|
requirements:
|
62
|
-
- - ~>
|
64
|
+
- - "~>"
|
63
65
|
- !ruby/object:Gem::Version
|
64
66
|
version: 2.14.7
|
65
67
|
- !ruby/object:Gem::Dependency
|
66
68
|
name: rspec-expectations
|
67
69
|
requirement: !ruby/object:Gem::Requirement
|
68
70
|
requirements:
|
69
|
-
- - ~>
|
71
|
+
- - "~>"
|
70
72
|
- !ruby/object:Gem::Version
|
71
73
|
version: 2.14.4
|
72
74
|
type: :development
|
73
75
|
prerelease: false
|
74
76
|
version_requirements: !ruby/object:Gem::Requirement
|
75
77
|
requirements:
|
76
|
-
- - ~>
|
78
|
+
- - "~>"
|
77
79
|
- !ruby/object:Gem::Version
|
78
80
|
version: 2.14.4
|
79
81
|
- !ruby/object:Gem::Dependency
|
80
82
|
name: rspec-mocks
|
81
83
|
requirement: !ruby/object:Gem::Requirement
|
82
84
|
requirements:
|
83
|
-
- - ~>
|
85
|
+
- - "~>"
|
84
86
|
- !ruby/object:Gem::Version
|
85
87
|
version: 2.14.4
|
86
88
|
type: :development
|
87
89
|
prerelease: false
|
88
90
|
version_requirements: !ruby/object:Gem::Requirement
|
89
91
|
requirements:
|
90
|
-
- - ~>
|
92
|
+
- - "~>"
|
91
93
|
- !ruby/object:Gem::Version
|
92
94
|
version: 2.14.4
|
93
95
|
description: Enables Vagrant to manage machines in Cloudstack.
|
94
|
-
email:
|
96
|
+
email: int-toolkit@schubergphilis.com
|
95
97
|
executables: []
|
96
98
|
extensions: []
|
97
99
|
extra_rdoc_files: []
|
98
100
|
files:
|
99
|
-
-
|
101
|
+
- ".gitignore"
|
102
|
+
- ".ruby-version"
|
103
|
+
- ".travis.yml"
|
100
104
|
- CHANGELOG.md
|
105
|
+
- Gemfile
|
106
|
+
- LICENSE
|
107
|
+
- README.md
|
108
|
+
- Rakefile
|
109
|
+
- build_rpm.sh
|
110
|
+
- coverage/.last_run.json
|
111
|
+
- coverage/.resultset.json
|
112
|
+
- coverage/.resultset.json.lock
|
113
|
+
- coverage/assets/0.10.0/application.css
|
114
|
+
- coverage/assets/0.10.0/application.js
|
115
|
+
- coverage/assets/0.10.0/colorbox/border.png
|
116
|
+
- coverage/assets/0.10.0/colorbox/controls.png
|
117
|
+
- coverage/assets/0.10.0/colorbox/loading.gif
|
118
|
+
- coverage/assets/0.10.0/colorbox/loading_background.png
|
119
|
+
- coverage/assets/0.10.0/favicon_green.png
|
120
|
+
- coverage/assets/0.10.0/favicon_red.png
|
121
|
+
- coverage/assets/0.10.0/favicon_yellow.png
|
122
|
+
- coverage/assets/0.10.0/loading.gif
|
123
|
+
- coverage/assets/0.10.0/magnify.png
|
124
|
+
- coverage/assets/0.10.0/smoothness/images/ui-bg_flat_0_aaaaaa_40x100.png
|
125
|
+
- coverage/assets/0.10.0/smoothness/images/ui-bg_flat_75_ffffff_40x100.png
|
126
|
+
- coverage/assets/0.10.0/smoothness/images/ui-bg_glass_55_fbf9ee_1x400.png
|
127
|
+
- coverage/assets/0.10.0/smoothness/images/ui-bg_glass_65_ffffff_1x400.png
|
128
|
+
- coverage/assets/0.10.0/smoothness/images/ui-bg_glass_75_dadada_1x400.png
|
129
|
+
- coverage/assets/0.10.0/smoothness/images/ui-bg_glass_75_e6e6e6_1x400.png
|
130
|
+
- coverage/assets/0.10.0/smoothness/images/ui-bg_glass_95_fef1ec_1x400.png
|
131
|
+
- coverage/assets/0.10.0/smoothness/images/ui-bg_highlight-soft_75_cccccc_1x100.png
|
132
|
+
- coverage/assets/0.10.0/smoothness/images/ui-icons_222222_256x240.png
|
133
|
+
- coverage/assets/0.10.0/smoothness/images/ui-icons_2e83ff_256x240.png
|
134
|
+
- coverage/assets/0.10.0/smoothness/images/ui-icons_454545_256x240.png
|
135
|
+
- coverage/assets/0.10.0/smoothness/images/ui-icons_888888_256x240.png
|
136
|
+
- coverage/assets/0.10.0/smoothness/images/ui-icons_cd0a0a_256x240.png
|
137
|
+
- coverage/index.html
|
101
138
|
- dummy.box
|
102
|
-
- example_box/metadata.json
|
103
139
|
- example_box/README.md
|
104
|
-
-
|
140
|
+
- example_box/metadata.json
|
141
|
+
- lib/vagrant-cloudstack.rb
|
142
|
+
- lib/vagrant-cloudstack/action.rb
|
105
143
|
- lib/vagrant-cloudstack/action/connect_cloudstack.rb
|
106
144
|
- lib/vagrant-cloudstack/action/is_created.rb
|
107
145
|
- lib/vagrant-cloudstack/action/is_stopped.rb
|
@@ -113,30 +151,22 @@ files:
|
|
113
151
|
- lib/vagrant-cloudstack/action/run_instance.rb
|
114
152
|
- lib/vagrant-cloudstack/action/start_instance.rb
|
115
153
|
- lib/vagrant-cloudstack/action/stop_instance.rb
|
116
|
-
- lib/vagrant-cloudstack/action/sync_folders.rb
|
117
154
|
- lib/vagrant-cloudstack/action/terminate_instance.rb
|
118
155
|
- lib/vagrant-cloudstack/action/timed_provision.rb
|
119
156
|
- lib/vagrant-cloudstack/action/wait_for_state.rb
|
120
157
|
- lib/vagrant-cloudstack/action/warn_networks.rb
|
121
|
-
- lib/vagrant-cloudstack/action.rb
|
122
158
|
- lib/vagrant-cloudstack/config.rb
|
123
159
|
- lib/vagrant-cloudstack/errors.rb
|
124
160
|
- lib/vagrant-cloudstack/plugin.rb
|
125
161
|
- lib/vagrant-cloudstack/provider.rb
|
126
162
|
- lib/vagrant-cloudstack/util/timer.rb
|
127
163
|
- lib/vagrant-cloudstack/version.rb
|
128
|
-
- lib/vagrant-cloudstack.rb
|
129
|
-
- LICENSE
|
130
164
|
- locales/en.yml
|
131
|
-
-
|
132
|
-
- README.md
|
165
|
+
- spec/spec_helper.rb
|
133
166
|
- spec/vagrant-cloudstack/config_spec.rb
|
134
167
|
- vagrant-cloudstack.gemspec
|
135
168
|
- vagrant-cloudstack.spec
|
136
|
-
|
137
|
-
- .ruby-version
|
138
|
-
- .travis.yml
|
139
|
-
homepage: https://github.com/klarna/vagrant-cloudstack/
|
169
|
+
homepage: https://github.com/schubergphilis/vagrant-cloudstack/
|
140
170
|
licenses:
|
141
171
|
- MIT
|
142
172
|
metadata: {}
|
@@ -146,18 +176,19 @@ require_paths:
|
|
146
176
|
- lib
|
147
177
|
required_ruby_version: !ruby/object:Gem::Requirement
|
148
178
|
requirements:
|
149
|
-
- -
|
179
|
+
- - ">="
|
150
180
|
- !ruby/object:Gem::Version
|
151
181
|
version: '0'
|
152
182
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
153
183
|
requirements:
|
154
|
-
- -
|
184
|
+
- - ">="
|
155
185
|
- !ruby/object:Gem::Version
|
156
186
|
version: 1.3.6
|
157
187
|
requirements: []
|
158
188
|
rubyforge_project: vagrant-cloudstack
|
159
|
-
rubygems_version: 2.
|
189
|
+
rubygems_version: 2.4.4
|
160
190
|
signing_key:
|
161
191
|
specification_version: 4
|
162
192
|
summary: Enables Vagrant to manage machines in Cloudstack.
|
163
193
|
test_files: []
|
194
|
+
has_rdoc:
|