1
0
Fork 0
mirror of https://github.com/fog/fog.git synced 2022-11-09 13:51:43 -05:00

Don't start servers by default.

This is handy if we haven't yet assigned a boot
disk.
This commit is contained in:
Sean Handley 2012-07-15 17:20:19 +02:00
parent 789816cf91
commit e805e7577b

View file

@ -5,7 +5,7 @@ module Fog
def create_server(options)
return nil if options.empty? || options.nil?
request(:method => "post", :path => "/servers/create", :expects => 200, :options => options)
request(:method => "post", :path => "/servers/create/stopped", :expects => 200, :options => options)
end
end