# File lib/fog/brightbox/compute/image_selector.rb, line 28
        def latest_ubuntu
          @images.select do |img|
            img["official"] == true &&
              img["arch"] == "i686" &&
              img["name"] =~ /ubuntu/i
          end.sort do |a, b|
            # Reverse sort so "raring" > "precise" and "13.10" > "13.04"
            b["name"].downcase <=> a["name"].downcase
          end.first["id"]
        rescue StandardError
          nil
        end