# File lib/fog/softlayer/models/compute/server.rb, line 274
        def ready?
          begin
            if active_transaction
              false
            elsif bare_metal?
              state == "on"
            else
              state == "Running"
            end
          rescue Excon::Errors::InternalServerError => e
            false
          end
        end