orbit-basic/app/jobs/restart_server.rb

9 lines
172 B
Ruby
Raw Normal View History

2012-05-11 08:56:32 +00:00
class RestartServer
@queue = :high
def self.perform()
CronMail.time_check("Going to restarting Orbit").deliver
%x[touch #{Rails.root}/tmp/restart]
end
end