mirror of
https://github.com/fog/fog.git
synced 2022-11-09 13:51:43 -05:00
26 lines
706 B
Ruby
26 lines
706 B
Ruby
module Fog
|
|
module Compute
|
|
class Linode
|
|
class Real
|
|
|
|
def linode_disk_createfromstackscript(linode_id, script_id, distro_id, name, size, password, options={})
|
|
request(
|
|
:expects => 200,
|
|
:method => 'GET',
|
|
:query => {
|
|
:api_action => 'linode.disk.createfromstackscript',
|
|
:linodeId => linode_id,
|
|
:stackScriptID => script_id,
|
|
:distributionId => distro_id,
|
|
:label => name,
|
|
:size => size,
|
|
:rootPass => password,
|
|
:stackScriptUDFResponses => MultiJson.encode(options)
|
|
}
|
|
)
|
|
end
|
|
|
|
end
|
|
end
|
|
end
|
|
end
|