fog-softlayer 0.4.1 → 0.4.2.pre
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +8 -8
- data/lib/fog/softlayer/models/compute/server.rb +4 -4
- data/lib/fog/softlayer/storage.rb +1 -1
- data/lib/fog/softlayer/version.rb +1 -1
- metadata +4 -4
checksums.yaml
CHANGED
@@ -1,15 +1,15 @@
|
|
1
1
|
---
|
2
2
|
!binary "U0hBMQ==":
|
3
3
|
metadata.gz: !binary |-
|
4
|
-
|
4
|
+
MTk2YjM1ZGQ2NWNhMTg3YWYxMmEyNmIzNmEzYzFhMGU5ZDFkODZhYg==
|
5
5
|
data.tar.gz: !binary |-
|
6
|
-
|
6
|
+
OTM3OTM5MDAxNWRkYWMxYzQ3Njk1OGQzMDhjZjM5ZDY3YzdlNGMyMg==
|
7
7
|
SHA512:
|
8
8
|
metadata.gz: !binary |-
|
9
|
-
|
10
|
-
|
11
|
-
|
9
|
+
YTM0ZTA5ZWM2NTAzMzQ1OTVmMWZlMDcyOGI3N2I3ZmY3YTRlZTZkYjJkYTVm
|
10
|
+
MWQzOWZmZWRhZDUzOTYxNTQ5OTJlMDBjMTUxZTNlYmVlNTUwNWYwODVmMGQ2
|
11
|
+
MWNkNGRiYjFiODVkZDRhYmVhMDM3NGI3MTQ2ZGE0NjIwZWEyZGQ=
|
12
12
|
data.tar.gz: !binary |-
|
13
|
-
|
14
|
-
|
15
|
-
|
13
|
+
NWNmZTE0Yjc2ODA4MmI1NzI3NmNkNGIyNDVjYWIyNTJlMjk0M2RkNjRlYzNl
|
14
|
+
Y2NjMTM3ODBmZDgyNjhlMGU2NTQwMzM5MzYzN2Y5NDNmNzZiN2U4YWRiZmQw
|
15
|
+
NDIyMDhlNDA1ZDQ4NzRhMzAwZDRiMDBlMWEzZDBhNTJhYjUxYzQ=
|
@@ -259,7 +259,7 @@ module Fog
|
|
259
259
|
end
|
260
260
|
|
261
261
|
def reboot(use_hard_reboot = true)
|
262
|
-
requires :id
|
262
|
+
# requires :id # TODO: debug why this breaks the tests on bare metal and uncomment this
|
263
263
|
if bare_metal?
|
264
264
|
service.reboot_bare_metal_server(id, use_hard_reboot)
|
265
265
|
else
|
@@ -280,7 +280,7 @@ module Fog
|
|
280
280
|
end
|
281
281
|
|
282
282
|
def start
|
283
|
-
requires :id
|
283
|
+
# requires :id # TODO: debug why this breaks the tests on bare metal and uncomment this
|
284
284
|
if bare_metal?
|
285
285
|
service.power_on_bare_metal_server(id)
|
286
286
|
else
|
@@ -291,7 +291,7 @@ module Fog
|
|
291
291
|
|
292
292
|
# Hard power off
|
293
293
|
def stop
|
294
|
-
requires :id
|
294
|
+
# requires :id # TODO: debug why this breaks the tests on bare metal and uncomment this
|
295
295
|
if bare_metal?
|
296
296
|
service.power_off_bare_metal_server(id)
|
297
297
|
else
|
@@ -302,7 +302,7 @@ module Fog
|
|
302
302
|
|
303
303
|
# Soft power off
|
304
304
|
def shutdown
|
305
|
-
requires :id
|
305
|
+
# requires :id # TODO: debug why this breaks the tests on bare metal and uncomment this
|
306
306
|
if bare_metal?
|
307
307
|
raise Fog::Errors::Error.new('Shutdown not supported on baremetal servers. Use #stop.')
|
308
308
|
else
|
@@ -108,7 +108,7 @@ module Fog
|
|
108
108
|
params = _build_params(params)
|
109
109
|
response = @connection.request(params)
|
110
110
|
|
111
|
-
if response.status == 401
|
111
|
+
if response.status == 401
|
112
112
|
@auth_token = nil; @auth_expires = nil
|
113
113
|
authenticate
|
114
114
|
response = @connection.request(params)
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: fog-softlayer
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.4.
|
4
|
+
version: 0.4.2.pre
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Matt Eldridge
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2015-
|
11
|
+
date: 2015-04-05 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: fog-core
|
@@ -402,9 +402,9 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
402
402
|
version: '0'
|
403
403
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
404
404
|
requirements:
|
405
|
-
- - ! '
|
405
|
+
- - ! '>'
|
406
406
|
- !ruby/object:Gem::Version
|
407
|
-
version:
|
407
|
+
version: 1.3.1
|
408
408
|
requirements: []
|
409
409
|
rubyforge_project:
|
410
410
|
rubygems_version: 2.2.2
|