box-o-sand/cookbook/015/hodgepodge/app/controllers/status_controller.rb
2011-08-09 06:33:51 -04:00

9 lines
154 B
Ruby

class StatusController < ApplicationController
def index
@title = "System Status"
time = Time.now
@time = time
@ps = `ps aux`
end
end