# File src/ruby_supportlib/phusion_passenger/admin_tools/instance.rb, line 80
      def stale?
        stat = File.stat(@path)
        if stat.mtime < Time.now - STALE_TIMEOUT
          !locked?
        else
          false
        end
      end