1
0
Fork 0
mirror of https://github.com/fog/fog.git synced 2022-11-09 13:51:43 -05:00
fog--fog/lib/fog/openvz/requests/compute/start_server.rb

21 lines
438 B
Ruby
Raw Normal View History

2013-05-27 13:26:47 -04:00
module Fog
module Compute
class Openvz
class Real
def start_server(id,options={})
vzctl("start",{:ctid => id}.merge(options))
end
end
class Mock
def start_server(id,options={})
server = self.data[:servers].find { |s| s['ctid'].to_s == id.to_s }
unless server.nil?
server['status'] = 'running'
end
end
end
end
end
end