# File lib/god/watch.rb, line 99
    def action(a, c = nil)
      case a
      when :start
        call_action(c, :start)
        sleep(self.start_grace + self.grace)
      when :restart
        if self.restart
          call_action(c, :restart)
        else
          action(:stop, c)
          action(:start, c)
        end
        sleep(self.restart_grace + self.grace)
      when :stop
        call_action(c, :stop)
        sleep(self.stop_grace + self.grace)
      end
    end