mirror of
https://github.com/fog/fog.git
synced 2022-11-09 13:51:43 -05:00
16 lines
291 B
Ruby
16 lines
291 B
Ruby
|
module Fog
|
||
|
module Rackspace
|
||
|
class Databases
|
||
|
class Real
|
||
|
def check_root_user(instance_id)
|
||
|
request(
|
||
|
:expects => 200,
|
||
|
:method => 'GET',
|
||
|
:path => "instances/#{instance_id}/root"
|
||
|
)
|
||
|
end
|
||
|
end
|
||
|
end
|
||
|
end
|
||
|
end
|